diff -Nru fwts-14.02.00/copy-acpica.sh fwts-14.03.00/copy-acpica.sh --- fwts-14.02.00/copy-acpica.sh 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/copy-acpica.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,300 +0,0 @@ -#!/bin/bash - -# -# Hacky script to fetch latest ACPICA core and upgrade fwts -# -FWTS=. - -echo "Removing old ACPICA.." -if [ -e acpica ]; then - mv acpica acpica.old -fi -echo "Cloning new ACPICA.." -git clone git://github.com/acpica/acpica - -FWTS_ACPICA_PATH=${FWTS}/src/acpica/source -SAVE_FILES=acpica-upgrade-save - -files="include/acpi.h \ - include/platform/acenv.h \ - include/platform/aclinux.h \ - include/platform/acgcc.h \ - include/acnames.h \ - include/actypes.h \ - include/acexcep.h \ - include/actbl.h \ - include/actbl1.h \ - include/actbl2.h \ - include/actbl3.h \ - include/acoutput.h \ - include/acrestyp.h \ - include/acpiosxf.h \ - include/acpixf.h \ - include/accommon.h \ - include/acconfig.h \ - include/acmacros.h \ - include/aclocal.h \ - include/acobject.h \ - include/acstruct.h \ - include/acglobal.h \ - include/achware.h \ - include/acutils.h \ - include/acparser.h \ - include/amlcode.h \ - include/acnamesp.h \ - include/acdebug.h \ - include/actables.h \ - include/acinterp.h \ - include/acapps.h \ - include/acdispat.h \ - include/acevents.h \ - include/acresrc.h \ - include/amlresrc.h \ - include/acdisasm.h \ - include/acpredef.h \ - include/acopcode.h \ - components/debugger/dbcmds.c \ - components/debugger/dbdisply.c \ - components/debugger/dbexec.c \ - components/debugger/dbfileio.c \ - components/debugger/dbhistry.c \ - components/debugger/dbinput.c \ - components/debugger/dbstats.c \ - components/debugger/dbutils.c \ - components/debugger/dbxface.c \ - components/debugger/dbmethod.c \ - components/debugger/dbnames.c \ - components/disassembler/dmbuffer.c \ - components/disassembler/dmnames.c \ - components/disassembler/dmobject.c \ - components/disassembler/dmopcode.c \ - components/disassembler/dmresrc.c \ - components/disassembler/dmresrcl.c \ - components/disassembler/dmresrcs.c \ - components/disassembler/dmutils.c \ - components/disassembler/dmwalk.c \ - components/disassembler/dmresrcl2.c \ - components/dispatcher/dsfield.c \ - components/dispatcher/dsinit.c \ - components/dispatcher/dsmethod.c \ - components/dispatcher/dsmthdat.c \ - components/dispatcher/dsobject.c \ - components/dispatcher/dsopcode.c \ - components/dispatcher/dsutils.c \ - components/dispatcher/dswexec.c \ - components/dispatcher/dswload.c \ - components/dispatcher/dswscope.c \ - components/dispatcher/dswstate.c \ - components/dispatcher/dscontrol.c \ - components/dispatcher/dsargs.c \ - components/dispatcher/dswload2.c \ - components/events/evevent.c \ - components/events/evgpe.c \ - components/events/evgpeblk.c \ - components/events/evgpeinit.c \ - components/events/evgpeutil.c \ - components/events/evmisc.c \ - components/events/evregion.c \ - components/events/evrgnini.c \ - components/events/evsci.c \ - components/events/evxface.c \ - components/events/evxfevnt.c \ - components/events/evxfgpe.c \ - components/events/evxfregn.c \ - components/events/evglock.c \ - components/executer/exfield.c \ - components/executer/exfldio.c \ - components/executer/exmisc.c \ - components/executer/exmutex.c \ - components/executer/exnames.c \ - components/executer/exoparg1.c \ - components/executer/exoparg2.c \ - components/executer/exoparg3.c \ - components/executer/exoparg6.c \ - components/executer/exprep.c \ - components/executer/exregion.c \ - components/executer/exresnte.c \ - components/executer/exresolv.c \ - components/executer/exresop.c \ - components/executer/exstore.c \ - components/executer/exstoren.c \ - components/executer/exstorob.c \ - components/executer/exsystem.c \ - components/executer/exutils.c \ - components/executer/exconvrt.c \ - components/executer/excreate.c \ - components/executer/exdump.c \ - components/executer/exdebug.c \ - components/executer/exconfig.c \ - components/hardware/hwacpi.c \ - components/hardware/hwgpe.c \ - components/hardware/hwpci.c \ - components/hardware/hwregs.c \ - components/hardware/hwsleep.c \ - components/hardware/hwvalid.c \ - components/hardware/hwxface.c \ - components/hardware/hwxfsleep.c \ - components/hardware/hwesleep.c \ - components/namespace/nsaccess.c \ - components/namespace/nsalloc.c \ - components/namespace/nsdump.c \ - components/namespace/nsdumpdv.c \ - components/namespace/nseval.c \ - components/namespace/nsinit.c \ - components/namespace/nsload.c \ - components/namespace/nsnames.c \ - components/namespace/nsobject.c \ - components/namespace/nsparse.c \ - components/namespace/nspredef.c \ - components/namespace/nsrepair.c \ - components/namespace/nsrepair2.c \ - components/namespace/nssearch.c \ - components/namespace/nsutils.c \ - components/namespace/nswalk.c \ - components/namespace/nsxfeval.c \ - components/namespace/nsxfname.c \ - components/namespace/nsxfobj.c \ - components/parser/psargs.c \ - components/parser/psloop.c \ - components/parser/psopcode.c \ - components/parser/psparse.c \ - components/parser/psscope.c \ - components/parser/pstree.c \ - components/parser/psutils.c \ - components/parser/pswalk.c \ - components/parser/psxface.c \ - components/resources/rsaddr.c \ - components/resources/rscalc.c \ - components/resources/rscreate.c \ - components/resources/rsdump.c \ - components/resources/rsio.c \ - components/resources/rsinfo.c \ - components/resources/rsirq.c \ - components/resources/rslist.c \ - components/resources/rsmemory.c \ - components/resources/rsmisc.c \ - components/resources/rsutils.c \ - components/resources/rsxface.c \ - components/resources/rsserial.c \ - components/tables/tbfadt.c \ - components/tables/tbfind.c \ - components/tables/tbinstal.c \ - components/tables/tbutils.c \ - components/tables/tbxface.c \ - components/tables/tbxfroot.c \ - components/tables/tbxfload.c \ - components/utilities/utaddress.c \ - components/utilities/utalloc.c \ - components/utilities/utcache.c \ - components/utilities/utcopy.c \ - components/utilities/utdebug.c \ - components/utilities/utdelete.c \ - components/utilities/uteval.c \ - components/utilities/utglobal.c \ - components/utilities/utids.c \ - components/utilities/utinit.c \ - components/utilities/utlock.c \ - components/utilities/utmath.c \ - components/utilities/utmisc.c \ - components/utilities/utmutex.c \ - components/utilities/utobject.c \ - components/utilities/utresrc.c \ - components/utilities/utstate.c \ - components/utilities/uttrack.c \ - components/utilities/utosi.c \ - components/utilities/utxferror.c \ - components/utilities/utxface.c \ - components/utilities/utdecode.c \ - components/utilities/utexcep.c \ - tools/acpiexec/aehandlers.c \ - tools/acpiexec/aecommon.h \ - compiler/aslanalyze.c \ - compiler/aslcodegen.c \ - compiler/aslcompile.c \ - compiler/aslcompiler.h \ - compiler/aslcompiler.l \ - compiler/aslcompiler.y \ - compiler/aslsupport.l \ - compiler/asldefine.h \ - compiler/aslerror.c \ - compiler/aslfiles.c \ - compiler/aslfold.c \ - compiler/aslglobal.h \ - compiler/asllength.c \ - compiler/asllisting.c \ - compiler/aslload.c \ - compiler/asllookup.c \ - compiler/aslmain.c \ - compiler/aslmap.c \ - compiler/aslmessages.h \ - compiler/aslopcodes.c \ - compiler/asloperands.c \ - compiler/aslopt.c \ - compiler/aslpredef.c \ - compiler/aslresource.c \ - compiler/aslrestype1.c \ - compiler/aslrestype1i.c \ - compiler/aslrestype2.c \ - compiler/aslrestype2d.c \ - compiler/aslrestype2e.c \ - compiler/aslrestype2q.c \ - compiler/aslrestype2w.c \ - compiler/aslstartup.c \ - compiler/aslstubs.c \ - compiler/asltransform.c \ - compiler/asltree.c \ - compiler/asltypes.h \ - compiler/aslutils.c \ - compiler/dtcompile.c \ - compiler/dtcompiler.h \ - compiler/dtfield.c \ - compiler/dtio.c \ - compiler/dtsubtable.c \ - compiler/dttable.c \ - compiler/dttemplate.c \ - compiler/dttemplate.h \ - compiler/dtutils.c \ - compiler/dtexpress.c \ - compiler/dtparser.y \ - compiler/dtparser.l \ - compiler/aslbtypes.c \ - compiler/aslwalks.c \ - compiler/asluuid.c \ - compiler/preprocess.h \ - compiler/prscan.c \ - compiler/prmacros.c \ - compiler/prutils.c \ - compiler/prexpress.c \ - compiler/prparser.y \ - compiler/prparser.l \ - compiler/aslrestype2s.c \ - common/adfile.c \ - common/adisasm.c \ - common/adwalk.c \ - common/ahpredef.c \ - common/dmextern.c \ - common/dmrestag.c \ - common/dmtable.c \ - common/dmtbinfo.c \ - common/dmtbdump.c \ - os_specific/service_layers/osunixxf.c" - -echo "Saving makefiles etc...." -rm -rf ${SAVE_FILES} -mkdir ${SAVE_FILES} -cp ${FWTS_ACPICA_PATH}/compiler/Makefile* ${SAVE_FILES} -cp ${FWTS_ACPICA_PATH}/compiler/fwts_iasl_interface.c ${SAVE_FILES} -cp ${FWTS_ACPICA_PATH}/compiler/fwts_iasl_interface.h ${SAVE_FILES} - -echo "Removing old ACPICA sources" -rm -rf ${FWTS_ACPICA_PATH} -mkdir ${FWTS_ACPICA_PATH} - -echo "Copying new ACPICA sources" -for i in ${files} -do - mkdir -p `dirname ${FWTS_ACPICA_PATH}/$i` - cp -p acpica/source/$i ${FWTS}/src/acpica/source/$i -done - -cp ${SAVE_FILES}/* ${FWTS}/src/acpica/source/compiler diff -Nru fwts-14.02.00/debian/changelog fwts-14.03.00/debian/changelog --- fwts-14.02.00/debian/changelog 2014-02-19 05:42:47.000000000 +0000 +++ fwts-14.03.00/debian/changelog 2014-03-24 10:21:24.000000000 +0000 @@ -1,6 +1,59 @@ +fwts (14.03.00-0ubuntu2) trusty; urgency=low + + * skip fwts-test on arm64 + + -- Keng-Yu Lin Mon, 24 Mar 2014 17:02:29 +0800 + +fwts (14.03.00-0ubuntu1) trusty; urgency=low + + [Colin Ian King] + * acpi: fwts_acpi_tables: fix up missing FACS (LP: #1284097) + * acpi: acpidump: provide table provenance (LP: #1284205) + * apci: acpiinfo: enable for non-x86 arches (LP: #1284557) + * Add utility to dump _PLD (Physical Device Location) information + (LP: #1281835) + * acpi: add in a tool to dump GPE information (LP: #1283473) + * lib: fwts_acpi_tables: handle zero 64 bit addrs in FADT (LP: #1285167) + * bios: hda_audio: skip the test if audio devices don't exist (LP: #1285571) + * Remove copy-acpica.sh script, it is no longer used + * acpi: checksum: print RSDP checksum correctly (LP: #1287815) + * lib: fwts_acpi_tables: update RSDP checksum on fixed-up RSDP (LP: #1287852) + * acpi: acpitables: remove irrelevant test case (LP: #1287891) + * uefi: uefidump: small re-working of uefi GUID lookup + * fwts-test: update acpidump-0001 + * fwts-test: acpitables-0002: sync with recent table fixing + * fwts-test: syntaxcheck-0001: update to sync with fwts + * fwts-test: arg-show-tests-0001: keep in sync with fwts + * fwts-test: arg-show-tests-full-0001: keep in sync with fwts + * fwts-test: checksum-0001: update due to fwts formatting fixes + * fwts-test: arg-table-path-0001: sync with fwts changes + * fwts-test: acpitables-0003: update to sync with fwts + * fwts-test: acpitables-0004: update test + * fwts-test: acpitables-0005: update test + * fwts-test: acpitables-0006: update test + * fwts-test: acpitables-0007: update test + * fwts-test: acpitables-0008: update test + * fwts-test: skip some tests on non-x86 builds + * fwts-test: fix tests not to compare against date (LP: #1289225) + * fwts-test: arg-help-0001: fix up some tests issues + * fwts-test: arg-log-format-0001: make test less pedandic on line numbers + * fwts-test: arg-show-progress-dialog: remove version from test + * acpica: ppc64el needs to be built as a 64 bit architecture + * debian: limit architectures to i386 amd64 armel armhf arm64 ppc64 ppc64el + + [Keng-Yu Lin] + * fwts-test: Copy all files from fwts-test git tree (LP: #1201250) + * lib: Make --disassemble-aml accept the outputdir argument (LP: #1201250) + * fwts-test: Update disassemble-0001 test (LP: #1201250) + * fwts-test: Update the test scripts for new test environment (LP: #1201250) + * lib: fwts_args: determine tty width from stdin + * fwts-test: disassemble-0001: rename *.orig to *.original + + -- Ivan Hu Mon, 17 Mar 2014 15:13:44 +0800 + fwts (14.02.00-0ubuntu0) trusty; urgency=low - [Colin Ian King] + [Colin Ian King] * acpi: method: fix ppc64el build failure (LP: #1272265) * acpi: acpidump: handle invalid MADT table data (LP: #1278422) * cpu: cpufreq: tidy code, show advice when cpu scaling unavailable @@ -10,7 +63,7 @@ * ACPICA: update to version 20140214. (LP: #1281096) * lib: fwts_acpi_tables: fix parsing of empty data (LP: #1281197) - [Ivan Hu] + [Ivan Hu] * data: klog.json: lower the level of the failure when the _S1 and _S2 not implemented (LP: #1279714) diff -Nru fwts-14.02.00/debian/control fwts-14.03.00/debian/control --- fwts-14.02.00/debian/control 2014-02-19 05:42:47.000000000 +0000 +++ fwts-14.03.00/debian/control 2014-03-17 08:31:38.000000000 +0000 @@ -7,7 +7,7 @@ Build-Depends: debhelper (>= 7.0.50~), autoconf, automake1.11, libtool, libpcre3-dev (>= 7.8), libjson0-dev (>= 0.9), flex, bison, hardening-wrapper, dh-autoreconf, dkms Package: fwts -Architecture: any +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Depends: libfwtsiasl1 (= ${binary:Version}), libfwtsacpica1 (= ${binary:Version}), libfwts1 (= ${binary:Version}), fwts-efi-runtime-dkms (= ${binary:Version}) [amd64] , ${shlibs:Depends}, ${misc:Depends}, pciutils Suggests: dmidecode Description: FirmWare Test Suite @@ -18,7 +18,7 @@ be a Linux-centric firmware troubleshooting tool. Package: libfwtsiasl1 -Architecture: any +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Depends: ${shlibs:Depends}, ${misc:Depends} Description: FirmWare Test Suite ACPICA core built for iasl functionality The firmware test suite requires the ACPICA core engine to be built in @@ -28,7 +28,7 @@ interface with fwts. Package: libfwtsacpica1 -Architecture: any +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Depends: ${shlibs:Depends}, ${misc:Depends} Description: FirmWare Test Suite ACPICA core built for acpiexec functionality The firmware test suite requires the ACPICA core engine to be built in @@ -37,7 +37,7 @@ contains this code with a thin fwts specific API to interface with fwts. Package: libfwts1 -Architecture: any +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Depends: ${shlibs:Depends}, ${misc:Depends} Description: FirmWare Test Suite core support library This is the fwts core library. It contains a top level test framework @@ -45,7 +45,7 @@ various fwts tests. Package: fwts-frontend -Architecture: all +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Priority: optional Depends: ${shlibs:Depends}, ${misc:Depends}, dialog, fwts Description: Firmware Test Suite frontend interface @@ -54,7 +54,7 @@ interface within Firmware Test Suite live images. Package: fwts-efi-runtime-dkms -Architecture: amd64 +Architecture: i386 amd64 armel armhf arm64 ppc64 ppc64el Priority: optional Depends: ${shlibs:Depends}, ${misc:Depends}, dkms, linux-headers-generic | linux-headers | linux-headers-generic-lts-quantal | linux-headers-generic-lts-raring | linux-headers-generic-lts-saucy Description: Firmware Test Suite UEFI Runtime Service kernel driver diff -Nru fwts-14.02.00/debian/rules fwts-14.03.00/debian/rules --- fwts-14.02.00/debian/rules 2014-02-19 05:42:47.000000000 +0000 +++ fwts-14.03.00/debian/rules 2014-03-24 09:55:03.000000000 +0000 @@ -4,6 +4,8 @@ export AUTOMAKE=automake-1.11 export ACLOCAL=aclocal-1.11 +DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH) + DEBVERS := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2 \ | cut -d- -f1) @@ -19,6 +21,10 @@ override_dh_dkms: dh_dkms -V $(VERSION) +override_dh_auto_test: +ifneq ($(DEB_BUILD_ARCH),arm64) + dh_auto_test $@ +endif %: dh $@ --with autoreconf,dkms diff -Nru fwts-14.02.00/fwts-test/acpidump-0001/acpidump-0001.log fwts-14.03.00/fwts-test/acpidump-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpidump-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpidump-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,705 @@ +acpidump acpidump: Dump ACPI tables. +acpidump ---------------------------------------------------------- +acpidump Test 1 of 1: Dump ACPI tables. +acpidump RSDP @ f7240 (36 bytes) (loaded from file) +acpidump ---- +acpidump Root System Description Pointer: +acpidump +acpidump [0x000 0000 8] Signature: RSD PTR +acpidump [0x008 0008 1] Checksum: 0xc5 +acpidump [0x009 0009 6] OEM ID: LENOVO +acpidump [0x00f 0015 1] Revision: 0x02 +acpidump [0x010 0016 4] RsdtAddress: 0xbf6d8794 +acpidump [0x014 0020 4] Length: 0x00000024 +acpidump [0x018 0024 8] XsdtAddress: 0x00000000bf6d87f0 +acpidump [0x020 0032 1] Extended Checksum: 0x39 +acpidump [0x021 0033 3] Reserved: 0x00 [0] +acpidump [0x021 0033 3] Reserved: 0x00 [1] +acpidump [0x021 0033 3] Reserved: 0x00 [2] +acpidump +acpidump RSDT @ bf6d8794 (88 bytes) (loaded from file) +acpidump ---- +acpidump Root System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: RSDT +acpidump [0x004 0004 4] Length: 0x00000058 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x43 +acpidump [0x00a 0010 6] OEM ID: LENOVO +acpidump [0x010 0016 8] OEM Table ID: TP-68 +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LTP +acpidump [0x020 0032 4] Creator Revision: 0x00000000 +acpidump [0x024 0036 4] Entry 00 FACP: 0xbf6dfb5e +acpidump [0x028 0040 4] Entry 01 APIC: 0xbf6dfcc6 +acpidump [0x02c 0044 4] Entry 02 HPET: 0xbf6dfd2e +acpidump [0x030 0048 4] Entry 03 MCFG: 0xbf6dfd66 +acpidump [0x034 0052 4] Entry 04 BOOT: 0xbf6dffd8 +acpidump [0x038 0056 4] Entry 05 TMOR: 0xbf6dfdd4 +acpidump [0x03c 0060 4] Entry 06 SLIC: 0xbf6dfdfa +acpidump [0x040 0064 4] Entry 07 APIC: 0xbf6dff70 +acpidump [0x044 0068 4] Entry 08 SSDT: 0xbf6d98bd +acpidump [0x048 0072 4] Entry 09 SSDT: 0xbf6d981a +acpidump [0x04c 0076 4] Entry 10 SSDT: 0xbf6d8e10 +acpidump [0x050 0080 4] Entry 11 SSDT: 0xbf6d8d6a +acpidump [0x054 0084 4] Entry 12 SSDT: 0xbf6d8884 +acpidump +acpidump DSDT @ bf6d9b6a (24564 bytes) (loaded from file) +acpidump ---- +acpidump Differentiated System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: DSDT +acpidump [0x004 0004 4] Length: 0x00005ff4 +acpidump [0x008 0008 1] Revision: 0x02 +acpidump [0x009 0009 1] Checksum: 0x11 +acpidump [0x00a 0010 6] OEM ID: TOSCPL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20060608 +acpidump Contains 0x5fd0 bytes of AML byte code +acpidump +acpidump FACS @ bf6e2fc0 (64 bytes) (loaded from file) +acpidump ---- +acpidump Firmware ACPI Control Structure: +acpidump +acpidump [0x000 0000 4] Signature: FACS +acpidump [0x004 0004 4] Length: 0x00000040 +acpidump [0x008 0008 4] H/W Signature: 0x00000000 +acpidump [0x00c 0012 4] Waking Vector: 0x00000000 +acpidump [0x010 0016 4] Global Lock: 0x00000000 +acpidump [0x014 0020 4] Flags: 0x00000000 +acpidump [0x018 0024 8] X Waking Vector: 0x0000000000000000 +acpidump [0x020 0032 1] Version: 0x01 +acpidump [0x024 0036 4] OSPM Flags: 0x00000000 +acpidump +acpidump FACP @ bf6dfb5e (116 bytes) (loaded from file) +acpidump ---- +acpidump Fixed ACPI Description Table: +acpidump +acpidump [0x000 0000 4] Signature: FACP +acpidump [0x004 0004 4] Length: 0x00000074 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x5c +acpidump [0x00a 0010 6] OEM ID: TOSCPL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x024 0036 4] FACS Address: 0xbf6e2fc0 +acpidump [0x028 0040 4] DSDT Address: 0xbf6d9b6a +acpidump [0x02c 0044 1] Model: 0x00 +acpidump [0x02d 0045 1] PM Profile: 0x00 (Unspecified) +acpidump [0x02e 0046 2] SCI Interrupt: 0x0009 +acpidump [0x030 0048 4] SMI Command Port: 0x000000b2 +acpidump [0x034 0052 1] ACPI Enable Value: 0xf0 +acpidump [0x035 0053 1] ACPI Disable Value: 0xf1 +acpidump [0x036 0054 1] S4BIOS Command: 0x00 +acpidump [0x037 0055 1] P-State Control: 0x80 +acpidump [0x038 0056 4] PM1A Event Block: 0x00001000 +acpidump [0x03c 0060 4] PM1B Event Block: 0x00000000 +acpidump [0x040 0064 4] PM1A Control Block: 0x00001004 +acpidump [0x044 0068 4] PM1B Control Block: 0x00000000 +acpidump [0x048 0072 4] PM2 Control Block: 0x00001020 +acpidump [0x04c 0076 4] PM Timer Block: 0x00001008 +acpidump [0x050 0080 4] GPE0 Block: 0x00001028 +acpidump [0x054 0084 4] GPE1 Block: 0x00000000 +acpidump [0x058 0088 1] PM1 Event Block Length: 0x04 +acpidump [0x059 0089 1] PM1 Control Block Length: 0x02 +acpidump [0x05a 0090 1] PM2 Control Block Length: 0x01 +acpidump [0x05b 0091 1] PM Timer Block Length: 0x04 +acpidump [0x05c 0092 1] GPE0 Block Length: 0x08 +acpidump [0x05d 0093 1] GPE1 Block Length: 0x00 +acpidump [0x05f 0095 1] _CST Support: 0x85 +acpidump [0x060 0096 2] C2 Latency: 0x0001 +acpidump [0x062 0098 2] C3 Latency: 0x0039 +acpidump [0x064 0100 2] CPU Cache Size: 0x0000 +acpidump [0x066 0102 2] CPU Cache Flush Stride: 0x0000 +acpidump [0x068 0104 1] Duty Cycle Offset: 0x01 +acpidump [0x069 0105 1] Duty Cycle Width: 0x03 +acpidump [0x06a 0106 1] RTC Day Alarm Index: 0x0d +acpidump [0x06b 0107 1] RTC Month Alarm Index: 0x00 +acpidump [0x06c 0108 1] RTC Century Index: 0x32 +acpidump [0x06d 0109 2] IA-PC Boot Flags (see below): 0x0000 +acpidump Legacy Devices Supported (V2): 0x0 +acpidump 8042 present on ports 60/64 (V2): 0x0 +acpidump VGA Not Present (V4): 0x0 +acpidump MSI Not Supported (V4): 0x0 +acpidump PCIe ASPM Not supported (V4): 0x0 +acpidump CMOS RTC Not Present (V5): 0x0 +acpidump [0x070 0112 4] Flags (see below): 0x000080a5 +acpidump WBINVD instruction (V1): 0x1 +acpidump WBINVD flushes all caches (V1): 0x0 +acpidump All CPUs support C1 (V1): 0x1 +acpidump C2 works on MP system (V1): 0x0 +acpidump Control Method Power Button (V1): 0x0 +acpidump Control Method Sleep Button (V1): 0x1 +acpidump RTC wake not in fixed reg space (V1): 0x0 +acpidump RTC can wake system from S4 (V1): 0x1 +acpidump 32 bit PM timer (V1): 0x0 +acpidump Docking Capability (V1): 0x0 +acpidump Reset Register Supported (V2): 0x0 +acpidump Sealed Case (V3): 0x0 +acpidump Headless, No Video (V3): 0x0 +acpidump Use native instr. after SLP_TYPx (V3): 0x0 +acpidump PCI_EXP_WAK bits supported (V4): 0x0 +acpidump Use patform clock (V4): 0x1 +acpidump RTC_STS Valid after S4 wake (V4): 0x0 +acpidump Remote power on capable (V4): 0x0 +acpidump Use APIC Cluster Model (V4): 0x0 +acpidump Use APIC Physical Dest. Mode (V4): 0x0 +acpidump ACPI hardware is not implemented (V5): 0x0 +acpidump S0 power savings are equal or better than S3 (V5): 0x0 +acpidump RESERVED: 0x000 +acpidump +acpidump APIC @ bf6dfcc6 (104 bytes) (loaded from file) +acpidump ---- +acpidump Multiple APIC Description Table: +acpidump +acpidump [0x000 0000 4] Signature: APIC +acpidump [0x004 0004 4] Length: 0x00000068 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xcc +acpidump [0x00a 0010 6] OEM ID: INTEL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x024 0036 4] Local APIC Address: 0xfee00000 +acpidump [0x028 0040 4] Flags: 0x00000001 +acpidump PCAT_COMPAT: 0x1 +acpidump APIC Structure #1: +acpidump [0x02c 0044 1] Type: 0x00 (Processor Local APIC) +acpidump [0x02d 0045 1] Length: 0x08 +acpidump [0x02e 0046 1] ACPI CPU ID: 0x00 +acpidump [0x02f 0047 1] APIC ID: 0x00 +acpidump [0x030 0048 4] Flags: 0x00000001 +acpidump Enabled: 0x1 +acpidump APIC Structure #2: +acpidump [0x034 0052 1] Type: 0x00 (Processor Local APIC) +acpidump [0x035 0053 1] Length: 0x08 +acpidump [0x036 0054 1] ACPI CPU ID: 0x01 +acpidump [0x037 0055 1] APIC ID: 0x01 +acpidump [0x038 0056 4] Flags: 0x00000001 +acpidump Enabled: 0x1 +acpidump APIC Structure #3: +acpidump [0x03c 0060 1] Type: 0x01 (I/O APIC) +acpidump [0x03d 0061 1] Length: 0x0c +acpidump [0x03e 0062 1] I/O APIC ID: 0x01 +acpidump [0x040 0064 4] I/O APIC Addr: 0xfec00000 +acpidump [0x044 0068 4] Global IRQ Base: 0x00000000 +acpidump APIC Structure #4: +acpidump [0x048 0072 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x049 0073 1] Length: 0x0a +acpidump [0x04a 0074 1] Bus: 0x00 +acpidump [0x04b 0075 1] Source: 0x00 +acpidump [0x04c 0076 4] Gbl Sys Int: 0x00000002 +acpidump [0x050 0080 2] Flags: 0x0000 +acpidump Polarity: 0x0 +acpidump Trigger Mode: 0x0 +acpidump APIC Structure #5: +acpidump [0x052 0082 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x053 0083 1] Length: 0x0a +acpidump [0x054 0084 1] Bus: 0x00 +acpidump [0x055 0085 1] Source: 0x09 +acpidump [0x056 0086 4] Gbl Sys Int: 0x00000009 +acpidump [0x05a 0090 2] Flags: 0x000d +acpidump Polarity: 0x1 +acpidump Trigger Mode: 0x3 +acpidump APIC Structure #6: +acpidump [0x05c 0092 1] Type: 0x04 (Local APIC NMI) +acpidump [0x05d 0093 1] Length: 0x06 +acpidump [0x05e 0094 1] ACPI CPU ID: 0x00 +acpidump [0x05f 0095 2] Flags: 0x0005 +acpidump [0x061 0097 1] Local APIC LINT: 0x01 +acpidump APIC Structure #7: +acpidump [0x062 0098 1] Type: 0x04 (Local APIC NMI) +acpidump [0x063 0099 1] Length: 0x06 +acpidump [0x064 0100 1] ACPI CPU ID: 0x01 +acpidump [0x065 0101 2] Flags: 0x0005 +acpidump [0x067 0103 1] Local APIC LINT: 0x01 +acpidump +acpidump HPET @ bf6dfd2e (56 bytes) (loaded from file) +acpidump ---- +acpidump IA-PC High Precision Event Timer Table: +acpidump +acpidump [0x000 0000 4] Signature: HPET +acpidump [0x004 0004 4] Length: 0x00000038 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x0a +acpidump [0x00a 0010 6] OEM ID: INTEL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x024 0036 4] Event Timer ID: 0x8086a201 +acpidump Hardware Rev: 0x01 +acpidump Num Comparitors: 0x02 +acpidump Count Size Cap: 0x1 +acpidump Reserved: 0x0 +acpidump IRQ Routing Cap: 0x1 +acpidump PCI Vendor ID: 0x8086 +acpidump +acpidump [0x028 0040 12] Base Address: (Generic Address Structure) +acpidump [0x028 0040 1] addr_space_id: 0x00 (System Memory) +acpidump [0x029 0041 1] reg_bit_width: 0x00 +acpidump [0x02a 0042 1] reg_bit_offset: 0x00 +acpidump [0x02b 0043 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x02c 0044 8] address: 0x00000000fed00000 +acpidump [0x034 0052 1] HPET Number: 0x00 +acpidump [0x035 0053 2] Main Counter Min: 0x0080 +acpidump [0x037 0055 1] Page Prot Attr: 0x00 +acpidump Page Protection: 0x0 +acpidump OEM Attr: 0x0 +acpidump +acpidump MCFG @ bf6dfd66 (60 bytes) (loaded from file) +acpidump ---- +acpidump PCI Express Memory Mapped Config Space Base Address Table: +acpidump +acpidump [0x000 0000 4] Signature: MCFG +acpidump [0x004 0004 4] Length: 0x0000003c +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x32 +acpidump [0x00a 0010 6] OEM ID: INTEL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x024 0036 8] Reserved: 0x0000000000000000 +acpidump +acpidump Configuration #1: +acpidump [0x000 0000 8] Base Address: 0x00000000e0000000 +acpidump [0x008 0008 2] PCI Seg Grp Num: 0x0000 +acpidump [0x00a 0010 1] Start Bus Num: 0x00 +acpidump [0x00b 0011 1] End Bus Num: 0xff +acpidump [0x00c 0012 4] Reserved: 0x00000000 +acpidump +acpidump BOOT @ bf6dffd8 (40 bytes) (loaded from file) +acpidump ---- +acpidump Simple Boot Flag Table: +acpidump +acpidump [0x000 0000 4] Signature: BOOT +acpidump [0x004 0004 4] Length: 0x00000028 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xa5 +acpidump [0x00a 0010 6] OEM ID: PTLTD +acpidump [0x010 0016 8] OEM Table ID: $SBFTBL$ +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LTP +acpidump [0x020 0032 4] Creator Revision: 0x00000001 +acpidump [0x024 0036 1] CMOS offset: 0x36 +acpidump +acpidump TMOR @ bf6dfdd4 (38 bytes) (loaded from file) +acpidump ---- +acpidump [0x000 0000 4] Signature: TMOR +acpidump [0x004 0004 4] Length: 0x00000026 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xeb +acpidump [0x00a 0010 6] OEM ID: PTLTD +acpidump [0x010 0016 8] OEM Table ID: +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: PTL +acpidump [0x020 0032 4] Creator Revision: 0x00000003 +acpidump +acpidump 0000: 54 4d 4f 52 26 00 00 00 01 eb 50 54 4c 54 44 20 TMOR&.....PTLTD +acpidump 0010: 20 20 20 20 20 20 20 20 00 00 04 06 50 54 4c 20 ....PTL +acpidump 0020: 03 00 00 00 f3 f4 ...... +acpidump +acpidump SLIC @ bf6dfdfa (374 bytes) (loaded from file) +acpidump ---- +acpidump Microsoft Software License Table: +acpidump +acpidump [0x000 0000 4] Signature: SLIC +acpidump [0x004 0004 4] Length: 0x00000176 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x99 +acpidump [0x00a 0010 6] OEM ID: LENOVO +acpidump [0x010 0016 8] OEM Table ID: TP-68 +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: TBD +acpidump [0x020 0032 4] Creator Revision: 0x00000001 +acpidump +acpidump [0x024 0036 4] Type: 0x00000000 +acpidump [0x028 0040 4] Length: 0x0000009c +acpidump [0x02c 0044 1] Key Type: 0x06 +acpidump [0x02d 0045 1] Version: 0x02 +acpidump [0x02e 0046 2] Reserved: 0x0000 +acpidump [0x030 0048 4] Algorithm: 0x00002400 +acpidump [0x034 0052 4] Magic: 0x31415352 +acpidump [0x038 0056 4] Bit Length: 0x00000400 +acpidump [0x03c 0060 128] Modulus: 01 00 01 00 69 16 4a 9f +acpidump [0x03c 0060 128] Modulus: b1 4b 3a fb 80 20 aa af +acpidump [0x03c 0060 128] Modulus: c4 f9 3e c1 80 49 ee 6a +acpidump [0x03c 0060 128] Modulus: 65 26 72 1e cd bf 5f 2f +acpidump [0x03c 0060 128] Modulus: 96 d6 c0 0a 92 f5 06 b5 +acpidump [0x03c 0060 128] Modulus: 00 b2 3b 29 02 e2 4c 8d +acpidump [0x03c 0060 128] Modulus: c2 f2 bc 41 77 9c 70 f0 +acpidump [0x03c 0060 128] Modulus: f3 1b 09 d2 63 5a dc a8 +acpidump [0x03c 0060 128] Modulus: 83 f8 5e c9 15 95 f9 fa +acpidump [0x03c 0060 128] Modulus: fd dc 05 b7 4d 67 7f 2d +acpidump [0x03c 0060 128] Modulus: b3 84 33 20 e1 d1 79 2a +acpidump [0x03c 0060 128] Modulus: a7 6a 77 d1 b6 20 2a 76 +acpidump [0x03c 0060 128] Modulus: 42 c5 d5 e9 b6 43 40 55 +acpidump [0x03c 0060 128] Modulus: 44 c3 c9 37 99 5f 41 97 +acpidump [0x03c 0060 128] Modulus: 70 f3 d1 f6 07 ec 7b 1a +acpidump [0x03c 0060 128] Modulus: 29 a1 c1 f1 91 fd 48 86 +acpidump +acpidump [0x0c0 0192 4] Type: 0x00000001 +acpidump [0x0c4 0196 4] Length: 0x000000b6 +acpidump [0x0c8 0200 4] Version: 0x00020000 +acpidump [0x0cc 0204 6] OEM ID: LENOVO +acpidump [0x0d2 0210 8] OEM TABLE ID: TP-68 +acpidump [0x0da 0218 8] Windows Flag: 57 49 4e 44 4f 57 53 20 +acpidump [0x0e2 0226 4] SLIC Version: 0x00000000 +acpidump [0x0e6 0230 16] Reserved: 00 00 00 00 00 00 00 00 +acpidump [0x0e6 0230 16] Reserved: 00 00 00 00 00 00 00 00 +acpidump [0x0f6 0246 128] Signature: 8a 6e 2e c9 36 e6 7f 10 +acpidump [0x0f6 0246 128] Signature: 8a ea 14 ad d2 93 b7 6d +acpidump [0x0f6 0246 128] Signature: 9b 73 ad 83 36 b8 6c a7 +acpidump [0x0f6 0246 128] Signature: a7 ee 37 47 16 fe f3 fc +acpidump [0x0f6 0246 128] Signature: cd c7 89 84 06 16 91 0b +acpidump [0x0f6 0246 128] Signature: 1e 81 11 42 b1 35 52 57 +acpidump [0x0f6 0246 128] Signature: f6 6b bb 5f a5 81 e2 ff +acpidump [0x0f6 0246 128] Signature: 89 8a 95 c3 4d fc e9 56 +acpidump [0x0f6 0246 128] Signature: 4f 4c 34 cc 99 5e 62 e1 +acpidump [0x0f6 0246 128] Signature: 90 8a 54 be 4a 00 5c 9b +acpidump [0x0f6 0246 128] Signature: a0 86 41 46 66 9d e2 f2 +acpidump [0x0f6 0246 128] Signature: e7 36 9c 33 91 27 e7 8d +acpidump [0x0f6 0246 128] Signature: 5c a1 d8 f9 a4 61 8a 1c +acpidump [0x0f6 0246 128] Signature: 04 07 e3 2a 1e 14 f1 bd +acpidump [0x0f6 0246 128] Signature: 7f 4c 09 ff 19 11 a9 d4 +acpidump [0x0f6 0246 128] Signature: 74 ca 11 9e dc 54 39 bf +acpidump +acpidump APIC @ bf6dff70 (104 bytes) (loaded from file) +acpidump ---- +acpidump Multiple APIC Description Table: +acpidump +acpidump [0x000 0000 4] Signature: APIC +acpidump [0x004 0004 4] Length: 0x00000068 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x13 +acpidump [0x00a 0010 6] OEM ID: PTLTD +acpidump [0x010 0016 8] OEM Table ID: APIC +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LTP +acpidump [0x020 0032 4] Creator Revision: 0x00000000 +acpidump [0x024 0036 4] Local APIC Address: 0xfee00000 +acpidump [0x028 0040 4] Flags: 0x00000001 +acpidump PCAT_COMPAT: 0x1 +acpidump APIC Structure #1: +acpidump [0x02c 0044 1] Type: 0x00 (Processor Local APIC) +acpidump [0x02d 0045 1] Length: 0x08 +acpidump [0x02e 0046 1] ACPI CPU ID: 0x00 +acpidump [0x02f 0047 1] APIC ID: 0x00 +acpidump [0x030 0048 4] Flags: 0x00000001 +acpidump Enabled: 0x1 +acpidump APIC Structure #2: +acpidump [0x034 0052 1] Type: 0x00 (Processor Local APIC) +acpidump [0x035 0053 1] Length: 0x08 +acpidump [0x036 0054 1] ACPI CPU ID: 0x01 +acpidump [0x037 0055 1] APIC ID: 0x01 +acpidump [0x038 0056 4] Flags: 0x00000001 +acpidump Enabled: 0x1 +acpidump APIC Structure #3: +acpidump [0x03c 0060 1] Type: 0x01 (I/O APIC) +acpidump [0x03d 0061 1] Length: 0x0c +acpidump [0x03e 0062 1] I/O APIC ID: 0x02 +acpidump [0x040 0064 4] I/O APIC Addr: 0xfec00000 +acpidump [0x044 0068 4] Global IRQ Base: 0x00000000 +acpidump APIC Structure #4: +acpidump [0x048 0072 1] Type: 0x04 (Local APIC NMI) +acpidump [0x049 0073 1] Length: 0x06 +acpidump [0x04a 0074 1] ACPI CPU ID: 0x00 +acpidump [0x04b 0075 2] Flags: 0x0005 +acpidump [0x04d 0077 1] Local APIC LINT: 0x01 +acpidump APIC Structure #5: +acpidump [0x04e 0078 1] Type: 0x04 (Local APIC NMI) +acpidump [0x04f 0079 1] Length: 0x06 +acpidump [0x050 0080 1] ACPI CPU ID: 0x01 +acpidump [0x051 0081 2] Flags: 0x0005 +acpidump [0x053 0083 1] Local APIC LINT: 0x01 +acpidump APIC Structure #6: +acpidump [0x054 0084 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x055 0085 1] Length: 0x0a +acpidump [0x056 0086 1] Bus: 0x00 +acpidump [0x057 0087 1] Source: 0x00 +acpidump [0x058 0088 4] Gbl Sys Int: 0x00000002 +acpidump [0x05c 0092 2] Flags: 0x0005 +acpidump Polarity: 0x1 +acpidump Trigger Mode: 0x1 +acpidump APIC Structure #7: +acpidump [0x05e 0094 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x05f 0095 1] Length: 0x0a +acpidump [0x060 0096 1] Bus: 0x00 +acpidump [0x061 0097 1] Source: 0x09 +acpidump [0x062 0098 4] Gbl Sys Int: 0x00000009 +acpidump [0x066 0102 2] Flags: 0x000d +acpidump Polarity: 0x1 +acpidump Trigger Mode: 0x3 +acpidump +acpidump SSDT @ bf6d98bd (685 bytes) (loaded from file) +acpidump ---- +acpidump Secondary System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x004 0004 4] Length: 0x000002ad +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x59 +acpidump [0x00a 0010 6] OEM ID: SataRe +acpidump [0x010 0016 8] OEM Table ID: SataAhci +acpidump [0x018 0024 4] OEM Revision: 0x00001000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump Contains 0x289 bytes of AML byte code +acpidump +acpidump SSDT @ bf6d981a (163 bytes) (loaded from file) +acpidump ---- +acpidump Secondary System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x004 0004 4] Length: 0x000000a3 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xed +acpidump [0x00a 0010 6] OEM ID: BrtRef +acpidump [0x010 0016 8] OEM Table ID: DD01BRT +acpidump [0x018 0024 4] OEM Revision: 0x00001000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump Contains 0x7f bytes of AML byte code +acpidump +acpidump SSDT @ bf6d8e10 (607 bytes) (loaded from file) +acpidump ---- +acpidump Secondary System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x004 0004 4] Length: 0x0000025f +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xc8 +acpidump [0x00a 0010 6] OEM ID: PmRef +acpidump [0x010 0016 8] OEM Table ID: Cpu0Tst +acpidump [0x018 0024 4] OEM Revision: 0x00003000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump Contains 0x23b bytes of AML byte code +acpidump +acpidump SSDT @ bf6d8d6a (166 bytes) (loaded from file) +acpidump ---- +acpidump Secondary System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x004 0004 4] Length: 0x000000a6 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x6d +acpidump [0x00a 0010 6] OEM ID: PmRef +acpidump [0x010 0016 8] OEM Table ID: Cpu1Tst +acpidump [0x018 0024 4] OEM Revision: 0x00003000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump Contains 0x82 bytes of AML byte code +acpidump +acpidump SSDT @ bf6d8884 (1254 bytes) (loaded from file) +acpidump ---- +acpidump Secondary System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x004 0004 4] Length: 0x000004e6 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xdf +acpidump [0x00a 0010 6] OEM ID: PmRef +acpidump [0x010 0016 8] OEM Table ID: CpuPm +acpidump [0x018 0024 4] OEM Revision: 0x00003000 +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump Contains 0x4c2 bytes of AML byte code +acpidump +acpidump XSDT @ bf6d87f0 (148 bytes) (loaded from file) +acpidump ---- +acpidump Extended System Description Table: +acpidump +acpidump [0x000 0000 4] Signature: XSDT +acpidump [0x004 0004 4] Length: 0x00000094 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0xc2 +acpidump [0x00a 0010 6] OEM ID: LENOVO +acpidump [0x010 0016 8] OEM Table ID: TP-68 +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LTP +acpidump [0x020 0032 4] Creator Revision: 0x00000000 +acpidump [0x024 0036 8] Entry 00 FACP: 0x00000000bf6dfbd2 +acpidump [0x02c 0044 8] Entry 01 APIC: 0x00000000bf6dfcc6 +acpidump [0x034 0052 8] Entry 02 HPET: 0x00000000bf6dfd2e +acpidump [0x03c 0060 8] Entry 03 MCFG: 0x00000000bf6dfd66 +acpidump [0x044 0068 8] Entry 04 TCPA: 0x00000000bf6dfda2 +acpidump [0x04c 0076 8] Entry 05 TMOR: 0x00000000bf6dfdd4 +acpidump [0x054 0084 8] Entry 06 SLIC: 0x00000000bf6dfdfa +acpidump [0x05c 0092 8] Entry 07 APIC: 0x00000000bf6dff70 +acpidump [0x064 0100 8] Entry 08 BOOT: 0x00000000bf6dffd8 +acpidump [0x06c 0108 8] Entry 09 SSDT: 0x00000000bf6d98bd +acpidump [0x074 0116 8] Entry 10 SSDT: 0x00000000bf6d981a +acpidump [0x07c 0124 8] Entry 11 SSDT: 0x00000000bf6d8e10 +acpidump [0x084 0132 8] Entry 12 SSDT: 0x00000000bf6d8d6a +acpidump [0x08c 0140 8] Entry 13 SSDT: 0x00000000bf6d8884 +acpidump +acpidump FACP @ bf6dfbd2 (244 bytes) (loaded from file) +acpidump ---- +acpidump Fixed ACPI Description Table: +acpidump +acpidump [0x000 0000 4] Signature: FACP +acpidump [0x004 0004 4] Length: 0x000000f4 +acpidump [0x008 0008 1] Revision: 0x03 +acpidump [0x009 0009 1] Checksum: 0x52 +acpidump [0x00a 0010 6] OEM ID: TOSCPL +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: ALAN +acpidump [0x020 0032 4] Creator Revision: 0x00000001 +acpidump [0x024 0036 4] FACS Address: 0xbf6e2fc0 +acpidump [0x028 0040 4] DSDT Address: 0xbf6d9b6a +acpidump [0x02c 0044 1] Model: 0x00 +acpidump [0x02d 0045 1] PM Profile: 0x02 (Mobile) +acpidump [0x02e 0046 2] SCI Interrupt: 0x0009 +acpidump [0x030 0048 4] SMI Command Port: 0x000000b2 +acpidump [0x034 0052 1] ACPI Enable Value: 0xf0 +acpidump [0x035 0053 1] ACPI Disable Value: 0xf1 +acpidump [0x036 0054 1] S4BIOS Command: 0x00 +acpidump [0x037 0055 1] P-State Control: 0x80 +acpidump [0x038 0056 4] PM1A Event Block: 0x00001000 +acpidump [0x03c 0060 4] PM1B Event Block: 0x00000000 +acpidump [0x040 0064 4] PM1A Control Block: 0x00001004 +acpidump [0x044 0068 4] PM1B Control Block: 0x00000000 +acpidump [0x048 0072 4] PM2 Control Block: 0x00001020 +acpidump [0x04c 0076 4] PM Timer Block: 0x00001008 +acpidump [0x050 0080 4] GPE0 Block: 0x00001028 +acpidump [0x054 0084 4] GPE1 Block: 0x00000000 +acpidump [0x058 0088 1] PM1 Event Block Length: 0x04 +acpidump [0x059 0089 1] PM1 Control Block Length: 0x02 +acpidump [0x05a 0090 1] PM2 Control Block Length: 0x01 +acpidump [0x05b 0091 1] PM Timer Block Length: 0x04 +acpidump [0x05c 0092 1] GPE0 Block Length: 0x08 +acpidump [0x05d 0093 1] GPE1 Block Length: 0x00 +acpidump [0x05f 0095 1] _CST Support: 0x85 +acpidump [0x060 0096 2] C2 Latency: 0x0001 +acpidump [0x062 0098 2] C3 Latency: 0x0023 +acpidump [0x064 0100 2] CPU Cache Size: 0x0000 +acpidump [0x066 0102 2] CPU Cache Flush Stride: 0x0000 +acpidump [0x068 0104 1] Duty Cycle Offset: 0x01 +acpidump [0x069 0105 1] Duty Cycle Width: 0x03 +acpidump [0x06a 0106 1] RTC Day Alarm Index: 0x0d +acpidump [0x06b 0107 1] RTC Month Alarm Index: 0x00 +acpidump [0x06c 0108 1] RTC Century Index: 0x32 +acpidump [0x06d 0109 2] IA-PC Boot Flags (see below): 0x0000 +acpidump Legacy Devices Supported (V2): 0x0 +acpidump 8042 present on ports 60/64 (V2): 0x0 +acpidump VGA Not Present (V4): 0x0 +acpidump MSI Not Supported (V4): 0x0 +acpidump PCIe ASPM Not supported (V4): 0x0 +acpidump CMOS RTC Not Present (V5): 0x0 +acpidump [0x070 0112 4] Flags (see below): 0x000000a5 +acpidump WBINVD instruction (V1): 0x1 +acpidump WBINVD flushes all caches (V1): 0x0 +acpidump All CPUs support C1 (V1): 0x1 +acpidump C2 works on MP system (V1): 0x0 +acpidump Control Method Power Button (V1): 0x0 +acpidump Control Method Sleep Button (V1): 0x1 +acpidump RTC wake not in fixed reg space (V1): 0x0 +acpidump RTC can wake system from S4 (V1): 0x1 +acpidump 32 bit PM timer (V1): 0x0 +acpidump Docking Capability (V1): 0x0 +acpidump Reset Register Supported (V2): 0x0 +acpidump Sealed Case (V3): 0x0 +acpidump Headless, No Video (V3): 0x0 +acpidump Use native instr. after SLP_TYPx (V3): 0x0 +acpidump PCI_EXP_WAK bits supported (V4): 0x0 +acpidump Use patform clock (V4): 0x0 +acpidump RTC_STS Valid after S4 wake (V4): 0x0 +acpidump Remote power on capable (V4): 0x0 +acpidump Use APIC Cluster Model (V4): 0x0 +acpidump Use APIC Physical Dest. Mode (V4): 0x0 +acpidump ACPI hardware is not implemented (V5): 0x0 +acpidump S0 power savings are equal or better than S3 (V5): 0x0 +acpidump RESERVED: 0x000 +acpidump +acpidump [0x074 0116 12] RESET_REG: (Generic Address Structure) +acpidump [0x074 0116 1] addr_space_id: 0x00 (System Memory) +acpidump [0x075 0117 1] reg_bit_width: 0x00 +acpidump [0x076 0118 1] reg_bit_offset: 0x00 +acpidump [0x077 0119 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x078 0120 8] address: 0x0000000000000000 +acpidump [0x080 0128 1] RESET_VALUE: 0x00 +acpidump [0x084 0132 8] X_FIRMWARE_CTRL: 0x00000000bf6e2fc0 +acpidump [0x08c 0140 8] X_DSDT: 0x00000000bf6d9b6a +acpidump +acpidump [0x094 0148 12] X_PM1a_EVT_BLK: (Generic Address Structure) +acpidump [0x094 0148 1] addr_space_id: 0x01 (System I/O) +acpidump [0x095 0149 1] reg_bit_width: 0x20 +acpidump [0x096 0150 1] reg_bit_offset: 0x00 +acpidump [0x097 0151 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x098 0152 8] address: 0x0000000000001000 +acpidump +acpidump [0x0a0 0160 12] X_PM1b_EVT_BLK: (Generic Address Structure) +acpidump [0x0a0 0160 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0a1 0161 1] reg_bit_width: 0x00 +acpidump [0x0a2 0162 1] reg_bit_offset: 0x00 +acpidump [0x0a3 0163 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0a4 0164 8] address: 0x0000000000000000 +acpidump +acpidump [0x0ac 0172 12] X_PM1a_CNT_BLK: (Generic Address Structure) +acpidump [0x0ac 0172 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0ad 0173 1] reg_bit_width: 0x10 +acpidump [0x0ae 0174 1] reg_bit_offset: 0x00 +acpidump [0x0af 0175 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0b0 0176 8] address: 0x0000000000001004 +acpidump +acpidump [0x0b8 0184 12] X_PM1b_CNT_BLK: (Generic Address Structure) +acpidump [0x0b8 0184 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0b9 0185 1] reg_bit_width: 0x00 +acpidump [0x0ba 0186 1] reg_bit_offset: 0x00 +acpidump [0x0bb 0187 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0bc 0188 8] address: 0x0000000000000000 +acpidump +acpidump [0x0c4 0196 12] X_PM2_CNT_BLK: (Generic Address Structure) +acpidump [0x0c4 0196 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0c5 0197 1] reg_bit_width: 0x08 +acpidump [0x0c6 0198 1] reg_bit_offset: 0x00 +acpidump [0x0c7 0199 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0c8 0200 8] address: 0x0000000000001020 +acpidump +acpidump [0x0d0 0208 12] X_PM_TMR_BLK: (Generic Address Structure) +acpidump [0x0d0 0208 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0d1 0209 1] reg_bit_width: 0x20 +acpidump [0x0d2 0210 1] reg_bit_offset: 0x00 +acpidump [0x0d3 0211 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0d4 0212 8] address: 0x0000000000001008 +acpidump +acpidump [0x0dc 0220 12] X_GPE0_BLK: (Generic Address Structure) +acpidump [0x0dc 0220 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0dd 0221 1] reg_bit_width: 0x40 +acpidump [0x0de 0222 1] reg_bit_offset: 0x00 +acpidump [0x0df 0223 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0e0 0224 8] address: 0x0000000000001028 +acpidump +acpidump [0x0e8 0232 12] X_GPE1_BLK: (Generic Address Structure) +acpidump [0x0e8 0232 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0e9 0233 1] reg_bit_width: 0x00 +acpidump [0x0ea 0234 1] reg_bit_offset: 0x00 +acpidump [0x0eb 0235 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0ec 0236 8] address: 0x0000000000000000 +acpidump +acpidump TCPA @ bf6dfda2 (50 bytes) (loaded from file) +acpidump ---- +acpidump Trusted Computing Platform Alliance Capabilities Table: +acpidump +acpidump [0x000 0000 4] Signature: TCPA +acpidump [0x004 0004 4] Length: 0x00000032 +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x009 0009 1] Checksum: 0x8f +acpidump [0x00a 0010 6] OEM ID: Intel +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x056 0086 2] Reserved: 0x0000 +acpidump [0x058 0088 4] Log Zone Length: 0x00010000 +acpidump [0x05c 0092 8] Log Zone Address: 0x0000000000000000 +acpidump +acpidump diff -Nru fwts-14.02.00/fwts-test/acpidump-0001/acpidump.log fwts-14.03.00/fwts-test/acpidump-0001/acpidump.log --- fwts-14.02.00/fwts-test/acpidump-0001/acpidump.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpidump-0001/acpidump.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1861 @@ +RSDP @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + +RSDT @ 0xbf6d8794 + 0000: 52 53 44 54 58 00 00 00 01 43 4c 45 4e 4f 56 4f RSDTX....CLENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 5e fb 6d bf c6 fc 6d bf 2e fd 6d bf ....^.m...m...m. + 0030: 66 fd 6d bf d8 ff 6d bf d4 fd 6d bf fa fd 6d bf f.m...m...m...m. + 0040: 70 ff 6d bf bd 98 6d bf 1a 98 6d bf 10 8e 6d bf p.m...m...m...m. + 0050: 6a 8d 6d bf 84 88 6d bf j.m...m. + +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +FACP @ 0xbf6dfbd2 + 0000: 46 41 43 50 f4 00 00 00 03 52 54 4f 53 43 50 4c FACP.....RTOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 41 4c 41 4e CRESTLNE....ALAN + 0020: 01 00 00 00 c0 2f 6e bf 6a 9b 6d bf 00 02 09 00 ...../n.j.m..... + 0030: b2 00 00 00 f0 f1 00 80 00 10 00 00 00 00 00 00 ................ + 0040: 04 10 00 00 00 00 00 00 20 10 00 00 08 10 00 00 ........ ....... + 0050: 28 10 00 00 00 00 00 00 04 02 01 04 08 00 00 85 (............... + 0060: 01 00 23 00 00 00 00 00 01 03 0d 00 32 00 00 00 ..#.........2... + 0070: a5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 00 c0 2f 6e bf 00 00 00 00 6a 9b 6d bf ...../n.....j.m. + 0090: 00 00 00 00 01 20 00 00 00 10 00 00 00 00 00 00 ..... .......... + 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00 ................ + 00b0: 04 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00c0: 00 00 00 00 01 08 00 00 20 10 00 00 00 00 00 00 ........ ....... + 00d0: 01 20 00 00 08 10 00 00 00 00 00 00 01 40 00 00 . ...........@.. + 00e0: 28 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (............... + 00f0: 00 00 00 00 .... + +TCPA @ 0xbf6dfda2 + 0000: 54 43 50 41 32 00 00 00 01 8f 49 6e 74 65 6c 20 TCPA2.....Intel + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 Z............... + 0030: 00 00 .. + diff -Nru fwts-14.02.00/fwts-test/acpidump-0001/test-0001.sh fwts-14.03.00/fwts-test/acpidump-0001/test-0001.sh --- fwts-14.02.00/fwts-test/acpidump-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpidump-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test acpidump against known ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/acpidump.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpidump-0001/acpidump.log acpidump - | grep "^[0-9]*[ ]*acpidump" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpidump-0001/acpidump-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0001/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0001/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0001/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0001/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0001/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables PASSED: Test 1, Table APIC passed. +acpitables Table ECDT not present to check. +acpitables PASSED: Test 1, Table FACP passed. +acpitables PASSED: Test 1, Table HPET passed. +acpitables PASSED: Test 1, Table MCFG passed. +acpitables PASSED: Test 1, Table RSDT passed. +acpitables PASSED: Test 1, Table RSDP passed. +acpitables Table SBST not present to check. +acpitables PASSED: Test 1, Table XSDT passed. +acpitables +acpitables ========================================================== +acpitables 7 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0001/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0001/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against known correct ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0001/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0001/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0002/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0002/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,22 @@ +APIC @ 0xbf6dfcc6 + 0000: 41 50 49 43 68 00 00 00 01 cc 49 4e 54 45 4c 20 APICh.....INTEL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 Z............... + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 01 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 02 0a 00 00 02 00 00 00 ................ + 0050: 00 00 02 0a 00 09 09 00 00 00 0d 00 04 06 00 05 ................ + 0060: 00 01 04 06 01 05 00 01 ........ + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/acpidump-0002.log fwts-14.03.00/fwts-test/acpitables-0002/acpidump-0002.log --- fwts-14.02.00/fwts-test/acpitables-0002/acpidump-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/acpidump-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,13 @@ +APIC @ 0xbf6dfcc6 + 0000: 41 50 49 43 68 00 00 00 01 cc 49 4e 54 45 4c 20 APICh.....INTEL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 Z............... + 0030: 0f 00 00 00 00 08 01 01 0d 00 00 00 01 0c 03 00 ................ + 0040: 00 00 00 00 00 00 00 00 02 0a 0f 02 02 00 00 00 ................ + 0050: ee 00 02 0a 0e 09 09 00 00 00 fd 00 04 06 00 ff ................ + 0060: 00 01 04 06 01 10 00 01 ........ + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0002/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0002/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables PASSED: Test 1, Table APIC passed. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables Table RSDT not present to check. +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables Table XSDT not present to check. +acpitables +acpitables ========================================================== +acpitables 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/acpitables-0002.log fwts-14.03.00/fwts-test/acpitables-0002/acpitables-0002.log --- fwts-14.02.00/fwts-test/acpitables-0002/acpitables-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/acpitables-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,40 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables FAILED [MEDIUM] MADTAPICFlagsNonZero: Test 1, MADT Local +acpitables APIC flags field, bits 1..31 are reserved and should be +acpitables zero, but are set as: f. +acpitables FAILED [MEDIUM] MADTAPICFlagsNonZero: Test 1, MADT Local +acpitables APIC flags field, bits 1..31 are reserved and should be +acpitables zero, but are set as: d. +acpitables FAILED [MEDIUM] MADTIOAPICAddrZero: Test 1, MADT IO APIC +acpitables address is zero, appears not to be defined. +acpitables FAILED [MEDIUM] MADTIRQSrcISA: Test 1, MADT Interrupt +acpitables Source Override Bus should be 0 for ISA bus. +acpitables FAILED [MEDIUM] MADTIRQSrcFlags: Test 1, MADT Interrupt +acpitables Source Override flags, bits 4..31 are reserved and should +acpitables be zero, but are set as: ee. +acpitables FAILED [MEDIUM] MADTIRQSrcISA: Test 1, MADT Interrupt +acpitables Source Override Bus should be 0 for ISA bus. +acpitables FAILED [MEDIUM] MADTIRQSrcFlags: Test 1, MADT Interrupt +acpitables Source Override flags, bits 4..31 are reserved and should +acpitables be zero, but are set as: fd. +acpitables FAILED [MEDIUM] MADTLAPICNMIFlags: Test 1, MADT Local APIC +acpitables NMI flags, bits 4..31 are reserved and should be zero, but +acpitables are set as: ff. +acpitables FAILED [MEDIUM] MADTLAPICNMIFlags: Test 1, MADT Local APIC +acpitables NMI flags, bits 4..31 are reserved and should be zero, but +acpitables are set as: 10. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables PASSED: Test 1, Table RSDT passed. +acpitables PASSED: Test 1, Table RSDP passed. +acpitables Table SBST not present to check. +acpitables PASSED: Test 1, Table XSDT passed. +acpitables +acpitables ========================================================== +acpitables 3 passed, 9 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0002/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0002/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against known correct ACPI APIC tables" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0002/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0002/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0002/test-0002.sh fwts-14.03.00/fwts-test/acpitables-0002/test-0002.sh --- fwts-14.02.00/fwts-test/acpitables-0002/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0002/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against incorrect ACPI APIC tables" +NAME=test-0002.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0002/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables"| cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0002/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0003/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0003/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0003/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0003/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +FACP @ 0xbf6dfbd2 + 0000: 46 41 43 50 f4 00 00 00 03 52 54 4f 53 43 50 4c FACP.....RTOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 41 4c 41 4e CRESTLNE....ALAN + 0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 ...../n.j.m..... + 0030: 00 00 00 00 f0 f1 00 80 00 10 00 00 00 00 00 00 ................ + 0040: 04 10 00 00 00 00 00 00 20 10 00 00 08 10 00 00 ........ ....... + 0050: 28 10 00 00 00 00 00 00 04 02 01 03 09 0f 00 85 (............... + 0060: 01 00 23 00 00 00 00 00 01 03 0d 00 32 00 00 00 ..#.........2... + 0070: a5 00 00 00 03 00 00 00 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 00 00 00 00 00 00 00 00 00 6a 9b 6d bf ...../n.....j.m. + 0090: 00 00 00 00 01 20 00 00 00 10 00 00 00 00 00 00 ..... .......... + 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00 ................ + 00b0: 04 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00c0: 00 00 00 00 01 08 00 00 20 10 00 00 00 00 00 00 ........ ....... + 00d0: 01 20 00 00 08 10 00 00 00 00 00 00 01 40 00 00 . ...........@.. + 00e0: 28 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (............... + 00f0: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0003/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0003/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0003/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0003/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,80 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables No FACS found, fwts has faked one instead. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables FAILED [MEDIUM] FADTDSTNull: Test 1, FADT DSDT address is +acpitables null. +acpitables FAILED [MEDIUM] FADT32And64Mismatch: Test 1, FADT 32 bit +acpitables DSDT (0x0) does not point to same physical address as 64 +acpitables bit X_DSDT (0xbf6d9b6a). +acpitables +acpitables ADVICE: One would expect the 32 bit DSDT and 64 bit X_DSDT +acpitables pointers to point to the same DSDT, however they don't +acpitables which is clearly ambiguous and wrong. The kernel works +acpitables around this by using the 64 bit X_DSDT pointer to the +acpitables DSDT. +acpitables +acpitables FAILED [MEDIUM] FADTSCIIRQZero: Test 1, FADT SCI Interrupt +acpitables is 0x00, should be defined. +acpitables FAILED [MEDIUM] FADTSMICMDZero: Test 1, FADT SMI_CMD is +acpitables 0x00, however, one or more of ACPI_ENABLE, ACPI_DISABLE, +acpitables S4BIOS_REQ, PSTATE_CNT and CST_CNT are defined which means +acpitables SMI_CMD should be defined otherwise SMI commands cannot be +acpitables sent. +acpitables +acpitables ADVICE: The configuration seems to suggest that SMI +acpitables command should be defined to allow the kernel to trigger +acpitables system management interrupts via the SMD_CMD port. The +acpitables fact that SMD_CMD is zero which is invalid means that SMIs +acpitables are not possible through the normal ACPI mechanisms. This +acpitables means some firmware based machine specific functions will +acpitables not work. +acpitables +acpitables FAILED [MEDIUM] FADTBadPMTMRLEN: Test 1, FADT PM_TMR_LEN +acpitables is 3, should be 4. +acpitables +acpitables ADVICE: FADT field PM_TMR_LEN defines the number of bytes +acpitables decoded by PM_TMR_BLK. This fields value must be 4. If it +acpitables is not the correct size then the kernel will not request a +acpitables region for the pm timer block. +acpitables +acpitables FAILED [MEDIUM] FADTBadGPEBLKLEN: Test 1, FADT +acpitables GPE0_BLK_LEN is 9, should a multiple of 2. +acpitables +acpitables ADVICE: The FADT GPE_BLK_LEN should be a multiple of 2. +acpitables Because it isn't, the ACPI driver will not map in the GPE0 +acpitables region. This could mean that General Purpose Events will +acpitables not function correctly (for example lid or ac-power +acpitables events). +acpitables +acpitables FAILED [MEDIUM] FADTBadGPE1BLKLEN: Test 1, FADT +acpitables GPE1_BLK_LEN is 15, should a multiple of 2. +acpitables +acpitables ADVICE: The FADT GPE_BLK_LEN should be a multiple of 2. +acpitables Because it isn't, the ACPI driver will not map in the GPE1 +acpitables region. This could mean that General Purpose Events will +acpitables not function correctly (for example lid or ac-power +acpitables events). +acpitables +acpitables FAILED [MEDIUM] FADTBadRESETREG: Test 1, FADT RESET_REG +acpitables address space ID was 3, must be System Memory space (0), +acpitables System I/O space (1), or PCI configuration space (2). +acpitables +acpitables ADVICE: If the FADT RESET_REG address space ID is not set +acpitables correctly then ACPI writes to this register *may* nor work +acpitables correctly, meaning a reboot via this mechanism may not +acpitables work. +acpitables +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables PASSED: Test 1, Table RSDT passed. +acpitables PASSED: Test 1, Table RSDP passed. +acpitables Table SBST not present to check. +acpitables PASSED: Test 1, Table XSDT passed. +acpitables +acpitables ========================================================== +acpitables 3 passed, 8 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0003/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0003/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0003/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0003/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI FADT" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0003/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0003/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0004/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0004/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0004/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0004/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,11 @@ +HPET @ 0xbf6dfd2e + 0000: 48 50 45 54 38 00 00 00 01 0a 49 4e 54 45 4c 20 HPET8.....INTEL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 01 a2 00 00 00 00 00 00 00 00 00 00 Z............... + 0030: 00 00 00 00 00 80 00 00 ........ + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0004/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0004/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0004/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0004/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,30 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables FAILED [MEDIUM] HPETBaseZero: Test 1, HPET base is +acpitables 0x000000000000, which is invalid. +acpitables FAILED [MEDIUM] HPETVendorIdZero: Test 1, HPET PCI Vendor +acpitables ID is 0x0000, which is invalid. +acpitables +acpitables ADVICE: The HPET specification (http://www.intel.com +acpitables /hardwaredesign/hpetspec_1.pdf) describes the HPET table +acpitables in section 3.2.4 'The ACPI 2.0 HPET Description Table +acpitables (HPET)'. The top 16 bits of the Event Timer Block ID +acpitables specify the Vendor ID and this should not be zero. This +acpitables won't affect the kernel behaviour, but should be fixed as +acpitables it is an undefined ID value. +acpitables +acpitables Table MCFG not present to check. +acpitables Table RSDT not present to check. +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables Table XSDT not present to check. +acpitables +acpitables ========================================================== +acpitables 0 passed, 2 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0004/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0004/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0004/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0004/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI HPET table" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0004/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0004/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0005/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0005/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0005/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0005/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,11 @@ +MCFG @ 0xbf6dfd66 + 0000: 4d 43 46 47 3c 00 00 00 01 32 49 4e 54 45 4c 20 MCFG<....2INTEL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e0 Z............... + 0030: 00 00 00 00 00 00 00 ff 00 00 00 00 ............ + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0005/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0005/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0005/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0005/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables PASSED: Test 1, Table MCFG passed. +acpitables Table RSDT not present to check. +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables Table XSDT not present to check. +acpitables +acpitables ========================================================== +acpitables 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0005/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0005/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0005/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0005/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI MCFG table" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0005/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0005/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0006/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0006/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0006/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0006/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,14 @@ +RSDT @ 0xbf6d87f0 + 0000: 52 53 44 54 70 00 00 00 01 07 4c 45 4e 4f 56 4f RSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 00 00 00 bf 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0006/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0006/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0006/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0006/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,161 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 1 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 2 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 3 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 4 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 5 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 6 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 7 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 8 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 9 is null, +acpitables should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 10 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 11 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 12 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 13 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 14 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 15 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 16 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 17 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [HIGH] RSDTEntryNull: Test 1, RSDT Entry 18 is null +acpitables , should not be non-zero. +acpitables +acpitables ADVICE: A RSDT pointer is null and therefore erroneously +acpitables points to an invalid 32 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables Table XSDT not present to check. +acpitables +acpitables ========================================================== +acpitables 0 passed, 18 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0006/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0006/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0006/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0006/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI RSDT table" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0006/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0006/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0007/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0007/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0007/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0007/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 9c 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0007/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0007/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0007/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0007/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,129 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables Table RSDT not present to check. +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 0 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 1 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 2 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 3 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 4 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 5 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 6 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 7 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 8 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 9 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 10 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 11 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 12 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables FAILED [MEDIUM] XSDTEntryNull: Test 1, XSDT Entry 13 is +acpitables null, should not be non-zero. +acpitables +acpitables ADVICE: A XSDT pointer is null and therefore erroneously +acpitables points to an invalid 64 bit ACPI table header. At worse +acpitables this will cause the kernel to oops, at best the kernel may +acpitables ignore this. However, it should be fixed where possible. +acpitables +acpitables +acpitables ========================================================== +acpitables 0 passed, 14 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0007/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0007/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0007/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0007/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI XSDT table" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0007/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0007/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/acpitables-0008/acpidump-0001.log fwts-14.03.00/fwts-test/acpitables-0008/acpidump-0001.log --- fwts-14.02.00/fwts-test/acpitables-0008/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0008/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,5 @@ +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 20 20 20 20 20 20 03 RSD PTR . + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/acpitables-0008/acpitables-0001.log fwts-14.03.00/fwts-test/acpitables-0008/acpitables-0001.log --- fwts-14.02.00/fwts-test/acpitables-0008/acpitables-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0008/acpitables-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +acpitables acpitables: ACPI table settings sanity tests. +acpitables ---------------------------------------------------------- +acpitables Test 1 of 1: Test ACPI tables. +acpitables Cannot find FACP. +acpitables Table APIC not present to check. +acpitables Table ECDT not present to check. +acpitables Table FACP not present to check. +acpitables Table HPET not present to check. +acpitables Table MCFG not present to check. +acpitables Table RSDT not present to check. +acpitables Table RSDP not present to check. +acpitables Table SBST not present to check. +acpitables Table XSDT not present to check. +acpitables +acpitables ========================================================== +acpitables 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +acpitables info only. +acpitables ========================================================== diff -Nru fwts-14.02.00/fwts-test/acpitables-0008/test-0001.sh fwts-14.03.00/fwts-test/acpitables-0008/test-0001.sh --- fwts-14.02.00/fwts-test/acpitables-0008/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/acpitables-0008/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test apcitables against broken ACPI RSDP" +NAME=test-0001.sh +TMPLOG=$TMP/acpitables.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/acpitables-0008/acpidump-0001.log acpitables - | grep "^[0-9]*[ ]*acpitables" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/acpitables-0008/acpitables-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/acpidump-0001.log fwts-14.03.00/fwts-test/apicinstance-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/apicinstance-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/acpidump-0002.log fwts-14.03.00/fwts-test/apicinstance-0001/acpidump-0002.log --- fwts-14.02.00/fwts-test/apicinstance-0001/acpidump-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/acpidump-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1834 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/apicinstance-0001.log fwts-14.03.00/fwts-test/apicinstance-0001/apicinstance-0001.log --- fwts-14.02.00/fwts-test/apicinstance-0001/apicinstance-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/apicinstance-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,15 @@ +apicinstance apicinstance: Test for single instance of APIC/MADT table. +apicinstance ---------------------------------------------------------- +apicinstance Test 1 of 1: Test for single instance of APIC/MADT table. +apicinstance Found APIC/MADT table APIC @ bf6dfcc6, length 0x104 +apicinstance Found APIC/MADT table APIC @ bf6dff70, length 0x104 +apicinstance (and differs from first APIC/MADT table). +apicinstance FAILED [HIGH] MultipleAPICMADT: Test 1, Found 2 APIC/MADT +apicinstance tables, the kernel expects just one. +apicinstance If you find any APIC issues, perhaps try using +apicinstance acpi_apic_instance=2. +apicinstance +apicinstance ========================================================== +apicinstance 0 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 +apicinstance info only. +apicinstance ========================================================== diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/apicinstance-0002.log fwts-14.03.00/fwts-test/apicinstance-0001/apicinstance-0002.log --- fwts-14.02.00/fwts-test/apicinstance-0001/apicinstance-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/apicinstance-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,10 @@ +apicinstance apicinstance: Test for single instance of APIC/MADT table. +apicinstance ---------------------------------------------------------- +apicinstance Test 1 of 1: Test for single instance of APIC/MADT table. +apicinstance Found APIC/MADT table APIC @ bf6dfcc6, length 0x104 +apicinstance PASSED: Test 1, Found 1 APIC/MADT table(s), as expected. +apicinstance +apicinstance ========================================================== +apicinstance 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +apicinstance info only. +apicinstance ========================================================== diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/test-0001.sh fwts-14.03.00/fwts-test/apicinstance-0001/test-0001.sh --- fwts-14.02.00/fwts-test/apicinstance-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test apicinstance against known incorrect ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/apicinstance.log.$$ + +$FWTS --show-tests | grep apicinstance > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/apicinstance-0001/acpidump-0001.log apicinstance - | grep "^[0-9]*[ ]*apicinstance" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/apicinstance-0001/apicinstance-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/apicinstance-0001/test-0002.sh fwts-14.03.00/fwts-test/apicinstance-0001/test-0002.sh --- fwts-14.02.00/fwts-test/apicinstance-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/apicinstance-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test apicinstance against known correct ACPI tables" +NAME=test-0002.sh +TMPLOG=$TMP/apicinstance.log.$$ + +$FWTS --show-tests | grep apicinstance > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/apicinstance-0001/acpidump-0002.log apicinstance - | grep "^[0-9]*[ ]*apicinstance" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/apicinstance-0001/apicinstance-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-help-0001/arg-help-0001.log fwts-14.03.00/fwts-test/arg-help-0001/arg-help-0001.log --- fwts-14.02.00/fwts-test/arg-help-0001/arg-help-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-help-0001/arg-help-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,214 @@ +--acpica Enable ACPICA run + time options. +--acpica-debug Enable ACPICA debug + /warning messages. +-a, --all Run all tests. +-b, --batch Run non-Interactive + tests. +--batch-experimental Run Batch + Experimental tests. +--disassemble-aml Disassemble AML from + DSDT and SSDT tables. +-d, --dump Dump out dmesg, + dmidecode, lspci, + ACPI tables to logs. +--dumpfile Load ACPI tables + using file generated + by acpidump, e.g. + --dumpfile=acpidump.dat +--filter-error-discard Discard errors that + match any of the + specified labels. +--filter-error-keep Keep errors that + match any of the + specified labels. +-f, --force-clean Force a clean results + log file. +-h, -?, --help Print this help. +-i, --interactive Just run Interactive + tests. +--interactive-experimental Just run Interactive + Experimental tests. +-j, --json-data-path Specify path to fwts + json data files - + default is /usr/share + /fwts. +-k, --klog Specify kernel log + file rather than + reading it from the + kernel, e.g. + --klog=dmesg.log +--log-fields Show available log + filtering fields. +--log-filter Define filters to + dump out specific log + fields: + --log-filter=RES,SUM + - dump out results + and summary, + --log-filter=ALL,~INF + - dump out all fields + except info fields. +--log-format Define output log + format: e.g. + --log-format="%date + %time [%field] + (%owner): ". Fields + are: %time - time, + %field - filter field + , %owner - name of + test, %level - + failure error level, + %line - log line + number. +--log-type Specify log type + (plaintext, json, + html or xml). +-w, --log-width Define the output log + width in characters. +--lspci Specify path to lspci + , e.g. --lspci=path. +-P, --power-states Test S3, S4 power + states. +-q, --quiet Run quietly. +--results-no-separators No horizontal + separators in results + log. +-r, --results-output Output results to a + named file. Filename + can also be stout or + stderr, e.g. + --results-output=myresults.log + , -r stdout. +-R, --rsdp Specify the physical + address of the ACPI + RSDP. +--s3-delay-delta Time to be added to + delay between S3 + iterations. Used in + conjunction with + --s3-min-delay and + --s3-max-delay, e.g. + --s3-delay-delta=2.5 +--s3-device-check Check differences + between device + configurations over a + S3 cycle. Note we add + a default of 15 + seconds to allow wifi + to re-associate. + Cannot be used with + --s3-min-delay, + --s3-max-delay and + --s3-delay-delta. +--s3-device-check-delay Sleep N seconds + before we run a + device check after + waking up from + suspend. Default is + 15 seconds, e.g. + --s3-device-check-delay=20 +--s3-max-delay Maximum time between + S3 iterations, e.g. + --s3-max-delay=20 +--s3-min-delay Minimum time between + S3 iterations, e.g. + --s3-min-delay=10 +--s3-multiple Run S3 tests multiple + times, e.g. + --s3-multiple=10. +--s3-quirks Comma separated list + of quirk arguments to + pass to pm-suspend. +--s3-resume-time Maximum expected + resume time in + seconds, e.g. + --s3-resume-time=5.1 +--s3-sleep-delay Sleep N seconds + between start of + suspend and wakeup, + e.g. + --s3-sleep-delay=60 +--s3-suspend-time Maximum expected + suspend time in + seconds, e.g. + --s3-suspend-time=3.5 +--s3power-sleep-delay Sleep N seconds + between start of + suspend and wakeup, + e.g. + --s3power-sleep-delay=60 +--s4-delay-delta Time to be added to + delay between S4 + iterations. Used in + conjunction with + --s4-min-delay and + --s4-max-delay. +--s4-device-check Check differences + between device + configurations over a + S4 cycle. Note we add + a default of 15 + seconds to allow wifi + to re-associate. + Cannot be used with + --s4-min-delay, + --s4-max-delay and + --s4-delay-delta. +--s4-device-check-delay Sleep N seconds + before we run a + device check after + waking up from + hibernate. Default is + 15 seconds. +--s4-max-delay Maximum time between + S4 iterations. +--s4-min-delay Minimum time between + S4 iterations. +--s4-multiple Run S4 tests multiple + times, e.g. + --s4-multiple=10. +--s4-quirks Comma separated list + of quirk arguments to + pass to pm-hibernate. +--s4-sleep-delay Sleep N seconds + between start of + hibernate and wakeup. +-p, --show-progress Output test progress + report to stderr. +-D, --show-progress-dialog Output test progress + for use in dialog + tool. +-s, --show-tests Show available tests. +--show-tests-full Show available tests + including all minor + tests. +-S, --skip-test Skip listed tests, + e.g. --skip-test=s3 + ,nx,method +--stdout-summary Output SUCCESS or + FAILED to stdout at + end of tests. +-t, --table-path Path to ACPI tables + dumped by acpidump + and then acpixtract, + e.g. --table-path= + /some/path/to/acpidumps +--uefi Run UEFI tests. +--uefi-get-var-multiple Run uefirtvariable + get variable test + multiple times. +--uefi-query-var-multiple Run uefirtvariable + query variable test + multiple times. +--uefi-set-var-multiple Run uefirtvariable + set variable test + multiple times. +-U, --unsafe Unsafe tests (tests + that can potentially + cause kernel oopses). +-u, --utils Run Utility 'tests'. + (V14.02.00). + +Some of this work - Copyright (c) 1999 - 2014, Intel Corp. All rights reserved. +Some of this work - Copyright (c) 2010 - 2014, Canonical. diff -Nru fwts-14.02.00/fwts-test/arg-help-0001/arg-help-0002.log fwts-14.03.00/fwts-test/arg-help-0001/arg-help-0002.log --- fwts-14.02.00/fwts-test/arg-help-0001/arg-help-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-help-0001/arg-help-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,214 @@ +--acpica Enable ACPICA run + time options. +--acpica-debug Enable ACPICA debug + /warning messages. +-a, --all Run all tests. +-b, --batch Run non-Interactive + tests. +--batch-experimental Run Batch + Experimental tests. +--disassemble-aml Disassemble AML from + DSDT and SSDT tables. +-d, --dump Dump out dmesg, + dmidecode, lspci, + ACPI tables to logs. +--dumpfile Load ACPI tables + using file generated + by acpidump, e.g. + --dumpfile=acpidump.dat +--filter-error-discard Discard errors that + match any of the + specified labels. +--filter-error-keep Keep errors that + match any of the + specified labels. +-f, --force-clean Force a clean results + log file. +-h, -?, --help Print this help. +-i, --interactive Just run Interactive + tests. +--interactive-experimental Just run Interactive + Experimental tests. +-j, --json-data-path Specify path to fwts + json data files - + default is /usr/share + /fwts. +-k, --klog Specify kernel log + file rather than + reading it from the + kernel, e.g. + --klog=dmesg.log +--log-fields Show available log + filtering fields. +--log-filter Define filters to + dump out specific log + fields: + --log-filter=RES,SUM + - dump out results + and summary, + --log-filter=ALL,~INF + - dump out all fields + except info fields. +--log-format Define output log + format: e.g. + --log-format="%date + %time [%field] + (%owner): ". Fields + are: %time - time, + %field - filter field + , %owner - name of + test, %level - + failure error level, + %line - log line + number. +--log-type Specify log type + (plaintext, json, + html or xml). +-w, --log-width Define the output log + width in characters. +--lspci Specify path to lspci + , e.g. --lspci=path. +-P, --power-states Test S3, S4 power + states. +-q, --quiet Run quietly. +--results-no-separators No horizontal + separators in results + log. +-r, --results-output Output results to a + named file. Filename + can also be stout or + stderr, e.g. + --results-output=myresults.log + , -r stdout. +-R, --rsdp Specify the physical + address of the ACPI + RSDP. +--s3-delay-delta Time to be added to + delay between S3 + iterations. Used in + conjunction with + --s3-min-delay and + --s3-max-delay, e.g. + --s3-delay-delta=2.5 +--s3-device-check Check differences + between device + configurations over a + S3 cycle. Note we add + a default of 15 + seconds to allow wifi + to re-associate. + Cannot be used with + --s3-min-delay, + --s3-max-delay and + --s3-delay-delta. +--s3-device-check-delay Sleep N seconds + before we run a + device check after + waking up from + suspend. Default is + 15 seconds, e.g. + --s3-device-check-delay=20 +--s3-max-delay Maximum time between + S3 iterations, e.g. + --s3-max-delay=20 +--s3-min-delay Minimum time between + S3 iterations, e.g. + --s3-min-delay=10 +--s3-multiple Run S3 tests multiple + times, e.g. + --s3-multiple=10. +--s3-quirks Comma separated list + of quirk arguments to + pass to pm-suspend. +--s3-resume-time Maximum expected + resume time in + seconds, e.g. + --s3-resume-time=5.1 +--s3-sleep-delay Sleep N seconds + between start of + suspend and wakeup, + e.g. + --s3-sleep-delay=60 +--s3-suspend-time Maximum expected + suspend time in + seconds, e.g. + --s3-suspend-time=3.5 +--s3power-sleep-delay Sleep N seconds + between start of + suspend and wakeup, + e.g. + --s3power-sleep-delay=60 +--s4-delay-delta Time to be added to + delay between S4 + iterations. Used in + conjunction with + --s4-min-delay and + --s4-max-delay. +--s4-device-check Check differences + between device + configurations over a + S4 cycle. Note we add + a default of 15 + seconds to allow wifi + to re-associate. + Cannot be used with + --s4-min-delay, + --s4-max-delay and + --s4-delay-delta. +--s4-device-check-delay Sleep N seconds + before we run a + device check after + waking up from + hibernate. Default is + 15 seconds. +--s4-max-delay Maximum time between + S4 iterations. +--s4-min-delay Minimum time between + S4 iterations. +--s4-multiple Run S4 tests multiple + times, e.g. + --s4-multiple=10. +--s4-quirks Comma separated list + of quirk arguments to + pass to pm-hibernate. +--s4-sleep-delay Sleep N seconds + between start of + hibernate and wakeup. +-p, --show-progress Output test progress + report to stderr. +-D, --show-progress-dialog Output test progress + for use in dialog + tool. +-s, --show-tests Show available tests. +--show-tests-full Show available tests + including all minor + tests. +-S, --skip-test Skip listed tests, + e.g. --skip-test=s3 + ,nx,method +--stdout-summary Output SUCCESS or + FAILED to stdout at + end of tests. +-t, --table-path Path to ACPI tables + dumped by acpidump + and then acpixtract, + e.g. --table-path= + /some/path/to/acpidumps +--uefi Run UEFI tests. +--uefi-get-var-multiple Run uefirtvariable + get variable test + multiple times. +--uefi-query-var-multiple Run uefirtvariable + query variable test + multiple times. +--uefi-set-var-multiple Run uefirtvariable + set variable test + multiple times. +-U, --unsafe Unsafe tests (tests + that can potentially + cause kernel oopses). +-u, --utils Run Utility 'tests'. + (V14.02.00). + +Some of this work - Copyright (c) 1999 - 2014, Intel Corp. All rights reserved. +Some of this work - Copyright (c) 2010 - 2014, Canonical. diff -Nru fwts-14.02.00/fwts-test/arg-help-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-help-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-help-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-help-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,38 @@ +#!/bin/bash +# +TEST="Test -h option" +NAME=test-0001.sh +TMPLOG=$TMP/help.log.$$ +HERE=`pwd` + +# +# Non-x86 tests don't have WMI so skip this test +# +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +cols=$(stty -a | tr ';' '\n' | grep "columns" | cut -d' ' -f3) 2> /dev/null +# +# If we can't set the tty then we can't test +# +stty cols 50 2> /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi +$FWTS -h | grep -v "Show version" | grep -v "Usage" > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-help-0001/arg-help-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi +stty cols 80 2> /dev/null +tset 2> /dev/null + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-help-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-help-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-help-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-help-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,41 @@ +#!/bin/bash +# +TEST="Test --help option" +NAME=test-0002.sh +TMPLOG=$TMP/help.log.$$ +HERE=`pwd` + +# +# Non-x86 tests don't have WMI so skip this test +# +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +cols=$(stty -a | tr ';' '\n' | grep "columns" | cut -d' ' -f3) 2> /dev/null +# +# If we can't set the tty then we can't test +# +stty cols 50 2> /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --help | grep -v "Show version" | grep -v "Usage" > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-help-0001/arg-help-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi +if [ $cols -ne 0]; then + stty cols $cols 2> /dev/null +fi +tset 2> /dev/null + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog-0001.log fwts-14.03.00/fwts-test/arg-json-0001/klog-0001.log --- fwts-14.02.00/fwts-test/arg-json-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,29 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogACPIBIOSBugMultipleAPIC: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog Found 1 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog-0002.log fwts-14.03.00/fwts-test/arg-json-0001/klog-0002.log --- fwts-14.02.00/fwts-test/arg-json-0001/klog-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,29 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogACPIBIOSBugMultipleAPIC: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog Found 1 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog-0003.log fwts-14.03.00/fwts-test/arg-json-0001/klog-0003.log --- fwts-14.02.00/fwts-test/arg-json-0001/klog-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,10 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog Cannot read file /xxxx/fooo/klog.json. +klog Error parsing kernel log. +klog +klog ========================================================== +klog 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog-0004.log fwts-14.03.00/fwts-test/arg-json-0001/klog-0004.log --- fwts-14.02.00/fwts-test/arg-json-0001/klog-0004.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog-0004.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,10 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog Cannot read file /xxxx/fooo/klog.json. +klog Error parsing kernel log. +klog +klog ========================================================== +klog 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog.json fwts-14.03.00/fwts-test/arg-json-0001/klog.json --- fwts-14.02.00/fwts-test/arg-json-0001/klog.json 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog.json 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1117 @@ +{ + "common_error_warning_patterns": + [ + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS_THERMAL", + "pattern": "Temperature above threshold, cpu clock throttled", + "advice": "Test caused CPU temperature above critical threshold. Insufficient cooling?" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "BIOS never enumerated boot CPU", + "advice": "The boot processor is not enumerated!" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_HOTPLUG", + "pattern": "acpi_shpchprm.*_HPP fail", + "advice": "Hotplug _HPP method failed" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_HOTPLUG", + "pattern": "shpchp.*acpi_pciehprm.*OSHP fail", + "advice": "ACPI Hotplug OSHP method failed" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_HOTPLUG", + "pattern": "shpchp.*acpi_shpchprm.*evaluate _BBN fail", + "advice": "Hotplug _BBN method is missing" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "Error while parsing _PSD domain information", + "advice": "_PSD domain information is corrupt!" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI", + "pattern": "Wrong _BBN value, reboot and use option 'pci=noacpi'", + "advice": "The BIOS has wrong _BBN value, which will make PCI root bridge have wrong bus number" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_APIC", + "pattern": "ACPI.*apic on CPU.* stops in C2", + "advice": "The local apic timer incorrectly stops during C2 idle state.The ACPI specification forbids this and Linux needs the local APIC timer to work. The most likely cause of this is that the firmware uses a hardware C3 or C4 state that is mapped to the ACPI C2 state." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS_IRQ", + "pattern": "Disabling IRQ", + "advice": "The kernel detected an irq storm. This is most probably an IRQ routing bug." + } + ], + "firmware_error_warning_patterns": + [ + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "dell_wmi:.*Received unknown WMI event", + "advice": "The Dell WMI driver has received an unknown WMI event. The driver should handle this new event or the firmware is reporting an incorrect and unknown event." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "dell_wmi:.*bad event status 0x", + "advice": "The Dell WMI driver has received a bad event status. This should be investigated further." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "asus_wmi:.*Unknown key.*pressed", + "advice": "The ASUS WMI driver has received an unknown key event. The driver should handle this new key event or the firmware is reporting an incorrect and unknown event." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "hp_wmi:.*bad event status 0x", + "advice": "The HP WMI driver has received a bad event status. This should be investigated further." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "hp_wmi:.*Unknown response received", + "advice": "The HP WMI driver has received a return object that was not of type ACPI_BUFFER. The driver needs to be updated to handle this new return type or there is a bug in the WMI mechanism on this machine." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "hp_wmi:.*Unknown buffer length", + "advice": "The HP WMI driver has received a return buffer that was not the expected size of 8 or 16 bytes. This is probably a bug in the WMI mechanism on this machine." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "hp_wmi:.*Unknown key code - 0x", + "advice": "The HP WMI driver has received a key code that it does not recognise. The driver needs to be updated to handle this new key code." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "hp_wmi:.*Unknown event_id", + "advice": "The HP WMI driver has received an event ID that it does not recognise. The driver needs to be updated to handle this new event ID." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_WMI", + "pattern": "msi_wmi:.*Unknown key pressed", + "advice": "The MSI WMI driver has received a key code that it does not recognise. The driver needs to be updated to handle this new key code." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI.*Handling Garbled _PRT entry", + "advice": "BIOS has a garbled _PRT entry; source_name and source_index swapped." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI", + "pattern": "Invalid _PCT data", + "advice": "The ACPI _PCT data is invalid." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI Error.*ACPI path has too many parent prefixes", + "advice": "A path to an ACPI obejct has too many ^ parent prefixes and references passed the top of the root node. Please check AML for all ^ prefixed ACPI path names." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_RSDP", + "pattern": "ACPI Error.*A valid RSDP was not found", + "advice": "An ACPI-compatible system must provide an RSDP (Root System Description Pointer in the system’s low address space. This structure’s only purpose is to provide the physical address of the RSDT and XSDT." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_MUTEX", + "pattern": "ACPI Error.*Cannot release Mutex", + "advice": "Attempted to release of a Mutex that was not previous acquired. This needs fixing as it could lead to race conditions when operating on a resource that needs to be proteced by a Mutex." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_EVENT", + "pattern": "ACPI Error.*Could not disable .* event", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_EVENT", + "pattern": "ACPI Error.*Could not enable .* event", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "ACPI Error.*Current brightness invalid", + "advice": "ACPI video driver has encountered a brightness level that is outside the expected range." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_NAMESPACE_LOOKUP", + "pattern": "ACPI Error.*Namespace lookup failure, AE_ALREADY_EXISTS", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_BUFFER_OVERFLOW", + "pattern": "ACPI Error.*_SB_._OSC.*AE_AML_BUFFER_LIMIT", + "advice": "Section 6.2.10.2 of V4.0a of the ACPI specification states that the _OSC Method should be passed an 8 byte buffer of 2 x 32 DWORDs, however it appears that the method is possibly trying to access data outside this buffer. This is a bug in the _OSC method." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_BUFFER_OVERFLOW", + "pattern": "ACPI Error.*Field.*exceeds Buffer", + "advice": "The field exceeds the allocated buffer size. This can lead to unexpected results when fetching data outside this region." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_IO_PORT", + "pattern": "ACPI Error.*Illegal I\/O port address\/length above 64K", + "advice": "A port address or length has exceeded the maximum allowed 64K address limit. This will lead to unpredicable errors." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Error.*Incorrect return type", + "advice": "An ACPI Method has returned an unexpected and incorrect return type." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Error.*Needed .*\\[Buffer\/String\/Package\\], found \\[Integer\\]", + "advice": "An ACPI Method has returned an Integer type when a Buffer, String or Package was expected." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Error.*Needed .*\\[Reference\\], found \\[Device\\]", + "advice": "An ACPI Method has returned an Device type when a Reference type was expected." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_NO_HANDLER", + "pattern": "ACPI Error.*No handler for Region", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_NO_HANDLER", + "pattern": "ACPI Error.*Region .* has no handler", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Error.*Missing expected return value", + "advice": "The ACPI Method did not return a value and was expected too. This is a bug and needs fixing." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "Package List length.*larger than.*truncated", + "advice": "A Method has returned a Package List that was larger than expected." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Error.*Result stack is empty!", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_AML_OPCODE", + "pattern": "ACPI Error.*Found unknown opcode", + "advice": "An illegal AML opcode has been found and is ignored. This indicates either badly compiled code or opcode corruption in the DSDT or SSDT tables or a bug in the ACPI execution engine. Recommend disassembing using iasl to find any offending code." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_AML_OPCODE", + "pattern": "ACPI Warning.*Detected an unsupported executable opcode", + "advice": "An illegal AML opcode has been found and is ignored. This indicates either badly compiled code or opcode corruption in the DSDT or SSDT tables or a bug in the ACPI execution engine. Recommend disassembing using iasl to find any offending code." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS", + "pattern": "bios32_service.*not present", + "advice": "The BIOS has found a BIOS32 Service Directory but the BIOS has returned error 0x80 on calling the service, which indicates that the requested service has not been implemented in the firmware." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS", + "pattern": "bios32_service.*BIOS bug", + "advice": "The BIOS has found a BIOS32 Service Directory but the BIOS has returned an error on calling the service, which is unexpected and usually means the firmware is broken." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS_IRQ", + "pattern": "PCI: Error.*when fetching IRQ routing table", + "advice": "The BIOS has been interrogated for the PCI IRQ routing table but the BIOS returned an error." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Denied AML access to port", + "advice": "AML code was accessing an I/O port that was banned from accesses. Ports 0x20-0x21 (PIC0), 0xa0-0xa1 (PIC1), 0x4d0-0x4d1 (ELCR) are always banned. For _OSI() greater or equal to 'Windows 2001' (Windows XP) ports 0x00-0x0f (DMA), 0x40-0x43 (PIT1), 0x48-0x4b (PIT2), 0x70-0x71 (RTC), 0x81-0x83 (DMA1), 0x87 (DMA1L), 0x89-0x8b (DMA2), 0x8f (DMA2L), 0x90-0x91 (ARBC), 0x93-0x94 (SETUP), 0x96-0x97 (POS), 0xc0-0xdf (ISA DMA) and 0xcf8-0xcff (PCI config) are banned. Since the AML code has been banned from accessing these ports you will get undefined behaviour and the AML code should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method parse\/execution failed.*AE_AML_NO_RETURN_VALUE", + "advice": "The ACPI Method was expected to return a value and did not." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_ALREADY_EXISTS", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_INVALID_TABLE_LENGTH", + "advice": "The ACPI Method returned a table of the incorrect length. This can lead to unexepected results." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_AML_BUFFER_LIMIT", + "advice": "Method failed: ResourceSourceIndex is present but ResourceSource is not." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_NOT_EXIST", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_NOT_FOUND", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_LIMIT", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_AML_OPERAND_TYPE", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_TIME", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_AML_PACKAGE_LIMIT", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_OWNER_ID_LIMIT", + "advice": "Method failed to allocate owner ID." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.*Method (execution|parse\/execution) failed.*AE_AML_MUTEX_NOT_ACQUIRED", + "advice": "A Mutex acquire failed, which could possibly indicate that it was previously acquired and not released, or a race has occurred. Some AML code fails to miss Mutex acquire failures, so it is a good idea to verify all Mutex Acquires using the syntaxcheck test." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI Error.*SMBus or IPMI write requires Buffer of", + "advice": "An incorrect SMBus or IPMI write buffer size was used." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "ACPI Error.*Evaluating _BCM failed", + "advice": "The ACPI engine has failed to execute the _BCM Brightness Control Method. This will result in possibly failing to set the display brightness level." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_EVAL", + "pattern": "ACPI (Warning|Error).*Evaluating .* failed", + "advice": "Executing the ACPI Method leaded in an execution failure. This needs investigating." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI Warning.*Optional field.*has zero address or length", + "advice": "An ACPI table contains Generic Address Structure that has an address that is incorrectly set to zero, or a zero length. This needs to be fixed. " + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI (Warning|Error).*two DSDT tables", + "advice": "The FADT table contains a mismatch between the 32 bit pointer (DSDT) and 64 bit pointer (X_DSDT) pointer to the FACS table. Section 5.2.9 of version 4.0a of the ACPI specification states that X_DSDT should be zero if DSDT is defined, or DSDT should be zero if X_DSDT is zero. With two different pointers defined, the kernel has to make a choice, and opts for the 32 bit pointer. Because these pointers are different, it suggests either one of them is incorrect, or different 32 bit and 64 bit DSDT tables are present in your system, which is NOT complaint with the ACPI specification. The kernel has to make a choice and opts for the 32 bit DSDT." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI (Warning|Error).*two FACS tables", + "advice": "The FADT table contains a mismatch between the 32 bit pointer (FIRMWARE_CTRL) and 64 bit pointer (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 of version 4.0a of the ACPI specification states that X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined, or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is zero. With two different pointers defined, the kernel has to make a choice, and opts for the 32 bit pointer. Because these pointers are different, it suggests either one of them is incorrect, or different 32 bit and 64 bit FACS tables are present in your system, which is NOT complaint with the ACPI specification. The kernel has to make a choice and opts for the 32 bit FIRMWARE_CTRL." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI Error.*32/64X address mismatch in.*, using 32", + "advice": "The FADT table contains a mismatch between a 32 bit pointer and a 64 bit Generic Address pointer. Because these pointers are different, it suggests either one of them is incorrect. If a non-null 32 bit pointer exists, then the kernel will opt for this in preference to the 64 bit pointer even though this is not in accordance to the ACPI specification." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI (Warning|Error).*32\/64.*(length|address) mismatch in.*tbfadt", + "advice": "The FADT table contains Generic Address Structure that has a mismatch between the 32 bit and 64 bit versions of an address. This should be fixed so there are no mismatches. " + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "ACPI (Warning|Error).*32\/64.*(length|address) mismatch in", + "advice": "A table contains Generic Address Structure that has a mismatch between the 32 bit and 64 bit versions of an address. This should be fixed so there are no mismatches. " + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*Return Package type mismatch", + "advice": "ACPI AML interpreter executed a Method that returned a package with incorrectly typed data. The offending method needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*Return Package has no elements", + "advice": "ACPI AML interpreter executed a Method that returned a package with no elements inside it. This is most probably a bug in the Method and needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*Return Package is too small", + "advice": "ACPI AML interpreter executed a Method that returned a package with too few elements inside it. This is most probably a bug in the Method and needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_TABLE_CHECKSUM", + "pattern": "ACPI Warning.*Incorrect checksum in table", + "advice": "The ACPI table listed above has an incorrect checksum, this could be a BIOS bug or due to table corruption." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*_BQC returned an invalid level", + "advice": "Method _BQC (Brightness Query Current) returned an invalid display brightness level." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "ACPI Error.*Found unordered _BCL package", + "advice": "Method _BCL (Query List of Brightness Control Levels Supported) has a maximum brightness value which is not the last value in the returned package. Values returned must be in ascending order." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "ACPI Error.*Too many duplicates in _BCL package", + "advice": "Method _BCL (Query List of Brightness Control Levels Supported) contains too many duplicated brightness levels in the returned package and this is non-standard." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI Warning.*Could not enable fixed event", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*Return type mismatch", + "advice": "The ACPI Method returned an incorrect type, this should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARAMETER", + "pattern": "ACPI Warning.*Parameter count mismatch", + "advice": "The ACPI Method was executing with a different number of parameters than the Method expected. This should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARAMETER", + "pattern": "ACPI Warning.*Insufficient arguments", + "advice": "The ACPI Method has not enough arguments as expected. This should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PACKAGE", + "pattern": "ACPI Warning.*Package has no elements", + "advice": "The ACPI Method returned a package with no elements in it, and some were exepected.This should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "ACPI Warning.*Converted Buffer to expected String", + "advice": "Method returned a Buffer type instead of a String type and ACPI driver automatically converted it to a String. It is worth fixing this in the DSDT or SSDT even if the kernel fixes it at run time." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PACKAGE", + "pattern": "ACPI Warning.*Return Package type mistmatch at index", + "advice": "The ACPI Method returned a package that contained data of the incorrect data type. This data type needs fixing." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BAD_LENGTH", + "pattern": "ACPI Warning.*Invalid length for.*fadt", + "advice": "This item in the FADT is the incorrect length. Should be corrected." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_THROTTLING", + "pattern": "ACPI Warning.*Invalid throttling state", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_EMBEDDED_CONTROLLER", + "pattern": "ACPI Exception:.*AE_TIME.*Returned by Handler for.*[EmbeddedControl]", + "advice": "This is most probably caused by when a read or write operation to the EC memory has failed because of a timeout waiting for the Embedded Controller to complete the transaction. Normally, the kernel waits for 500ms for the Embedded Controller status port to indicate that a transaction is complete, but in this case it has not and a AE_TIME error has been returned. " + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI Warning", + "advice": "ACPI AML intepreter has found some non-conforming AML code. This should be investigated and fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_APIC", + "pattern": "ACPI.*BIOS bug: multiple APIC\/MADT found, using", + "advice": "The kernel has detected more than one ACPI Multiple APIC Description Table (MADT) (these tables have the \"APIC\" signature). There should only be one MADT and the kernel will by default select the first one. However, one can override this and select the Nth MADT using acpi_apic_instance=N." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*Invalid physical address in GAR", + "advice": "ACPI Generic Address is invalid" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS_AMD_POWERNOW", + "pattern": "\\[Firmware Bug\\]: powernow-k8.*(No PSB or ACPI _PSS objects|No compatible ACPI _PSS|Your BIOS does not provide ACPI _PSS objects)", + "advice": "The _PSS object (Performance Supported States) is an optional object that indicates the number of supported processor performance states. The powernow-k8 driver source states: If you see this message, complain to BIOS manufacturer. If he tells you \"we do not support Linux\" or some similar nonsense, remember that Windows 2000 uses the same legacy mechanism that the old Linux PSB driver uses. Tell them it is broken with Windows 2000. The reference to the AMD documentation is chapter 9 in the BIOS and Kernel Developer's Guide, which is available on www.amd.com." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS_AMD_POWERNOW", + "pattern": "\\[Firmware Bug\\]: powernow-k8.*Try again with latest", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*Invalid bit width in GAR", + "advice": "ACPI Generic Address width must be 8, 16, 32 or 64" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*Invalid address space type in GAR", + "advice": "ACPI Generic Address space type must be system memory or system IO space." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_BAD_ADDRESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*no secondary bus range in _CRS", + "advice": "_CRS Method should return a secondary bus address for the status\/command port. The kernel is having to guess this based on the _BBN or assume it's 0x00-0xff." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]: ACPI.*Invalid BIOS _PSS frequency", + "advice": "_PSS (Performance Supported States) package has an incorrectly define core frequency (first DWORD entry in the _PSS package)." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*No _BQC method", + "advice": "_BQC (Brightness Query Current level) seems to be missing. This method returns the current brightness level of a built-in display output device." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "\\[Firmware Bug\\]: ACPI.*brightness control misses _BQC function", + "advice": "_BQC (Brightness Query Current level) seems to be missing. This method returns the current brightness level of a built-in display output device." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]: BIOS needs update for CPU frequency support", + "advice": "Having _PPC but missing frequencies (_PSS, _PCT) is a good hint that the BIOS is older than the CPU and does not know the CPU frequencies." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]: ERST.*ERST table is invalid", + "advice": "The Error Record Serialization Table (ERST) seems to be invalid. This normally indicates that the ERST table header size is too small, or the table size (excluding header) is not a multiple of the ERST entries." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_THERMAL", + "pattern": "\\[Firmware Bug\\]:.*Invalid critical threshold", + "advice": "ACPI _CRT (Critical Trip Point) is returning a threshold lower than zero degrees Celsius which is clearly incorrect." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_THERMAL", + "pattern": "\\[Firmware Bug\\]:.*No valid trip found", + "advice": "No valud ACPI _CRT (Critical Trip Point) was found." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_BRIGHTNESS", + "pattern": "\\[Firmware Bug\\]:.*_BCQ is used instead of _BQC", + "advice": "ACPI Method _BCQ was defined (typo) instead of _BQC - this should be fixed.however the kernel has detected this and is working around this typo." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "MPTABLE: bad signature", + "advice": "The MultiProcessor table has an incorrect signature, it should be PCMP. The kernel cannot trust the table and has disabled SMP support." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "MPTABLE: checksum error", + "advice": "The MultiProcessor table has an incorrect checksum. The kernel cannot trust the table and has disabled SMP support." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "MPTABLE: bad table version", + "advice": "The MultiProcessor table has an incorrect version. It should be 0x01 or 0x04 (for versions 1.1 and 1.4 respectively). The kernel cannot trust the table and has disabled SMP support." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "MPTABLE: null local APIC address", + "advice": "The MultiProcessor table contains a NULL Local APIC address but the Local APIC address must be defined. The kernel has disabled SMP support." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "MPTABLE: no processors registered", + "advice": "The MultiProcessor table contains no Processor Entry Fields, and hence there are no CPUs defined. The kernel has no option but to disable SMP support." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "BIOS bug.*no explicit IRQ entries.*using default mptable", + "advice": "The MultiProcessor table contains no IRQ Entry Fields, and hence there are no IRQs defined. The table is broken and should be fixed. The kernel will set up the low 16 IO-APIC pins to the ISA defaults in the hope the machine may work." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS_IRQ", + "pattern": "BIOS bug.*timer not connected to IO-APIC", + "advice": "The BIOS is reporting the ExtINTA I/O APIC input from the cascaded 8259A as the timer interrupt input. The kernel has detected just one pin, so it has to check the timer directly and through the 8259A because of the broken BIOS reporting." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS_IRQ", + "pattern": "BIOS bug,.*IO-APIC.*ID is.*in the MPC table.*", + "advice": "The IO-APIC id in the MPC table is wrong and the kernel has detected this and attempted to fix it. The MPC table in the firmware needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS_IRQ", + "pattern": "BIOS bug,.*IO-APIC.*ID is already used!", + "advice": "The IO-APIC id has been defined more than once in the MPC table, which is a firmware bug and should be fixed. The kernel has detected this and skopped this duplication to avoid stuck on smp_invalidate_needed IPI wait' messages." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "WARNING.*BIOS bug.*CPU MTRRs don't cover all of memory, losing", + "advice": "The Memory Type Range Registers (MTRRs) which define memory caching policy are misconfigued by the BIOS and don't appear to cover all available physical memory. The kernel has detected this and has reduced the amount of memory available to be safe. Either check that the BIOS memory caching options are set correctly or contact your BIOS vendor to get this fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*your BIOS has configured an incorrect mask, fixing it", + "advice": "The Memory Type Range Registers (MTRRs) which define memory caching policy are misconfigued by the BIOS. In this case, the mask is incorrectly set and the kernel has detected this and worked around the firmware bug." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*your CPUs had inconsistent fixed MTRR settings", + "advice": "The fixed Memory Type Range Registers (MTRRs) which define memory caching policy are not consistent across all CPUs which is a firmware bug. The kernel has worked around this bug, but it may be worth getting the BIOS vendor to fix this." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*your CPUs had inconsistent variable MTRR settings", + "advice": "The variable Memory Type Range Registers (MTRRs) which define memory caching policy are not consistent across all CPUs which is a firmware bug. The kernel has worked around this bug, but it may be worth getting the BIOS vendor to fix this." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*your CPUs had inconsistent MTRRdefType settings", + "advice": "The Memory Type Range Registers (MTRRs) which define memory caching policy do not have a MTRRdefType consistently set across all CPUs which is a firmware bug. The kernel has worked around this bug, but it may be worth getting the BIOS vendor to fix this." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*base.*is not 4 MiB aligned", + "advice": "The Memory Type Range Registers (MTRRs) for Intel PPro CPUs with stepping < 8 must be 4 MiB aligned and not touch 0x70000000 -> 0x7003FFFF. This BIOS misconfiguration and should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITIICAL", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*writable mtrr between 0x70000000 and 0x7003FFFF may hang the CPU", + "advice": "The Memory Type Range Registers (MTRRs) for Intel PPro CPUs with stepping < 8 must not touch region 0x70000000 -> 0x7003FFFF. This BIOS misconfiguration may hang the CPU and should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_BIOS", + "pattern": "mtrr:.*base.*is not aligned on a size.*boundary", + "advice": "The Memory Type Range Registers (MTRRs) must be correctly aligned. This BIOS misconfiguration and should be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": ".*defines _DOD but not _DOS", + "advice": "ACPI Method _DOD (Enumerate all devices attached to display adapter) is defined but we should also have _DOS (Enable\/Disable output switching) defined but it's been omitted. This can cause display switching issues." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "WARNING:.*bogus zero IO-APIC address found in MPTABLE", + "advice": "An IO-APIC address of zero has been found in the MPTABLE and is thus treated as misconfigured or bogus. I/O APIC support has been disabled. This is considered a firmware bug and the MPTABLE needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "WARNING:.*Bogus.*APIC address found in table", + "advice": "An IO-APIC address of zero has been found in the MPTABLE and is thus treated as misconfigured or bogus. I/O APIC support has been disabled. This is considered a firmware bug and the MPTABLE needs to be fixed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]:.*Duplicate ACPI video bus", + "advice": "Try video module parameter video.allow_duplicates=1 if the current driver does't work." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI_PCI_EXPRESS", + "pattern": "\\[Firmware Bug\\]:.*PCI.*MMCONFIG.*not reserved in ACPI motherboard resources", + "advice": "It appears that PCI config space has been configured for a specific device but does not appear to be reserved by the ACPI motherboard resources." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]: PCI.*not reserved in ACPI motherboard resources", + "advice": "PCI firmware bug. Please see the kernel log for more details." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_INFO", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]:.*_OSI.*Linux.*ignored", + "advice": "This is not exactly a failure mode but a warning from the kernel. The _OSI() method has implemented a match to the 'Linux' query in the DSDT and this is redundant because the ACPI driver matches onto the Windows _OSI strings by default." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]: ACPI:", + "advice": "ACPI driver has detected an ACPI bug. This generally points to a bug in an ACPI table. Examine the kernel log for more details." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "\\[Firmware Bug\\]:.*", + "advice": "The kernel has detected a Firmware bug in the BIOS or ACPI which needs investigating and fixing." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_BIOS", + "pattern": "PCI.*BIOS Bug:", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_NAMESPACE_LOOKUP", + "pattern": "ACPI Error.*Namespace lookup failure, AE_NOT_FOUND", + "advice": "The kernel has detected an error trying to execute an Method and it cannot find an object. This is indicates a bug in the DSDT or SSDT AML code." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "ACPI Error.+psparse", + "advice": "The ACPI engine has failed to execute some AML. The error message above lists the method that caused this error." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI", + "pattern": "ACPI Error", + "advice": "The kernel has most probably detected an error while executing ACPI AML. The error lists the ACPI driver module and the line number where the bug has been caught and the method that caused the error." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "\\*\\*\\* Error.*Method execution failed", + "advice": "Execution of an ACPI AML method failed." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "\\*\\*\\* Error.*Method execution failed.*AE_AML_METHOD_LIMIT", + "advice": "ACPI method reached maximum reentrancy limit of 255 - infinite recursion in AML in DSTD or SSDT" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_ACPI_PARSE_EXEC_FAIL", + "pattern": "\\*\\*\\* Error.*Method reached maximum reentrancy limitACPI method has reached reentrancy limit, this is a recursion bug in the AML", + "advice": "" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_METHOD_RETURN", + "pattern": "\\*\\*\\* Error.*Return object type is incorrect", + "advice": "Return object type is not the correct type, this is an AML error in the DSDT or SSDT" + } + ], + "pm_error_warning_patterns": + [ + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Failed to prepare device", + "advice": "dpm_prepare() failed to prepare all non-sys devices for a system PM transition. The device should be listed in the error message." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Some devices failed to power down", + "advice": "dpm_suspend_noirq failed because some devices did not power down " + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Some system devices failed to power down", + "advice": "sysdev_suspend failed because some system devices did not power down." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Error", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_NONE", + "pattern": "PM: Some devices failed to power down", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Restore failed, recovering", + "advice": "A resume from hibernate failed when calling hibernation_restore()" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Resume from disk failed", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Not enough free memory", + "advice": "There was not enough physical memory to be able to generate a hibernation image before dumping it to disc." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Memory allocation failed", + "advice": "swusp_alloc() failed trying to allocate highmem and failing that non-highmem pages for the suspend image. There is probably just not enough free physcial memory available." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Image mismatch", + "advice": "Mismatch in kernel version, system type, kernel release version or machine id between suspended kernel and resumed kernel." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Some devices failed to power down", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Some devices failed to suspend", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: can't read", + "advice": "Testing suspend cannot read RTC" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: can't set", + "advice": "Testing suspend cannot set RTC" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: suspend test failed, error", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: can't test ", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_MEDIUM", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: no wakealarm-capable RTC driver is ready", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Adding page to bio failed at", + "advice": "An attempt to write the hibernate image to disk failed because a write BIO operation failed. This is usually a result of some physical hardware problem." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Swap header not found", + "advice": "An attempt to write a hibernate image to disk failed because a valid swap device header could not be found. Make sure there is a formatted swap device on the machine and it is added using swapon -a." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Cannot find swap device", + "advice": "An attempt to write a hibernate image to disk failed because the swap device could not be found. Make sure there is a formatted swap device on the machine and it is added using swapon -a." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_CRITICAL", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Not enough free swap", + "advice": "Hibernate failed because the swap parition was probably too small." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Image device not initialised", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "PM: Please power down manually", + "advice": "" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "check_for_bios_corruption", + "advice": "The BIOS seems to be corrupting the first 64K of memory when doing suspend\/resume. Setting bios_corruption_check=0 will disable this check." + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "WARNING: at.*hpet_next_event", + "advice": "Possibly an Intel I\/O controller hub HPET Write Timing issue: A read transaction that immediately follows a write transaction to the HPET TIMn_COMP Timer 0 (108h), HPET MAIN_CNT (0F0h), or TIMn_CONF.bit 6 (100h) may return an incorrect value. This is known to cause issues when coming out of S3." + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_POWER_MANAGEMENT", + "pattern": "BUG: soft lockup.*stuck for 0s", + "advice": "Softlock errors that occur when coming out of S3 may be tripped by TSC warping. It may be worth trying the notsc kernel parameter and repeating S3 tests to see if this solves the problem." + } + ] +} diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/klog.txt fwts-14.03.00/fwts-test/arg-json-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-json-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1063 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 3.0.0-12-generic (buildd@crested) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #19-Ubuntu SMP Fri Sep 23 21:23:39 UTC 2011 (Ubuntu 3.0.0-12.19-generic 3.0.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved) +[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable) +[ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6e3000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: LENOVO 0769BMG/IEL10, BIOS 68ET27WW 11/14/2007 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] original variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] total RAM covered: 3063M +[ 0.000000] Found optimal setting for mtrr clean up +[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 4 lose cover RAM: 0G +[ 0.000000] New variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] found SMP MP-table at [ffff8800000f72c0] f72c0 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf6d0000 page 4k +[ 0.000000] kernel direct mapping tables up to bf6d0000 @ bf6cb000-bf6d0000 +[ 0.000000] RAMDISK: 359ec000 - 36cee000 +[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 3062MB) +[ 0.000000] ACPI: RSDP 00000000000f7240 00024 (v02 LENOVO) +[ 0.000000] ACPI: XSDT 00000000bf6d87f0 00094 (v01 LENOVO TP-68 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bf6dfbd2 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 00000000bf6d9b6a 05FF4 (v02 TOSCPL CRESTLNE 06040000 INTL 20060608) +[ 0.000000] ACPI: FACS 00000000bf6e2fc0 00040 +[ 0.000000] ACPI: APIC 00000000bf6dfcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 00000000bf6dfd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 00000000bf6dfd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 00000000bf6dfda2 00032 (v01 Intel CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TMOR 00000000bf6dfdd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: SLIC 00000000bf6dfdfa 00176 (v01 LENOVO TP-68 06040000 TBD 00000001) +[ 0.000000] ACPI: APIC 00000000bf6dff70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bf6dffd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf6d98bd 002AD (v01 SataRe SataAhci 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d981a 000A3 (v01 BrtRef DD01BRT 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8e10 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8d6a 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8884 004E6 (v01 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bf6d0000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bf6d0000 +[ 0.000000] NODE_DATA [00000000bf6c6000 - 00000000bf6cafff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800bbe00000-ffff8800be7fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf6d0 +[ 0.000000] On node 0 totalpages: 783967 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 5 pages reserved +[ 0.000000] DMA zone: 3922 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10664 pages used for memmap +[ 0.000000] DMA32 zone: 769320 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000 +[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000 +[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000 +[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800bf400000 s79616 r8192 d22784 u1048576 +[ 0.000000] pcpu-alloc: s79616 r8192 d22784 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773242 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 2928536k/3136320k available (6104k kernel code, 452k absent, 207332k reserved, 4880k data, 984k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:512 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] vt handoff: transparent VT on vt#7 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 25165824 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1496.217 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.43 BogoMIPS (lpj=5984868) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004056] Security Framework initialized +[ 0.004080] AppArmor: AppArmor initialized +[ 0.004083] Yama: becoming mindful. +[ 0.004759] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.010636] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.012341] Mount-cache hash table entries: 256 +[ 0.012557] Initializing cgroup subsys cpuacct +[ 0.012565] Initializing cgroup subsys memory +[ 0.012580] Initializing cgroup subsys devices +[ 0.012583] Initializing cgroup subsys freezer +[ 0.012586] Initializing cgroup subsys net_cls +[ 0.012589] Initializing cgroup subsys blkio +[ 0.012598] Initializing cgroup subsys perf_event +[ 0.012643] CPU: Physical Processor ID: 0 +[ 0.012645] CPU: Processor Core ID: 0 +[ 0.012649] mce: CPU supports 6 MCE banks +[ 0.012661] CPU0: Thermal monitoring handled by SMI +[ 0.012667] using mwait in idle threads. +[ 0.016288] ACPI: Core revision 20110413 +[ 0.024040] ftrace: allocating 25651 entries in 101 pages +[ 0.028444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.071627] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d +[ 0.072003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.072003] PEBS disabled due to CPU errata. +[ 0.072003] ... version: 2 +[ 0.072003] ... bit width: 40 +[ 0.072003] ... generic registers: 2 +[ 0.072003] ... value mask: 000000ffffffffff +[ 0.072003] ... max period: 000000007fffffff +[ 0.072003] ... fixed-purpose events: 3 +[ 0.072003] ... event mask: 0000000700000003 +[ 0.072003] Booting Node 0, Processors #1 Ok. +[ 0.072003] smpboot cpu 1: start_ip = 9a000 +[ 0.008000] CPU1: Thermal monitoring handled by SMI +[ 0.160029] Brought up 2 CPUs +[ 0.160033] Total of 2 processors activated (5984.88 BogoMIPS). +[ 0.161224] devtmpfs: initialized +[ 0.161224] PM: Registering ACPI NVS region at bf6d0000 (77824 bytes) +[ 0.162075] print_constraints: dummy: +[ 0.162115] Time: 7:34:42 Date: 10/05/11 +[ 0.162171] NET: Registered protocol family 16 +[ 0.162209] Trying to unpack rootfs image as initramfs... +[ 0.164047] ACPI: bus type pci registered +[ 0.164133] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.164138] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.220043] PCI: Using configuration type 1 for base access +[ 0.221379] bio: create slab at 0 +[ 0.223506] ACPI: EC: Look up EC in DSDT +[ 0.228089] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 0.229039] ACPI: SSDT 00000000bf6d959e 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229543] ACPI: Dynamic OEM Table Load: +[ 0.229548] ACPI: SSDT (null) 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229696] ACPI: SSDT 00000000bf6d906f 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230165] ACPI: Dynamic OEM Table Load: +[ 0.230169] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230454] ACPI: SSDT 00000000bf6d9752 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232427] ACPI: Dynamic OEM Table Load: +[ 0.232432] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232541] ACPI: SSDT 00000000bf6d9519 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.233011] ACPI: Dynamic OEM Table Load: +[ 0.233015] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.238295] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 0.344070] ACPI: Interpreter enabled +[ 0.344078] ACPI: (supports S0 S3 S4 S5) +[ 0.344118] ACPI: Using IOAPIC for interrupt routing +[ 0.389051] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.389294] ACPI: No dock devices found. +[ 0.389298] HEST: Table not found. +[ 0.389303] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.389762] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.390623] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.390628] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.390632] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.390636] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) +[ 0.390640] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) +[ 0.390645] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored) +[ 0.390648] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.390665] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600 +[ 0.390726] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300 +[ 0.390746] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfc0fffff 64bit] +[ 0.390758] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 0.390767] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807] +[ 0.390812] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380 +[ 0.390829] pci 0000:00:02.1: reg 10: [mem 0xfc100000-0xfc1fffff 64bit] +[ 0.390937] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03 +[ 0.391013] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f] +[ 0.391065] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03 +[ 0.391126] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f] +[ 0.391187] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03 +[ 0.391216] pci 0000:00:1a.7: reg 10: [mem 0xfc504800-0xfc504bff] +[ 0.391321] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.391328] pci 0000:00:1a.7: PME# disabled +[ 0.391362] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403 +[ 0.391386] pci 0000:00:1b.0: reg 10: [mem 0xfc300000-0xfc303fff 64bit] +[ 0.391473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.391479] pci 0000:00:1b.0: PME# disabled +[ 0.391514] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604 +[ 0.391605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.391611] pci 0000:00:1c.0: PME# disabled +[ 0.391647] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604 +[ 0.391735] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.391741] pci 0000:00:1c.1: PME# disabled +[ 0.391775] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604 +[ 0.391868] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.391874] pci 0000:00:1c.2: PME# disabled +[ 0.391911] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604 +[ 0.391999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.392005] pci 0000:00:1c.3: PME# disabled +[ 0.392053] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03 +[ 0.392114] pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f] +[ 0.392162] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03 +[ 0.392238] pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f] +[ 0.392293] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03 +[ 0.392371] pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf] +[ 0.392438] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03 +[ 0.392466] pci 0000:00:1d.7: reg 10: [mem 0xfc504c00-0xfc504fff] +[ 0.392567] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.392573] pci 0000:00:1d.7: PME# disabled +[ 0.392603] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.392698] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601 +[ 0.392816] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.392824] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.392829] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.392835] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f) +[ 0.392884] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101 +[ 0.392903] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.392918] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.392931] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.392944] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.392958] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f] +[ 0.393014] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106 +[ 0.393042] pci 0000:00:1f.2: reg 10: [io 0x1c00-0x1c07] +[ 0.393056] pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7] +[ 0.393069] pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df] +[ 0.393082] pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3] +[ 0.393095] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff] +[ 0.393108] pci 0000:00:1f.2: reg 24: [mem 0xfc504000-0xfc5047ff] +[ 0.393157] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.393163] pci 0000:00:1f.2: PME# disabled +[ 0.393188] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05 +[ 0.393206] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff] +[ 0.393250] pci 0000:00:1f.3: reg 20: [io 0x1c20-0x1c3f] +[ 0.393354] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.393360] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.393367] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.393376] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.393501] pci 0000:04:00.0: [8086:4227] type 0 class 0x000280 +[ 0.393557] pci 0000:04:00.0: reg 10: [mem 0xf8000000-0xf8000fff] +[ 0.393895] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 0.393908] pci 0000:04:00.0: PME# disabled +[ 0.393979] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.394021] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.394027] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.394033] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.394043] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.394110] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.394116] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.394122] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.394132] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.394268] pci 0000:06:00.0: [14e4:1713] type 0 class 0x000200 +[ 0.394336] pci 0000:06:00.0: reg 10: [mem 0xc8000000-0xc800ffff 64bit] +[ 0.394639] pci 0000:06:00.0: PME# supported from D3hot D3cold +[ 0.394651] pci 0000:06:00.0: PME# disabled +[ 0.394783] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.394789] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.394796] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.394806] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.394868] pci 0000:08:06.0: [1180:0832] type 0 class 0x000c00 +[ 0.394886] pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.394890] pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller +[ 0.394909] pci 0000:08:06.0: reg 10: [mem 0xfc200000-0xfc2007ff] +[ 0.395006] pci 0000:08:06.0: supports D1 D2 +[ 0.395009] pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395016] pci 0000:08:06.0: PME# disabled +[ 0.395045] pci 0000:08:06.1: [1180:0822] type 0 class 0x000805 +[ 0.395069] pci 0000:08:06.1: reg 10: [mem 0xfc200800-0xfc2008ff] +[ 0.395165] pci 0000:08:06.1: supports D1 D2 +[ 0.395168] pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395174] pci 0000:08:06.1: PME# disabled +[ 0.395199] pci 0000:08:06.2: [1180:0592] type 0 class 0x000880 +[ 0.395224] pci 0000:08:06.2: reg 10: [mem 0xfc201000-0xfc2010ff] +[ 0.395317] pci 0000:08:06.2: supports D1 D2 +[ 0.395320] pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395326] pci 0000:08:06.2: PME# disabled +[ 0.395350] pci 0000:08:06.3: [1180:0852] type 0 class 0x000880 +[ 0.395376] pci 0000:08:06.3: reg 10: [mem 0xfc201400-0xfc2014ff] +[ 0.395474] pci 0000:08:06.3: supports D1 D2 +[ 0.395477] pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395484] pci 0000:08:06.3: PME# disabled +[ 0.395549] pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode) +[ 0.395556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.395562] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.395572] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.395576] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.395580] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) +[ 0.395619] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.395828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.395887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.395944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.395999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.396116] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.396176] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.396181] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d +[ 0.396184] ACPI _OSC control for PCIe not granted, disabling ASPM +[ 0.404002] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.404086] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404153] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.404217] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404282] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.404353] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404419] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.404484] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.404647] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.404670] vgaarb: loaded +[ 0.404672] vgaarb: bridge control possible 0000:00:02.0 +[ 0.404971] SCSI subsystem initialized +[ 0.405069] libata version 3.00 loaded. +[ 0.405143] usbcore: registered new interface driver usbfs +[ 0.405158] usbcore: registered new interface driver hub +[ 0.405200] usbcore: registered new device driver usb +[ 0.405322] PCI: Using ACPI for IRQ routing +[ 0.416330] PCI: pci_cache_line_size set to 64 bytes +[ 0.416509] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.416513] reserve RAM buffer: 00000000bf6d0000 - 00000000bfffffff +[ 0.416683] NetLabel: Initializing +[ 0.416686] NetLabel: domain hash size = 128 +[ 0.416688] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.416706] NetLabel: unlabeled traffic allowed by default +[ 0.416770] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.416777] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.416784] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.420524] Switching to clocksource hpet +[ 0.423392] Switched to NOHz mode on CPU #0 +[ 0.423487] Switched to NOHz mode on CPU #1 +[ 0.430603] AppArmor: AppArmor Filesystem Enabled +[ 0.430649] pnp: PnP ACPI init +[ 0.430672] ACPI: bus type pnp registered +[ 0.431166] pnp 00:00: [bus 00-ff] +[ 0.431171] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.431174] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.431177] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.431181] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.431184] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 0.431187] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 0.431190] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 0.431197] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 0.431201] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 0.431204] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 0.431207] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 0.431210] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 0.431213] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 0.431216] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 0.431219] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 0.431222] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 0.431225] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 0.431229] pnp 00:00: [mem 0xc0000000-0xdfffffff window] +[ 0.431232] pnp 00:00: [mem 0xf0000000-0xfebfffff window] +[ 0.431235] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 0.431344] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.431447] pnp 00:01: [mem 0xfed1c000-0xfed1ffff] +[ 0.431450] pnp 00:01: [mem 0xfed14000-0xfed17fff] +[ 0.431453] pnp 00:01: [mem 0xfed18000-0xfed18fff] +[ 0.431456] pnp 00:01: [mem 0xfed19000-0xfed19fff] +[ 0.431458] pnp 00:01: [mem 0xe0000000-0xefffffff] +[ 0.431461] pnp 00:01: [mem 0xfed20000-0xfed3ffff] +[ 0.431464] pnp 00:01: [mem 0xfed40000-0xfed44fff] +[ 0.431467] pnp 00:01: [mem 0xfed45000-0xfed8ffff] +[ 0.431559] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.431564] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.431568] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.431572] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.431576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.431580] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.431584] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.431588] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.431593] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.431859] pnp 00:02: [io 0x0000-0x001f] +[ 0.431862] pnp 00:02: [io 0x0081-0x0091] +[ 0.431864] pnp 00:02: [io 0x0093-0x009f] +[ 0.431867] pnp 00:02: [io 0x00c0-0x00df] +[ 0.431870] pnp 00:02: [dma 4] +[ 0.431931] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.431946] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 0.432030] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.432131] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 0.432218] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.432223] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 0.432239] pnp 00:05: [io 0x00f0] +[ 0.432256] pnp 00:05: [irq 13] +[ 0.432321] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.432337] pnp 00:06: [io 0x002e-0x002f] +[ 0.432340] pnp 00:06: [io 0x004e-0x004f] +[ 0.432343] pnp 00:06: [io 0x0061] +[ 0.432345] pnp 00:06: [io 0x0063] +[ 0.432348] pnp 00:06: [io 0x0065] +[ 0.432351] pnp 00:06: [io 0x0067] +[ 0.432353] pnp 00:06: [io 0x0080] +[ 0.432355] pnp 00:06: [io 0x0092] +[ 0.432358] pnp 00:06: [io 0x00b2-0x00b3] +[ 0.432361] pnp 00:06: [io 0x0680-0x069f] +[ 0.432363] pnp 00:06: [io 0x0800-0x080f] +[ 0.432366] pnp 00:06: [io 0x1000-0x107f] +[ 0.432373] pnp 00:06: [io 0x1180-0x11bf] +[ 0.432375] pnp 00:06: [io 0xfe00] +[ 0.432378] pnp 00:06: [io 0xff00-0xff7f] +[ 0.432479] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.432484] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.432487] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.432491] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.432495] system 00:06: [io 0xfe00] has been reserved +[ 0.432499] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.432504] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.432517] pnp 00:07: [io 0x0070-0x0077] +[ 0.432525] pnp 00:07: [irq 8] +[ 0.432587] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.452092] pnp 00:08: [io 0x0060] +[ 0.452096] pnp 00:08: [io 0x0064] +[ 0.452112] pnp 00:08: [irq 1] +[ 0.452226] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 0.452246] pnp 00:09: [irq 12] +[ 0.452305] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 0.452340] pnp: PnP ACPI: found 10 devices +[ 0.452343] ACPI: ACPI bus type pnp unregistered +[ 0.459104] PCI: max bus depth: 1 pci_try_num: 2 +[ 0.459195] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff] +[ 0.459204] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff]) +[ 0.459209] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.459214] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.459222] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.459229] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459239] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.459244] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.459252] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.459259] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459268] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.459272] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.459280] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.459287] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459296] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.459301] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.459308] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.459314] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459324] pci 0000:00:1e.0: PCI bridge to [bus 08-08] +[ 0.459327] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.459334] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.459340] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.459373] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.459380] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.459399] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.459405] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.459419] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.459425] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.459438] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.459444] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.459455] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.459460] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.459464] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff] +[ 0.459467] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 0.459470] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff] +[ 0.459474] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459478] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.459481] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.459484] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459488] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.459491] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff] +[ 0.459495] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459498] pci_bus 0000:06: resource 0 [io 0x5000-0x5fff] +[ 0.459501] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xc9ffffff] +[ 0.459505] pci_bus 0000:06: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459508] pci_bus 0000:08: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 0.459512] pci_bus 0000:08: resource 4 [io 0x0000-0xffff] +[ 0.459515] pci_bus 0000:08: resource 5 [mem 0x00000000-0xfffffffff] +[ 0.459580] NET: Registered protocol family 2 +[ 0.459816] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.461759] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.468207] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.469024] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.469028] TCP reno registered +[ 0.469052] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469325] NET: Registered protocol family 1 +[ 0.469358] pci 0000:00:02.0: Boot video device +[ 0.469577] PCI: CLS 64 bytes, default 64 +[ 0.469604] Simple Boot Flag at 0x36 set to 0x1 +[ 0.470069] audit: initializing netlink socket (disabled) +[ 0.470088] type=2000 audit(1317800082.464:1): initialized +[ 0.509918] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.531362] VFS: Disk quotas dquot_6.5.2 +[ 0.531454] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.532343] fuse init (API version 7.16) +[ 0.532465] msgmni has been set to 5719 +[ 0.532931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.532975] io scheduler noop registered +[ 0.532978] io scheduler deadline registered +[ 0.533033] io scheduler cfq registered (default) +[ 0.533206] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.533281] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.533378] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.533444] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.533540] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.533607] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.533705] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.533770] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.533898] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.533934] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.533994] intel_idle: MWAIT substates: 0x22220 +[ 0.533997] intel_idle: does not run on family 6 model 15 +[ 0.534105] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.534186] ACPI: AC Adapter [ACAD] (on-line) +[ 0.534267] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 0.534291] ACPI: Lid Switch [LID0] +[ 0.534348] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 +[ 0.534353] ACPI: Power Button [PWRB] +[ 0.534429] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.534434] ACPI: Power Button [PWRF] +[ 0.534479] ACPI: acpi_idle registered with cpuidle +[ 0.536970] Monitor-Mwait will be used to enter C-1 state +[ 0.537024] Monitor-Mwait will be used to enter C-2 state +[ 0.537059] Monitor-Mwait will be used to enter C-3 state +[ 0.537066] Marking TSC unstable due to TSC halts in idle +[ 0.576306] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.576339] ERST: Table is not found! +[ 0.576477] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.596514] ACPI: Battery Slot [BAT1] (battery present) +[ 0.756873] Freeing initrd memory: 19464k freed +[ 0.789948] Linux agpgart interface v0.103 +[ 0.790084] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 0.790242] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable +[ 0.791097] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 0.791250] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 0.792794] brd: module loaded +[ 0.793486] loop: module loaded +[ 0.793683] ata_piix 0000:00:1f.1: version 2.13 +[ 0.793701] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.793746] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.794143] scsi0 : ata_piix +[ 0.794282] scsi1 : ata_piix +[ 0.794784] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.794789] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.795227] Fixed MDIO Bus: probed +[ 0.795261] PPP generic driver version 2.4.2 +[ 0.795315] tun: Universal TUN/TAP device driver, 1.6 +[ 0.795318] tun: (C) 1999-2004 Max Krasnyansky +[ 0.795429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.795451] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.795472] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.795477] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.795524] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.795567] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.799463] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.799485] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc504800 +[ 0.812020] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.812182] hub 1-0:1.0: USB hub found +[ 0.812189] hub 1-0:1.0: 4 ports detected +[ 0.812291] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.812305] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.812310] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.812363] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.812398] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.816279] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.816301] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc504c00 +[ 0.832023] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.832151] hub 2-0:1.0: USB hub found +[ 0.832157] hub 2-0:1.0: 6 ports detected +[ 0.832258] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.832276] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.832305] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.832314] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.832319] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.832366] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.832412] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820 +[ 0.832569] hub 3-0:1.0: USB hub found +[ 0.832575] hub 3-0:1.0: 2 ports detected +[ 0.832668] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.832679] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.832684] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.832731] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.832775] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840 +[ 0.832936] hub 4-0:1.0: USB hub found +[ 0.832941] hub 4-0:1.0: 2 ports detected +[ 0.833028] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.833037] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.833042] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.833099] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.833134] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860 +[ 0.833291] hub 5-0:1.0: USB hub found +[ 0.833296] hub 5-0:1.0: 2 ports detected +[ 0.833384] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.833392] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.833397] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.833448] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.833493] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880 +[ 0.833649] hub 6-0:1.0: USB hub found +[ 0.833655] hub 6-0:1.0: 2 ports detected +[ 0.833737] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.833746] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.833750] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.833797] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.833832] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0 +[ 0.833984] hub 7-0:1.0: USB hub found +[ 0.833990] hub 7-0:1.0: 2 ports detected +[ 0.834133] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.858635] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.858644] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.858792] mousedev: PS/2 mouse device common for all mice +[ 0.860515] rtc_cmos 00:07: RTC can wake from S4 +[ 0.860650] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 0.860686] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.860821] device-mapper: uevent: version 1.0.3 +[ 0.860928] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com +[ 0.861015] cpuidle: using governor ladder +[ 0.861137] cpuidle: using governor menu +[ 0.861140] EFI Variables Facility v0.08 2004-May-17 +[ 0.861497] TCP cubic registered +[ 0.861666] NET: Registered protocol family 10 +[ 0.862339] NET: Registered protocol family 17 +[ 0.862362] Registering the dns_resolver key type +[ 0.862505] PM: Hibernation image not present or could not be loaded. +[ 0.862521] registered taskstats version 1 +[ 0.881709] Magic number: 15:169:571 +[ 0.881852] rtc_cmos 00:07: setting system clock to 2011-10-05 07:34:43 UTC (1317800083) +[ 0.882695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.882699] EDD information not available. +[ 0.885384] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.964510] ata1.00: ATAPI: MATSHITADVD-RAM UJ-850 z, RB32, max UDMA/33 +[ 0.980374] ata1.00: configured for UDMA/33 +[ 0.983110] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-850 z RB32 PQ: 0 ANSI: 5 +[ 0.985684] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.985690] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 0.985886] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.985957] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.988684] Freeing unused kernel memory: 984k freed +[ 0.989019] Write protecting the kernel read-only data: 10240k +[ 0.989354] Freeing unused kernel memory: 20k freed +[ 0.996526] Freeing unused kernel memory: 1400k freed +[ 1.023090] udevd[92]: starting version 173 +[ 1.095474] [drm] Initialized drm 1.1.0 20060810 +[ 1.111223] tg3.c:v3.119 (May 18, 2011) +[ 1.111255] tg3 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.111275] tg3 0000:06:00.0: setting latency timer to 64 +[ 1.123354] wmi: Mapper loaded +[ 1.135292] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.135301] i915 0000:00:02.0: setting latency timer to 64 +[ 1.229432] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 1.229442] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 1.229444] [drm] Driver supports precise vblank timestamp query. +[ 1.229504] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.231431] sdhci: Secure Digital Host Controller Interface driver +[ 1.231435] sdhci: Copyright(c) Pierre Ossman +[ 1.231761] sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 19) +[ 1.231780] sdhci-pci 0000:08:06.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 1.232804] sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.251222] mmc0: no vmmc regulator found +[ 1.252265] Registered led device: mmc0:: +[ 1.258216] mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA +[ 1.278826] tg3 0000:06:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:0c:7f:47 +[ 1.278833] tg3 0000:06:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0]) +[ 1.278838] tg3 0000:06:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.278842] tg3 0000:06:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.288114] firewire_ohci 0000:08:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.288352] fixme: max PWM is zero. +[ 1.321105] [drm] initialized overlay support +[ 1.363095] firewire_ohci: Added fw-ohci device 0000:08:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 1.429305] usb 1-4: new high speed USB device number 4 using ehci_hcd +[ 1.510188] fbcon: inteldrmfb (fb0) is primary device +[ 1.510267] Console: switching to colour frame buffer device 160x50 +[ 1.510301] fb0: inteldrmfb frame buffer device +[ 1.510304] drm: registered panic notifier +[ 1.596139] acpi device:08: registered as cooling_device2 +[ 1.596350] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4 +[ 1.596428] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.596505] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 1.596723] ahci 0000:00:1f.2: version 3.0 +[ 1.596748] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.596832] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.596928] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.596934] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc +[ 1.596941] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.600697] scsi2 : ahci +[ 1.601002] scsi3 : ahci +[ 1.601154] scsi4 : ahci +[ 1.601328] ata3: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504100 irq 45 +[ 1.601335] ata4: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504180 irq 45 +[ 1.601340] ata5: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504200 irq 45 +[ 1.860262] firewire_core: created device fw0: GUID 00023f7bac4040de, S400 +[ 1.920122] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.921792] ata3.00: unexpected _GTF length (8) +[ 1.922070] ata3.00: ATA-8: WDC WD2500BEKT-75PVMT0, 01.01A01, max UDMA/133 +[ 1.922077] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.923756] ata3.00: unexpected _GTF length (8) +[ 1.924053] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.924081] ata3.00: configured for UDMA/133 +[ 1.924106] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.924318] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEKT-7 01.0 PQ: 0 ANSI: 5 +[ 1.924525] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.924642] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.924823] sd 2:0:0:0: [sda] Write Protect is off +[ 1.924828] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.924898] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.020840] sda: sda1 sda2 sda3 sda4 < sda5 > +[ 2.021461] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.032059] usb 3-1: new full speed USB device number 2 using uhci_hcd +[ 2.464056] usb 4-1: new full speed USB device number 2 using uhci_hcd +[ 2.872042] usb 6-1: new low speed USB device number 2 using uhci_hcd +[ 3.093235] input: MLK Trust Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5 +[ 3.093727] generic-usb 0003:04FC:05DA.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Trust Mouse] on usb-0000:00:1d.1-1/input0 +[ 3.093905] usbcore: registered new interface driver usbhid +[ 3.093909] usbhid: USB HID core driver +[ 3.288960] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 3.308073] usb 6-2: new full speed USB device number 3 using uhci_hcd +[ 3.720052] usb 7-1: new low speed USB device number 2 using uhci_hcd +[ 3.918393] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input6 +[ 3.918495] generic-usb 0003:046D:C312.0002: input,hidraw1: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:00:1d.2-1/input0 +[ 5.565904] Adding 15999996k swap on /dev/sda3. Priority:-1 extents:1 across:15999996k +[ 5.691364] udevd[373]: starting version 173 +[ 6.303871] lp: driver loaded but no devices found +[ 7.040655] cfg80211: Calling CRDA to update world regulatory domain +[ 7.159284] r852 0000:08:06.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 7.159297] r852 0000:08:06.3: setting latency timer to 64 +[ 7.159394] r852: Non dma capable device detected, dma disabled +[ 7.159411] r852: driver loaded successfully +[ 7.169632] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s +[ 7.169637] iwl3945: Copyright(c) 2003-2011 Intel Corporation +[ 7.169734] iwl3945 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.169751] iwl3945 0000:04:00.0: setting latency timer to 64 +[ 7.225063] iwl3945 0000:04:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels +[ 7.225067] iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG +[ 7.225225] iwl3945 0000:04:00.0: irq 46 for MSI/MSI-X +[ 7.225470] Registered led device: phy0-led +[ 7.225511] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 7.521071] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs' +[ 7.728682] udevd[389]: renamed network interface eth0 to eth1 +[ 7.785421] udevd[392]: renamed network interface wlan0 to wlan1 +[ 7.839555] device-mapper: multipath: version 1.3.0 loaded +[ 7.920206] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x25c0b1, caps: 0xa04713/0x200000/0x0 +[ 8.001393] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.103705] Linux video capture interface: v2.00 +[ 8.142601] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b013) +[ 8.145395] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.7/usb1/1-4/1-4:1.0/input/input8 +[ 8.145503] usbcore: registered new interface driver uvcvideo +[ 8.145506] USB Video Class driver (v1.1.0) +[ 8.268868] gspca: v2.13.0 registered +[ 8.426860] Bluetooth: Core ver 2.16 +[ 8.426898] NET: Registered protocol family 31 +[ 8.426901] Bluetooth: HCI device and connection manager initialized +[ 8.426905] Bluetooth: HCI socket layer initialized +[ 8.426908] Bluetooth: L2CAP socket layer initialized +[ 8.426983] Bluetooth: SCO socket layer initialized +[ 8.445120] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 8.445873] usbcore: registered new interface driver btusb +[ 8.596127] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 8.596132] cfg80211: World regulatory domain updated: +[ 8.596135] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.596139] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596144] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596147] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596151] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596155] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.713241] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 8.713332] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 8.713375] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 9.214524] type=1400 audit(1317800091.827:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=762 comm="apparmor_parser" +[ 9.214539] type=1400 audit(1317800091.827:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=760 comm="apparmor_parser" +[ 9.214899] type=1400 audit(1317800091.827:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=762 comm="apparmor_parser" +[ 9.214917] type=1400 audit(1317800091.827:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=760 comm="apparmor_parser" +[ 9.215139] type=1400 audit(1317800091.827:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=762 comm="apparmor_parser" +[ 9.215162] type=1400 audit(1317800091.827:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=760 comm="apparmor_parser" +[ 9.215989] type=1400 audit(1317800091.827:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=761 comm="apparmor_parser" +[ 9.216386] type=1400 audit(1317800091.831:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=761 comm="apparmor_parser" +[ 9.216637] type=1400 audit(1317800091.831:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=761 comm="apparmor_parser" +[ 9.565602] input: zc3xx as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input9 +[ 9.565840] usbcore: registered new interface driver zc3xx +[ 9.567768] usbcore: registered new interface driver snd-usb-audio +[ 10.957262] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 11.498897] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 11.610016] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 13.338782] type=1400 audit(1317800095.951:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1170 comm="apparmor_parser" +[ 14.107842] ppdev: user-space parallel port driver +[ 16.201248] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.241864] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.244584] microcode: Microcode Update Driver: v2.00 , Peter Oruba +[ 16.257389] iwl3945 0000:04:00.0: loaded firmware version 15.32.2.9 +[ 16.319712] microcode: CPU0 updated to revision 0xa4, date = 2010-10-02 +[ 16.320392] microcode: CPU1 updated to revision 0xa4, date = 2010-10-02 +[ 16.327663] ADDRCONF(NETDEV_UP): wlan1: link is not ready +[ 16.411245] tg3 0000:06:00.0: irq 48 for MSI/MSI-X +[ 16.441602] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 17.163336] init: failsafe main process (1112) killed by TERM signal +[ 17.369512] init: gdm main process (1340) killed by TERM signal +[ 18.121686] tg3 0000:06:00.0: eth1: Link is up at 100 Mbps, full duplex +[ 18.121691] tg3 0000:06:00.0: eth1: Flow control is on for TX and on for RX +[ 18.122295] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready +[ 21.210518] RPC: Registered named UNIX socket transport module. +[ 21.210523] RPC: Registered udp transport module. +[ 21.210525] RPC: Registered tcp transport module. +[ 21.210528] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 21.445931] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 21.627527] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory +[ 21.636586] NFSD: starting 90-second grace period +[ 24.852307] vboxdrv: Found 2 processor cores. +[ 24.852593] vboxdrv: fAsync=0 offMin=0x1c2 offMax=0xae6 +[ 24.852666] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'. +[ 24.852669] vboxdrv: Successfully loaded version 4.1.2_Ubuntu (interface 0x00190000). +[ 25.101599] vboxpci: IOMMU not found (not registered) +[ 27.046401] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 27.046405] Bluetooth: BNEP filters: protocol multicast +[ 27.081903] Bluetooth: RFCOMM TTY layer initialized +[ 27.081919] Bluetooth: RFCOMM socket layer initialized +[ 27.081921] Bluetooth: RFCOMM ver 1.11 +[ 28.752057] eth1: no IPv6 routers present +[ 33.139443] init: plymouth-stop pre-start process (2005) terminated with status 1 +[ 33.628053] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro,commit=0 +[ 34.056830] EXT4-fs (sda1): re-mounted. Opts: commit=0 +[ 34.217110] EXT4-fs (sda5): re-mounted. Opts: commit=0 +[ 45.192742] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 45.196319] wlan1: authenticated +[ 45.199717] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 45.202749] wlan1: RX AssocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 45.202758] wlan1: associated +[ 45.206342] ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready +[ 45.206456] cfg80211: Calling CRDA for country: GB +[ 45.213483] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213493] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213498] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213505] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213509] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213516] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213520] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213526] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213531] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213537] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213542] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213547] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213552] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213558] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213569] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213573] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213579] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213584] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213590] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213594] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213600] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213605] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213611] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213615] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213621] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213626] cfg80211: Disabling freq 5170 MHz +[ 45.213630] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213636] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213640] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213646] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213651] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213657] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213662] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213667] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213672] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213678] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213683] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213688] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213693] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213699] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213704] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213710] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213714] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213720] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213725] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213731] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213742] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213746] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213752] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213757] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213763] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213768] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213774] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213779] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213785] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213789] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213795] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213800] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213806] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213810] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213816] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213821] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213827] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213831] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213837] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213842] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213848] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213852] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213858] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213864] cfg80211: Regulatory domain changed to country: GB +[ 45.213868] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 45.213873] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213879] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213884] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213889] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 52.640123] eth1: no IPv6 routers present +[ 55.208282] wlan1: disassociating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.214021] cfg80211: All devices are disconnected, going to restore regulatory settings +[ 55.214032] cfg80211: Restoring regulatory settings +[ 55.214052] cfg80211: Calling CRDA to update world regulatory domain +[ 55.214778] wlan1: deauthenticating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.221291] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 55.221299] cfg80211: World regulatory domain updated: +[ 55.221303] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 55.221309] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221315] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221321] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221327] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221333] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.392119] wlan1: no IPv6 routers present +[ 58.763822] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 58.765582] wlan1: authenticated +[ 58.766582] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 58.769972] wlan1: RX ReassocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 58.769980] wlan1: associated +[ 58.773587] cfg80211: Calling CRDA for country: GB +[ 58.778304] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778310] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778314] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778318] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778321] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778325] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778328] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778332] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778335] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778340] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778343] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778347] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778350] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778354] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778357] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778361] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778364] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778368] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778371] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778375] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778378] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778382] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778385] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778389] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778392] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778396] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778399] cfg80211: Disabling freq 5170 MHz +[ 58.778402] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778406] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778409] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778413] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778416] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778420] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778423] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778427] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778430] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778434] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778437] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778441] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778444] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778448] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778452] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778456] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778459] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778463] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778466] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778470] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778473] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778477] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778480] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778484] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778487] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778491] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778494] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778498] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778501] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778505] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778508] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778512] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778515] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778519] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778522] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778526] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778529] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778533] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778536] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778540] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778543] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778547] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778550] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778554] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778558] cfg80211: Regulatory domain changed to country: GB +[ 58.778560] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 58.778564] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778568] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778571] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778575] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 70.176124] wlan1: no IPv6 routers present +[ 75.152080] eth1: no IPv6 routers present +[ 98.736094] eth1: no IPv6 routers present +[ 648.357292] ecryptfs_mount: kern_path() failed +[ 648.388155] Reading sb failed; rc = [-2] +[ 670.016019] eth1: no IPv6 routers present +[ 688.176048] eth1: no IPv6 routers present +[ 711.096140] eth1: no IPv6 routers present diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-json-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-json-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test --json-data-path option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ +HERE=$FWTSTESTDIR/arg-json-0001 + +$FWTS --log-format="%line %owner " -w 80 --json-data-path=$HERE --klog=$FWTSTESTDIR/arg-json-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-json-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-json-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-json-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test -j option" +NAME=test-0002.sh +TMPLOG=$TMP/klog.log.$$ +HERE=$FWTSTESTDIR/arg-json-0001 + +$FWTS --log-format="%line %owner " -w 80 -j $HERE --klog=$FWTSTESTDIR/arg-json-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-json-0001/klog-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/test-0003.sh fwts-14.03.00/fwts-test/arg-json-0001/test-0003.sh --- fwts-14.02.00/fwts-test/arg-json-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test --json-data-path option with bad path" +NAME=test-0003.sh +TMPLOG=$TMP/klog.log.$$ +HERE=`pwd` + +$FWTS --log-format="%line %owner " -w 80 --json-data-path=/xxxx/fooo --klog=$FWTSTESTDIR/arg-json-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-json-0001/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-json-0001/test-0004.sh fwts-14.03.00/fwts-test/arg-json-0001/test-0004.sh --- fwts-14.02.00/fwts-test/arg-json-0001/test-0004.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-json-0001/test-0004.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test -j option with bad path" +NAME=test-0004.sh +TMPLOG=$TMP/klog.log.$$ +HERE=`pwd` + +$FWTS --log-format="%line %owner " -w 80 -j /xxxx/fooo --klog=$FWTSTESTDIR/arg-json-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-json-0001/klog-0004.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-klog-0001/klog-0001.log fwts-14.03.00/fwts-test/arg-klog-0001/klog-0001.log --- fwts-14.02.00/fwts-test/arg-klog-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-klog-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,57 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog FAILED [CRITICAL] KlogPciAcpiOscRequestFailed: Test 1, +klog CRITICAL Kernel message: [ 0.396181] pci0000:00: ACPI _OSC +klog request failed (AE_NOT_FOUND), returned control mask: 0x1d +klog +klog ADVICE: The _OSC method evaluation failed, which will +klog result in disabling PCIe functionality, for example, the +klog Linux kernel has to disable Active State Power Management +klog (ASPM) which means that PCIe power management is not +klog optimally configured. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.534105] ACPI: Deprecated procfs I +klog /F for AC is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI AC Adapter, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.576306] ACPI: Deprecated procfs I +klog /F for battery is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI battery, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog Found 4 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 4 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-klog-0001/klog.txt fwts-14.03.00/fwts-test/arg-klog-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-klog-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-klog-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1063 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 3.0.0-12-generic (buildd@crested) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #19-Ubuntu SMP Fri Sep 23 21:23:39 UTC 2011 (Ubuntu 3.0.0-12.19-generic 3.0.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved) +[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable) +[ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6e3000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: LENOVO 0769BMG/IEL10, BIOS 68ET27WW 11/14/2007 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] original variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] total RAM covered: 3063M +[ 0.000000] Found optimal setting for mtrr clean up +[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 4 lose cover RAM: 0G +[ 0.000000] New variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] found SMP MP-table at [ffff8800000f72c0] f72c0 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf6d0000 page 4k +[ 0.000000] kernel direct mapping tables up to bf6d0000 @ bf6cb000-bf6d0000 +[ 0.000000] RAMDISK: 359ec000 - 36cee000 +[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 3062MB) +[ 0.000000] ACPI: RSDP 00000000000f7240 00024 (v02 LENOVO) +[ 0.000000] ACPI: XSDT 00000000bf6d87f0 00094 (v01 LENOVO TP-68 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bf6dfbd2 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 00000000bf6d9b6a 05FF4 (v02 TOSCPL CRESTLNE 06040000 INTL 20060608) +[ 0.000000] ACPI: FACS 00000000bf6e2fc0 00040 +[ 0.000000] ACPI: APIC 00000000bf6dfcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 00000000bf6dfd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 00000000bf6dfd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 00000000bf6dfda2 00032 (v01 Intel CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TMOR 00000000bf6dfdd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: SLIC 00000000bf6dfdfa 00176 (v01 LENOVO TP-68 06040000 TBD 00000001) +[ 0.000000] ACPI: APIC 00000000bf6dff70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bf6dffd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf6d98bd 002AD (v01 SataRe SataAhci 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d981a 000A3 (v01 BrtRef DD01BRT 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8e10 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8d6a 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8884 004E6 (v01 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bf6d0000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bf6d0000 +[ 0.000000] NODE_DATA [00000000bf6c6000 - 00000000bf6cafff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800bbe00000-ffff8800be7fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf6d0 +[ 0.000000] On node 0 totalpages: 783967 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 5 pages reserved +[ 0.000000] DMA zone: 3922 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10664 pages used for memmap +[ 0.000000] DMA32 zone: 769320 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000 +[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000 +[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000 +[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800bf400000 s79616 r8192 d22784 u1048576 +[ 0.000000] pcpu-alloc: s79616 r8192 d22784 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773242 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 2928536k/3136320k available (6104k kernel code, 452k absent, 207332k reserved, 4880k data, 984k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:512 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] vt handoff: transparent VT on vt#7 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 25165824 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1496.217 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.43 BogoMIPS (lpj=5984868) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004056] Security Framework initialized +[ 0.004080] AppArmor: AppArmor initialized +[ 0.004083] Yama: becoming mindful. +[ 0.004759] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.010636] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.012341] Mount-cache hash table entries: 256 +[ 0.012557] Initializing cgroup subsys cpuacct +[ 0.012565] Initializing cgroup subsys memory +[ 0.012580] Initializing cgroup subsys devices +[ 0.012583] Initializing cgroup subsys freezer +[ 0.012586] Initializing cgroup subsys net_cls +[ 0.012589] Initializing cgroup subsys blkio +[ 0.012598] Initializing cgroup subsys perf_event +[ 0.012643] CPU: Physical Processor ID: 0 +[ 0.012645] CPU: Processor Core ID: 0 +[ 0.012649] mce: CPU supports 6 MCE banks +[ 0.012661] CPU0: Thermal monitoring handled by SMI +[ 0.012667] using mwait in idle threads. +[ 0.016288] ACPI: Core revision 20110413 +[ 0.024040] ftrace: allocating 25651 entries in 101 pages +[ 0.028444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.071627] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d +[ 0.072003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.072003] PEBS disabled due to CPU errata. +[ 0.072003] ... version: 2 +[ 0.072003] ... bit width: 40 +[ 0.072003] ... generic registers: 2 +[ 0.072003] ... value mask: 000000ffffffffff +[ 0.072003] ... max period: 000000007fffffff +[ 0.072003] ... fixed-purpose events: 3 +[ 0.072003] ... event mask: 0000000700000003 +[ 0.072003] Booting Node 0, Processors #1 Ok. +[ 0.072003] smpboot cpu 1: start_ip = 9a000 +[ 0.008000] CPU1: Thermal monitoring handled by SMI +[ 0.160029] Brought up 2 CPUs +[ 0.160033] Total of 2 processors activated (5984.88 BogoMIPS). +[ 0.161224] devtmpfs: initialized +[ 0.161224] PM: Registering ACPI NVS region at bf6d0000 (77824 bytes) +[ 0.162075] print_constraints: dummy: +[ 0.162115] Time: 7:34:42 Date: 10/05/11 +[ 0.162171] NET: Registered protocol family 16 +[ 0.162209] Trying to unpack rootfs image as initramfs... +[ 0.164047] ACPI: bus type pci registered +[ 0.164133] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.164138] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.220043] PCI: Using configuration type 1 for base access +[ 0.221379] bio: create slab at 0 +[ 0.223506] ACPI: EC: Look up EC in DSDT +[ 0.228089] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 0.229039] ACPI: SSDT 00000000bf6d959e 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229543] ACPI: Dynamic OEM Table Load: +[ 0.229548] ACPI: SSDT (null) 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229696] ACPI: SSDT 00000000bf6d906f 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230165] ACPI: Dynamic OEM Table Load: +[ 0.230169] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230454] ACPI: SSDT 00000000bf6d9752 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232427] ACPI: Dynamic OEM Table Load: +[ 0.232432] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232541] ACPI: SSDT 00000000bf6d9519 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.233011] ACPI: Dynamic OEM Table Load: +[ 0.233015] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.238295] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 0.344070] ACPI: Interpreter enabled +[ 0.344078] ACPI: (supports S0 S3 S4 S5) +[ 0.344118] ACPI: Using IOAPIC for interrupt routing +[ 0.389051] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.389294] ACPI: No dock devices found. +[ 0.389298] HEST: Table not found. +[ 0.389303] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.389762] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.390623] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.390628] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.390632] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.390636] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) +[ 0.390640] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) +[ 0.390645] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored) +[ 0.390648] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.390665] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600 +[ 0.390726] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300 +[ 0.390746] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfc0fffff 64bit] +[ 0.390758] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 0.390767] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807] +[ 0.390812] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380 +[ 0.390829] pci 0000:00:02.1: reg 10: [mem 0xfc100000-0xfc1fffff 64bit] +[ 0.390937] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03 +[ 0.391013] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f] +[ 0.391065] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03 +[ 0.391126] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f] +[ 0.391187] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03 +[ 0.391216] pci 0000:00:1a.7: reg 10: [mem 0xfc504800-0xfc504bff] +[ 0.391321] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.391328] pci 0000:00:1a.7: PME# disabled +[ 0.391362] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403 +[ 0.391386] pci 0000:00:1b.0: reg 10: [mem 0xfc300000-0xfc303fff 64bit] +[ 0.391473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.391479] pci 0000:00:1b.0: PME# disabled +[ 0.391514] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604 +[ 0.391605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.391611] pci 0000:00:1c.0: PME# disabled +[ 0.391647] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604 +[ 0.391735] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.391741] pci 0000:00:1c.1: PME# disabled +[ 0.391775] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604 +[ 0.391868] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.391874] pci 0000:00:1c.2: PME# disabled +[ 0.391911] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604 +[ 0.391999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.392005] pci 0000:00:1c.3: PME# disabled +[ 0.392053] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03 +[ 0.392114] pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f] +[ 0.392162] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03 +[ 0.392238] pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f] +[ 0.392293] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03 +[ 0.392371] pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf] +[ 0.392438] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03 +[ 0.392466] pci 0000:00:1d.7: reg 10: [mem 0xfc504c00-0xfc504fff] +[ 0.392567] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.392573] pci 0000:00:1d.7: PME# disabled +[ 0.392603] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.392698] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601 +[ 0.392816] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.392824] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.392829] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.392835] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f) +[ 0.392884] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101 +[ 0.392903] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.392918] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.392931] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.392944] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.392958] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f] +[ 0.393014] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106 +[ 0.393042] pci 0000:00:1f.2: reg 10: [io 0x1c00-0x1c07] +[ 0.393056] pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7] +[ 0.393069] pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df] +[ 0.393082] pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3] +[ 0.393095] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff] +[ 0.393108] pci 0000:00:1f.2: reg 24: [mem 0xfc504000-0xfc5047ff] +[ 0.393157] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.393163] pci 0000:00:1f.2: PME# disabled +[ 0.393188] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05 +[ 0.393206] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff] +[ 0.393250] pci 0000:00:1f.3: reg 20: [io 0x1c20-0x1c3f] +[ 0.393354] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.393360] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.393367] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.393376] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.393501] pci 0000:04:00.0: [8086:4227] type 0 class 0x000280 +[ 0.393557] pci 0000:04:00.0: reg 10: [mem 0xf8000000-0xf8000fff] +[ 0.393895] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 0.393908] pci 0000:04:00.0: PME# disabled +[ 0.393979] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.394021] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.394027] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.394033] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.394043] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.394110] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.394116] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.394122] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.394132] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.394268] pci 0000:06:00.0: [14e4:1713] type 0 class 0x000200 +[ 0.394336] pci 0000:06:00.0: reg 10: [mem 0xc8000000-0xc800ffff 64bit] +[ 0.394639] pci 0000:06:00.0: PME# supported from D3hot D3cold +[ 0.394651] pci 0000:06:00.0: PME# disabled +[ 0.394783] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.394789] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.394796] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.394806] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.394868] pci 0000:08:06.0: [1180:0832] type 0 class 0x000c00 +[ 0.394886] pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.394890] pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller +[ 0.394909] pci 0000:08:06.0: reg 10: [mem 0xfc200000-0xfc2007ff] +[ 0.395006] pci 0000:08:06.0: supports D1 D2 +[ 0.395009] pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395016] pci 0000:08:06.0: PME# disabled +[ 0.395045] pci 0000:08:06.1: [1180:0822] type 0 class 0x000805 +[ 0.395069] pci 0000:08:06.1: reg 10: [mem 0xfc200800-0xfc2008ff] +[ 0.395165] pci 0000:08:06.1: supports D1 D2 +[ 0.395168] pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395174] pci 0000:08:06.1: PME# disabled +[ 0.395199] pci 0000:08:06.2: [1180:0592] type 0 class 0x000880 +[ 0.395224] pci 0000:08:06.2: reg 10: [mem 0xfc201000-0xfc2010ff] +[ 0.395317] pci 0000:08:06.2: supports D1 D2 +[ 0.395320] pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395326] pci 0000:08:06.2: PME# disabled +[ 0.395350] pci 0000:08:06.3: [1180:0852] type 0 class 0x000880 +[ 0.395376] pci 0000:08:06.3: reg 10: [mem 0xfc201400-0xfc2014ff] +[ 0.395474] pci 0000:08:06.3: supports D1 D2 +[ 0.395477] pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395484] pci 0000:08:06.3: PME# disabled +[ 0.395549] pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode) +[ 0.395556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.395562] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.395572] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.395576] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.395580] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) +[ 0.395619] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.395828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.395887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.395944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.395999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.396116] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.396176] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.396181] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d +[ 0.396184] ACPI _OSC control for PCIe not granted, disabling ASPM +[ 0.404002] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.404086] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404153] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.404217] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404282] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.404353] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404419] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.404484] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.404647] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.404670] vgaarb: loaded +[ 0.404672] vgaarb: bridge control possible 0000:00:02.0 +[ 0.404971] SCSI subsystem initialized +[ 0.405069] libata version 3.00 loaded. +[ 0.405143] usbcore: registered new interface driver usbfs +[ 0.405158] usbcore: registered new interface driver hub +[ 0.405200] usbcore: registered new device driver usb +[ 0.405322] PCI: Using ACPI for IRQ routing +[ 0.416330] PCI: pci_cache_line_size set to 64 bytes +[ 0.416509] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.416513] reserve RAM buffer: 00000000bf6d0000 - 00000000bfffffff +[ 0.416683] NetLabel: Initializing +[ 0.416686] NetLabel: domain hash size = 128 +[ 0.416688] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.416706] NetLabel: unlabeled traffic allowed by default +[ 0.416770] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.416777] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.416784] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.420524] Switching to clocksource hpet +[ 0.423392] Switched to NOHz mode on CPU #0 +[ 0.423487] Switched to NOHz mode on CPU #1 +[ 0.430603] AppArmor: AppArmor Filesystem Enabled +[ 0.430649] pnp: PnP ACPI init +[ 0.430672] ACPI: bus type pnp registered +[ 0.431166] pnp 00:00: [bus 00-ff] +[ 0.431171] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.431174] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.431177] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.431181] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.431184] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 0.431187] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 0.431190] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 0.431197] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 0.431201] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 0.431204] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 0.431207] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 0.431210] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 0.431213] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 0.431216] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 0.431219] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 0.431222] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 0.431225] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 0.431229] pnp 00:00: [mem 0xc0000000-0xdfffffff window] +[ 0.431232] pnp 00:00: [mem 0xf0000000-0xfebfffff window] +[ 0.431235] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 0.431344] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.431447] pnp 00:01: [mem 0xfed1c000-0xfed1ffff] +[ 0.431450] pnp 00:01: [mem 0xfed14000-0xfed17fff] +[ 0.431453] pnp 00:01: [mem 0xfed18000-0xfed18fff] +[ 0.431456] pnp 00:01: [mem 0xfed19000-0xfed19fff] +[ 0.431458] pnp 00:01: [mem 0xe0000000-0xefffffff] +[ 0.431461] pnp 00:01: [mem 0xfed20000-0xfed3ffff] +[ 0.431464] pnp 00:01: [mem 0xfed40000-0xfed44fff] +[ 0.431467] pnp 00:01: [mem 0xfed45000-0xfed8ffff] +[ 0.431559] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.431564] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.431568] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.431572] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.431576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.431580] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.431584] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.431588] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.431593] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.431859] pnp 00:02: [io 0x0000-0x001f] +[ 0.431862] pnp 00:02: [io 0x0081-0x0091] +[ 0.431864] pnp 00:02: [io 0x0093-0x009f] +[ 0.431867] pnp 00:02: [io 0x00c0-0x00df] +[ 0.431870] pnp 00:02: [dma 4] +[ 0.431931] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.431946] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 0.432030] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.432131] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 0.432218] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.432223] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 0.432239] pnp 00:05: [io 0x00f0] +[ 0.432256] pnp 00:05: [irq 13] +[ 0.432321] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.432337] pnp 00:06: [io 0x002e-0x002f] +[ 0.432340] pnp 00:06: [io 0x004e-0x004f] +[ 0.432343] pnp 00:06: [io 0x0061] +[ 0.432345] pnp 00:06: [io 0x0063] +[ 0.432348] pnp 00:06: [io 0x0065] +[ 0.432351] pnp 00:06: [io 0x0067] +[ 0.432353] pnp 00:06: [io 0x0080] +[ 0.432355] pnp 00:06: [io 0x0092] +[ 0.432358] pnp 00:06: [io 0x00b2-0x00b3] +[ 0.432361] pnp 00:06: [io 0x0680-0x069f] +[ 0.432363] pnp 00:06: [io 0x0800-0x080f] +[ 0.432366] pnp 00:06: [io 0x1000-0x107f] +[ 0.432373] pnp 00:06: [io 0x1180-0x11bf] +[ 0.432375] pnp 00:06: [io 0xfe00] +[ 0.432378] pnp 00:06: [io 0xff00-0xff7f] +[ 0.432479] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.432484] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.432487] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.432491] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.432495] system 00:06: [io 0xfe00] has been reserved +[ 0.432499] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.432504] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.432517] pnp 00:07: [io 0x0070-0x0077] +[ 0.432525] pnp 00:07: [irq 8] +[ 0.432587] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.452092] pnp 00:08: [io 0x0060] +[ 0.452096] pnp 00:08: [io 0x0064] +[ 0.452112] pnp 00:08: [irq 1] +[ 0.452226] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 0.452246] pnp 00:09: [irq 12] +[ 0.452305] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 0.452340] pnp: PnP ACPI: found 10 devices +[ 0.452343] ACPI: ACPI bus type pnp unregistered +[ 0.459104] PCI: max bus depth: 1 pci_try_num: 2 +[ 0.459195] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff] +[ 0.459204] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff]) +[ 0.459209] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.459214] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.459222] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.459229] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459239] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.459244] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.459252] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.459259] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459268] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.459272] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.459280] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.459287] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459296] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.459301] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.459308] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.459314] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459324] pci 0000:00:1e.0: PCI bridge to [bus 08-08] +[ 0.459327] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.459334] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.459340] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.459373] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.459380] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.459399] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.459405] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.459419] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.459425] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.459438] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.459444] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.459455] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.459460] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.459464] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff] +[ 0.459467] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 0.459470] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff] +[ 0.459474] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459478] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.459481] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.459484] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459488] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.459491] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff] +[ 0.459495] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459498] pci_bus 0000:06: resource 0 [io 0x5000-0x5fff] +[ 0.459501] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xc9ffffff] +[ 0.459505] pci_bus 0000:06: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459508] pci_bus 0000:08: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 0.459512] pci_bus 0000:08: resource 4 [io 0x0000-0xffff] +[ 0.459515] pci_bus 0000:08: resource 5 [mem 0x00000000-0xfffffffff] +[ 0.459580] NET: Registered protocol family 2 +[ 0.459816] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.461759] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.468207] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.469024] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.469028] TCP reno registered +[ 0.469052] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469325] NET: Registered protocol family 1 +[ 0.469358] pci 0000:00:02.0: Boot video device +[ 0.469577] PCI: CLS 64 bytes, default 64 +[ 0.469604] Simple Boot Flag at 0x36 set to 0x1 +[ 0.470069] audit: initializing netlink socket (disabled) +[ 0.470088] type=2000 audit(1317800082.464:1): initialized +[ 0.509918] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.531362] VFS: Disk quotas dquot_6.5.2 +[ 0.531454] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.532343] fuse init (API version 7.16) +[ 0.532465] msgmni has been set to 5719 +[ 0.532931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.532975] io scheduler noop registered +[ 0.532978] io scheduler deadline registered +[ 0.533033] io scheduler cfq registered (default) +[ 0.533206] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.533281] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.533378] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.533444] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.533540] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.533607] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.533705] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.533770] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.533898] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.533934] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.533994] intel_idle: MWAIT substates: 0x22220 +[ 0.533997] intel_idle: does not run on family 6 model 15 +[ 0.534105] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.534186] ACPI: AC Adapter [ACAD] (on-line) +[ 0.534267] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 0.534291] ACPI: Lid Switch [LID0] +[ 0.534348] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 +[ 0.534353] ACPI: Power Button [PWRB] +[ 0.534429] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.534434] ACPI: Power Button [PWRF] +[ 0.534479] ACPI: acpi_idle registered with cpuidle +[ 0.536970] Monitor-Mwait will be used to enter C-1 state +[ 0.537024] Monitor-Mwait will be used to enter C-2 state +[ 0.537059] Monitor-Mwait will be used to enter C-3 state +[ 0.537066] Marking TSC unstable due to TSC halts in idle +[ 0.576306] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.576339] ERST: Table is not found! +[ 0.576477] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.596514] ACPI: Battery Slot [BAT1] (battery present) +[ 0.756873] Freeing initrd memory: 19464k freed +[ 0.789948] Linux agpgart interface v0.103 +[ 0.790084] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 0.790242] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable +[ 0.791097] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 0.791250] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 0.792794] brd: module loaded +[ 0.793486] loop: module loaded +[ 0.793683] ata_piix 0000:00:1f.1: version 2.13 +[ 0.793701] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.793746] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.794143] scsi0 : ata_piix +[ 0.794282] scsi1 : ata_piix +[ 0.794784] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.794789] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.795227] Fixed MDIO Bus: probed +[ 0.795261] PPP generic driver version 2.4.2 +[ 0.795315] tun: Universal TUN/TAP device driver, 1.6 +[ 0.795318] tun: (C) 1999-2004 Max Krasnyansky +[ 0.795429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.795451] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.795472] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.795477] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.795524] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.795567] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.799463] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.799485] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc504800 +[ 0.812020] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.812182] hub 1-0:1.0: USB hub found +[ 0.812189] hub 1-0:1.0: 4 ports detected +[ 0.812291] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.812305] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.812310] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.812363] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.812398] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.816279] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.816301] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc504c00 +[ 0.832023] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.832151] hub 2-0:1.0: USB hub found +[ 0.832157] hub 2-0:1.0: 6 ports detected +[ 0.832258] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.832276] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.832305] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.832314] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.832319] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.832366] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.832412] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820 +[ 0.832569] hub 3-0:1.0: USB hub found +[ 0.832575] hub 3-0:1.0: 2 ports detected +[ 0.832668] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.832679] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.832684] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.832731] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.832775] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840 +[ 0.832936] hub 4-0:1.0: USB hub found +[ 0.832941] hub 4-0:1.0: 2 ports detected +[ 0.833028] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.833037] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.833042] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.833099] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.833134] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860 +[ 0.833291] hub 5-0:1.0: USB hub found +[ 0.833296] hub 5-0:1.0: 2 ports detected +[ 0.833384] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.833392] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.833397] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.833448] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.833493] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880 +[ 0.833649] hub 6-0:1.0: USB hub found +[ 0.833655] hub 6-0:1.0: 2 ports detected +[ 0.833737] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.833746] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.833750] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.833797] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.833832] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0 +[ 0.833984] hub 7-0:1.0: USB hub found +[ 0.833990] hub 7-0:1.0: 2 ports detected +[ 0.834133] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.858635] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.858644] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.858792] mousedev: PS/2 mouse device common for all mice +[ 0.860515] rtc_cmos 00:07: RTC can wake from S4 +[ 0.860650] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 0.860686] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.860821] device-mapper: uevent: version 1.0.3 +[ 0.860928] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com +[ 0.861015] cpuidle: using governor ladder +[ 0.861137] cpuidle: using governor menu +[ 0.861140] EFI Variables Facility v0.08 2004-May-17 +[ 0.861497] TCP cubic registered +[ 0.861666] NET: Registered protocol family 10 +[ 0.862339] NET: Registered protocol family 17 +[ 0.862362] Registering the dns_resolver key type +[ 0.862505] PM: Hibernation image not present or could not be loaded. +[ 0.862521] registered taskstats version 1 +[ 0.881709] Magic number: 15:169:571 +[ 0.881852] rtc_cmos 00:07: setting system clock to 2011-10-05 07:34:43 UTC (1317800083) +[ 0.882695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.882699] EDD information not available. +[ 0.885384] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.964510] ata1.00: ATAPI: MATSHITADVD-RAM UJ-850 z, RB32, max UDMA/33 +[ 0.980374] ata1.00: configured for UDMA/33 +[ 0.983110] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-850 z RB32 PQ: 0 ANSI: 5 +[ 0.985684] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.985690] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 0.985886] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.985957] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.988684] Freeing unused kernel memory: 984k freed +[ 0.989019] Write protecting the kernel read-only data: 10240k +[ 0.989354] Freeing unused kernel memory: 20k freed +[ 0.996526] Freeing unused kernel memory: 1400k freed +[ 1.023090] udevd[92]: starting version 173 +[ 1.095474] [drm] Initialized drm 1.1.0 20060810 +[ 1.111223] tg3.c:v3.119 (May 18, 2011) +[ 1.111255] tg3 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.111275] tg3 0000:06:00.0: setting latency timer to 64 +[ 1.123354] wmi: Mapper loaded +[ 1.135292] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.135301] i915 0000:00:02.0: setting latency timer to 64 +[ 1.229432] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 1.229442] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 1.229444] [drm] Driver supports precise vblank timestamp query. +[ 1.229504] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.231431] sdhci: Secure Digital Host Controller Interface driver +[ 1.231435] sdhci: Copyright(c) Pierre Ossman +[ 1.231761] sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 19) +[ 1.231780] sdhci-pci 0000:08:06.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 1.232804] sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.251222] mmc0: no vmmc regulator found +[ 1.252265] Registered led device: mmc0:: +[ 1.258216] mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA +[ 1.278826] tg3 0000:06:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:0c:7f:47 +[ 1.278833] tg3 0000:06:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0]) +[ 1.278838] tg3 0000:06:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.278842] tg3 0000:06:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.288114] firewire_ohci 0000:08:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.288352] fixme: max PWM is zero. +[ 1.321105] [drm] initialized overlay support +[ 1.363095] firewire_ohci: Added fw-ohci device 0000:08:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 1.429305] usb 1-4: new high speed USB device number 4 using ehci_hcd +[ 1.510188] fbcon: inteldrmfb (fb0) is primary device +[ 1.510267] Console: switching to colour frame buffer device 160x50 +[ 1.510301] fb0: inteldrmfb frame buffer device +[ 1.510304] drm: registered panic notifier +[ 1.596139] acpi device:08: registered as cooling_device2 +[ 1.596350] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4 +[ 1.596428] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.596505] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 1.596723] ahci 0000:00:1f.2: version 3.0 +[ 1.596748] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.596832] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.596928] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.596934] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc +[ 1.596941] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.600697] scsi2 : ahci +[ 1.601002] scsi3 : ahci +[ 1.601154] scsi4 : ahci +[ 1.601328] ata3: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504100 irq 45 +[ 1.601335] ata4: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504180 irq 45 +[ 1.601340] ata5: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504200 irq 45 +[ 1.860262] firewire_core: created device fw0: GUID 00023f7bac4040de, S400 +[ 1.920122] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.921792] ata3.00: unexpected _GTF length (8) +[ 1.922070] ata3.00: ATA-8: WDC WD2500BEKT-75PVMT0, 01.01A01, max UDMA/133 +[ 1.922077] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.923756] ata3.00: unexpected _GTF length (8) +[ 1.924053] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.924081] ata3.00: configured for UDMA/133 +[ 1.924106] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.924318] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEKT-7 01.0 PQ: 0 ANSI: 5 +[ 1.924525] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.924642] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.924823] sd 2:0:0:0: [sda] Write Protect is off +[ 1.924828] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.924898] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.020840] sda: sda1 sda2 sda3 sda4 < sda5 > +[ 2.021461] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.032059] usb 3-1: new full speed USB device number 2 using uhci_hcd +[ 2.464056] usb 4-1: new full speed USB device number 2 using uhci_hcd +[ 2.872042] usb 6-1: new low speed USB device number 2 using uhci_hcd +[ 3.093235] input: MLK Trust Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5 +[ 3.093727] generic-usb 0003:04FC:05DA.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Trust Mouse] on usb-0000:00:1d.1-1/input0 +[ 3.093905] usbcore: registered new interface driver usbhid +[ 3.093909] usbhid: USB HID core driver +[ 3.288960] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 3.308073] usb 6-2: new full speed USB device number 3 using uhci_hcd +[ 3.720052] usb 7-1: new low speed USB device number 2 using uhci_hcd +[ 3.918393] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input6 +[ 3.918495] generic-usb 0003:046D:C312.0002: input,hidraw1: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:00:1d.2-1/input0 +[ 5.565904] Adding 15999996k swap on /dev/sda3. Priority:-1 extents:1 across:15999996k +[ 5.691364] udevd[373]: starting version 173 +[ 6.303871] lp: driver loaded but no devices found +[ 7.040655] cfg80211: Calling CRDA to update world regulatory domain +[ 7.159284] r852 0000:08:06.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 7.159297] r852 0000:08:06.3: setting latency timer to 64 +[ 7.159394] r852: Non dma capable device detected, dma disabled +[ 7.159411] r852: driver loaded successfully +[ 7.169632] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s +[ 7.169637] iwl3945: Copyright(c) 2003-2011 Intel Corporation +[ 7.169734] iwl3945 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.169751] iwl3945 0000:04:00.0: setting latency timer to 64 +[ 7.225063] iwl3945 0000:04:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels +[ 7.225067] iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG +[ 7.225225] iwl3945 0000:04:00.0: irq 46 for MSI/MSI-X +[ 7.225470] Registered led device: phy0-led +[ 7.225511] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 7.521071] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs' +[ 7.728682] udevd[389]: renamed network interface eth0 to eth1 +[ 7.785421] udevd[392]: renamed network interface wlan0 to wlan1 +[ 7.839555] device-mapper: multipath: version 1.3.0 loaded +[ 7.920206] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x25c0b1, caps: 0xa04713/0x200000/0x0 +[ 8.001393] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.103705] Linux video capture interface: v2.00 +[ 8.142601] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b013) +[ 8.145395] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.7/usb1/1-4/1-4:1.0/input/input8 +[ 8.145503] usbcore: registered new interface driver uvcvideo +[ 8.145506] USB Video Class driver (v1.1.0) +[ 8.268868] gspca: v2.13.0 registered +[ 8.426860] Bluetooth: Core ver 2.16 +[ 8.426898] NET: Registered protocol family 31 +[ 8.426901] Bluetooth: HCI device and connection manager initialized +[ 8.426905] Bluetooth: HCI socket layer initialized +[ 8.426908] Bluetooth: L2CAP socket layer initialized +[ 8.426983] Bluetooth: SCO socket layer initialized +[ 8.445120] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 8.445873] usbcore: registered new interface driver btusb +[ 8.596127] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 8.596132] cfg80211: World regulatory domain updated: +[ 8.596135] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.596139] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596144] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596147] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596151] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596155] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.713241] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 8.713332] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 8.713375] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 9.214524] type=1400 audit(1317800091.827:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=762 comm="apparmor_parser" +[ 9.214539] type=1400 audit(1317800091.827:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=760 comm="apparmor_parser" +[ 9.214899] type=1400 audit(1317800091.827:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=762 comm="apparmor_parser" +[ 9.214917] type=1400 audit(1317800091.827:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=760 comm="apparmor_parser" +[ 9.215139] type=1400 audit(1317800091.827:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=762 comm="apparmor_parser" +[ 9.215162] type=1400 audit(1317800091.827:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=760 comm="apparmor_parser" +[ 9.215989] type=1400 audit(1317800091.827:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=761 comm="apparmor_parser" +[ 9.216386] type=1400 audit(1317800091.831:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=761 comm="apparmor_parser" +[ 9.216637] type=1400 audit(1317800091.831:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=761 comm="apparmor_parser" +[ 9.565602] input: zc3xx as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input9 +[ 9.565840] usbcore: registered new interface driver zc3xx +[ 9.567768] usbcore: registered new interface driver snd-usb-audio +[ 10.957262] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 11.498897] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 11.610016] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 13.338782] type=1400 audit(1317800095.951:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1170 comm="apparmor_parser" +[ 14.107842] ppdev: user-space parallel port driver +[ 16.201248] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.241864] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.244584] microcode: Microcode Update Driver: v2.00 , Peter Oruba +[ 16.257389] iwl3945 0000:04:00.0: loaded firmware version 15.32.2.9 +[ 16.319712] microcode: CPU0 updated to revision 0xa4, date = 2010-10-02 +[ 16.320392] microcode: CPU1 updated to revision 0xa4, date = 2010-10-02 +[ 16.327663] ADDRCONF(NETDEV_UP): wlan1: link is not ready +[ 16.411245] tg3 0000:06:00.0: irq 48 for MSI/MSI-X +[ 16.441602] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 17.163336] init: failsafe main process (1112) killed by TERM signal +[ 17.369512] init: gdm main process (1340) killed by TERM signal +[ 18.121686] tg3 0000:06:00.0: eth1: Link is up at 100 Mbps, full duplex +[ 18.121691] tg3 0000:06:00.0: eth1: Flow control is on for TX and on for RX +[ 18.122295] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready +[ 21.210518] RPC: Registered named UNIX socket transport module. +[ 21.210523] RPC: Registered udp transport module. +[ 21.210525] RPC: Registered tcp transport module. +[ 21.210528] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 21.445931] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 21.627527] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory +[ 21.636586] NFSD: starting 90-second grace period +[ 24.852307] vboxdrv: Found 2 processor cores. +[ 24.852593] vboxdrv: fAsync=0 offMin=0x1c2 offMax=0xae6 +[ 24.852666] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'. +[ 24.852669] vboxdrv: Successfully loaded version 4.1.2_Ubuntu (interface 0x00190000). +[ 25.101599] vboxpci: IOMMU not found (not registered) +[ 27.046401] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 27.046405] Bluetooth: BNEP filters: protocol multicast +[ 27.081903] Bluetooth: RFCOMM TTY layer initialized +[ 27.081919] Bluetooth: RFCOMM socket layer initialized +[ 27.081921] Bluetooth: RFCOMM ver 1.11 +[ 28.752057] eth1: no IPv6 routers present +[ 33.139443] init: plymouth-stop pre-start process (2005) terminated with status 1 +[ 33.628053] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro,commit=0 +[ 34.056830] EXT4-fs (sda1): re-mounted. Opts: commit=0 +[ 34.217110] EXT4-fs (sda5): re-mounted. Opts: commit=0 +[ 45.192742] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 45.196319] wlan1: authenticated +[ 45.199717] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 45.202749] wlan1: RX AssocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 45.202758] wlan1: associated +[ 45.206342] ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready +[ 45.206456] cfg80211: Calling CRDA for country: GB +[ 45.213483] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213493] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213498] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213505] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213509] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213516] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213520] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213526] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213531] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213537] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213542] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213547] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213552] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213558] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213569] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213573] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213579] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213584] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213590] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213594] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213600] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213605] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213611] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213615] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213621] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213626] cfg80211: Disabling freq 5170 MHz +[ 45.213630] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213636] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213640] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213646] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213651] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213657] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213662] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213667] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213672] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213678] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213683] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213688] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213693] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213699] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213704] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213710] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213714] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213720] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213725] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213731] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213742] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213746] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213752] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213757] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213763] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213768] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213774] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213779] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213785] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213789] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213795] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213800] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213806] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213810] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213816] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213821] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213827] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213831] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213837] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213842] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213848] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213852] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213858] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213864] cfg80211: Regulatory domain changed to country: GB +[ 45.213868] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 45.213873] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213879] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213884] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213889] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 52.640123] eth1: no IPv6 routers present +[ 55.208282] wlan1: disassociating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.214021] cfg80211: All devices are disconnected, going to restore regulatory settings +[ 55.214032] cfg80211: Restoring regulatory settings +[ 55.214052] cfg80211: Calling CRDA to update world regulatory domain +[ 55.214778] wlan1: deauthenticating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.221291] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 55.221299] cfg80211: World regulatory domain updated: +[ 55.221303] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 55.221309] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221315] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221321] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221327] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221333] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.392119] wlan1: no IPv6 routers present +[ 58.763822] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 58.765582] wlan1: authenticated +[ 58.766582] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 58.769972] wlan1: RX ReassocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 58.769980] wlan1: associated +[ 58.773587] cfg80211: Calling CRDA for country: GB +[ 58.778304] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778310] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778314] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778318] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778321] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778325] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778328] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778332] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778335] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778340] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778343] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778347] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778350] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778354] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778357] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778361] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778364] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778368] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778371] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778375] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778378] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778382] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778385] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778389] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778392] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778396] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778399] cfg80211: Disabling freq 5170 MHz +[ 58.778402] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778406] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778409] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778413] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778416] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778420] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778423] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778427] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778430] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778434] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778437] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778441] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778444] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778448] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778452] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778456] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778459] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778463] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778466] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778470] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778473] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778477] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778480] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778484] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778487] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778491] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778494] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778498] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778501] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778505] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778508] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778512] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778515] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778519] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778522] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778526] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778529] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778533] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778536] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778540] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778543] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778547] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778550] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778554] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778558] cfg80211: Regulatory domain changed to country: GB +[ 58.778560] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 58.778564] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778568] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778571] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778575] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 70.176124] wlan1: no IPv6 routers present +[ 75.152080] eth1: no IPv6 routers present +[ 98.736094] eth1: no IPv6 routers present +[ 648.357292] ecryptfs_mount: kern_path() failed +[ 648.388155] Reading sb failed; rc = [-2] +[ 670.016019] eth1: no IPv6 routers present +[ 688.176048] eth1: no IPv6 routers present +[ 711.096140] eth1: no IPv6 routers present diff -Nru fwts-14.02.00/fwts-test/arg-klog-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-klog-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-klog-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-klog-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --klog option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-klog-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-klog-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-klog-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-klog-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-klog-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-klog-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -k option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data -k $FWTSTESTDIR/arg-klog-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-klog-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-fields-0001/logfields-0001.log fwts-14.03.00/fwts-test/arg-log-fields-0001/logfields-0001.log --- fwts-14.02.00/fwts-test/arg-log-fields-0001/logfields-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-fields-0001/logfields-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Available fields: RES,ERR,WRN,DBG,INF,SUM,SEP,NLN,ADV,HED,PAS,FAL,SKP,ABT,INO diff -Nru fwts-14.02.00/fwts-test/arg-log-fields-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-log-fields-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-log-fields-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-fields-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-fields" +NAME=test-0001.sh +TMPLOG=$TMP/logfields.log.$$ + +$FWTS --log-fields > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-log-fields-0001/logfields-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0001.log fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0001.log --- fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,275 @@ +klog (00021) <10/02/14> HED : klog: Scan kernel log for errors and +klog (00022) <10/02/14> HED : warnings. +klog (00023) <10/02/14> SEP : -------------------------------------- +klog (00024) <10/02/14> INF : Test 1 of 1: Kernel log error check. +klog (00025) <10/02/14> FAL H: FAILED [HIGH] +klog (00026) <10/02/14> FAL H: KlogAcpiMultipleApicMadtFound: Test 1, +klog (00027) <10/02/14> FAL H: HIGH Kernel message: [ 0.000000] ACPI: +klog (00028) <10/02/14> FAL H: BIOS bug: multiple APIC/MADT found, +klog (00029) <10/02/14> FAL H: using 0 +klog (00030) <10/02/14> NLN : +klog (00031) <10/02/14> ADV : ADVICE: The kernel has detected more +klog (00032) <10/02/14> ADV : than one ACPI Multiple APIC +klog (00033) <10/02/14> ADV : Description Table (MADT) (these tables +klog (00034) <10/02/14> ADV : have the "APIC" signature). There +klog (00035) <10/02/14> ADV : should only be one MADT and the kernel +klog (00036) <10/02/14> ADV : will by default select the first one. +klog (00037) <10/02/14> ADV : However, one can override this and +klog (00038) <10/02/14> ADV : select the Nth MADT using +klog (00039) <10/02/14> ADV : acpi_apic_instance=N. +klog (00040) <10/02/14> NLN : +klog (00041) <10/02/14> FAL H: FAILED [HIGH] +klog (00042) <10/02/14> FAL H: KlogAcpi32Bit64BitAddressMismatch: +klog (00043) <10/02/14> FAL H: Test 1, HIGH Kernel message: [ +klog (00044) <10/02/14> FAL H: 0.000000] ACPI Error: 32/64X address +klog (00045) <10/02/14> FAL H: mismatch in Gpe0Block: 00008018 +klog (00046) <10/02/14> FAL H: /0000000000008028, using 32 (20090903 +klog (00047) <10/02/14> FAL H: /tbfadt-427) +klog (00048) <10/02/14> NLN : +klog (00049) <10/02/14> ADV : ADVICE: The FADT table contains a +klog (00050) <10/02/14> ADV : mismatch between a 32 bit pointer and +klog (00051) <10/02/14> ADV : a 64 bit Generic Address pointer. +klog (00052) <10/02/14> ADV : Because these pointers are different, +klog (00053) <10/02/14> ADV : it suggests either one of them is +klog (00054) <10/02/14> ADV : incorrect. If a non-null 32 bit +klog (00055) <10/02/14> ADV : pointer exists, then the kernel will +klog (00056) <10/02/14> ADV : opt for this in preference to the 64 +klog (00057) <10/02/14> ADV : bit pointer even though this is not in +klog (00058) <10/02/14> ADV : accordance to the ACPI specification. +klog (00059) <10/02/14> NLN : +klog (00060) <10/02/14> FAL C: FAILED [CRITICAL] +klog (00061) <10/02/14> FAL C: KlogAcpiValidRsdpNotFound: Test 1, +klog (00062) <10/02/14> FAL C: CRITICAL Kernel message: [ 0.000000] +klog (00063) <10/02/14> FAL C: ACPI Error: A valid RSDP was not found +klog (00064) <10/02/14> FAL C: (20090903/tbxfroot-219) +klog (00065) <10/02/14> NLN : +klog (00066) <10/02/14> ADV : ADVICE: An ACPI compatible system must +klog (00067) <10/02/14> ADV : provide an RSDP (Root System +klog (00068) <10/02/14> ADV : Description Pointer). This structure +klog (00069) <10/02/14> ADV : provides the physical address of the +klog (00070) <10/02/14> ADV : RSDT and XSDT. Since this could not be +klog (00071) <10/02/14> ADV : found, the ACPI driver has had to +klog (00072) <10/02/14> ADV : disable ACPI support. +klog (00073) <10/02/14> NLN : +klog (00074) <10/02/14> FAL H: FAILED [HIGH] KlogAcpiTwoFacs: Test 1, +klog (00075) <10/02/14> FAL H: HIGH Kernel message: [ 0.000000] ACPI +klog (00076) <10/02/14> FAL H: Warning: 32/64 FACS address mismatch +klog (00077) <10/02/14> FAL H: in FADT - two FACS tables! (20090903 +klog (00078) <10/02/14> FAL H: /tbfadt-369) +klog (00079) <10/02/14> NLN : +klog (00080) <10/02/14> ADV : ADVICE: The FADT table contains a +klog (00081) <10/02/14> ADV : mismatch between the 32 bit pointer +klog (00082) <10/02/14> ADV : (FIRMWARE_CTRL) and 64 bit pointer +klog (00083) <10/02/14> ADV : (X_FIRMWARE_CTRL) pointer to the FACS +klog (00084) <10/02/14> ADV : table. Section 5.2.9 of version 4.0a +klog (00085) <10/02/14> ADV : of the ACPI specification states that +klog (00086) <10/02/14> ADV : X_FIRMWARE_CTRL should be zero if +klog (00087) <10/02/14> ADV : FIRMWARE_CTRL is defined, or +klog (00088) <10/02/14> ADV : FIRMWARE_CTRL should be zero if +klog (00089) <10/02/14> ADV : X_FIRMWARE_CTRL is zero. With two +klog (00090) <10/02/14> ADV : different pointers defined, the kernel +klog (00091) <10/02/14> ADV : has to make a choice, and opts for the +klog (00092) <10/02/14> ADV : 32 bit pointer. Because these pointers +klog (00093) <10/02/14> ADV : are different, it suggests either one +klog (00094) <10/02/14> ADV : of them is incorrect, or different 32 +klog (00095) <10/02/14> ADV : bit and 64 bit FACS tables are present +klog (00096) <10/02/14> ADV : in your system, which is NOT complaint +klog (00097) <10/02/14> ADV : with the ACPI specification. The +klog (00098) <10/02/14> ADV : kernel has to make a choice and opts +klog (00099) <10/02/14> ADV : for the 32 bit FIRMWARE_CTRL. +klog (00100) <10/02/14> NLN : +klog (00101) <10/02/14> FAL H: FAILED [HIGH] +klog (00102) <10/02/14> FAL H: KlogAcpi32Bit64BitAddressMismatchInFadt +klog (00103) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00104) <10/02/14> FAL H: 0.000000] ACPI Warning: 32/64X FACS +klog (00105) <10/02/14> FAL H: address mismatch in FADT - DEF2DF40 +klog (00106) <10/02/14> FAL H: /00000000DEF30D40, using 32 (20090903 +klog (00107) <10/02/14> FAL H: /tbfadt-486) +klog (00108) <10/02/14> NLN : +klog (00109) <10/02/14> ADV : ADVICE: The FADT table contains +klog (00110) <10/02/14> ADV : Generic Address Structure that has a +klog (00111) <10/02/14> ADV : mismatch between the 32 bit and 64 bit +klog (00112) <10/02/14> ADV : versions of an address. This should be +klog (00113) <10/02/14> ADV : fixed so there are no mismatches. +klog (00114) <10/02/14> NLN : +klog (00115) <10/02/14> FAL H: FAILED [HIGH] +klog (00116) <10/02/14> FAL H: KlogAcpi32Bit64BitAddressMismatchInFadt +klog (00117) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00118) <10/02/14> FAL H: 0.000000] ACPI Warning: 32/64X length +klog (00119) <10/02/14> FAL H: mismatch in Gpe1Block: 0/32 20090521 +klog (00120) <10/02/14> FAL H: tbfadt-527 +klog (00121) <10/02/14> NLN : +klog (00122) <10/02/14> ADV : ADVICE: The FADT table contains +klog (00123) <10/02/14> ADV : Generic Address Structure that has a +klog (00124) <10/02/14> ADV : mismatch between the 32 bit and 64 bit +klog (00125) <10/02/14> ADV : versions of an address. This should be +klog (00126) <10/02/14> ADV : fixed so there are no mismatches. +klog (00127) <10/02/14> NLN : +klog (00128) <10/02/14> FAL H: FAILED [HIGH] KlogAcpiBadAmlCode: Test +klog (00129) <10/02/14> FAL H: 1, HIGH Kernel message: [ 0.000000] +klog (00130) <10/02/14> FAL H: ACPI Warning: BIOS XSDT has NULL entry +klog (00131) <10/02/14> FAL H: , using RSDT (20110112/tbutils-663) +klog (00132) <10/02/14> NLN : +klog (00133) <10/02/14> ADV : ADVICE: ACPI AML intepreter has found +klog (00134) <10/02/14> ADV : some non-conforming AML code. This +klog (00135) <10/02/14> ADV : should be investigated and fixed. +klog (00136) <10/02/14> NLN : +klog (00137) <10/02/14> FAL H: FAILED [HIGH] +klog (00138) <10/02/14> FAL H: KlogAcpiFadtInvalidLength: Test 1, +klog (00139) <10/02/14> FAL H: HIGH Kernel message: [ 0.000000] ACPI +klog (00140) <10/02/14> FAL H: Warning: Invalid length for +klog (00141) <10/02/14> FAL H: Pm1aControlBlock: 32, using default 16 +klog (00142) <10/02/14> FAL H: (20090903/tbfadt-607) +klog (00143) <10/02/14> NLN : +klog (00144) <10/02/14> ADV : ADVICE: This item in the FADT is the +klog (00145) <10/02/14> ADV : incorrect length. Should be corrected. +klog (00146) <10/02/14> NLN : +klog (00147) <10/02/14> FAL H: FAILED [HIGH] +klog (00148) <10/02/14> FAL H: KlogAcpiOptionalFieldZeroAddressOrLength +klog (00149) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00150) <10/02/14> FAL H: 0.000000] ACPI Warning: Optional field +klog (00151) <10/02/14> FAL H: Gpe1Block has zero address or length: +klog (00152) <10/02/14> FAL H: 000000000000102C/0 20090521 tbfadt-558 +klog (00153) <10/02/14> NLN : +klog (00154) <10/02/14> ADV : ADVICE: An ACPI table contains Generic +klog (00155) <10/02/14> ADV : Address Structure that has an address +klog (00156) <10/02/14> ADV : that is incorrectly set to zero, or a +klog (00157) <10/02/14> ADV : zero length. This needs to be fixed. +klog (00158) <10/02/14> NLN : +klog (00159) <10/02/14> FAL H: FAILED [HIGH] +klog (00160) <10/02/14> FAL H: KlogAcpiOptionalFieldZeroAddressOrLength +klog (00161) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00162) <10/02/14> FAL H: 0.000000] ACPI Warning: Optional field +klog (00163) <10/02/14> FAL H: Pm2ControlBlock has zero address or +klog (00164) <10/02/14> FAL H: length: 0000000000000000/1 20090521 +klog (00165) <10/02/14> FAL H: tbfadt-558 +klog (00166) <10/02/14> NLN : +klog (00167) <10/02/14> ADV : ADVICE: An ACPI table contains Generic +klog (00168) <10/02/14> ADV : Address Structure that has an address +klog (00169) <10/02/14> ADV : that is incorrectly set to zero, or a +klog (00170) <10/02/14> ADV : zero length. This needs to be fixed. +klog (00171) <10/02/14> NLN : +klog (00172) <10/02/14> FAL H: FAILED [HIGH] +klog (00173) <10/02/14> FAL H: KlogAcpiOptionalFieldZeroAddressOrLength +klog (00174) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00175) <10/02/14> FAL H: 0.000000] ACPI Warning (tbfadt-0460): +klog (00176) <10/02/14> FAL H: Optional field "Gpe1Block" has zero +klog (00177) <10/02/14> FAL H: address or length: 000000000000102C/0 +klog (00178) <10/02/14> FAL H: [20080926] +klog (00179) <10/02/14> NLN : +klog (00180) <10/02/14> ADV : ADVICE: An ACPI table contains Generic +klog (00181) <10/02/14> ADV : Address Structure that has an address +klog (00182) <10/02/14> ADV : that is incorrectly set to zero, or a +klog (00183) <10/02/14> ADV : zero length. This needs to be fixed. +klog (00184) <10/02/14> NLN : +klog (00185) <10/02/14> FAL M: FAILED [MEDIUM] +klog (00186) <10/02/14> FAL M: KlogBiosMtrrIncorrectMask: Test 1, +klog (00187) <10/02/14> FAL M: MEDIUM Kernel message: [ 0.000000] +klog (00188) <10/02/14> FAL M: mtrr: your BIOS has configured an +klog (00189) <10/02/14> FAL M: incorrect mask, fixing it. +klog (00190) <10/02/14> NLN : +klog (00191) <10/02/14> ADV : ADVICE: The Memory Type Range +klog (00192) <10/02/14> ADV : Registers (MTRRs) which define memory +klog (00193) <10/02/14> ADV : caching policy are misconfigued by the +klog (00194) <10/02/14> ADV : BIOS. In this case, the mask is +klog (00195) <10/02/14> ADV : incorrectly set and the kernel has +klog (00196) <10/02/14> ADV : detected this and worked around the +klog (00197) <10/02/14> ADV : firmware bug. +klog (00198) <10/02/14> NLN : +klog (00199) <10/02/14> FAL C: FAILED [CRITICAL] +klog (00200) <10/02/14> FAL C: KlogBiosCpuMtrrMisconfigured: Test 1, +klog (00201) <10/02/14> FAL C: CRITICAL Kernel message: [ 0.000000] +klog (00202) <10/02/14> FAL C: WARNING: BIOS bug: CPU MTRRs don't +klog (00203) <10/02/14> FAL C: cover all of memory, losing 1408MB of +klog (00204) <10/02/14> FAL C: RAM. +klog (00205) <10/02/14> NLN : +klog (00206) <10/02/14> ADV : ADVICE: The Memory Type Range +klog (00207) <10/02/14> ADV : Registers (MTRRs) which define memory +klog (00208) <10/02/14> ADV : caching policy are misconfigued by the +klog (00209) <10/02/14> ADV : BIOS and don't appear to cover all +klog (00210) <10/02/14> ADV : available physical memory. The kernel +klog (00211) <10/02/14> ADV : has detected this and has reduced the +klog (00212) <10/02/14> ADV : amount of memory available to be safe. +klog (00213) <10/02/14> ADV : Either check that the BIOS memory +klog (00214) <10/02/14> ADV : caching options are set correctly or +klog (00215) <10/02/14> ADV : contact your BIOS vendor to get this +klog (00216) <10/02/14> ADV : fixed. +klog (00217) <10/02/14> NLN : +klog (00218) <10/02/14> FAL H: FAILED [HIGH] KlogAcpiUnknownAmlOpcode +klog (00219) <10/02/14> FAL H: : Test 1, HIGH Kernel message: [ +klog (00220) <10/02/14> FAL H: 0.022719] ACPI Error: Found unknown +klog (00221) <10/02/14> FAL H: opcode 0xFD at AML address f7ffe14c +klog (00222) <10/02/14> FAL H: offset 0xE8, ignoring (20110112 +klog (00223) <10/02/14> FAL H: /psloop-141) +klog (00224) <10/02/14> NLN : +klog (00225) <10/02/14> ADV : ADVICE: ACPI execution run time error: +klog (00226) <10/02/14> ADV : The ACPI interpreter has reached an +klog (00227) <10/02/14> ADV : opcode that is unknown, this normally +klog (00228) <10/02/14> ADV : is a bug in the underlying AML code +klog (00229) <10/02/14> ADV : either because of badly written AML +klog (00230) <10/02/14> ADV : code or the compiler has produced code +klog (00231) <10/02/14> ADV : that is incorrect or the ACPI +klog (00232) <10/02/14> ADV : interpreter does not support this +klog (00233) <10/02/14> ADV : valid opcode. +klog (00234) <10/02/14> NLN : +klog (00235) <10/02/14> FAL C: FAILED [CRITICAL] +klog (00236) <10/02/14> FAL C: KlogAcpiDetectedUnsupportedOpCode: +klog (00237) <10/02/14> FAL C: Test 1, CRITICAL Kernel message: [ +klog (00238) <10/02/14> FAL C: 0.025463] ACPI Warning: Detected an +klog (00239) <10/02/14> FAL C: unsupported executable opcode at +klog (00240) <10/02/14> FAL C: module-level: [0x007B] at table offset +klog (00241) <10/02/14> FAL C: 0x00C3 (20110112/psloop-526) +klog (00242) <10/02/14> NLN : +klog (00243) <10/02/14> ADV : ADVICE: An illegal AML opcode has been +klog (00244) <10/02/14> ADV : found and is ignored. This indicates +klog (00245) <10/02/14> ADV : either badly compiled code or opcode +klog (00246) <10/02/14> ADV : corruption in the DSDT or SSDT tables +klog (00247) <10/02/14> ADV : or a bug in the ACPI execution engine. +klog (00248) <10/02/14> ADV : Recommend disassembing using iasl to +klog (00249) <10/02/14> ADV : find any offending code. +klog (00250) <10/02/14> NLN : +klog (00251) <10/02/14> FAL H: FAILED [HIGH] +klog (00252) <10/02/14> FAL H: KlogAcpiObjectAlreadyExists: Test 1, +klog (00253) <10/02/14> FAL H: HIGH Kernel message: [ 0.034090] ACPI +klog (00254) <10/02/14> FAL H: Error: Method parse/execution failed +klog (00255) <10/02/14> FAL H: [_SB_.PCI0._OSC] (Node ee025630), +klog (00256) <10/02/14> FAL H: AE_ALREADY_EXISTS (20110112 +klog (00257) <10/02/14> FAL H: /psparse-536) +klog (00258) <10/02/14> NLN : +klog (00259) <10/02/14> ADV : ADVICE: This is a bug picked up by the +klog (00260) <10/02/14> ADV : kernel, but as yet, the firmware test +klog (00261) <10/02/14> ADV : suite has no diagnostic advice for +klog (00262) <10/02/14> ADV : this particular problem. +klog (00263) <10/02/14> NLN : +klog (00264) <10/02/14> FAL H: FAILED [HIGH] KlogAcpiFirmwareError: +klog (00265) <10/02/14> FAL H: Test 1, HIGH Kernel message: [ +klog (00266) <10/02/14> FAL H: 0.040119] [Firmware Bug]: the BIOS has +klog (00267) <10/02/14> FAL H: corrupted hw-PMU resources (MSR 186 is +klog (00268) <10/02/14> FAL H: 400000) +klog (00269) <10/02/14> NLN : +klog (00270) <10/02/14> ADV : ADVICE: The kernel has detected a +klog (00271) <10/02/14> ADV : Firmware bug in the BIOS or ACPI which +klog (00272) <10/02/14> ADV : needs investigating and fixing. +klog (00273) <10/02/14> NLN : +klog (00274) <10/02/14> FAL C: FAILED [CRITICAL] +klog (00275) <10/02/14> FAL C: KlogAcpiDetectedUnsupportedOpCode: +klog (00276) <10/02/14> FAL C: Test 1, CRITICAL Kernel message: [ +klog (00277) <10/02/14> FAL C: 0.042222] ACPI Warning: Detected an +klog (00278) <10/02/14> FAL C: unsupported executable opcode at +klog (00279) <10/02/14> FAL C: module-level: [0x0070] at table offset +klog (00280) <10/02/14> FAL C: 0x2366 (20100121/psloop-526) +klog (00281) <10/02/14> NLN : +klog (00282) <10/02/14> ADV : ADVICE: An illegal AML opcode has been +klog (00283) <10/02/14> ADV : found and is ignored. This indicates +klog (00284) <10/02/14> ADV : either badly compiled code or opcode +klog (00285) <10/02/14> ADV : corruption in the DSDT or SSDT tables +klog (00286) <10/02/14> ADV : or a bug in the ACPI execution engine. +klog (00287) <10/02/14> ADV : Recommend disassembing using iasl to +klog (00288) <10/02/14> ADV : find any offending code. +klog (00289) <10/02/14> NLN : +klog (00290) <10/02/14> INF : Found 18 unique errors in kernel log. +klog (00291) <10/02/14> NLN : +klog (00292) <10/02/14> SEP : ====================================== +klog (00293) <10/02/14> SUM : 0 passed, 18 failed, 0 warning, 0 +klog (00294) <10/02/14> SUM : aborted, 0 skipped, 0 info only. +klog (00295) <10/02/14> SEP : ====================================== Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-log-format-0001/.klog-0001.log.swp and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-log-format-0001/.klog-0001.log.swp differ diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0002.log fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0002.log --- fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,184 @@ +klog : klog: Scan kernel log for errors and warnings. +klog : --------------------------------------------------------------- +klog : Test 1 of 1: Kernel log error check. +klog : FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog : Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT +klog : found, using 0 +klog : +klog : ADVICE: The kernel has detected more than one ACPI Multiple +klog : APIC Description Table (MADT) (these tables have the "APIC" +klog : signature). There should only be one MADT and the kernel will +klog : by default select the first one. However, one can override this +klog : and select the Nth MADT using acpi_apic_instance=N. +klog : +klog : FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, HIGH +klog : Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch +klog : in Gpe0Block: 00008018/0000000000008028, using 32 (20090903 +klog : /tbfadt-427) +klog : +klog : ADVICE: The FADT table contains a mismatch between a 32 bit +klog : pointer and a 64 bit Generic Address pointer. Because these +klog : pointers are different, it suggests either one of them is +klog : incorrect. If a non-null 32 bit pointer exists, then the kernel +klog : will opt for this in preference to the 64 bit pointer even +klog : though this is not in accordance to the ACPI specification. +klog : +klog : FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, CRITICAL +klog : Kernel message: [ 0.000000] ACPI Error: A valid RSDP was not +klog : found (20090903/tbxfroot-219) +klog : +klog : ADVICE: An ACPI compatible system must provide an RSDP (Root +klog : System Description Pointer). This structure provides the +klog : physical address of the RSDT and XSDT. Since this could not be +klog : found, the ACPI driver has had to disable ACPI support. +klog : +klog : FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message: [ +klog : 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - +klog : two FACS tables! (20090903/tbfadt-369) +klog : +klog : ADVICE: The FADT table contains a mismatch between the 32 bit +klog : pointer (FIRMWARE_CTRL) and 64 bit pointer (X_FIRMWARE_CTRL) +klog : pointer to the FACS table. Section 5.2.9 of version 4.0a of the +klog : ACPI specification states that X_FIRMWARE_CTRL should be zero +klog : if FIRMWARE_CTRL is defined, or FIRMWARE_CTRL should be zero if +klog : X_FIRMWARE_CTRL is zero. With two different pointers defined, +klog : the kernel has to make a choice, and opts for the 32 bit +klog : pointer. Because these pointers are different, it suggests +klog : either one of them is incorrect, or different 32 bit and 64 bit +klog : FACS tables are present in your system, which is NOT complaint +klog : with the ACPI specification. The kernel has to make a choice +klog : and opts for the 32 bit FIRMWARE_CTRL. +klog : +klog : FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: Test 1, +klog : HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS +klog : address mismatch in FADT - DEF2DF40/00000000DEF30D40, using 32 +klog : (20090903/tbfadt-486) +klog : +klog : ADVICE: The FADT table contains Generic Address Structure that +klog : has a mismatch between the 32 bit and 64 bit versions of an +klog : address. This should be fixed so there are no mismatches. +klog : +klog : FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: Test 1, +klog : HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length +klog : mismatch in Gpe1Block: 0/32 20090521 tbfadt-527 +klog : +klog : ADVICE: The FADT table contains Generic Address Structure that +klog : has a mismatch between the 32 bit and 64 bit versions of an +klog : address. This should be fixed so there are no mismatches. +klog : +klog : FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel message: +klog : [ 0.000000] ACPI Warning: BIOS XSDT has NULL entry, using RSDT +klog : (20110112/tbutils-663) +klog : +klog : ADVICE: ACPI AML intepreter has found some non-conforming AML +klog : code. This should be investigated and fixed. +klog : +klog : FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH Kernel +klog : message: [ 0.000000] ACPI Warning: Invalid length for +klog : Pm1aControlBlock: 32, using default 16 (20090903/tbfadt-607) +klog : +klog : ADVICE: This item in the FADT is the incorrect length. Should +klog : be corrected. +klog : +klog : FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog : HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field +klog : Gpe1Block has zero address or length: 000000000000102C/0 +klog : 20090521 tbfadt-558 +klog : +klog : ADVICE: An ACPI table contains Generic Address Structure that +klog : has an address that is incorrectly set to zero, or a zero +klog : length. This needs to be fixed. +klog : +klog : FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog : HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field +klog : Pm2ControlBlock has zero address or length: 0000000000000000/1 +klog : 20090521 tbfadt-558 +klog : +klog : ADVICE: An ACPI table contains Generic Address Structure that +klog : has an address that is incorrectly set to zero, or a zero +klog : length. This needs to be fixed. +klog : +klog : FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog : HIGH Kernel message: [ 0.000000] ACPI Warning (tbfadt-0460): +klog : Optional field "Gpe1Block" has zero address or length: +klog : 000000000000102C/0 [20080926] +klog : +klog : ADVICE: An ACPI table contains Generic Address Structure that +klog : has an address that is incorrectly set to zero, or a zero +klog : length. This needs to be fixed. +klog : +klog : FAILED [MEDIUM] KlogBiosMtrrIncorrectMask: Test 1, MEDIUM +klog : Kernel message: [ 0.000000] mtrr: your BIOS has configured an +klog : incorrect mask, fixing it. +klog : +klog : ADVICE: The Memory Type Range Registers (MTRRs) which define +klog : memory caching policy are misconfigued by the BIOS. In this +klog : case, the mask is incorrectly set and the kernel has detected +klog : this and worked around the firmware bug. +klog : +klog : FAILED [CRITICAL] KlogBiosCpuMtrrMisconfigured: Test 1, +klog : CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: CPU +klog : MTRRs don't cover all of memory, losing 1408MB of RAM. +klog : +klog : ADVICE: The Memory Type Range Registers (MTRRs) which define +klog : memory caching policy are misconfigued by the BIOS and don't +klog : appear to cover all available physical memory. The kernel has +klog : detected this and has reduced the amount of memory available to +klog : be safe. Either check that the BIOS memory caching options are +klog : set correctly or contact your BIOS vendor to get this fixed. +klog : +klog : FAILED [HIGH] KlogAcpiUnknownAmlOpcode: Test 1, HIGH Kernel +klog : message: [ 0.022719] ACPI Error: Found unknown opcode 0xFD at +klog : AML address f7ffe14c offset 0xE8, ignoring (20110112 +klog : /psloop-141) +klog : +klog : ADVICE: ACPI execution run time error: The ACPI interpreter has +klog : reached an opcode that is unknown, this normally is a bug in +klog : the underlying AML code either because of badly written AML +klog : code or the compiler has produced code that is incorrect or the +klog : ACPI interpreter does not support this valid opcode. +klog : +klog : FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test 1, +klog : CRITICAL Kernel message: [ 0.025463] ACPI Warning: Detected an +klog : unsupported executable opcode at module-level: [0x007B] at +klog : table offset 0x00C3 (20110112/psloop-526) +klog : +klog : ADVICE: An illegal AML opcode has been found and is ignored. +klog : This indicates either badly compiled code or opcode corruption +klog : in the DSDT or SSDT tables or a bug in the ACPI execution +klog : engine. Recommend disassembing using iasl to find any offending +klog : code. +klog : +klog : FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH Kernel +klog : message: [ 0.034090] ACPI Error: Method parse/execution failed +klog : [_SB_.PCI0._OSC] (Node ee025630), AE_ALREADY_EXISTS (20110112 +klog : /psparse-536) +klog : +klog : ADVICE: This is a bug picked up by the kernel, but as yet, the +klog : firmware test suite has no diagnostic advice for this +klog : particular problem. +klog : +klog : FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog : message: [ 0.040119] [Firmware Bug]: the BIOS has corrupted +klog : hw-PMU resources (MSR 186 is 400000) +klog : +klog : ADVICE: The kernel has detected a Firmware bug in the BIOS or +klog : ACPI which needs investigating and fixing. +klog : +klog : FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test 1, +klog : CRITICAL Kernel message: [ 0.042222] ACPI Warning: Detected an +klog : unsupported executable opcode at module-level: [0x0070] at +klog : table offset 0x2366 (20100121/psloop-526) +klog : +klog : ADVICE: An illegal AML opcode has been found and is ignored. +klog : This indicates either badly compiled code or opcode corruption +klog : in the DSDT or SSDT tables or a bug in the ACPI execution +klog : engine. Recommend disassembing using iasl to find any offending +klog : code. +klog : +klog : Found 18 unique errors in kernel log. +klog : +klog : =============================================================== +klog : 0 passed, 18 failed, 0 warning, 0 aborted, 0 skipped, 0 info +klog : only. +klog : =============================================================== diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0003.log fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0003.log --- fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,197 @@ +klog 00016: klog: Scan kernel log for errors and warnings. +klog 00017: --------------------------------------------------------- +klog 00018: Test 1 of 1: Kernel log error check. +klog 00019: FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog 00020: Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog 00021: /MADT found, using 0 +klog 00022: +klog 00023: ADVICE: The kernel has detected more than one ACPI +klog 00024: Multiple APIC Description Table (MADT) (these tables have +klog 00025: the "APIC" signature). There should only be one MADT and +klog 00026: the kernel will by default select the first one. However, +klog 00027: one can override this and select the Nth MADT using +klog 00028: acpi_apic_instance=N. +klog 00029: +klog 00030: FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog 00031: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog 00032: address mismatch in Gpe0Block: 00008018/0000000000008028, +klog 00033: using 32 (20090903/tbfadt-427) +klog 00034: +klog 00035: ADVICE: The FADT table contains a mismatch between a 32 +klog 00036: bit pointer and a 64 bit Generic Address pointer. Because +klog 00037: these pointers are different, it suggests either one of +klog 00038: them is incorrect. If a non-null 32 bit pointer exists, +klog 00039: then the kernel will opt for this in preference to the 64 +klog 00040: bit pointer even though this is not in accordance to the +klog 00041: ACPI specification. +klog 00042: +klog 00043: FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, +klog 00044: CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid +klog 00045: RSDP was not found (20090903/tbxfroot-219) +klog 00046: +klog 00047: ADVICE: An ACPI compatible system must provide an RSDP +klog 00048: (Root System Description Pointer). This structure +klog 00049: provides the physical address of the RSDT and XSDT. Since +klog 00050: this could not be found, the ACPI driver has had to +klog 00051: disable ACPI support. +klog 00052: +klog 00053: FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel +klog 00054: message: [ 0.000000] ACPI Warning: 32/64 FACS address +klog 00055: mismatch in FADT - two FACS tables! (20090903/tbfadt-369) +klog 00056: +klog 00057: ADVICE: The FADT table contains a mismatch between the 32 +klog 00058: bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog 00059: (X_FIRMWARE_CTRL) pointer to the FACS table. Section +klog 00060: 5.2.9 of version 4.0a of the ACPI specification states +klog 00061: that X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is +klog 00062: defined, or FIRMWARE_CTRL should be zero if +klog 00063: X_FIRMWARE_CTRL is zero. With two different pointers +klog 00064: defined, the kernel has to make a choice, and opts for +klog 00065: the 32 bit pointer. Because these pointers are different, +klog 00066: it suggests either one of them is incorrect, or different +klog 00067: 32 bit and 64 bit FACS tables are present in your system, +klog 00068: which is NOT complaint with the ACPI specification. The +klog 00069: kernel has to make a choice and opts for the 32 bit +klog 00070: FIRMWARE_CTRL. +klog 00071: +klog 00072: FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog 00073: Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog 00074: /64X FACS address mismatch in FADT - DEF2DF40 +klog 00075: /00000000DEF30D40, using 32 (20090903/tbfadt-486) +klog 00076: +klog 00077: ADVICE: The FADT table contains Generic Address Structure +klog 00078: that has a mismatch between the 32 bit and 64 bit +klog 00079: versions of an address. This should be fixed so there are +klog 00080: no mismatches. +klog 00081: +klog 00082: FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog 00083: Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog 00084: /64X length mismatch in Gpe1Block: 0/32 20090521 +klog 00085: tbfadt-527 +klog 00086: +klog 00087: ADVICE: The FADT table contains Generic Address Structure +klog 00088: that has a mismatch between the 32 bit and 64 bit +klog 00089: versions of an address. This should be fixed so there are +klog 00090: no mismatches. +klog 00091: +klog 00092: FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog 00093: message: [ 0.000000] ACPI Warning: BIOS XSDT has NULL +klog 00094: entry, using RSDT (20110112/tbutils-663) +klog 00095: +klog 00096: ADVICE: ACPI AML intepreter has found some non-conforming +klog 00097: AML code. This should be investigated and fixed. +klog 00098: +klog 00099: FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog 00100: Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog 00101: for Pm1aControlBlock: 32, using default 16 (20090903 +klog 00102: /tbfadt-607) +klog 00103: +klog 00104: ADVICE: This item in the FADT is the incorrect length. +klog 00105: Should be corrected. +klog 00106: +klog 00107: FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog 00108: Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog 00109: Optional field Gpe1Block has zero address or length: +klog 00110: 000000000000102C/0 20090521 tbfadt-558 +klog 00111: +klog 00112: ADVICE: An ACPI table contains Generic Address Structure +klog 00113: that has an address that is incorrectly set to zero, or a +klog 00114: zero length. This needs to be fixed. +klog 00115: +klog 00116: FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog 00117: Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog 00118: Optional field Pm2ControlBlock has zero address or length +klog 00119: : 0000000000000000/1 20090521 tbfadt-558 +klog 00120: +klog 00121: ADVICE: An ACPI table contains Generic Address Structure +klog 00122: that has an address that is incorrectly set to zero, or a +klog 00123: zero length. This needs to be fixed. +klog 00124: +klog 00125: FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog 00126: Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning +klog 00127: (tbfadt-0460): Optional field "Gpe1Block" has zero +klog 00128: address or length: 000000000000102C/0 [20080926] +klog 00129: +klog 00130: ADVICE: An ACPI table contains Generic Address Structure +klog 00131: that has an address that is incorrectly set to zero, or a +klog 00132: zero length. This needs to be fixed. +klog 00133: +klog 00134: FAILED [MEDIUM] KlogBiosMtrrIncorrectMask: Test 1, MEDIUM +klog 00135: Kernel message: [ 0.000000] mtrr: your BIOS has +klog 00136: configured an incorrect mask, fixing it. +klog 00137: +klog 00138: ADVICE: The Memory Type Range Registers (MTRRs) which +klog 00139: define memory caching policy are misconfigued by the +klog 00140: BIOS. In this case, the mask is incorrectly set and the +klog 00141: kernel has detected this and worked around the firmware +klog 00142: bug. +klog 00143: +klog 00144: FAILED [CRITICAL] KlogBiosCpuMtrrMisconfigured: Test 1, +klog 00145: CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: +klog 00146: CPU MTRRs don't cover all of memory, losing 1408MB of +klog 00147: RAM. +klog 00148: +klog 00149: ADVICE: The Memory Type Range Registers (MTRRs) which +klog 00150: define memory caching policy are misconfigued by the BIOS +klog 00151: and don't appear to cover all available physical memory. +klog 00152: The kernel has detected this and has reduced the amount +klog 00153: of memory available to be safe. Either check that the +klog 00154: BIOS memory caching options are set correctly or contact +klog 00155: your BIOS vendor to get this fixed. +klog 00156: +klog 00157: FAILED [HIGH] KlogAcpiUnknownAmlOpcode: Test 1, HIGH +klog 00158: Kernel message: [ 0.022719] ACPI Error: Found unknown +klog 00159: opcode 0xFD at AML address f7ffe14c offset 0xE8, ignoring +klog 00160: (20110112/psloop-141) +klog 00161: +klog 00162: ADVICE: ACPI execution run time error: The ACPI +klog 00163: interpreter has reached an opcode that is unknown, this +klog 00164: normally is a bug in the underlying AML code either +klog 00165: because of badly written AML code or the compiler has +klog 00166: produced code that is incorrect or the ACPI interpreter +klog 00167: does not support this valid opcode. +klog 00168: +klog 00169: FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 00170: 1, CRITICAL Kernel message: [ 0.025463] ACPI Warning: +klog 00171: Detected an unsupported executable opcode at module-level +klog 00172: : [0x007B] at table offset 0x00C3 (20110112/psloop-526) +klog 00173: +klog 00174: ADVICE: An illegal AML opcode has been found and is +klog 00175: ignored. This indicates either badly compiled code or +klog 00176: opcode corruption in the DSDT or SSDT tables or a bug in +klog 00177: the ACPI execution engine. Recommend disassembing using +klog 00178: iasl to find any offending code. +klog 00179: +klog 00180: FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog 00181: Kernel message: [ 0.034090] ACPI Error: Method parse +klog 00182: /execution failed [_SB_.PCI0._OSC] (Node ee025630), +klog 00183: AE_ALREADY_EXISTS (20110112/psparse-536) +klog 00184: +klog 00185: ADVICE: This is a bug picked up by the kernel, but as yet +klog 00186: , the firmware test suite has no diagnostic advice for +klog 00187: this particular problem. +klog 00188: +klog 00189: FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog 00190: message: [ 0.040119] [Firmware Bug]: the BIOS has +klog 00191: corrupted hw-PMU resources (MSR 186 is 400000) +klog 00192: +klog 00193: ADVICE: The kernel has detected a Firmware bug in the +klog 00194: BIOS or ACPI which needs investigating and fixing. +klog 00195: +klog 00196: FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 00197: 1, CRITICAL Kernel message: [ 0.042222] ACPI Warning: +klog 00198: Detected an unsupported executable opcode at module-level +klog 00199: : [0x0070] at table offset 0x2366 (20100121/psloop-526) +klog 00200: +klog 00201: ADVICE: An illegal AML opcode has been found and is +klog 00202: ignored. This indicates either badly compiled code or +klog 00203: opcode corruption in the DSDT or SSDT tables or a bug in +klog 00204: the ACPI execution engine. Recommend disassembing using +klog 00205: iasl to find any offending code. +klog 00206: +klog 00207: Found 18 unique errors in kernel log. +klog 00208: +klog 00209: ========================================================= +klog 00210: 0 passed, 18 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog 00211: info only. +klog 00212: ========================================================= diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0004.log fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0004.log --- fwts-14.02.00/fwts-test/arg-log-format-0001/klog-0004.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/klog-0004.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,213 @@ +klog 10/10/11 : klog: Scan kernel log for errors and warnings. +klog 10/10/11 : ---------------------------------------------------- +klog 10/10/11 : Test 1 of 1: Kernel log error check. +klog 10/10/11 H: FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI: BIOS bug: +klog 10/10/11 H: multiple APIC/MADT found, using 0 +klog 10/10/11 : +klog 10/10/11 : ADVICE: The kernel has detected more than one ACPI +klog 10/10/11 : Multiple APIC Description Table (MADT) (these tables +klog 10/10/11 : have the "APIC" signature). There should only be one +klog 10/10/11 : MADT and the kernel will by default select the first +klog 10/10/11 : one. However, one can override this and select the +klog 10/10/11 : Nth MADT using acpi_apic_instance=N. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: +klog 10/10/11 H: Test 1, HIGH Kernel message: [ 0.000000] ACPI Error: +klog 10/10/11 H: 32/64X address mismatch in Gpe0Block: 00008018 +klog 10/10/11 H: /0000000000008028, using 32 (20090903/tbfadt-427) +klog 10/10/11 : +klog 10/10/11 : ADVICE: The FADT table contains a mismatch between a +klog 10/10/11 : 32 bit pointer and a 64 bit Generic Address pointer. +klog 10/10/11 : Because these pointers are different, it suggests +klog 10/10/11 : either one of them is incorrect. If a non-null 32 +klog 10/10/11 : bit pointer exists, then the kernel will opt for +klog 10/10/11 : this in preference to the 64 bit pointer even though +klog 10/10/11 : this is not in accordance to the ACPI specification. +klog 10/10/11 : +klog 10/10/11 C: FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, +klog 10/10/11 C: CRITICAL Kernel message: [ 0.000000] ACPI Error: A +klog 10/10/11 C: valid RSDP was not found (20090903/tbxfroot-219) +klog 10/10/11 : +klog 10/10/11 : ADVICE: An ACPI compatible system must provide an +klog 10/10/11 : RSDP (Root System Description Pointer). This +klog 10/10/11 : structure provides the physical address of the RSDT +klog 10/10/11 : and XSDT. Since this could not be found, the ACPI +klog 10/10/11 : driver has had to disable ACPI support. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel +klog 10/10/11 H: message: [ 0.000000] ACPI Warning: 32/64 FACS +klog 10/10/11 H: address mismatch in FADT - two FACS tables! +klog 10/10/11 H: (20090903/tbfadt-369) +klog 10/10/11 : +klog 10/10/11 : ADVICE: The FADT table contains a mismatch between +klog 10/10/11 : the 32 bit pointer (FIRMWARE_CTRL) and 64 bit +klog 10/10/11 : pointer (X_FIRMWARE_CTRL) pointer to the FACS table. +klog 10/10/11 : Section 5.2.9 of version 4.0a of the ACPI +klog 10/10/11 : specification states that X_FIRMWARE_CTRL should be +klog 10/10/11 : zero if FIRMWARE_CTRL is defined, or FIRMWARE_CTRL +klog 10/10/11 : should be zero if X_FIRMWARE_CTRL is zero. With two +klog 10/10/11 : different pointers defined, the kernel has to make a +klog 10/10/11 : choice, and opts for the 32 bit pointer. Because +klog 10/10/11 : these pointers are different, it suggests either one +klog 10/10/11 : of them is incorrect, or different 32 bit and 64 bit +klog 10/10/11 : FACS tables are present in your system, which is NOT +klog 10/10/11 : complaint with the ACPI specification. The kernel +klog 10/10/11 : has to make a choice and opts for the 32 bit +klog 10/10/11 : FIRMWARE_CTRL. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] +klog 10/10/11 H: KlogAcpi32Bit64BitAddressMismatchInFadt: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog 10/10/11 H: /64X FACS address mismatch in FADT - DEF2DF40 +klog 10/10/11 H: /00000000DEF30D40, using 32 (20090903/tbfadt-486) +klog 10/10/11 : +klog 10/10/11 : ADVICE: The FADT table contains Generic Address +klog 10/10/11 : Structure that has a mismatch between the 32 bit and +klog 10/10/11 : 64 bit versions of an address. This should be fixed +klog 10/10/11 : so there are no mismatches. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] +klog 10/10/11 H: KlogAcpi32Bit64BitAddressMismatchInFadt: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog 10/10/11 H: /64X length mismatch in Gpe1Block: 0/32 20090521 +klog 10/10/11 H: tbfadt-527 +klog 10/10/11 : +klog 10/10/11 : ADVICE: The FADT table contains Generic Address +klog 10/10/11 : Structure that has a mismatch between the 32 bit and +klog 10/10/11 : 64 bit versions of an address. This should be fixed +klog 10/10/11 : so there are no mismatches. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH +klog 10/10/11 H: Kernel message: [ 0.000000] ACPI Warning: BIOS XSDT +klog 10/10/11 H: has NULL entry, using RSDT (20110112/tbutils-663) +klog 10/10/11 : +klog 10/10/11 : ADVICE: ACPI AML intepreter has found some +klog 10/10/11 : non-conforming AML code. This should be investigated +klog 10/10/11 : and fixed. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning: +klog 10/10/11 H: Invalid length for Pm1aControlBlock: 32, using +klog 10/10/11 H: default 16 (20090903/tbfadt-607) +klog 10/10/11 : +klog 10/10/11 : ADVICE: This item in the FADT is the incorrect +klog 10/10/11 : length. Should be corrected. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] +klog 10/10/11 H: KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning: +klog 10/10/11 H: Optional field Gpe1Block has zero address or length: +klog 10/10/11 H: 000000000000102C/0 20090521 tbfadt-558 +klog 10/10/11 : +klog 10/10/11 : ADVICE: An ACPI table contains Generic Address +klog 10/10/11 : Structure that has an address that is incorrectly +klog 10/10/11 : set to zero, or a zero length. This needs to be +klog 10/10/11 : fixed. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] +klog 10/10/11 H: KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning: +klog 10/10/11 H: Optional field Pm2ControlBlock has zero address or +klog 10/10/11 H: length: 0000000000000000/1 20090521 tbfadt-558 +klog 10/10/11 : +klog 10/10/11 : ADVICE: An ACPI table contains Generic Address +klog 10/10/11 : Structure that has an address that is incorrectly +klog 10/10/11 : set to zero, or a zero length. This needs to be +klog 10/10/11 : fixed. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] +klog 10/10/11 H: KlogAcpiOptionalFieldZeroAddressOrLength: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.000000] ACPI Warning +klog 10/10/11 H: (tbfadt-0460): Optional field "Gpe1Block" has zero +klog 10/10/11 H: address or length: 000000000000102C/0 [20080926] +klog 10/10/11 : +klog 10/10/11 : ADVICE: An ACPI table contains Generic Address +klog 10/10/11 : Structure that has an address that is incorrectly +klog 10/10/11 : set to zero, or a zero length. This needs to be +klog 10/10/11 : fixed. +klog 10/10/11 : +klog 10/10/11 M: FAILED [MEDIUM] KlogBiosMtrrIncorrectMask: Test 1, +klog 10/10/11 M: MEDIUM Kernel message: [ 0.000000] mtrr: your BIOS +klog 10/10/11 M: has configured an incorrect mask, fixing it. +klog 10/10/11 : +klog 10/10/11 : ADVICE: The Memory Type Range Registers (MTRRs) +klog 10/10/11 : which define memory caching policy are misconfigued +klog 10/10/11 : by the BIOS. In this case, the mask is incorrectly +klog 10/10/11 : set and the kernel has detected this and worked +klog 10/10/11 : around the firmware bug. +klog 10/10/11 : +klog 10/10/11 C: FAILED [CRITICAL] KlogBiosCpuMtrrMisconfigured: Test +klog 10/10/11 C: 1, CRITICAL Kernel message: [ 0.000000] WARNING: +klog 10/10/11 C: BIOS bug: CPU MTRRs don't cover all of memory, +klog 10/10/11 C: losing 1408MB of RAM. +klog 10/10/11 : +klog 10/10/11 : ADVICE: The Memory Type Range Registers (MTRRs) +klog 10/10/11 : which define memory caching policy are misconfigued +klog 10/10/11 : by the BIOS and don't appear to cover all available +klog 10/10/11 : physical memory. The kernel has detected this and +klog 10/10/11 : has reduced the amount of memory available to be +klog 10/10/11 : safe. Either check that the BIOS memory caching +klog 10/10/11 : options are set correctly or contact your BIOS +klog 10/10/11 : vendor to get this fixed. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiUnknownAmlOpcode: Test 1, HIGH +klog 10/10/11 H: Kernel message: [ 0.022719] ACPI Error: Found +klog 10/10/11 H: unknown opcode 0xFD at AML address f7ffe14c offset +klog 10/10/11 H: 0xE8, ignoring (20110112/psloop-141) +klog 10/10/11 : +klog 10/10/11 : ADVICE: ACPI execution run time error: The ACPI +klog 10/10/11 : interpreter has reached an opcode that is unknown, +klog 10/10/11 : this normally is a bug in the underlying AML code +klog 10/10/11 : either because of badly written AML code or the +klog 10/10/11 : compiler has produced code that is incorrect or the +klog 10/10/11 : ACPI interpreter does not support this valid opcode. +klog 10/10/11 : +klog 10/10/11 : +klog 10/10/11 C: FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: +klog 10/10/11 C: Test 1, CRITICAL Kernel message: [ 0.025463] ACPI +klog 10/10/11 C: Warning: Detected an unsupported executable opcode +klog 10/10/11 C: at module-level: [0x007B] at table offset 0x00C3 +klog 10/10/11 C: (20110112/psloop-526) +klog 10/10/11 : +klog 10/10/11 : ADVICE: An illegal AML opcode has been found and is +klog 10/10/11 : ignored. This indicates either badly compiled code +klog 10/10/11 : or opcode corruption in the DSDT or SSDT tables or a +klog 10/10/11 : bug in the ACPI execution engine. Recommend +klog 10/10/11 : disassembing using iasl to find any offending code. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, +klog 10/10/11 H: HIGH Kernel message: [ 0.034090] ACPI Error: Method +klog 10/10/11 H: parse/execution failed [_SB_.PCI0._OSC] (Node +klog 10/10/11 H: ee025630), AE_ALREADY_EXISTS (20110112/psparse-536) +klog 10/10/11 : +klog 10/10/11 : ADVICE: This is a bug picked up by the kernel, but +klog 10/10/11 : as yet, the firmware test suite has no diagnostic +klog 10/10/11 : advice for this particular problem. +klog 10/10/11 : +klog 10/10/11 H: FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH +klog 10/10/11 H: Kernel message: [ 0.040119] [Firmware Bug]: the BIOS +klog 10/10/11 H: has corrupted hw-PMU resources (MSR 186 is 400000) +klog 10/10/11 : +klog 10/10/11 : ADVICE: The kernel has detected a Firmware bug in +klog 10/10/11 : the BIOS or ACPI which needs investigating and +klog 10/10/11 : fixing. +klog 10/10/11 : +klog 10/10/11 C: FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: +klog 10/10/11 C: Test 1, CRITICAL Kernel message: [ 0.042222] ACPI +klog 10/10/11 C: Warning: Detected an unsupported executable opcode +klog 10/10/11 C: at module-level: [0x0070] at table offset 0x2366 +klog 10/10/11 C: (20100121/psloop-526) +klog 10/10/11 : +klog 10/10/11 : ADVICE: An illegal AML opcode has been found and is +klog 10/10/11 : ignored. This indicates either badly compiled code +klog 10/10/11 : or opcode corruption in the DSDT or SSDT tables or a +klog 10/10/11 : bug in the ACPI execution engine. Recommend +klog 10/10/11 : disassembing using iasl to find any offending code. +klog 10/10/11 : +klog 10/10/11 : Found 18 unique errors in kernel log. +klog 10/10/11 : +klog 10/10/11 : ==================================================== +klog 10/10/11 : 0 passed, 18 failed, 0 warning, 0 aborted, 0 skipped +klog 10/10/11 : , 0 info only. +klog 10/10/11 : ==================================================== diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/klog.txt fwts-14.03.00/fwts-test/arg-log-format-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-log-format-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008018/0000000000008028, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: A valid RSDP was not found (20090903/tbxfroot-219) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20090903/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DEF2DF40/00000000DEF30D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 20090521 tbfadt-527 +[ 0.000000] ACPI Warning: BIOS XSDT has NULL entry, using RSDT (20110112/tbutils-663) +[ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20090903/tbfadt-607) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 20090521 tbfadt-558 +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 20090521 tbfadt-558 +[ 0.000000] ACPI Warning (tbfadt-0460): Optional field "Gpe1Block" has zero address or length: 000000000000102C/0 [20080926] +[ 0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it. +[ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 1408MB of RAM. +[ 0.022719] ACPI Error: Found unknown opcode 0xFD at AML address f7ffe14c offset 0xE8, ignoring (20110112/psloop-141) +[ 0.025463] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x00C3 (20110112/psloop-526) +[ 0.034090] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ee025630), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.040119] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 400000) +[ 0.042222] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x2366 (20100121/psloop-526) diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-log-format-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-log-format-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test --log-format, all field operators" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ +TMPLOG_ORIG=$TMP/klog-0001.log.$$ +TODAY=`date +%d/%m/%y` + +$FWTS -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-log-format-0001/klog.txt --log-format="%owner (%line) <%date> %field %level: " klog - | grep "^klog" | sed "sx([0-9][0-9][0-9][0-9][0-9])x(XXXXX)x" > $TMPLOG +# +# Need to adjust reference log to today's date +# +cat $FWTSTESTDIR/arg-log-format-0001/klog-0001.log | sed "sx<[0-9][0-9]\/[0-9][0-9]\/[0-9][0-9]>x<${TODAY}>x" | sed "sx([0-9][0-9][0-9][0-9][0-9])x(XXXXX)x" > $TMPLOG_ORIG +diff $TMPLOG $TMPLOG_ORIG >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG_ORIG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-log-format-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-log-format-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-format, %owner field" +NAME=test-0002.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-log-format-0001/klog.txt --log-format="%owner: " klog - | grep "^klog" > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-log-format-0001/klog-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/test-0003.sh fwts-14.03.00/fwts-test/arg-log-format-0001/test-0003.sh --- fwts-14.02.00/fwts-test/arg-log-format-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test --log-format, %line field" +NAME=test-0003.sh +TMPLOG=$TMP/klog.log.$$ +TODAY=`date +%d/%m/%y` + +$FWTS -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-log-format-0001/klog.txt --log-format="%owner %line: " klog - | grep "^klog" | sed sx12\/10\/11x${TODAY}x > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-log-format-0001/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/test-0004.sh fwts-14.03.00/fwts-test/arg-log-format-0001/test-0004.sh --- fwts-14.02.00/fwts-test/arg-log-format-0001/test-0004.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/test-0004.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,24 @@ +#!/bin/bash +# +TEST="Test --log-format, %date %level field operators" +NAME=test-0004.sh +TMPLOG=$TMP/klog.log.$$ +TODAY=`date +%d/%m/%y` +TMPLOG_ORIG=$TMP/klog-0004.log.$$ +TODAY=`date +%d/%m/%y` + +# +# Need to adjust reference log to today's date +# +$FWTS -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-log-format-0001/klog.txt --log-format="%owner %date %%level: " klog - | grep "^klog" > $TMPLOG +sed "sx[0-9][0-9]\/[0-9][0-9]\/[0-9][0-9]x${TODAY}x" < $FWTSTESTDIR/arg-log-format-0001/klog-0004.log > $TMPLOG_ORIG +diff $TMPLOG $TMPLOG_ORIG >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG_ORIG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-log-format-0001/testcase.txt fwts-14.03.00/fwts-test/arg-log-format-0001/testcase.txt --- fwts-14.02.00/fwts-test/arg-log-format-0001/testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-log-format-0001/testcase.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Test fwts --log-format options diff -Nru fwts-14.02.00/fwts-test/arg-quiet-0001/klog.txt fwts-14.03.00/fwts-test/arg-quiet-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-quiet-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-quiet-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,10 @@ +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008018/0000000000008028, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: A valid RSDP was not found (20110112/tbxfroot-219) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3776BF40/0x000000003776ED40, using 32 (20100428/tbfadt-486) +[ 30.140475] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880217052420), AE_TIME +[ 42.490181] ACPI Error: [_SB_.VDRV] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 42.490202] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.H_EC._Q51] (Node ffff88003d9b1e60), AE_NOT_FOUND (20110112/psparse-536) +[ 44.661543] ACPI Warning for _SB_.PCI0.GFX0.DD01._BCL: Return type mismatch - found Integer, expected Package (20090903/nspredef-1006) +[ 50.737630] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMI: Excess arguments - needs 1, found 2 (20090903/nspredef-303) +[ 50.737686] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMS: Excess arguments - needs 1, found 2 (20090903/nspredef-303) diff -Nru fwts-14.02.00/fwts-test/arg-quiet-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-quiet-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-quiet-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-quiet-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --quiet option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --quiet -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-quiet-0001/klog.txt klog -r /dev/null > $TMPLOG +diff $TMPLOG /dev/null >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-quiet-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-quiet-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-quiet-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-quiet-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -q option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS -q -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-quiet-0001/klog.txt klog -r /dev/null > $TMPLOG +diff $TMPLOG /dev/null >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-quiet-0001/testcase.txt fwts-14.03.00/fwts-test/arg-quiet-0001/testcase.txt --- fwts-14.02.00/fwts-test/arg-quiet-0001/testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-quiet-0001/testcase.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Test fwts -q and --quiet options diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/klog.txt fwts-14.03.00/fwts-test/arg-results-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-results-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1063 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 3.0.0-12-generic (buildd@crested) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #19-Ubuntu SMP Fri Sep 23 21:23:39 UTC 2011 (Ubuntu 3.0.0-12.19-generic 3.0.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved) +[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable) +[ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6e3000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: LENOVO 0769BMG/IEL10, BIOS 68ET27WW 11/14/2007 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] original variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] total RAM covered: 3063M +[ 0.000000] Found optimal setting for mtrr clean up +[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 4 lose cover RAM: 0G +[ 0.000000] New variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] found SMP MP-table at [ffff8800000f72c0] f72c0 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf6d0000 page 4k +[ 0.000000] kernel direct mapping tables up to bf6d0000 @ bf6cb000-bf6d0000 +[ 0.000000] RAMDISK: 359ec000 - 36cee000 +[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 3062MB) +[ 0.000000] ACPI: RSDP 00000000000f7240 00024 (v02 LENOVO) +[ 0.000000] ACPI: XSDT 00000000bf6d87f0 00094 (v01 LENOVO TP-68 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bf6dfbd2 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 00000000bf6d9b6a 05FF4 (v02 TOSCPL CRESTLNE 06040000 INTL 20060608) +[ 0.000000] ACPI: FACS 00000000bf6e2fc0 00040 +[ 0.000000] ACPI: APIC 00000000bf6dfcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 00000000bf6dfd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 00000000bf6dfd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 00000000bf6dfda2 00032 (v01 Intel CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TMOR 00000000bf6dfdd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: SLIC 00000000bf6dfdfa 00176 (v01 LENOVO TP-68 06040000 TBD 00000001) +[ 0.000000] ACPI: APIC 00000000bf6dff70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bf6dffd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf6d98bd 002AD (v01 SataRe SataAhci 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d981a 000A3 (v01 BrtRef DD01BRT 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8e10 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8d6a 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8884 004E6 (v01 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bf6d0000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bf6d0000 +[ 0.000000] NODE_DATA [00000000bf6c6000 - 00000000bf6cafff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800bbe00000-ffff8800be7fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf6d0 +[ 0.000000] On node 0 totalpages: 783967 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 5 pages reserved +[ 0.000000] DMA zone: 3922 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10664 pages used for memmap +[ 0.000000] DMA32 zone: 769320 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000 +[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000 +[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000 +[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800bf400000 s79616 r8192 d22784 u1048576 +[ 0.000000] pcpu-alloc: s79616 r8192 d22784 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773242 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 2928536k/3136320k available (6104k kernel code, 452k absent, 207332k reserved, 4880k data, 984k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:512 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] vt handoff: transparent VT on vt#7 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 25165824 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1496.217 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.43 BogoMIPS (lpj=5984868) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004056] Security Framework initialized +[ 0.004080] AppArmor: AppArmor initialized +[ 0.004083] Yama: becoming mindful. +[ 0.004759] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.010636] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.012341] Mount-cache hash table entries: 256 +[ 0.012557] Initializing cgroup subsys cpuacct +[ 0.012565] Initializing cgroup subsys memory +[ 0.012580] Initializing cgroup subsys devices +[ 0.012583] Initializing cgroup subsys freezer +[ 0.012586] Initializing cgroup subsys net_cls +[ 0.012589] Initializing cgroup subsys blkio +[ 0.012598] Initializing cgroup subsys perf_event +[ 0.012643] CPU: Physical Processor ID: 0 +[ 0.012645] CPU: Processor Core ID: 0 +[ 0.012649] mce: CPU supports 6 MCE banks +[ 0.012661] CPU0: Thermal monitoring handled by SMI +[ 0.012667] using mwait in idle threads. +[ 0.016288] ACPI: Core revision 20110413 +[ 0.024040] ftrace: allocating 25651 entries in 101 pages +[ 0.028444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.071627] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d +[ 0.072003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.072003] PEBS disabled due to CPU errata. +[ 0.072003] ... version: 2 +[ 0.072003] ... bit width: 40 +[ 0.072003] ... generic registers: 2 +[ 0.072003] ... value mask: 000000ffffffffff +[ 0.072003] ... max period: 000000007fffffff +[ 0.072003] ... fixed-purpose events: 3 +[ 0.072003] ... event mask: 0000000700000003 +[ 0.072003] Booting Node 0, Processors #1 Ok. +[ 0.072003] smpboot cpu 1: start_ip = 9a000 +[ 0.008000] CPU1: Thermal monitoring handled by SMI +[ 0.160029] Brought up 2 CPUs +[ 0.160033] Total of 2 processors activated (5984.88 BogoMIPS). +[ 0.161224] devtmpfs: initialized +[ 0.161224] PM: Registering ACPI NVS region at bf6d0000 (77824 bytes) +[ 0.162075] print_constraints: dummy: +[ 0.162115] Time: 7:34:42 Date: 10/05/11 +[ 0.162171] NET: Registered protocol family 16 +[ 0.162209] Trying to unpack rootfs image as initramfs... +[ 0.164047] ACPI: bus type pci registered +[ 0.164133] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.164138] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.220043] PCI: Using configuration type 1 for base access +[ 0.221379] bio: create slab at 0 +[ 0.223506] ACPI: EC: Look up EC in DSDT +[ 0.228089] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 0.229039] ACPI: SSDT 00000000bf6d959e 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229543] ACPI: Dynamic OEM Table Load: +[ 0.229548] ACPI: SSDT (null) 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229696] ACPI: SSDT 00000000bf6d906f 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230165] ACPI: Dynamic OEM Table Load: +[ 0.230169] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230454] ACPI: SSDT 00000000bf6d9752 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232427] ACPI: Dynamic OEM Table Load: +[ 0.232432] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232541] ACPI: SSDT 00000000bf6d9519 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.233011] ACPI: Dynamic OEM Table Load: +[ 0.233015] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.238295] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 0.344070] ACPI: Interpreter enabled +[ 0.344078] ACPI: (supports S0 S3 S4 S5) +[ 0.344118] ACPI: Using IOAPIC for interrupt routing +[ 0.389051] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.389294] ACPI: No dock devices found. +[ 0.389298] HEST: Table not found. +[ 0.389303] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.389762] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.390623] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.390628] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.390632] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.390636] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) +[ 0.390640] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) +[ 0.390645] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored) +[ 0.390648] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.390665] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600 +[ 0.390726] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300 +[ 0.390746] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfc0fffff 64bit] +[ 0.390758] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 0.390767] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807] +[ 0.390812] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380 +[ 0.390829] pci 0000:00:02.1: reg 10: [mem 0xfc100000-0xfc1fffff 64bit] +[ 0.390937] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03 +[ 0.391013] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f] +[ 0.391065] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03 +[ 0.391126] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f] +[ 0.391187] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03 +[ 0.391216] pci 0000:00:1a.7: reg 10: [mem 0xfc504800-0xfc504bff] +[ 0.391321] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.391328] pci 0000:00:1a.7: PME# disabled +[ 0.391362] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403 +[ 0.391386] pci 0000:00:1b.0: reg 10: [mem 0xfc300000-0xfc303fff 64bit] +[ 0.391473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.391479] pci 0000:00:1b.0: PME# disabled +[ 0.391514] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604 +[ 0.391605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.391611] pci 0000:00:1c.0: PME# disabled +[ 0.391647] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604 +[ 0.391735] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.391741] pci 0000:00:1c.1: PME# disabled +[ 0.391775] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604 +[ 0.391868] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.391874] pci 0000:00:1c.2: PME# disabled +[ 0.391911] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604 +[ 0.391999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.392005] pci 0000:00:1c.3: PME# disabled +[ 0.392053] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03 +[ 0.392114] pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f] +[ 0.392162] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03 +[ 0.392238] pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f] +[ 0.392293] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03 +[ 0.392371] pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf] +[ 0.392438] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03 +[ 0.392466] pci 0000:00:1d.7: reg 10: [mem 0xfc504c00-0xfc504fff] +[ 0.392567] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.392573] pci 0000:00:1d.7: PME# disabled +[ 0.392603] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.392698] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601 +[ 0.392816] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.392824] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.392829] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.392835] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f) +[ 0.392884] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101 +[ 0.392903] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.392918] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.392931] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.392944] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.392958] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f] +[ 0.393014] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106 +[ 0.393042] pci 0000:00:1f.2: reg 10: [io 0x1c00-0x1c07] +[ 0.393056] pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7] +[ 0.393069] pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df] +[ 0.393082] pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3] +[ 0.393095] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff] +[ 0.393108] pci 0000:00:1f.2: reg 24: [mem 0xfc504000-0xfc5047ff] +[ 0.393157] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.393163] pci 0000:00:1f.2: PME# disabled +[ 0.393188] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05 +[ 0.393206] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff] +[ 0.393250] pci 0000:00:1f.3: reg 20: [io 0x1c20-0x1c3f] +[ 0.393354] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.393360] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.393367] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.393376] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.393501] pci 0000:04:00.0: [8086:4227] type 0 class 0x000280 +[ 0.393557] pci 0000:04:00.0: reg 10: [mem 0xf8000000-0xf8000fff] +[ 0.393895] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 0.393908] pci 0000:04:00.0: PME# disabled +[ 0.393979] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.394021] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.394027] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.394033] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.394043] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.394110] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.394116] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.394122] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.394132] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.394268] pci 0000:06:00.0: [14e4:1713] type 0 class 0x000200 +[ 0.394336] pci 0000:06:00.0: reg 10: [mem 0xc8000000-0xc800ffff 64bit] +[ 0.394639] pci 0000:06:00.0: PME# supported from D3hot D3cold +[ 0.394651] pci 0000:06:00.0: PME# disabled +[ 0.394783] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.394789] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.394796] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.394806] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.394868] pci 0000:08:06.0: [1180:0832] type 0 class 0x000c00 +[ 0.394886] pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.394890] pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller +[ 0.394909] pci 0000:08:06.0: reg 10: [mem 0xfc200000-0xfc2007ff] +[ 0.395006] pci 0000:08:06.0: supports D1 D2 +[ 0.395009] pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395016] pci 0000:08:06.0: PME# disabled +[ 0.395045] pci 0000:08:06.1: [1180:0822] type 0 class 0x000805 +[ 0.395069] pci 0000:08:06.1: reg 10: [mem 0xfc200800-0xfc2008ff] +[ 0.395165] pci 0000:08:06.1: supports D1 D2 +[ 0.395168] pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395174] pci 0000:08:06.1: PME# disabled +[ 0.395199] pci 0000:08:06.2: [1180:0592] type 0 class 0x000880 +[ 0.395224] pci 0000:08:06.2: reg 10: [mem 0xfc201000-0xfc2010ff] +[ 0.395317] pci 0000:08:06.2: supports D1 D2 +[ 0.395320] pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395326] pci 0000:08:06.2: PME# disabled +[ 0.395350] pci 0000:08:06.3: [1180:0852] type 0 class 0x000880 +[ 0.395376] pci 0000:08:06.3: reg 10: [mem 0xfc201400-0xfc2014ff] +[ 0.395474] pci 0000:08:06.3: supports D1 D2 +[ 0.395477] pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395484] pci 0000:08:06.3: PME# disabled +[ 0.395549] pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode) +[ 0.395556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.395562] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.395572] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.395576] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.395580] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) +[ 0.395619] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.395828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.395887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.395944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.395999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.396116] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.396176] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.396181] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d +[ 0.396184] ACPI _OSC control for PCIe not granted, disabling ASPM +[ 0.404002] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.404086] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404153] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.404217] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404282] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.404353] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404419] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.404484] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.404647] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.404670] vgaarb: loaded +[ 0.404672] vgaarb: bridge control possible 0000:00:02.0 +[ 0.404971] SCSI subsystem initialized +[ 0.405069] libata version 3.00 loaded. +[ 0.405143] usbcore: registered new interface driver usbfs +[ 0.405158] usbcore: registered new interface driver hub +[ 0.405200] usbcore: registered new device driver usb +[ 0.405322] PCI: Using ACPI for IRQ routing +[ 0.416330] PCI: pci_cache_line_size set to 64 bytes +[ 0.416509] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.416513] reserve RAM buffer: 00000000bf6d0000 - 00000000bfffffff +[ 0.416683] NetLabel: Initializing +[ 0.416686] NetLabel: domain hash size = 128 +[ 0.416688] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.416706] NetLabel: unlabeled traffic allowed by default +[ 0.416770] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.416777] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.416784] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.420524] Switching to clocksource hpet +[ 0.423392] Switched to NOHz mode on CPU #0 +[ 0.423487] Switched to NOHz mode on CPU #1 +[ 0.430603] AppArmor: AppArmor Filesystem Enabled +[ 0.430649] pnp: PnP ACPI init +[ 0.430672] ACPI: bus type pnp registered +[ 0.431166] pnp 00:00: [bus 00-ff] +[ 0.431171] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.431174] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.431177] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.431181] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.431184] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 0.431187] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 0.431190] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 0.431197] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 0.431201] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 0.431204] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 0.431207] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 0.431210] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 0.431213] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 0.431216] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 0.431219] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 0.431222] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 0.431225] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 0.431229] pnp 00:00: [mem 0xc0000000-0xdfffffff window] +[ 0.431232] pnp 00:00: [mem 0xf0000000-0xfebfffff window] +[ 0.431235] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 0.431344] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.431447] pnp 00:01: [mem 0xfed1c000-0xfed1ffff] +[ 0.431450] pnp 00:01: [mem 0xfed14000-0xfed17fff] +[ 0.431453] pnp 00:01: [mem 0xfed18000-0xfed18fff] +[ 0.431456] pnp 00:01: [mem 0xfed19000-0xfed19fff] +[ 0.431458] pnp 00:01: [mem 0xe0000000-0xefffffff] +[ 0.431461] pnp 00:01: [mem 0xfed20000-0xfed3ffff] +[ 0.431464] pnp 00:01: [mem 0xfed40000-0xfed44fff] +[ 0.431467] pnp 00:01: [mem 0xfed45000-0xfed8ffff] +[ 0.431559] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.431564] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.431568] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.431572] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.431576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.431580] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.431584] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.431588] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.431593] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.431859] pnp 00:02: [io 0x0000-0x001f] +[ 0.431862] pnp 00:02: [io 0x0081-0x0091] +[ 0.431864] pnp 00:02: [io 0x0093-0x009f] +[ 0.431867] pnp 00:02: [io 0x00c0-0x00df] +[ 0.431870] pnp 00:02: [dma 4] +[ 0.431931] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.431946] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 0.432030] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.432131] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 0.432218] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.432223] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 0.432239] pnp 00:05: [io 0x00f0] +[ 0.432256] pnp 00:05: [irq 13] +[ 0.432321] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.432337] pnp 00:06: [io 0x002e-0x002f] +[ 0.432340] pnp 00:06: [io 0x004e-0x004f] +[ 0.432343] pnp 00:06: [io 0x0061] +[ 0.432345] pnp 00:06: [io 0x0063] +[ 0.432348] pnp 00:06: [io 0x0065] +[ 0.432351] pnp 00:06: [io 0x0067] +[ 0.432353] pnp 00:06: [io 0x0080] +[ 0.432355] pnp 00:06: [io 0x0092] +[ 0.432358] pnp 00:06: [io 0x00b2-0x00b3] +[ 0.432361] pnp 00:06: [io 0x0680-0x069f] +[ 0.432363] pnp 00:06: [io 0x0800-0x080f] +[ 0.432366] pnp 00:06: [io 0x1000-0x107f] +[ 0.432373] pnp 00:06: [io 0x1180-0x11bf] +[ 0.432375] pnp 00:06: [io 0xfe00] +[ 0.432378] pnp 00:06: [io 0xff00-0xff7f] +[ 0.432479] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.432484] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.432487] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.432491] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.432495] system 00:06: [io 0xfe00] has been reserved +[ 0.432499] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.432504] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.432517] pnp 00:07: [io 0x0070-0x0077] +[ 0.432525] pnp 00:07: [irq 8] +[ 0.432587] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.452092] pnp 00:08: [io 0x0060] +[ 0.452096] pnp 00:08: [io 0x0064] +[ 0.452112] pnp 00:08: [irq 1] +[ 0.452226] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 0.452246] pnp 00:09: [irq 12] +[ 0.452305] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 0.452340] pnp: PnP ACPI: found 10 devices +[ 0.452343] ACPI: ACPI bus type pnp unregistered +[ 0.459104] PCI: max bus depth: 1 pci_try_num: 2 +[ 0.459195] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff] +[ 0.459204] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff]) +[ 0.459209] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.459214] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.459222] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.459229] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459239] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.459244] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.459252] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.459259] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459268] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.459272] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.459280] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.459287] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459296] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.459301] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.459308] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.459314] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459324] pci 0000:00:1e.0: PCI bridge to [bus 08-08] +[ 0.459327] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.459334] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.459340] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.459373] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.459380] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.459399] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.459405] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.459419] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.459425] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.459438] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.459444] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.459455] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.459460] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.459464] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff] +[ 0.459467] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 0.459470] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff] +[ 0.459474] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459478] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.459481] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.459484] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459488] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.459491] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff] +[ 0.459495] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459498] pci_bus 0000:06: resource 0 [io 0x5000-0x5fff] +[ 0.459501] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xc9ffffff] +[ 0.459505] pci_bus 0000:06: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459508] pci_bus 0000:08: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 0.459512] pci_bus 0000:08: resource 4 [io 0x0000-0xffff] +[ 0.459515] pci_bus 0000:08: resource 5 [mem 0x00000000-0xfffffffff] +[ 0.459580] NET: Registered protocol family 2 +[ 0.459816] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.461759] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.468207] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.469024] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.469028] TCP reno registered +[ 0.469052] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469325] NET: Registered protocol family 1 +[ 0.469358] pci 0000:00:02.0: Boot video device +[ 0.469577] PCI: CLS 64 bytes, default 64 +[ 0.469604] Simple Boot Flag at 0x36 set to 0x1 +[ 0.470069] audit: initializing netlink socket (disabled) +[ 0.470088] type=2000 audit(1317800082.464:1): initialized +[ 0.509918] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.531362] VFS: Disk quotas dquot_6.5.2 +[ 0.531454] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.532343] fuse init (API version 7.16) +[ 0.532465] msgmni has been set to 5719 +[ 0.532931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.532975] io scheduler noop registered +[ 0.532978] io scheduler deadline registered +[ 0.533033] io scheduler cfq registered (default) +[ 0.533206] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.533281] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.533378] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.533444] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.533540] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.533607] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.533705] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.533770] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.533898] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.533934] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.533994] intel_idle: MWAIT substates: 0x22220 +[ 0.533997] intel_idle: does not run on family 6 model 15 +[ 0.534105] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.534186] ACPI: AC Adapter [ACAD] (on-line) +[ 0.534267] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 0.534291] ACPI: Lid Switch [LID0] +[ 0.534348] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 +[ 0.534353] ACPI: Power Button [PWRB] +[ 0.534429] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.534434] ACPI: Power Button [PWRF] +[ 0.534479] ACPI: acpi_idle registered with cpuidle +[ 0.536970] Monitor-Mwait will be used to enter C-1 state +[ 0.537024] Monitor-Mwait will be used to enter C-2 state +[ 0.537059] Monitor-Mwait will be used to enter C-3 state +[ 0.537066] Marking TSC unstable due to TSC halts in idle +[ 0.576306] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.576339] ERST: Table is not found! +[ 0.576477] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.596514] ACPI: Battery Slot [BAT1] (battery present) +[ 0.756873] Freeing initrd memory: 19464k freed +[ 0.789948] Linux agpgart interface v0.103 +[ 0.790084] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 0.790242] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable +[ 0.791097] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 0.791250] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 0.792794] brd: module loaded +[ 0.793486] loop: module loaded +[ 0.793683] ata_piix 0000:00:1f.1: version 2.13 +[ 0.793701] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.793746] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.794143] scsi0 : ata_piix +[ 0.794282] scsi1 : ata_piix +[ 0.794784] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.794789] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.795227] Fixed MDIO Bus: probed +[ 0.795261] PPP generic driver version 2.4.2 +[ 0.795315] tun: Universal TUN/TAP device driver, 1.6 +[ 0.795318] tun: (C) 1999-2004 Max Krasnyansky +[ 0.795429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.795451] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.795472] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.795477] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.795524] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.795567] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.799463] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.799485] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc504800 +[ 0.812020] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.812182] hub 1-0:1.0: USB hub found +[ 0.812189] hub 1-0:1.0: 4 ports detected +[ 0.812291] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.812305] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.812310] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.812363] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.812398] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.816279] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.816301] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc504c00 +[ 0.832023] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.832151] hub 2-0:1.0: USB hub found +[ 0.832157] hub 2-0:1.0: 6 ports detected +[ 0.832258] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.832276] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.832305] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.832314] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.832319] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.832366] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.832412] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820 +[ 0.832569] hub 3-0:1.0: USB hub found +[ 0.832575] hub 3-0:1.0: 2 ports detected +[ 0.832668] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.832679] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.832684] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.832731] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.832775] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840 +[ 0.832936] hub 4-0:1.0: USB hub found +[ 0.832941] hub 4-0:1.0: 2 ports detected +[ 0.833028] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.833037] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.833042] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.833099] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.833134] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860 +[ 0.833291] hub 5-0:1.0: USB hub found +[ 0.833296] hub 5-0:1.0: 2 ports detected +[ 0.833384] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.833392] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.833397] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.833448] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.833493] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880 +[ 0.833649] hub 6-0:1.0: USB hub found +[ 0.833655] hub 6-0:1.0: 2 ports detected +[ 0.833737] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.833746] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.833750] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.833797] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.833832] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0 +[ 0.833984] hub 7-0:1.0: USB hub found +[ 0.833990] hub 7-0:1.0: 2 ports detected +[ 0.834133] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.858635] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.858644] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.858792] mousedev: PS/2 mouse device common for all mice +[ 0.860515] rtc_cmos 00:07: RTC can wake from S4 +[ 0.860650] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 0.860686] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.860821] device-mapper: uevent: version 1.0.3 +[ 0.860928] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com +[ 0.861015] cpuidle: using governor ladder +[ 0.861137] cpuidle: using governor menu +[ 0.861140] EFI Variables Facility v0.08 2004-May-17 +[ 0.861497] TCP cubic registered +[ 0.861666] NET: Registered protocol family 10 +[ 0.862339] NET: Registered protocol family 17 +[ 0.862362] Registering the dns_resolver key type +[ 0.862505] PM: Hibernation image not present or could not be loaded. +[ 0.862521] registered taskstats version 1 +[ 0.881709] Magic number: 15:169:571 +[ 0.881852] rtc_cmos 00:07: setting system clock to 2011-10-05 07:34:43 UTC (1317800083) +[ 0.882695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.882699] EDD information not available. +[ 0.885384] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.964510] ata1.00: ATAPI: MATSHITADVD-RAM UJ-850 z, RB32, max UDMA/33 +[ 0.980374] ata1.00: configured for UDMA/33 +[ 0.983110] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-850 z RB32 PQ: 0 ANSI: 5 +[ 0.985684] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.985690] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 0.985886] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.985957] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.988684] Freeing unused kernel memory: 984k freed +[ 0.989019] Write protecting the kernel read-only data: 10240k +[ 0.989354] Freeing unused kernel memory: 20k freed +[ 0.996526] Freeing unused kernel memory: 1400k freed +[ 1.023090] udevd[92]: starting version 173 +[ 1.095474] [drm] Initialized drm 1.1.0 20060810 +[ 1.111223] tg3.c:v3.119 (May 18, 2011) +[ 1.111255] tg3 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.111275] tg3 0000:06:00.0: setting latency timer to 64 +[ 1.123354] wmi: Mapper loaded +[ 1.135292] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.135301] i915 0000:00:02.0: setting latency timer to 64 +[ 1.229432] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 1.229442] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 1.229444] [drm] Driver supports precise vblank timestamp query. +[ 1.229504] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.231431] sdhci: Secure Digital Host Controller Interface driver +[ 1.231435] sdhci: Copyright(c) Pierre Ossman +[ 1.231761] sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 19) +[ 1.231780] sdhci-pci 0000:08:06.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 1.232804] sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.251222] mmc0: no vmmc regulator found +[ 1.252265] Registered led device: mmc0:: +[ 1.258216] mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA +[ 1.278826] tg3 0000:06:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:0c:7f:47 +[ 1.278833] tg3 0000:06:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0]) +[ 1.278838] tg3 0000:06:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.278842] tg3 0000:06:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.288114] firewire_ohci 0000:08:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.288352] fixme: max PWM is zero. +[ 1.321105] [drm] initialized overlay support +[ 1.363095] firewire_ohci: Added fw-ohci device 0000:08:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 1.429305] usb 1-4: new high speed USB device number 4 using ehci_hcd +[ 1.510188] fbcon: inteldrmfb (fb0) is primary device +[ 1.510267] Console: switching to colour frame buffer device 160x50 +[ 1.510301] fb0: inteldrmfb frame buffer device +[ 1.510304] drm: registered panic notifier +[ 1.596139] acpi device:08: registered as cooling_device2 +[ 1.596350] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4 +[ 1.596428] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.596505] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 1.596723] ahci 0000:00:1f.2: version 3.0 +[ 1.596748] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.596832] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.596928] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.596934] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc +[ 1.596941] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.600697] scsi2 : ahci +[ 1.601002] scsi3 : ahci +[ 1.601154] scsi4 : ahci +[ 1.601328] ata3: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504100 irq 45 +[ 1.601335] ata4: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504180 irq 45 +[ 1.601340] ata5: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504200 irq 45 +[ 1.860262] firewire_core: created device fw0: GUID 00023f7bac4040de, S400 +[ 1.920122] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.921792] ata3.00: unexpected _GTF length (8) +[ 1.922070] ata3.00: ATA-8: WDC WD2500BEKT-75PVMT0, 01.01A01, max UDMA/133 +[ 1.922077] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.923756] ata3.00: unexpected _GTF length (8) +[ 1.924053] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.924081] ata3.00: configured for UDMA/133 +[ 1.924106] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.924318] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEKT-7 01.0 PQ: 0 ANSI: 5 +[ 1.924525] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.924642] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.924823] sd 2:0:0:0: [sda] Write Protect is off +[ 1.924828] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.924898] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.020840] sda: sda1 sda2 sda3 sda4 < sda5 > +[ 2.021461] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.032059] usb 3-1: new full speed USB device number 2 using uhci_hcd +[ 2.464056] usb 4-1: new full speed USB device number 2 using uhci_hcd +[ 2.872042] usb 6-1: new low speed USB device number 2 using uhci_hcd +[ 3.093235] input: MLK Trust Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5 +[ 3.093727] generic-usb 0003:04FC:05DA.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Trust Mouse] on usb-0000:00:1d.1-1/input0 +[ 3.093905] usbcore: registered new interface driver usbhid +[ 3.093909] usbhid: USB HID core driver +[ 3.288960] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 3.308073] usb 6-2: new full speed USB device number 3 using uhci_hcd +[ 3.720052] usb 7-1: new low speed USB device number 2 using uhci_hcd +[ 3.918393] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input6 +[ 3.918495] generic-usb 0003:046D:C312.0002: input,hidraw1: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:00:1d.2-1/input0 +[ 5.565904] Adding 15999996k swap on /dev/sda3. Priority:-1 extents:1 across:15999996k +[ 5.691364] udevd[373]: starting version 173 +[ 6.303871] lp: driver loaded but no devices found +[ 7.040655] cfg80211: Calling CRDA to update world regulatory domain +[ 7.159284] r852 0000:08:06.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 7.159297] r852 0000:08:06.3: setting latency timer to 64 +[ 7.159394] r852: Non dma capable device detected, dma disabled +[ 7.159411] r852: driver loaded successfully +[ 7.169632] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s +[ 7.169637] iwl3945: Copyright(c) 2003-2011 Intel Corporation +[ 7.169734] iwl3945 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.169751] iwl3945 0000:04:00.0: setting latency timer to 64 +[ 7.225063] iwl3945 0000:04:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels +[ 7.225067] iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG +[ 7.225225] iwl3945 0000:04:00.0: irq 46 for MSI/MSI-X +[ 7.225470] Registered led device: phy0-led +[ 7.225511] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 7.521071] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs' +[ 7.728682] udevd[389]: renamed network interface eth0 to eth1 +[ 7.785421] udevd[392]: renamed network interface wlan0 to wlan1 +[ 7.839555] device-mapper: multipath: version 1.3.0 loaded +[ 7.920206] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x25c0b1, caps: 0xa04713/0x200000/0x0 +[ 8.001393] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.103705] Linux video capture interface: v2.00 +[ 8.142601] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b013) +[ 8.145395] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.7/usb1/1-4/1-4:1.0/input/input8 +[ 8.145503] usbcore: registered new interface driver uvcvideo +[ 8.145506] USB Video Class driver (v1.1.0) +[ 8.268868] gspca: v2.13.0 registered +[ 8.426860] Bluetooth: Core ver 2.16 +[ 8.426898] NET: Registered protocol family 31 +[ 8.426901] Bluetooth: HCI device and connection manager initialized +[ 8.426905] Bluetooth: HCI socket layer initialized +[ 8.426908] Bluetooth: L2CAP socket layer initialized +[ 8.426983] Bluetooth: SCO socket layer initialized +[ 8.445120] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 8.445873] usbcore: registered new interface driver btusb +[ 8.596127] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 8.596132] cfg80211: World regulatory domain updated: +[ 8.596135] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.596139] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596144] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596147] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596151] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596155] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.713241] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 8.713332] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 8.713375] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 9.214524] type=1400 audit(1317800091.827:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=762 comm="apparmor_parser" +[ 9.214539] type=1400 audit(1317800091.827:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=760 comm="apparmor_parser" +[ 9.214899] type=1400 audit(1317800091.827:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=762 comm="apparmor_parser" +[ 9.214917] type=1400 audit(1317800091.827:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=760 comm="apparmor_parser" +[ 9.215139] type=1400 audit(1317800091.827:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=762 comm="apparmor_parser" +[ 9.215162] type=1400 audit(1317800091.827:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=760 comm="apparmor_parser" +[ 9.215989] type=1400 audit(1317800091.827:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=761 comm="apparmor_parser" +[ 9.216386] type=1400 audit(1317800091.831:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=761 comm="apparmor_parser" +[ 9.216637] type=1400 audit(1317800091.831:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=761 comm="apparmor_parser" +[ 9.565602] input: zc3xx as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input9 +[ 9.565840] usbcore: registered new interface driver zc3xx +[ 9.567768] usbcore: registered new interface driver snd-usb-audio +[ 10.957262] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 11.498897] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 11.610016] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 13.338782] type=1400 audit(1317800095.951:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1170 comm="apparmor_parser" +[ 14.107842] ppdev: user-space parallel port driver +[ 16.201248] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.241864] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.244584] microcode: Microcode Update Driver: v2.00 , Peter Oruba +[ 16.257389] iwl3945 0000:04:00.0: loaded firmware version 15.32.2.9 +[ 16.319712] microcode: CPU0 updated to revision 0xa4, date = 2010-10-02 +[ 16.320392] microcode: CPU1 updated to revision 0xa4, date = 2010-10-02 +[ 16.327663] ADDRCONF(NETDEV_UP): wlan1: link is not ready +[ 16.411245] tg3 0000:06:00.0: irq 48 for MSI/MSI-X +[ 16.441602] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 17.163336] init: failsafe main process (1112) killed by TERM signal +[ 17.369512] init: gdm main process (1340) killed by TERM signal +[ 18.121686] tg3 0000:06:00.0: eth1: Link is up at 100 Mbps, full duplex +[ 18.121691] tg3 0000:06:00.0: eth1: Flow control is on for TX and on for RX +[ 18.122295] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready +[ 21.210518] RPC: Registered named UNIX socket transport module. +[ 21.210523] RPC: Registered udp transport module. +[ 21.210525] RPC: Registered tcp transport module. +[ 21.210528] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 21.445931] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 21.627527] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory +[ 21.636586] NFSD: starting 90-second grace period +[ 24.852307] vboxdrv: Found 2 processor cores. +[ 24.852593] vboxdrv: fAsync=0 offMin=0x1c2 offMax=0xae6 +[ 24.852666] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'. +[ 24.852669] vboxdrv: Successfully loaded version 4.1.2_Ubuntu (interface 0x00190000). +[ 25.101599] vboxpci: IOMMU not found (not registered) +[ 27.046401] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 27.046405] Bluetooth: BNEP filters: protocol multicast +[ 27.081903] Bluetooth: RFCOMM TTY layer initialized +[ 27.081919] Bluetooth: RFCOMM socket layer initialized +[ 27.081921] Bluetooth: RFCOMM ver 1.11 +[ 28.752057] eth1: no IPv6 routers present +[ 33.139443] init: plymouth-stop pre-start process (2005) terminated with status 1 +[ 33.628053] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro,commit=0 +[ 34.056830] EXT4-fs (sda1): re-mounted. Opts: commit=0 +[ 34.217110] EXT4-fs (sda5): re-mounted. Opts: commit=0 +[ 45.192742] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 45.196319] wlan1: authenticated +[ 45.199717] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 45.202749] wlan1: RX AssocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 45.202758] wlan1: associated +[ 45.206342] ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready +[ 45.206456] cfg80211: Calling CRDA for country: GB +[ 45.213483] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213493] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213498] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213505] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213509] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213516] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213520] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213526] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213531] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213537] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213542] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213547] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213552] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213558] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213569] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213573] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213579] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213584] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213590] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213594] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213600] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213605] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213611] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213615] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213621] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213626] cfg80211: Disabling freq 5170 MHz +[ 45.213630] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213636] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213640] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213646] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213651] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213657] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213662] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213667] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213672] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213678] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213683] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213688] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213693] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213699] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213704] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213710] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213714] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213720] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213725] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213731] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213742] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213746] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213752] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213757] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213763] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213768] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213774] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213779] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213785] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213789] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213795] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213800] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213806] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213810] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213816] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213821] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213827] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213831] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213837] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213842] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213848] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213852] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213858] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213864] cfg80211: Regulatory domain changed to country: GB +[ 45.213868] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 45.213873] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213879] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213884] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213889] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 52.640123] eth1: no IPv6 routers present +[ 55.208282] wlan1: disassociating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.214021] cfg80211: All devices are disconnected, going to restore regulatory settings +[ 55.214032] cfg80211: Restoring regulatory settings +[ 55.214052] cfg80211: Calling CRDA to update world regulatory domain +[ 55.214778] wlan1: deauthenticating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.221291] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 55.221299] cfg80211: World regulatory domain updated: +[ 55.221303] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 55.221309] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221315] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221321] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221327] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221333] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.392119] wlan1: no IPv6 routers present +[ 58.763822] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 58.765582] wlan1: authenticated +[ 58.766582] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 58.769972] wlan1: RX ReassocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 58.769980] wlan1: associated +[ 58.773587] cfg80211: Calling CRDA for country: GB +[ 58.778304] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778310] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778314] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778318] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778321] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778325] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778328] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778332] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778335] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778340] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778343] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778347] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778350] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778354] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778357] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778361] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778364] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778368] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778371] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778375] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778378] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778382] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778385] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778389] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778392] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778396] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778399] cfg80211: Disabling freq 5170 MHz +[ 58.778402] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778406] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778409] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778413] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778416] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778420] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778423] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778427] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778430] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778434] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778437] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778441] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778444] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778448] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778452] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778456] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778459] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778463] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778466] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778470] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778473] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778477] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778480] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778484] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778487] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778491] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778494] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778498] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778501] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778505] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778508] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778512] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778515] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778519] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778522] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778526] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778529] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778533] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778536] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778540] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778543] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778547] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778550] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778554] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778558] cfg80211: Regulatory domain changed to country: GB +[ 58.778560] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 58.778564] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778568] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778571] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778575] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 70.176124] wlan1: no IPv6 routers present +[ 75.152080] eth1: no IPv6 routers present +[ 98.736094] eth1: no IPv6 routers present +[ 648.357292] ecryptfs_mount: kern_path() failed +[ 648.388155] Reading sb failed; rc = [-2] +[ 670.016019] eth1: no IPv6 routers present +[ 688.176048] eth1: no IPv6 routers present +[ 711.096140] eth1: no IPv6 routers present diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/results-0005.log fwts-14.03.00/fwts-test/arg-results-0001/results-0005.log --- fwts-14.02.00/fwts-test/arg-results-0001/results-0005.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/results-0005.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,114 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog FAILED [CRITICAL] KlogPciAcpiOscRequestFailed: Test 1, +klog CRITICAL Kernel message: [ 0.396181] pci0000:00: ACPI _OSC +klog request failed (AE_NOT_FOUND), returned control mask: 0x1d +klog +klog ADVICE: The _OSC method evaluation failed, which will +klog result in disabling PCIe functionality, for example, the +klog Linux kernel has to disable Active State Power Management +klog (ASPM) which means that PCIe power management is not +klog optimally configured. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.534105] ACPI: Deprecated procfs I +klog /F for AC is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI AC Adapter, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.576306] ACPI: Deprecated procfs I +klog /F for battery is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI battery, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog Found 4 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 4 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog FAILED [CRITICAL] KlogPciAcpiOscRequestFailed: Test 1, +klog CRITICAL Kernel message: [ 0.396181] pci0000:00: ACPI _OSC +klog request failed (AE_NOT_FOUND), returned control mask: 0x1d +klog +klog ADVICE: The _OSC method evaluation failed, which will +klog result in disabling PCIe functionality, for example, the +klog Linux kernel has to disable Active State Power Management +klog (ASPM) which means that PCIe power management is not +klog optimally configured. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.534105] ACPI: Deprecated procfs I +klog /F for AC is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI AC Adapter, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.576306] ACPI: Deprecated procfs I +klog /F for battery is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI battery, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog Found 4 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 4 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/results.log fwts-14.03.00/fwts-test/arg-results-0001/results.log --- fwts-14.02.00/fwts-test/arg-results-0001/results.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/results.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,57 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog FAILED [CRITICAL] KlogPciAcpiOscRequestFailed: Test 1, +klog CRITICAL Kernel message: [ 0.396181] pci0000:00: ACPI _OSC +klog request failed (AE_NOT_FOUND), returned control mask: 0x1d +klog +klog ADVICE: The _OSC method evaluation failed, which will +klog result in disabling PCIe functionality, for example, the +klog Linux kernel has to disable Active State Power Management +klog (ASPM) which means that PCIe power management is not +klog optimally configured. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.534105] ACPI: Deprecated procfs I +klog /F for AC is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI AC Adapter, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.576306] ACPI: Deprecated procfs I +klog /F for battery is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI battery, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog Found 4 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 4 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test --results-output option" +NAME=test-0001.sh +TMPLOG=$TMP/results_$$.log + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog --results-output=$TMPLOG >& /dev/null +grep "^[0-9]*[ ]*klog" $TMPLOG | cut -c7- > $TMPLOG.filtered +diff $TMPLOG.filtered $FWTSTESTDIR/arg-results-0001/results.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG.filtered +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,18 @@ +#!/bin/bash +# +TEST="Test -r option" +NAME=test-0002.sh +TMPLOG=$TMP/results_$$.log + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog -r $TMPLOG >& /dev/null +grep "^[0-9]*[ ]*klog" $TMPLOG | cut -c7- > $TMPLOG.filtered +diff $TMPLOG.filtered $FWTSTESTDIR/arg-results-0001/results.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG.filtered +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0003.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0003.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --results-output stdout option" +NAME=test-0003.sh +TMPLOG=$TMP/results_$$.log + +($FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog --results-output=stdout | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG ) >& /dev/null +diff $TMPLOG $FWTSTESTDIR/arg-results-0001/results.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0004.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0004.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0004.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0004.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -r stdout option" +NAME=test-0004.sh +TMPLOG=$TMP/results_$$.log + +($FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog -r stdout | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG ) >& /dev/null +diff $TMPLOG $FWTSTESTDIR/arg-results-0001/results.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0005.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0005.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0005.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0005.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,19 @@ +#!/bin/bash +# +TEST="Test --results-output option (append)" +NAME=test-0005.sh +TMPLOG=$TMP/results_$$.log + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog --results-output=$TMPLOG >& /dev/null +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog --results-output=$TMPLOG >& /dev/null +grep "^[0-9]*[ ]*klog" $TMPLOG | cut -c7- > $TMPLOG.filtered +diff $TMPLOG.filtered $FWTSTESTDIR/arg-results-0001/results-0005.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG.filtered +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-0001/test-0006.sh fwts-14.03.00/fwts-test/arg-results-0001/test-0006.sh --- fwts-14.02.00/fwts-test/arg-results-0001/test-0006.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-0001/test-0006.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,19 @@ +#!/bin/bash +# +TEST="Test -r option (append)" +NAME=test-0006.sh +TMPLOG=$TMP/results_$$.log + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog -r $TMPLOG >& /dev/null +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-results-0001/klog.txt klog -r $TMPLOG >& /dev/null +grep "^[0-9]*[ ]*klog" $TMPLOG | cut -c7- > $TMPLOG.filtered +diff $TMPLOG.filtered $FWTSTESTDIR/arg-results-0001/results-0005.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $TMPLOG.filtered +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-results-no-separators-0001/klog-0001.log fwts-14.03.00/fwts-test/arg-results-no-separators-0001/klog-0001.log --- fwts-14.02.00/fwts-test/arg-results-no-separators-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-no-separators-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,54 @@ +klog klog: Scan kernel log for errors and warnings. +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog Kernel message: [ 0.228089] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query ignored +klog +klog ADVICE: This is not exactly a failure mode but a warning +klog from the kernel. The _OSI() method has implemented a match +klog to the 'Linux' query in the DSDT and this is redundant +klog because the ACPI driver matches onto the Windows _OSI +klog strings by default. +klog +klog FAILED [CRITICAL] KlogPciAcpiOscRequestFailed: Test 1, +klog CRITICAL Kernel message: [ 0.396181] pci0000:00: ACPI _OSC +klog request failed (AE_NOT_FOUND), returned control mask: 0x1d +klog +klog ADVICE: The _OSC method evaluation failed, which will +klog result in disabling PCIe functionality, for example, the +klog Linux kernel has to disable Active State Power Management +klog (ASPM) which means that PCIe power management is not +klog optimally configured. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.534105] ACPI: Deprecated procfs I +klog /F for AC is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI AC Adapter, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog FAILED [LOW] KlogAcpiDeprecatedProcfsInterface: Test 1, +klog LOW Kernel message: [ 0.576306] ACPI: Deprecated procfs I +klog /F for battery is loaded, please retry with +klog CONFIG_ACPI_PROCFS_POWER cleared +klog +klog ADVICE: Using an old procfs interface for ACPI battery, +klog this occurs if CONFIG_ACPI_PROCFS_POWER is enabled. This +klog should be disabled for kernels > 2.6.37. +klog +klog Found 4 unique errors in kernel log. +klog +klog 0 passed, 4 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. diff -Nru fwts-14.02.00/fwts-test/arg-results-no-separators-0001/klog.txt fwts-14.03.00/fwts-test/arg-results-no-separators-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-results-no-separators-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-no-separators-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1063 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 3.0.0-12-generic (buildd@crested) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #19-Ubuntu SMP Fri Sep 23 21:23:39 UTC 2011 (Ubuntu 3.0.0-12.19-generic 3.0.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved) +[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable) +[ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6e3000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: LENOVO 0769BMG/IEL10, BIOS 68ET27WW 11/14/2007 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] original variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] total RAM covered: 3063M +[ 0.000000] Found optimal setting for mtrr clean up +[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 4 lose cover RAM: 0G +[ 0.000000] New variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] found SMP MP-table at [ffff8800000f72c0] f72c0 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf6d0000 page 4k +[ 0.000000] kernel direct mapping tables up to bf6d0000 @ bf6cb000-bf6d0000 +[ 0.000000] RAMDISK: 359ec000 - 36cee000 +[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 3062MB) +[ 0.000000] ACPI: RSDP 00000000000f7240 00024 (v02 LENOVO) +[ 0.000000] ACPI: XSDT 00000000bf6d87f0 00094 (v01 LENOVO TP-68 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bf6dfbd2 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 00000000bf6d9b6a 05FF4 (v02 TOSCPL CRESTLNE 06040000 INTL 20060608) +[ 0.000000] ACPI: FACS 00000000bf6e2fc0 00040 +[ 0.000000] ACPI: APIC 00000000bf6dfcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 00000000bf6dfd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 00000000bf6dfd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 00000000bf6dfda2 00032 (v01 Intel CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TMOR 00000000bf6dfdd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: SLIC 00000000bf6dfdfa 00176 (v01 LENOVO TP-68 06040000 TBD 00000001) +[ 0.000000] ACPI: APIC 00000000bf6dff70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bf6dffd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf6d98bd 002AD (v01 SataRe SataAhci 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d981a 000A3 (v01 BrtRef DD01BRT 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8e10 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8d6a 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8884 004E6 (v01 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bf6d0000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bf6d0000 +[ 0.000000] NODE_DATA [00000000bf6c6000 - 00000000bf6cafff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800bbe00000-ffff8800be7fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf6d0 +[ 0.000000] On node 0 totalpages: 783967 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 5 pages reserved +[ 0.000000] DMA zone: 3922 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10664 pages used for memmap +[ 0.000000] DMA32 zone: 769320 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000 +[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000 +[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000 +[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800bf400000 s79616 r8192 d22784 u1048576 +[ 0.000000] pcpu-alloc: s79616 r8192 d22784 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773242 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 2928536k/3136320k available (6104k kernel code, 452k absent, 207332k reserved, 4880k data, 984k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:512 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] vt handoff: transparent VT on vt#7 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 25165824 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1496.217 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.43 BogoMIPS (lpj=5984868) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004056] Security Framework initialized +[ 0.004080] AppArmor: AppArmor initialized +[ 0.004083] Yama: becoming mindful. +[ 0.004759] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.010636] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.012341] Mount-cache hash table entries: 256 +[ 0.012557] Initializing cgroup subsys cpuacct +[ 0.012565] Initializing cgroup subsys memory +[ 0.012580] Initializing cgroup subsys devices +[ 0.012583] Initializing cgroup subsys freezer +[ 0.012586] Initializing cgroup subsys net_cls +[ 0.012589] Initializing cgroup subsys blkio +[ 0.012598] Initializing cgroup subsys perf_event +[ 0.012643] CPU: Physical Processor ID: 0 +[ 0.012645] CPU: Processor Core ID: 0 +[ 0.012649] mce: CPU supports 6 MCE banks +[ 0.012661] CPU0: Thermal monitoring handled by SMI +[ 0.012667] using mwait in idle threads. +[ 0.016288] ACPI: Core revision 20110413 +[ 0.024040] ftrace: allocating 25651 entries in 101 pages +[ 0.028444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.071627] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d +[ 0.072003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.072003] PEBS disabled due to CPU errata. +[ 0.072003] ... version: 2 +[ 0.072003] ... bit width: 40 +[ 0.072003] ... generic registers: 2 +[ 0.072003] ... value mask: 000000ffffffffff +[ 0.072003] ... max period: 000000007fffffff +[ 0.072003] ... fixed-purpose events: 3 +[ 0.072003] ... event mask: 0000000700000003 +[ 0.072003] Booting Node 0, Processors #1 Ok. +[ 0.072003] smpboot cpu 1: start_ip = 9a000 +[ 0.008000] CPU1: Thermal monitoring handled by SMI +[ 0.160029] Brought up 2 CPUs +[ 0.160033] Total of 2 processors activated (5984.88 BogoMIPS). +[ 0.161224] devtmpfs: initialized +[ 0.161224] PM: Registering ACPI NVS region at bf6d0000 (77824 bytes) +[ 0.162075] print_constraints: dummy: +[ 0.162115] Time: 7:34:42 Date: 10/05/11 +[ 0.162171] NET: Registered protocol family 16 +[ 0.162209] Trying to unpack rootfs image as initramfs... +[ 0.164047] ACPI: bus type pci registered +[ 0.164133] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.164138] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.220043] PCI: Using configuration type 1 for base access +[ 0.221379] bio: create slab at 0 +[ 0.223506] ACPI: EC: Look up EC in DSDT +[ 0.228089] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 0.229039] ACPI: SSDT 00000000bf6d959e 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229543] ACPI: Dynamic OEM Table Load: +[ 0.229548] ACPI: SSDT (null) 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229696] ACPI: SSDT 00000000bf6d906f 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230165] ACPI: Dynamic OEM Table Load: +[ 0.230169] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230454] ACPI: SSDT 00000000bf6d9752 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232427] ACPI: Dynamic OEM Table Load: +[ 0.232432] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232541] ACPI: SSDT 00000000bf6d9519 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.233011] ACPI: Dynamic OEM Table Load: +[ 0.233015] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.238295] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 0.344070] ACPI: Interpreter enabled +[ 0.344078] ACPI: (supports S0 S3 S4 S5) +[ 0.344118] ACPI: Using IOAPIC for interrupt routing +[ 0.389051] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.389294] ACPI: No dock devices found. +[ 0.389298] HEST: Table not found. +[ 0.389303] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.389762] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.390623] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.390628] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.390632] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.390636] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) +[ 0.390640] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) +[ 0.390645] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored) +[ 0.390648] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.390665] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600 +[ 0.390726] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300 +[ 0.390746] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfc0fffff 64bit] +[ 0.390758] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 0.390767] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807] +[ 0.390812] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380 +[ 0.390829] pci 0000:00:02.1: reg 10: [mem 0xfc100000-0xfc1fffff 64bit] +[ 0.390937] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03 +[ 0.391013] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f] +[ 0.391065] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03 +[ 0.391126] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f] +[ 0.391187] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03 +[ 0.391216] pci 0000:00:1a.7: reg 10: [mem 0xfc504800-0xfc504bff] +[ 0.391321] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.391328] pci 0000:00:1a.7: PME# disabled +[ 0.391362] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403 +[ 0.391386] pci 0000:00:1b.0: reg 10: [mem 0xfc300000-0xfc303fff 64bit] +[ 0.391473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.391479] pci 0000:00:1b.0: PME# disabled +[ 0.391514] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604 +[ 0.391605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.391611] pci 0000:00:1c.0: PME# disabled +[ 0.391647] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604 +[ 0.391735] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.391741] pci 0000:00:1c.1: PME# disabled +[ 0.391775] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604 +[ 0.391868] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.391874] pci 0000:00:1c.2: PME# disabled +[ 0.391911] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604 +[ 0.391999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.392005] pci 0000:00:1c.3: PME# disabled +[ 0.392053] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03 +[ 0.392114] pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f] +[ 0.392162] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03 +[ 0.392238] pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f] +[ 0.392293] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03 +[ 0.392371] pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf] +[ 0.392438] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03 +[ 0.392466] pci 0000:00:1d.7: reg 10: [mem 0xfc504c00-0xfc504fff] +[ 0.392567] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.392573] pci 0000:00:1d.7: PME# disabled +[ 0.392603] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.392698] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601 +[ 0.392816] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.392824] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.392829] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.392835] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f) +[ 0.392884] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101 +[ 0.392903] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.392918] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.392931] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.392944] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.392958] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f] +[ 0.393014] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106 +[ 0.393042] pci 0000:00:1f.2: reg 10: [io 0x1c00-0x1c07] +[ 0.393056] pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7] +[ 0.393069] pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df] +[ 0.393082] pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3] +[ 0.393095] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff] +[ 0.393108] pci 0000:00:1f.2: reg 24: [mem 0xfc504000-0xfc5047ff] +[ 0.393157] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.393163] pci 0000:00:1f.2: PME# disabled +[ 0.393188] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05 +[ 0.393206] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff] +[ 0.393250] pci 0000:00:1f.3: reg 20: [io 0x1c20-0x1c3f] +[ 0.393354] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.393360] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.393367] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.393376] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.393501] pci 0000:04:00.0: [8086:4227] type 0 class 0x000280 +[ 0.393557] pci 0000:04:00.0: reg 10: [mem 0xf8000000-0xf8000fff] +[ 0.393895] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 0.393908] pci 0000:04:00.0: PME# disabled +[ 0.393979] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.394021] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.394027] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.394033] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.394043] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.394110] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.394116] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.394122] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.394132] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.394268] pci 0000:06:00.0: [14e4:1713] type 0 class 0x000200 +[ 0.394336] pci 0000:06:00.0: reg 10: [mem 0xc8000000-0xc800ffff 64bit] +[ 0.394639] pci 0000:06:00.0: PME# supported from D3hot D3cold +[ 0.394651] pci 0000:06:00.0: PME# disabled +[ 0.394783] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.394789] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.394796] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.394806] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.394868] pci 0000:08:06.0: [1180:0832] type 0 class 0x000c00 +[ 0.394886] pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.394890] pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller +[ 0.394909] pci 0000:08:06.0: reg 10: [mem 0xfc200000-0xfc2007ff] +[ 0.395006] pci 0000:08:06.0: supports D1 D2 +[ 0.395009] pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395016] pci 0000:08:06.0: PME# disabled +[ 0.395045] pci 0000:08:06.1: [1180:0822] type 0 class 0x000805 +[ 0.395069] pci 0000:08:06.1: reg 10: [mem 0xfc200800-0xfc2008ff] +[ 0.395165] pci 0000:08:06.1: supports D1 D2 +[ 0.395168] pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395174] pci 0000:08:06.1: PME# disabled +[ 0.395199] pci 0000:08:06.2: [1180:0592] type 0 class 0x000880 +[ 0.395224] pci 0000:08:06.2: reg 10: [mem 0xfc201000-0xfc2010ff] +[ 0.395317] pci 0000:08:06.2: supports D1 D2 +[ 0.395320] pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395326] pci 0000:08:06.2: PME# disabled +[ 0.395350] pci 0000:08:06.3: [1180:0852] type 0 class 0x000880 +[ 0.395376] pci 0000:08:06.3: reg 10: [mem 0xfc201400-0xfc2014ff] +[ 0.395474] pci 0000:08:06.3: supports D1 D2 +[ 0.395477] pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395484] pci 0000:08:06.3: PME# disabled +[ 0.395549] pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode) +[ 0.395556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.395562] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.395572] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.395576] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.395580] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) +[ 0.395619] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.395828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.395887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.395944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.395999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.396116] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.396176] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.396181] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d +[ 0.396184] ACPI _OSC control for PCIe not granted, disabling ASPM +[ 0.404002] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.404086] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404153] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.404217] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404282] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.404353] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404419] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.404484] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.404647] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.404670] vgaarb: loaded +[ 0.404672] vgaarb: bridge control possible 0000:00:02.0 +[ 0.404971] SCSI subsystem initialized +[ 0.405069] libata version 3.00 loaded. +[ 0.405143] usbcore: registered new interface driver usbfs +[ 0.405158] usbcore: registered new interface driver hub +[ 0.405200] usbcore: registered new device driver usb +[ 0.405322] PCI: Using ACPI for IRQ routing +[ 0.416330] PCI: pci_cache_line_size set to 64 bytes +[ 0.416509] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.416513] reserve RAM buffer: 00000000bf6d0000 - 00000000bfffffff +[ 0.416683] NetLabel: Initializing +[ 0.416686] NetLabel: domain hash size = 128 +[ 0.416688] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.416706] NetLabel: unlabeled traffic allowed by default +[ 0.416770] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.416777] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.416784] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.420524] Switching to clocksource hpet +[ 0.423392] Switched to NOHz mode on CPU #0 +[ 0.423487] Switched to NOHz mode on CPU #1 +[ 0.430603] AppArmor: AppArmor Filesystem Enabled +[ 0.430649] pnp: PnP ACPI init +[ 0.430672] ACPI: bus type pnp registered +[ 0.431166] pnp 00:00: [bus 00-ff] +[ 0.431171] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.431174] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.431177] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.431181] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.431184] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 0.431187] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 0.431190] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 0.431197] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 0.431201] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 0.431204] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 0.431207] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 0.431210] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 0.431213] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 0.431216] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 0.431219] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 0.431222] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 0.431225] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 0.431229] pnp 00:00: [mem 0xc0000000-0xdfffffff window] +[ 0.431232] pnp 00:00: [mem 0xf0000000-0xfebfffff window] +[ 0.431235] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 0.431344] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.431447] pnp 00:01: [mem 0xfed1c000-0xfed1ffff] +[ 0.431450] pnp 00:01: [mem 0xfed14000-0xfed17fff] +[ 0.431453] pnp 00:01: [mem 0xfed18000-0xfed18fff] +[ 0.431456] pnp 00:01: [mem 0xfed19000-0xfed19fff] +[ 0.431458] pnp 00:01: [mem 0xe0000000-0xefffffff] +[ 0.431461] pnp 00:01: [mem 0xfed20000-0xfed3ffff] +[ 0.431464] pnp 00:01: [mem 0xfed40000-0xfed44fff] +[ 0.431467] pnp 00:01: [mem 0xfed45000-0xfed8ffff] +[ 0.431559] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.431564] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.431568] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.431572] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.431576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.431580] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.431584] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.431588] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.431593] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.431859] pnp 00:02: [io 0x0000-0x001f] +[ 0.431862] pnp 00:02: [io 0x0081-0x0091] +[ 0.431864] pnp 00:02: [io 0x0093-0x009f] +[ 0.431867] pnp 00:02: [io 0x00c0-0x00df] +[ 0.431870] pnp 00:02: [dma 4] +[ 0.431931] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.431946] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 0.432030] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.432131] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 0.432218] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.432223] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 0.432239] pnp 00:05: [io 0x00f0] +[ 0.432256] pnp 00:05: [irq 13] +[ 0.432321] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.432337] pnp 00:06: [io 0x002e-0x002f] +[ 0.432340] pnp 00:06: [io 0x004e-0x004f] +[ 0.432343] pnp 00:06: [io 0x0061] +[ 0.432345] pnp 00:06: [io 0x0063] +[ 0.432348] pnp 00:06: [io 0x0065] +[ 0.432351] pnp 00:06: [io 0x0067] +[ 0.432353] pnp 00:06: [io 0x0080] +[ 0.432355] pnp 00:06: [io 0x0092] +[ 0.432358] pnp 00:06: [io 0x00b2-0x00b3] +[ 0.432361] pnp 00:06: [io 0x0680-0x069f] +[ 0.432363] pnp 00:06: [io 0x0800-0x080f] +[ 0.432366] pnp 00:06: [io 0x1000-0x107f] +[ 0.432373] pnp 00:06: [io 0x1180-0x11bf] +[ 0.432375] pnp 00:06: [io 0xfe00] +[ 0.432378] pnp 00:06: [io 0xff00-0xff7f] +[ 0.432479] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.432484] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.432487] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.432491] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.432495] system 00:06: [io 0xfe00] has been reserved +[ 0.432499] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.432504] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.432517] pnp 00:07: [io 0x0070-0x0077] +[ 0.432525] pnp 00:07: [irq 8] +[ 0.432587] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.452092] pnp 00:08: [io 0x0060] +[ 0.452096] pnp 00:08: [io 0x0064] +[ 0.452112] pnp 00:08: [irq 1] +[ 0.452226] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 0.452246] pnp 00:09: [irq 12] +[ 0.452305] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 0.452340] pnp: PnP ACPI: found 10 devices +[ 0.452343] ACPI: ACPI bus type pnp unregistered +[ 0.459104] PCI: max bus depth: 1 pci_try_num: 2 +[ 0.459195] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff] +[ 0.459204] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff]) +[ 0.459209] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.459214] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.459222] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.459229] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459239] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.459244] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.459252] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.459259] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459268] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.459272] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.459280] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.459287] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459296] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.459301] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.459308] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.459314] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459324] pci 0000:00:1e.0: PCI bridge to [bus 08-08] +[ 0.459327] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.459334] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.459340] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.459373] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.459380] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.459399] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.459405] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.459419] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.459425] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.459438] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.459444] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.459455] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.459460] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.459464] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff] +[ 0.459467] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 0.459470] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff] +[ 0.459474] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459478] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.459481] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.459484] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459488] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.459491] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff] +[ 0.459495] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459498] pci_bus 0000:06: resource 0 [io 0x5000-0x5fff] +[ 0.459501] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xc9ffffff] +[ 0.459505] pci_bus 0000:06: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459508] pci_bus 0000:08: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 0.459512] pci_bus 0000:08: resource 4 [io 0x0000-0xffff] +[ 0.459515] pci_bus 0000:08: resource 5 [mem 0x00000000-0xfffffffff] +[ 0.459580] NET: Registered protocol family 2 +[ 0.459816] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.461759] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.468207] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.469024] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.469028] TCP reno registered +[ 0.469052] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469325] NET: Registered protocol family 1 +[ 0.469358] pci 0000:00:02.0: Boot video device +[ 0.469577] PCI: CLS 64 bytes, default 64 +[ 0.469604] Simple Boot Flag at 0x36 set to 0x1 +[ 0.470069] audit: initializing netlink socket (disabled) +[ 0.470088] type=2000 audit(1317800082.464:1): initialized +[ 0.509918] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.531362] VFS: Disk quotas dquot_6.5.2 +[ 0.531454] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.532343] fuse init (API version 7.16) +[ 0.532465] msgmni has been set to 5719 +[ 0.532931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.532975] io scheduler noop registered +[ 0.532978] io scheduler deadline registered +[ 0.533033] io scheduler cfq registered (default) +[ 0.533206] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.533281] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.533378] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.533444] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.533540] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.533607] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.533705] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.533770] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.533898] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.533934] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.533994] intel_idle: MWAIT substates: 0x22220 +[ 0.533997] intel_idle: does not run on family 6 model 15 +[ 0.534105] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.534186] ACPI: AC Adapter [ACAD] (on-line) +[ 0.534267] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 0.534291] ACPI: Lid Switch [LID0] +[ 0.534348] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 +[ 0.534353] ACPI: Power Button [PWRB] +[ 0.534429] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.534434] ACPI: Power Button [PWRF] +[ 0.534479] ACPI: acpi_idle registered with cpuidle +[ 0.536970] Monitor-Mwait will be used to enter C-1 state +[ 0.537024] Monitor-Mwait will be used to enter C-2 state +[ 0.537059] Monitor-Mwait will be used to enter C-3 state +[ 0.537066] Marking TSC unstable due to TSC halts in idle +[ 0.576306] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.576339] ERST: Table is not found! +[ 0.576477] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.596514] ACPI: Battery Slot [BAT1] (battery present) +[ 0.756873] Freeing initrd memory: 19464k freed +[ 0.789948] Linux agpgart interface v0.103 +[ 0.790084] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 0.790242] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable +[ 0.791097] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 0.791250] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 0.792794] brd: module loaded +[ 0.793486] loop: module loaded +[ 0.793683] ata_piix 0000:00:1f.1: version 2.13 +[ 0.793701] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.793746] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.794143] scsi0 : ata_piix +[ 0.794282] scsi1 : ata_piix +[ 0.794784] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.794789] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.795227] Fixed MDIO Bus: probed +[ 0.795261] PPP generic driver version 2.4.2 +[ 0.795315] tun: Universal TUN/TAP device driver, 1.6 +[ 0.795318] tun: (C) 1999-2004 Max Krasnyansky +[ 0.795429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.795451] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.795472] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.795477] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.795524] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.795567] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.799463] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.799485] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc504800 +[ 0.812020] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.812182] hub 1-0:1.0: USB hub found +[ 0.812189] hub 1-0:1.0: 4 ports detected +[ 0.812291] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.812305] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.812310] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.812363] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.812398] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.816279] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.816301] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc504c00 +[ 0.832023] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.832151] hub 2-0:1.0: USB hub found +[ 0.832157] hub 2-0:1.0: 6 ports detected +[ 0.832258] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.832276] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.832305] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.832314] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.832319] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.832366] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.832412] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820 +[ 0.832569] hub 3-0:1.0: USB hub found +[ 0.832575] hub 3-0:1.0: 2 ports detected +[ 0.832668] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.832679] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.832684] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.832731] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.832775] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840 +[ 0.832936] hub 4-0:1.0: USB hub found +[ 0.832941] hub 4-0:1.0: 2 ports detected +[ 0.833028] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.833037] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.833042] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.833099] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.833134] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860 +[ 0.833291] hub 5-0:1.0: USB hub found +[ 0.833296] hub 5-0:1.0: 2 ports detected +[ 0.833384] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.833392] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.833397] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.833448] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.833493] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880 +[ 0.833649] hub 6-0:1.0: USB hub found +[ 0.833655] hub 6-0:1.0: 2 ports detected +[ 0.833737] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.833746] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.833750] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.833797] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.833832] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0 +[ 0.833984] hub 7-0:1.0: USB hub found +[ 0.833990] hub 7-0:1.0: 2 ports detected +[ 0.834133] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.858635] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.858644] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.858792] mousedev: PS/2 mouse device common for all mice +[ 0.860515] rtc_cmos 00:07: RTC can wake from S4 +[ 0.860650] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 0.860686] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.860821] device-mapper: uevent: version 1.0.3 +[ 0.860928] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com +[ 0.861015] cpuidle: using governor ladder +[ 0.861137] cpuidle: using governor menu +[ 0.861140] EFI Variables Facility v0.08 2004-May-17 +[ 0.861497] TCP cubic registered +[ 0.861666] NET: Registered protocol family 10 +[ 0.862339] NET: Registered protocol family 17 +[ 0.862362] Registering the dns_resolver key type +[ 0.862505] PM: Hibernation image not present or could not be loaded. +[ 0.862521] registered taskstats version 1 +[ 0.881709] Magic number: 15:169:571 +[ 0.881852] rtc_cmos 00:07: setting system clock to 2011-10-05 07:34:43 UTC (1317800083) +[ 0.882695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.882699] EDD information not available. +[ 0.885384] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.964510] ata1.00: ATAPI: MATSHITADVD-RAM UJ-850 z, RB32, max UDMA/33 +[ 0.980374] ata1.00: configured for UDMA/33 +[ 0.983110] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-850 z RB32 PQ: 0 ANSI: 5 +[ 0.985684] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.985690] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 0.985886] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.985957] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.988684] Freeing unused kernel memory: 984k freed +[ 0.989019] Write protecting the kernel read-only data: 10240k +[ 0.989354] Freeing unused kernel memory: 20k freed +[ 0.996526] Freeing unused kernel memory: 1400k freed +[ 1.023090] udevd[92]: starting version 173 +[ 1.095474] [drm] Initialized drm 1.1.0 20060810 +[ 1.111223] tg3.c:v3.119 (May 18, 2011) +[ 1.111255] tg3 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.111275] tg3 0000:06:00.0: setting latency timer to 64 +[ 1.123354] wmi: Mapper loaded +[ 1.135292] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.135301] i915 0000:00:02.0: setting latency timer to 64 +[ 1.229432] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 1.229442] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 1.229444] [drm] Driver supports precise vblank timestamp query. +[ 1.229504] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.231431] sdhci: Secure Digital Host Controller Interface driver +[ 1.231435] sdhci: Copyright(c) Pierre Ossman +[ 1.231761] sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 19) +[ 1.231780] sdhci-pci 0000:08:06.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 1.232804] sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.251222] mmc0: no vmmc regulator found +[ 1.252265] Registered led device: mmc0:: +[ 1.258216] mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA +[ 1.278826] tg3 0000:06:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:0c:7f:47 +[ 1.278833] tg3 0000:06:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0]) +[ 1.278838] tg3 0000:06:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.278842] tg3 0000:06:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.288114] firewire_ohci 0000:08:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.288352] fixme: max PWM is zero. +[ 1.321105] [drm] initialized overlay support +[ 1.363095] firewire_ohci: Added fw-ohci device 0000:08:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 1.429305] usb 1-4: new high speed USB device number 4 using ehci_hcd +[ 1.510188] fbcon: inteldrmfb (fb0) is primary device +[ 1.510267] Console: switching to colour frame buffer device 160x50 +[ 1.510301] fb0: inteldrmfb frame buffer device +[ 1.510304] drm: registered panic notifier +[ 1.596139] acpi device:08: registered as cooling_device2 +[ 1.596350] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4 +[ 1.596428] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.596505] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 1.596723] ahci 0000:00:1f.2: version 3.0 +[ 1.596748] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.596832] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.596928] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.596934] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc +[ 1.596941] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.600697] scsi2 : ahci +[ 1.601002] scsi3 : ahci +[ 1.601154] scsi4 : ahci +[ 1.601328] ata3: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504100 irq 45 +[ 1.601335] ata4: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504180 irq 45 +[ 1.601340] ata5: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504200 irq 45 +[ 1.860262] firewire_core: created device fw0: GUID 00023f7bac4040de, S400 +[ 1.920122] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.921792] ata3.00: unexpected _GTF length (8) +[ 1.922070] ata3.00: ATA-8: WDC WD2500BEKT-75PVMT0, 01.01A01, max UDMA/133 +[ 1.922077] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.923756] ata3.00: unexpected _GTF length (8) +[ 1.924053] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.924081] ata3.00: configured for UDMA/133 +[ 1.924106] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.924318] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEKT-7 01.0 PQ: 0 ANSI: 5 +[ 1.924525] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.924642] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.924823] sd 2:0:0:0: [sda] Write Protect is off +[ 1.924828] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.924898] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.020840] sda: sda1 sda2 sda3 sda4 < sda5 > +[ 2.021461] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.032059] usb 3-1: new full speed USB device number 2 using uhci_hcd +[ 2.464056] usb 4-1: new full speed USB device number 2 using uhci_hcd +[ 2.872042] usb 6-1: new low speed USB device number 2 using uhci_hcd +[ 3.093235] input: MLK Trust Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5 +[ 3.093727] generic-usb 0003:04FC:05DA.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Trust Mouse] on usb-0000:00:1d.1-1/input0 +[ 3.093905] usbcore: registered new interface driver usbhid +[ 3.093909] usbhid: USB HID core driver +[ 3.288960] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 3.308073] usb 6-2: new full speed USB device number 3 using uhci_hcd +[ 3.720052] usb 7-1: new low speed USB device number 2 using uhci_hcd +[ 3.918393] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input6 +[ 3.918495] generic-usb 0003:046D:C312.0002: input,hidraw1: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:00:1d.2-1/input0 +[ 5.565904] Adding 15999996k swap on /dev/sda3. Priority:-1 extents:1 across:15999996k +[ 5.691364] udevd[373]: starting version 173 +[ 6.303871] lp: driver loaded but no devices found +[ 7.040655] cfg80211: Calling CRDA to update world regulatory domain +[ 7.159284] r852 0000:08:06.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 7.159297] r852 0000:08:06.3: setting latency timer to 64 +[ 7.159394] r852: Non dma capable device detected, dma disabled +[ 7.159411] r852: driver loaded successfully +[ 7.169632] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s +[ 7.169637] iwl3945: Copyright(c) 2003-2011 Intel Corporation +[ 7.169734] iwl3945 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.169751] iwl3945 0000:04:00.0: setting latency timer to 64 +[ 7.225063] iwl3945 0000:04:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels +[ 7.225067] iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG +[ 7.225225] iwl3945 0000:04:00.0: irq 46 for MSI/MSI-X +[ 7.225470] Registered led device: phy0-led +[ 7.225511] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 7.521071] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs' +[ 7.728682] udevd[389]: renamed network interface eth0 to eth1 +[ 7.785421] udevd[392]: renamed network interface wlan0 to wlan1 +[ 7.839555] device-mapper: multipath: version 1.3.0 loaded +[ 7.920206] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x25c0b1, caps: 0xa04713/0x200000/0x0 +[ 8.001393] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.103705] Linux video capture interface: v2.00 +[ 8.142601] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b013) +[ 8.145395] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.7/usb1/1-4/1-4:1.0/input/input8 +[ 8.145503] usbcore: registered new interface driver uvcvideo +[ 8.145506] USB Video Class driver (v1.1.0) +[ 8.268868] gspca: v2.13.0 registered +[ 8.426860] Bluetooth: Core ver 2.16 +[ 8.426898] NET: Registered protocol family 31 +[ 8.426901] Bluetooth: HCI device and connection manager initialized +[ 8.426905] Bluetooth: HCI socket layer initialized +[ 8.426908] Bluetooth: L2CAP socket layer initialized +[ 8.426983] Bluetooth: SCO socket layer initialized +[ 8.445120] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 8.445873] usbcore: registered new interface driver btusb +[ 8.596127] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 8.596132] cfg80211: World regulatory domain updated: +[ 8.596135] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.596139] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596144] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596147] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596151] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596155] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.713241] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 8.713332] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 8.713375] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 9.214524] type=1400 audit(1317800091.827:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=762 comm="apparmor_parser" +[ 9.214539] type=1400 audit(1317800091.827:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=760 comm="apparmor_parser" +[ 9.214899] type=1400 audit(1317800091.827:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=762 comm="apparmor_parser" +[ 9.214917] type=1400 audit(1317800091.827:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=760 comm="apparmor_parser" +[ 9.215139] type=1400 audit(1317800091.827:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=762 comm="apparmor_parser" +[ 9.215162] type=1400 audit(1317800091.827:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=760 comm="apparmor_parser" +[ 9.215989] type=1400 audit(1317800091.827:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=761 comm="apparmor_parser" +[ 9.216386] type=1400 audit(1317800091.831:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=761 comm="apparmor_parser" +[ 9.216637] type=1400 audit(1317800091.831:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=761 comm="apparmor_parser" +[ 9.565602] input: zc3xx as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input9 +[ 9.565840] usbcore: registered new interface driver zc3xx +[ 9.567768] usbcore: registered new interface driver snd-usb-audio +[ 10.957262] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 11.498897] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 11.610016] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 13.338782] type=1400 audit(1317800095.951:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1170 comm="apparmor_parser" +[ 14.107842] ppdev: user-space parallel port driver +[ 16.201248] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.241864] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.244584] microcode: Microcode Update Driver: v2.00 , Peter Oruba +[ 16.257389] iwl3945 0000:04:00.0: loaded firmware version 15.32.2.9 +[ 16.319712] microcode: CPU0 updated to revision 0xa4, date = 2010-10-02 +[ 16.320392] microcode: CPU1 updated to revision 0xa4, date = 2010-10-02 +[ 16.327663] ADDRCONF(NETDEV_UP): wlan1: link is not ready +[ 16.411245] tg3 0000:06:00.0: irq 48 for MSI/MSI-X +[ 16.441602] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 17.163336] init: failsafe main process (1112) killed by TERM signal +[ 17.369512] init: gdm main process (1340) killed by TERM signal +[ 18.121686] tg3 0000:06:00.0: eth1: Link is up at 100 Mbps, full duplex +[ 18.121691] tg3 0000:06:00.0: eth1: Flow control is on for TX and on for RX +[ 18.122295] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready +[ 21.210518] RPC: Registered named UNIX socket transport module. +[ 21.210523] RPC: Registered udp transport module. +[ 21.210525] RPC: Registered tcp transport module. +[ 21.210528] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 21.445931] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 21.627527] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory +[ 21.636586] NFSD: starting 90-second grace period +[ 24.852307] vboxdrv: Found 2 processor cores. +[ 24.852593] vboxdrv: fAsync=0 offMin=0x1c2 offMax=0xae6 +[ 24.852666] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'. +[ 24.852669] vboxdrv: Successfully loaded version 4.1.2_Ubuntu (interface 0x00190000). +[ 25.101599] vboxpci: IOMMU not found (not registered) +[ 27.046401] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 27.046405] Bluetooth: BNEP filters: protocol multicast +[ 27.081903] Bluetooth: RFCOMM TTY layer initialized +[ 27.081919] Bluetooth: RFCOMM socket layer initialized +[ 27.081921] Bluetooth: RFCOMM ver 1.11 +[ 28.752057] eth1: no IPv6 routers present +[ 33.139443] init: plymouth-stop pre-start process (2005) terminated with status 1 +[ 33.628053] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro,commit=0 +[ 34.056830] EXT4-fs (sda1): re-mounted. Opts: commit=0 +[ 34.217110] EXT4-fs (sda5): re-mounted. Opts: commit=0 +[ 45.192742] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 45.196319] wlan1: authenticated +[ 45.199717] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 45.202749] wlan1: RX AssocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 45.202758] wlan1: associated +[ 45.206342] ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready +[ 45.206456] cfg80211: Calling CRDA for country: GB +[ 45.213483] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213493] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213498] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213505] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213509] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213516] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213520] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213526] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213531] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213537] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213542] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213547] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213552] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213558] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213569] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213573] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213579] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213584] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213590] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213594] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213600] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213605] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213611] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213615] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213621] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213626] cfg80211: Disabling freq 5170 MHz +[ 45.213630] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213636] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213640] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213646] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213651] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213657] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213662] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213667] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213672] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213678] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213683] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213688] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213693] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213699] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213704] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213710] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213714] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213720] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213725] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213731] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213742] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213746] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213752] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213757] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213763] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213768] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213774] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213779] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213785] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213789] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213795] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213800] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213806] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213810] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213816] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213821] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213827] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213831] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213837] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213842] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213848] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213852] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213858] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213864] cfg80211: Regulatory domain changed to country: GB +[ 45.213868] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 45.213873] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213879] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213884] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213889] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 52.640123] eth1: no IPv6 routers present +[ 55.208282] wlan1: disassociating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.214021] cfg80211: All devices are disconnected, going to restore regulatory settings +[ 55.214032] cfg80211: Restoring regulatory settings +[ 55.214052] cfg80211: Calling CRDA to update world regulatory domain +[ 55.214778] wlan1: deauthenticating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.221291] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 55.221299] cfg80211: World regulatory domain updated: +[ 55.221303] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 55.221309] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221315] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221321] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221327] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221333] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.392119] wlan1: no IPv6 routers present +[ 58.763822] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 58.765582] wlan1: authenticated +[ 58.766582] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 58.769972] wlan1: RX ReassocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 58.769980] wlan1: associated +[ 58.773587] cfg80211: Calling CRDA for country: GB +[ 58.778304] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778310] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778314] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778318] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778321] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778325] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778328] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778332] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778335] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778340] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778343] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778347] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778350] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778354] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778357] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778361] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778364] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778368] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778371] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778375] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778378] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778382] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778385] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778389] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778392] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778396] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778399] cfg80211: Disabling freq 5170 MHz +[ 58.778402] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778406] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778409] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778413] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778416] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778420] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778423] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778427] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778430] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778434] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778437] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778441] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778444] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778448] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778452] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778456] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778459] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778463] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778466] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778470] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778473] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778477] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778480] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778484] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778487] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778491] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778494] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778498] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778501] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778505] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778508] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778512] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778515] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778519] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778522] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778526] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778529] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778533] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778536] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778540] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778543] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778547] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778550] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778554] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778558] cfg80211: Regulatory domain changed to country: GB +[ 58.778560] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 58.778564] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778568] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778571] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778575] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 70.176124] wlan1: no IPv6 routers present +[ 75.152080] eth1: no IPv6 routers present +[ 98.736094] eth1: no IPv6 routers present +[ 648.357292] ecryptfs_mount: kern_path() failed +[ 648.388155] Reading sb failed; rc = [-2] +[ 670.016019] eth1: no IPv6 routers present +[ 688.176048] eth1: no IPv6 routers present +[ 711.096140] eth1: no IPv6 routers present diff -Nru fwts-14.02.00/fwts-test/arg-results-no-separators-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-results-no-separators-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-results-no-separators-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-results-no-separators-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --results-no-separators option" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --results-no-separators --klog=$FWTSTESTDIR/arg-results-no-separators-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-results-no-separators-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/klog.txt fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1063 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 3.0.0-12-generic (buildd@crested) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #19-Ubuntu SMP Fri Sep 23 21:23:39 UTC 2011 (Ubuntu 3.0.0-12.19-generic 3.0.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved) +[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf6d0000 (usable) +[ 0.000000] BIOS-e820: 00000000bf6d0000 - 00000000bf6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6e3000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: LENOVO 0769BMG/IEL10, BIOS 68ET27WW 11/14/2007 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbf6d0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] original variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] total RAM covered: 3063M +[ 0.000000] Found optimal setting for mtrr clean up +[ 0.000000] gran_size: 64K chunk_size: 16M num_reg: 4 lose cover RAM: 0G +[ 0.000000] New variable MTRRs +[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB +[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB +[ 0.000000] reg 2, base: 3063MB, range: 1MB, type UC +[ 0.000000] reg 3, base: 3064MB, range: 8MB, type UC +[ 0.000000] found SMP MP-table at [ffff8800000f72c0] f72c0 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf6d0000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf6d0000 page 4k +[ 0.000000] kernel direct mapping tables up to bf6d0000 @ bf6cb000-bf6d0000 +[ 0.000000] RAMDISK: 359ec000 - 36cee000 +[ 0.000000] Reserving 128MB of memory at 720MB for crashkernel (System RAM: 3062MB) +[ 0.000000] ACPI: RSDP 00000000000f7240 00024 (v02 LENOVO) +[ 0.000000] ACPI: XSDT 00000000bf6d87f0 00094 (v01 LENOVO TP-68 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bf6dfbd2 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 00000000bf6d9b6a 05FF4 (v02 TOSCPL CRESTLNE 06040000 INTL 20060608) +[ 0.000000] ACPI: FACS 00000000bf6e2fc0 00040 +[ 0.000000] ACPI: APIC 00000000bf6dfcc6 00068 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 00000000bf6dfd2e 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 00000000bf6dfd66 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 00000000bf6dfda2 00032 (v01 Intel CRESTLNE 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TMOR 00000000bf6dfdd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: SLIC 00000000bf6dfdfa 00176 (v01 LENOVO TP-68 06040000 TBD 00000001) +[ 0.000000] ACPI: APIC 00000000bf6dff70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bf6dffd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf6d98bd 002AD (v01 SataRe SataAhci 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d981a 000A3 (v01 BrtRef DD01BRT 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8e10 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8d6a 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624) +[ 0.000000] ACPI: SSDT 00000000bf6d8884 004E6 (v01 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bf6d0000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bf6d0000 +[ 0.000000] NODE_DATA [00000000bf6c6000 - 00000000bf6cafff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800bbe00000-ffff8800be7fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf6d0 +[ 0.000000] On node 0 totalpages: 783967 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 5 pages reserved +[ 0.000000] DMA zone: 3922 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10664 pages used for memmap +[ 0.000000] DMA32 zone: 769320 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000 +[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000 +[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000 +[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800bf400000 s79616 r8192 d22784 u1048576 +[ 0.000000] pcpu-alloc: s79616 r8192 d22784 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 773242 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic root=UUID=08ed6ce0-0907-4d06-b1e1-b9c3ec647fe2 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 2928536k/3136320k available (6104k kernel code, 452k absent, 207332k reserved, 4880k data, 984k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:512 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] vt handoff: transparent VT on vt#7 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 25165824 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1496.217 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2992.43 BogoMIPS (lpj=5984868) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004056] Security Framework initialized +[ 0.004080] AppArmor: AppArmor initialized +[ 0.004083] Yama: becoming mindful. +[ 0.004759] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.010636] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.012341] Mount-cache hash table entries: 256 +[ 0.012557] Initializing cgroup subsys cpuacct +[ 0.012565] Initializing cgroup subsys memory +[ 0.012580] Initializing cgroup subsys devices +[ 0.012583] Initializing cgroup subsys freezer +[ 0.012586] Initializing cgroup subsys net_cls +[ 0.012589] Initializing cgroup subsys blkio +[ 0.012598] Initializing cgroup subsys perf_event +[ 0.012643] CPU: Physical Processor ID: 0 +[ 0.012645] CPU: Processor Core ID: 0 +[ 0.012649] mce: CPU supports 6 MCE banks +[ 0.012661] CPU0: Thermal monitoring handled by SMI +[ 0.012667] using mwait in idle threads. +[ 0.016288] ACPI: Core revision 20110413 +[ 0.024040] ftrace: allocating 25651 entries in 101 pages +[ 0.028444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.071627] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d +[ 0.072003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.072003] PEBS disabled due to CPU errata. +[ 0.072003] ... version: 2 +[ 0.072003] ... bit width: 40 +[ 0.072003] ... generic registers: 2 +[ 0.072003] ... value mask: 000000ffffffffff +[ 0.072003] ... max period: 000000007fffffff +[ 0.072003] ... fixed-purpose events: 3 +[ 0.072003] ... event mask: 0000000700000003 +[ 0.072003] Booting Node 0, Processors #1 Ok. +[ 0.072003] smpboot cpu 1: start_ip = 9a000 +[ 0.008000] CPU1: Thermal monitoring handled by SMI +[ 0.160029] Brought up 2 CPUs +[ 0.160033] Total of 2 processors activated (5984.88 BogoMIPS). +[ 0.161224] devtmpfs: initialized +[ 0.161224] PM: Registering ACPI NVS region at bf6d0000 (77824 bytes) +[ 0.162075] print_constraints: dummy: +[ 0.162115] Time: 7:34:42 Date: 10/05/11 +[ 0.162171] NET: Registered protocol family 16 +[ 0.162209] Trying to unpack rootfs image as initramfs... +[ 0.164047] ACPI: bus type pci registered +[ 0.164133] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.164138] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.220043] PCI: Using configuration type 1 for base access +[ 0.221379] bio: create slab at 0 +[ 0.223506] ACPI: EC: Look up EC in DSDT +[ 0.228089] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 0.229039] ACPI: SSDT 00000000bf6d959e 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229543] ACPI: Dynamic OEM Table Load: +[ 0.229548] ACPI: SSDT (null) 001B4 (v01 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.229696] ACPI: SSDT 00000000bf6d906f 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230165] ACPI: Dynamic OEM Table Load: +[ 0.230169] ACPI: SSDT (null) 004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.230454] ACPI: SSDT 00000000bf6d9752 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232427] ACPI: Dynamic OEM Table Load: +[ 0.232432] ACPI: SSDT (null) 000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.232541] ACPI: SSDT 00000000bf6d9519 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.233011] ACPI: Dynamic OEM Table Load: +[ 0.233015] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.238295] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 0.344070] ACPI: Interpreter enabled +[ 0.344078] ACPI: (supports S0 S3 S4 S5) +[ 0.344118] ACPI: Using IOAPIC for interrupt routing +[ 0.389051] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.389294] ACPI: No dock devices found. +[ 0.389298] HEST: Table not found. +[ 0.389303] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.389762] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.390623] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.390628] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.390632] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.390636] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) +[ 0.390640] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) +[ 0.390645] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored) +[ 0.390648] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.390665] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600 +[ 0.390726] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300 +[ 0.390746] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfc0fffff 64bit] +[ 0.390758] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 0.390767] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807] +[ 0.390812] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380 +[ 0.390829] pci 0000:00:02.1: reg 10: [mem 0xfc100000-0xfc1fffff 64bit] +[ 0.390937] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03 +[ 0.391013] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f] +[ 0.391065] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03 +[ 0.391126] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f] +[ 0.391187] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03 +[ 0.391216] pci 0000:00:1a.7: reg 10: [mem 0xfc504800-0xfc504bff] +[ 0.391321] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.391328] pci 0000:00:1a.7: PME# disabled +[ 0.391362] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403 +[ 0.391386] pci 0000:00:1b.0: reg 10: [mem 0xfc300000-0xfc303fff 64bit] +[ 0.391473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.391479] pci 0000:00:1b.0: PME# disabled +[ 0.391514] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604 +[ 0.391605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.391611] pci 0000:00:1c.0: PME# disabled +[ 0.391647] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604 +[ 0.391735] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.391741] pci 0000:00:1c.1: PME# disabled +[ 0.391775] pci 0000:00:1c.2: [8086:2843] type 1 class 0x000604 +[ 0.391868] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.391874] pci 0000:00:1c.2: PME# disabled +[ 0.391911] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604 +[ 0.391999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.392005] pci 0000:00:1c.3: PME# disabled +[ 0.392053] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03 +[ 0.392114] pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f] +[ 0.392162] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03 +[ 0.392238] pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f] +[ 0.392293] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03 +[ 0.392371] pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf] +[ 0.392438] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03 +[ 0.392466] pci 0000:00:1d.7: reg 10: [mem 0xfc504c00-0xfc504fff] +[ 0.392567] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.392573] pci 0000:00:1d.7: PME# disabled +[ 0.392603] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.392698] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601 +[ 0.392816] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.392824] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.392829] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.392835] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f) +[ 0.392884] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101 +[ 0.392903] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.392918] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.392931] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.392944] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.392958] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f] +[ 0.393014] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106 +[ 0.393042] pci 0000:00:1f.2: reg 10: [io 0x1c00-0x1c07] +[ 0.393056] pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7] +[ 0.393069] pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df] +[ 0.393082] pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3] +[ 0.393095] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff] +[ 0.393108] pci 0000:00:1f.2: reg 24: [mem 0xfc504000-0xfc5047ff] +[ 0.393157] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.393163] pci 0000:00:1f.2: PME# disabled +[ 0.393188] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05 +[ 0.393206] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff] +[ 0.393250] pci 0000:00:1f.3: reg 20: [io 0x1c20-0x1c3f] +[ 0.393354] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.393360] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.393367] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.393376] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.393501] pci 0000:04:00.0: [8086:4227] type 0 class 0x000280 +[ 0.393557] pci 0000:04:00.0: reg 10: [mem 0xf8000000-0xf8000fff] +[ 0.393895] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 0.393908] pci 0000:04:00.0: PME# disabled +[ 0.393979] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.394021] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.394027] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.394033] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.394043] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.394110] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.394116] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.394122] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.394132] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.394268] pci 0000:06:00.0: [14e4:1713] type 0 class 0x000200 +[ 0.394336] pci 0000:06:00.0: reg 10: [mem 0xc8000000-0xc800ffff 64bit] +[ 0.394639] pci 0000:06:00.0: PME# supported from D3hot D3cold +[ 0.394651] pci 0000:06:00.0: PME# disabled +[ 0.394783] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.394789] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.394796] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.394806] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.394868] pci 0000:08:06.0: [1180:0832] type 0 class 0x000c00 +[ 0.394886] pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.394890] pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller +[ 0.394909] pci 0000:08:06.0: reg 10: [mem 0xfc200000-0xfc2007ff] +[ 0.395006] pci 0000:08:06.0: supports D1 D2 +[ 0.395009] pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395016] pci 0000:08:06.0: PME# disabled +[ 0.395045] pci 0000:08:06.1: [1180:0822] type 0 class 0x000805 +[ 0.395069] pci 0000:08:06.1: reg 10: [mem 0xfc200800-0xfc2008ff] +[ 0.395165] pci 0000:08:06.1: supports D1 D2 +[ 0.395168] pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395174] pci 0000:08:06.1: PME# disabled +[ 0.395199] pci 0000:08:06.2: [1180:0592] type 0 class 0x000880 +[ 0.395224] pci 0000:08:06.2: reg 10: [mem 0xfc201000-0xfc2010ff] +[ 0.395317] pci 0000:08:06.2: supports D1 D2 +[ 0.395320] pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395326] pci 0000:08:06.2: PME# disabled +[ 0.395350] pci 0000:08:06.3: [1180:0852] type 0 class 0x000880 +[ 0.395376] pci 0000:08:06.3: reg 10: [mem 0xfc201400-0xfc2014ff] +[ 0.395474] pci 0000:08:06.3: supports D1 D2 +[ 0.395477] pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.395484] pci 0000:08:06.3: PME# disabled +[ 0.395549] pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode) +[ 0.395556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.395562] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.395572] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.395576] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.395580] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) +[ 0.395619] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.395828] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.395887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.395944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.395999] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.396116] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.396176] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.396181] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d +[ 0.396184] ACPI _OSC control for PCIe not granted, disabling ASPM +[ 0.404002] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.404086] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404153] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.404217] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404282] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.404353] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.404419] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.404484] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.404647] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.404670] vgaarb: loaded +[ 0.404672] vgaarb: bridge control possible 0000:00:02.0 +[ 0.404971] SCSI subsystem initialized +[ 0.405069] libata version 3.00 loaded. +[ 0.405143] usbcore: registered new interface driver usbfs +[ 0.405158] usbcore: registered new interface driver hub +[ 0.405200] usbcore: registered new device driver usb +[ 0.405322] PCI: Using ACPI for IRQ routing +[ 0.416330] PCI: pci_cache_line_size set to 64 bytes +[ 0.416509] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.416513] reserve RAM buffer: 00000000bf6d0000 - 00000000bfffffff +[ 0.416683] NetLabel: Initializing +[ 0.416686] NetLabel: domain hash size = 128 +[ 0.416688] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.416706] NetLabel: unlabeled traffic allowed by default +[ 0.416770] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.416777] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.416784] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.420524] Switching to clocksource hpet +[ 0.423392] Switched to NOHz mode on CPU #0 +[ 0.423487] Switched to NOHz mode on CPU #1 +[ 0.430603] AppArmor: AppArmor Filesystem Enabled +[ 0.430649] pnp: PnP ACPI init +[ 0.430672] ACPI: bus type pnp registered +[ 0.431166] pnp 00:00: [bus 00-ff] +[ 0.431171] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.431174] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.431177] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.431181] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.431184] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 0.431187] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 0.431190] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 0.431197] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 0.431201] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 0.431204] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 0.431207] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 0.431210] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 0.431213] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 0.431216] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 0.431219] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 0.431222] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 0.431225] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 0.431229] pnp 00:00: [mem 0xc0000000-0xdfffffff window] +[ 0.431232] pnp 00:00: [mem 0xf0000000-0xfebfffff window] +[ 0.431235] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 0.431344] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.431447] pnp 00:01: [mem 0xfed1c000-0xfed1ffff] +[ 0.431450] pnp 00:01: [mem 0xfed14000-0xfed17fff] +[ 0.431453] pnp 00:01: [mem 0xfed18000-0xfed18fff] +[ 0.431456] pnp 00:01: [mem 0xfed19000-0xfed19fff] +[ 0.431458] pnp 00:01: [mem 0xe0000000-0xefffffff] +[ 0.431461] pnp 00:01: [mem 0xfed20000-0xfed3ffff] +[ 0.431464] pnp 00:01: [mem 0xfed40000-0xfed44fff] +[ 0.431467] pnp 00:01: [mem 0xfed45000-0xfed8ffff] +[ 0.431559] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.431564] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.431568] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.431572] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.431576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.431580] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.431584] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.431588] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.431593] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.431859] pnp 00:02: [io 0x0000-0x001f] +[ 0.431862] pnp 00:02: [io 0x0081-0x0091] +[ 0.431864] pnp 00:02: [io 0x0093-0x009f] +[ 0.431867] pnp 00:02: [io 0x00c0-0x00df] +[ 0.431870] pnp 00:02: [dma 4] +[ 0.431931] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.431946] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 0.432030] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.432131] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 0.432218] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.432223] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) +[ 0.432239] pnp 00:05: [io 0x00f0] +[ 0.432256] pnp 00:05: [irq 13] +[ 0.432321] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.432337] pnp 00:06: [io 0x002e-0x002f] +[ 0.432340] pnp 00:06: [io 0x004e-0x004f] +[ 0.432343] pnp 00:06: [io 0x0061] +[ 0.432345] pnp 00:06: [io 0x0063] +[ 0.432348] pnp 00:06: [io 0x0065] +[ 0.432351] pnp 00:06: [io 0x0067] +[ 0.432353] pnp 00:06: [io 0x0080] +[ 0.432355] pnp 00:06: [io 0x0092] +[ 0.432358] pnp 00:06: [io 0x00b2-0x00b3] +[ 0.432361] pnp 00:06: [io 0x0680-0x069f] +[ 0.432363] pnp 00:06: [io 0x0800-0x080f] +[ 0.432366] pnp 00:06: [io 0x1000-0x107f] +[ 0.432373] pnp 00:06: [io 0x1180-0x11bf] +[ 0.432375] pnp 00:06: [io 0xfe00] +[ 0.432378] pnp 00:06: [io 0xff00-0xff7f] +[ 0.432479] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.432484] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.432487] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.432491] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.432495] system 00:06: [io 0xfe00] has been reserved +[ 0.432499] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.432504] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.432517] pnp 00:07: [io 0x0070-0x0077] +[ 0.432525] pnp 00:07: [irq 8] +[ 0.432587] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.452092] pnp 00:08: [io 0x0060] +[ 0.452096] pnp 00:08: [io 0x0064] +[ 0.452112] pnp 00:08: [irq 1] +[ 0.452226] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 0.452246] pnp 00:09: [irq 12] +[ 0.452305] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active) +[ 0.452340] pnp: PnP ACPI: found 10 devices +[ 0.452343] ACPI: ACPI bus type pnp unregistered +[ 0.459104] PCI: max bus depth: 1 pci_try_num: 2 +[ 0.459195] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0000000-0xc00000ff] +[ 0.459204] pci 0000:00:1f.3: BAR 0: set to [mem 0xc0000000-0xc00000ff] (PCI address [0xc0000000-0xc00000ff]) +[ 0.459209] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.459214] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 0.459222] pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff] +[ 0.459229] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459239] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.459244] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.459252] pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.459259] pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459268] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.459272] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff] +[ 0.459280] pci 0000:00:1c.2: bridge window [mem 0xfa000000-0xfbffffff] +[ 0.459287] pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459296] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.459301] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff] +[ 0.459308] pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff] +[ 0.459314] pci 0000:00:1c.3: bridge window [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459324] pci 0000:00:1e.0: PCI bridge to [bus 08-08] +[ 0.459327] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.459334] pci 0000:00:1e.0: bridge window [mem 0xfc200000-0xfc2fffff] +[ 0.459340] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.459373] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.459380] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.459399] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.459405] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.459419] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.459425] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.459438] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.459444] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.459455] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.459460] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.459464] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff] +[ 0.459467] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 0.459470] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf7ffffff] +[ 0.459474] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref] +[ 0.459478] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.459481] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.459484] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf3ffffff 64bit pref] +[ 0.459488] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.459491] pci_bus 0000:05: resource 1 [mem 0xfa000000-0xfbffffff] +[ 0.459495] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf5ffffff 64bit pref] +[ 0.459498] pci_bus 0000:06: resource 0 [io 0x5000-0x5fff] +[ 0.459501] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xc9ffffff] +[ 0.459505] pci_bus 0000:06: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref] +[ 0.459508] pci_bus 0000:08: resource 1 [mem 0xfc200000-0xfc2fffff] +[ 0.459512] pci_bus 0000:08: resource 4 [io 0x0000-0xffff] +[ 0.459515] pci_bus 0000:08: resource 5 [mem 0x00000000-0xfffffffff] +[ 0.459580] NET: Registered protocol family 2 +[ 0.459816] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.461759] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.468207] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.469024] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.469028] TCP reno registered +[ 0.469052] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.469325] NET: Registered protocol family 1 +[ 0.469358] pci 0000:00:02.0: Boot video device +[ 0.469577] PCI: CLS 64 bytes, default 64 +[ 0.469604] Simple Boot Flag at 0x36 set to 0x1 +[ 0.470069] audit: initializing netlink socket (disabled) +[ 0.470088] type=2000 audit(1317800082.464:1): initialized +[ 0.509918] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.531362] VFS: Disk quotas dquot_6.5.2 +[ 0.531454] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.532343] fuse init (API version 7.16) +[ 0.532465] msgmni has been set to 5719 +[ 0.532931] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.532975] io scheduler noop registered +[ 0.532978] io scheduler deadline registered +[ 0.533033] io scheduler cfq registered (default) +[ 0.533206] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.533281] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.533378] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.533444] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.533540] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.533607] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.533705] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.533770] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.533898] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.533934] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.533994] intel_idle: MWAIT substates: 0x22220 +[ 0.533997] intel_idle: does not run on family 6 model 15 +[ 0.534105] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.534186] ACPI: AC Adapter [ACAD] (on-line) +[ 0.534267] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 0.534291] ACPI: Lid Switch [LID0] +[ 0.534348] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1 +[ 0.534353] ACPI: Power Button [PWRB] +[ 0.534429] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.534434] ACPI: Power Button [PWRF] +[ 0.534479] ACPI: acpi_idle registered with cpuidle +[ 0.536970] Monitor-Mwait will be used to enter C-1 state +[ 0.537024] Monitor-Mwait will be used to enter C-2 state +[ 0.537059] Monitor-Mwait will be used to enter C-3 state +[ 0.537066] Marking TSC unstable due to TSC halts in idle +[ 0.576306] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 0.576339] ERST: Table is not found! +[ 0.576477] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.596514] ACPI: Battery Slot [BAT1] (battery present) +[ 0.756873] Freeing initrd memory: 19464k freed +[ 0.789948] Linux agpgart interface v0.103 +[ 0.790084] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 0.790242] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable +[ 0.791097] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 0.791250] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 0.792794] brd: module loaded +[ 0.793486] loop: module loaded +[ 0.793683] ata_piix 0000:00:1f.1: version 2.13 +[ 0.793701] ata_piix 0000:00:1f.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.793746] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.794143] scsi0 : ata_piix +[ 0.794282] scsi1 : ata_piix +[ 0.794784] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.794789] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.795227] Fixed MDIO Bus: probed +[ 0.795261] PPP generic driver version 2.4.2 +[ 0.795315] tun: Universal TUN/TAP device driver, 1.6 +[ 0.795318] tun: (C) 1999-2004 Max Krasnyansky +[ 0.795429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.795451] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.795472] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.795477] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.795524] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.795567] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.799463] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.799485] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfc504800 +[ 0.812020] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.812182] hub 1-0:1.0: USB hub found +[ 0.812189] hub 1-0:1.0: 4 ports detected +[ 0.812291] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.812305] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.812310] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.812363] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.812398] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.816279] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.816301] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc504c00 +[ 0.832023] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.832151] hub 2-0:1.0: USB hub found +[ 0.832157] hub 2-0:1.0: 6 ports detected +[ 0.832258] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.832276] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.832305] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.832314] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.832319] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.832366] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.832412] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820 +[ 0.832569] hub 3-0:1.0: USB hub found +[ 0.832575] hub 3-0:1.0: 2 ports detected +[ 0.832668] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.832679] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.832684] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.832731] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.832775] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840 +[ 0.832936] hub 4-0:1.0: USB hub found +[ 0.832941] hub 4-0:1.0: 2 ports detected +[ 0.833028] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.833037] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.833042] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.833099] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.833134] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860 +[ 0.833291] hub 5-0:1.0: USB hub found +[ 0.833296] hub 5-0:1.0: 2 ports detected +[ 0.833384] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.833392] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.833397] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.833448] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.833493] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880 +[ 0.833649] hub 6-0:1.0: USB hub found +[ 0.833655] hub 6-0:1.0: 2 ports detected +[ 0.833737] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.833746] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.833750] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.833797] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.833832] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0 +[ 0.833984] hub 7-0:1.0: USB hub found +[ 0.833990] hub 7-0:1.0: 2 ports detected +[ 0.834133] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.858635] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.858644] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.858792] mousedev: PS/2 mouse device common for all mice +[ 0.860515] rtc_cmos 00:07: RTC can wake from S4 +[ 0.860650] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 0.860686] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.860821] device-mapper: uevent: version 1.0.3 +[ 0.860928] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com +[ 0.861015] cpuidle: using governor ladder +[ 0.861137] cpuidle: using governor menu +[ 0.861140] EFI Variables Facility v0.08 2004-May-17 +[ 0.861497] TCP cubic registered +[ 0.861666] NET: Registered protocol family 10 +[ 0.862339] NET: Registered protocol family 17 +[ 0.862362] Registering the dns_resolver key type +[ 0.862505] PM: Hibernation image not present or could not be loaded. +[ 0.862521] registered taskstats version 1 +[ 0.881709] Magic number: 15:169:571 +[ 0.881852] rtc_cmos 00:07: setting system clock to 2011-10-05 07:34:43 UTC (1317800083) +[ 0.882695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.882699] EDD information not available. +[ 0.885384] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.964510] ata1.00: ATAPI: MATSHITADVD-RAM UJ-850 z, RB32, max UDMA/33 +[ 0.980374] ata1.00: configured for UDMA/33 +[ 0.983110] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-850 z RB32 PQ: 0 ANSI: 5 +[ 0.985684] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.985690] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 0.985886] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.985957] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.988684] Freeing unused kernel memory: 984k freed +[ 0.989019] Write protecting the kernel read-only data: 10240k +[ 0.989354] Freeing unused kernel memory: 20k freed +[ 0.996526] Freeing unused kernel memory: 1400k freed +[ 1.023090] udevd[92]: starting version 173 +[ 1.095474] [drm] Initialized drm 1.1.0 20060810 +[ 1.111223] tg3.c:v3.119 (May 18, 2011) +[ 1.111255] tg3 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.111275] tg3 0000:06:00.0: setting latency timer to 64 +[ 1.123354] wmi: Mapper loaded +[ 1.135292] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.135301] i915 0000:00:02.0: setting latency timer to 64 +[ 1.229432] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 1.229442] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 1.229444] [drm] Driver supports precise vblank timestamp query. +[ 1.229504] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.231431] sdhci: Secure Digital Host Controller Interface driver +[ 1.231435] sdhci: Copyright(c) Pierre Ossman +[ 1.231761] sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 19) +[ 1.231780] sdhci-pci 0000:08:06.1: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 1.232804] sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.251222] mmc0: no vmmc regulator found +[ 1.252265] Registered led device: mmc0:: +[ 1.258216] mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA +[ 1.278826] tg3 0000:06:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:0c:7f:47 +[ 1.278833] tg3 0000:06:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0]) +[ 1.278838] tg3 0000:06:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.278842] tg3 0000:06:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.288114] firewire_ohci 0000:08:06.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.288352] fixme: max PWM is zero. +[ 1.321105] [drm] initialized overlay support +[ 1.363095] firewire_ohci: Added fw-ohci device 0000:08:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 1.429305] usb 1-4: new high speed USB device number 4 using ehci_hcd +[ 1.510188] fbcon: inteldrmfb (fb0) is primary device +[ 1.510267] Console: switching to colour frame buffer device 160x50 +[ 1.510301] fb0: inteldrmfb frame buffer device +[ 1.510304] drm: registered panic notifier +[ 1.596139] acpi device:08: registered as cooling_device2 +[ 1.596350] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4 +[ 1.596428] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.596505] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 1.596723] ahci 0000:00:1f.2: version 3.0 +[ 1.596748] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.596832] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.596928] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.596934] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc +[ 1.596941] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.600697] scsi2 : ahci +[ 1.601002] scsi3 : ahci +[ 1.601154] scsi4 : ahci +[ 1.601328] ata3: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504100 irq 45 +[ 1.601335] ata4: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504180 irq 45 +[ 1.601340] ata5: SATA max UDMA/133 abar m2048@0xfc504000 port 0xfc504200 irq 45 +[ 1.860262] firewire_core: created device fw0: GUID 00023f7bac4040de, S400 +[ 1.920122] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.921792] ata3.00: unexpected _GTF length (8) +[ 1.922070] ata3.00: ATA-8: WDC WD2500BEKT-75PVMT0, 01.01A01, max UDMA/133 +[ 1.922077] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.923756] ata3.00: unexpected _GTF length (8) +[ 1.924053] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.924081] ata3.00: configured for UDMA/133 +[ 1.924106] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.924318] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEKT-7 01.0 PQ: 0 ANSI: 5 +[ 1.924525] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.924642] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.924823] sd 2:0:0:0: [sda] Write Protect is off +[ 1.924828] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.924898] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.020840] sda: sda1 sda2 sda3 sda4 < sda5 > +[ 2.021461] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.032059] usb 3-1: new full speed USB device number 2 using uhci_hcd +[ 2.464056] usb 4-1: new full speed USB device number 2 using uhci_hcd +[ 2.872042] usb 6-1: new low speed USB device number 2 using uhci_hcd +[ 3.093235] input: MLK Trust Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5 +[ 3.093727] generic-usb 0003:04FC:05DA.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MLK Trust Mouse] on usb-0000:00:1d.1-1/input0 +[ 3.093905] usbcore: registered new interface driver usbhid +[ 3.093909] usbhid: USB HID core driver +[ 3.288960] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 3.308073] usb 6-2: new full speed USB device number 3 using uhci_hcd +[ 3.720052] usb 7-1: new low speed USB device number 2 using uhci_hcd +[ 3.918393] input: LITEON Technology USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input6 +[ 3.918495] generic-usb 0003:046D:C312.0002: input,hidraw1: USB HID v1.10 Keyboard [LITEON Technology USB Multimedia Keyboard] on usb-0000:00:1d.2-1/input0 +[ 5.565904] Adding 15999996k swap on /dev/sda3. Priority:-1 extents:1 across:15999996k +[ 5.691364] udevd[373]: starting version 173 +[ 6.303871] lp: driver loaded but no devices found +[ 7.040655] cfg80211: Calling CRDA to update world regulatory domain +[ 7.159284] r852 0000:08:06.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23 +[ 7.159297] r852 0000:08:06.3: setting latency timer to 64 +[ 7.159394] r852: Non dma capable device detected, dma disabled +[ 7.159411] r852: driver loaded successfully +[ 7.169632] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s +[ 7.169637] iwl3945: Copyright(c) 2003-2011 Intel Corporation +[ 7.169734] iwl3945 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.169751] iwl3945 0000:04:00.0: setting latency timer to 64 +[ 7.225063] iwl3945 0000:04:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels +[ 7.225067] iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG +[ 7.225225] iwl3945 0000:04:00.0: irq 46 for MSI/MSI-X +[ 7.225470] Registered led device: phy0-led +[ 7.225511] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 7.521071] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs' +[ 7.728682] udevd[389]: renamed network interface eth0 to eth1 +[ 7.785421] udevd[392]: renamed network interface wlan0 to wlan1 +[ 7.839555] device-mapper: multipath: version 1.3.0 loaded +[ 7.920206] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x25c0b1, caps: 0xa04713/0x200000/0x0 +[ 8.001393] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.103705] Linux video capture interface: v2.00 +[ 8.142601] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b013) +[ 8.145395] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1a.7/usb1/1-4/1-4:1.0/input/input8 +[ 8.145503] usbcore: registered new interface driver uvcvideo +[ 8.145506] USB Video Class driver (v1.1.0) +[ 8.268868] gspca: v2.13.0 registered +[ 8.426860] Bluetooth: Core ver 2.16 +[ 8.426898] NET: Registered protocol family 31 +[ 8.426901] Bluetooth: HCI device and connection manager initialized +[ 8.426905] Bluetooth: HCI socket layer initialized +[ 8.426908] Bluetooth: L2CAP socket layer initialized +[ 8.426983] Bluetooth: SCO socket layer initialized +[ 8.445120] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 8.445873] usbcore: registered new interface driver btusb +[ 8.596127] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 8.596132] cfg80211: World regulatory domain updated: +[ 8.596135] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.596139] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596144] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596147] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.596151] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.596155] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.713241] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 8.713332] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 8.713375] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 9.214524] type=1400 audit(1317800091.827:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=762 comm="apparmor_parser" +[ 9.214539] type=1400 audit(1317800091.827:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=760 comm="apparmor_parser" +[ 9.214899] type=1400 audit(1317800091.827:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=762 comm="apparmor_parser" +[ 9.214917] type=1400 audit(1317800091.827:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=760 comm="apparmor_parser" +[ 9.215139] type=1400 audit(1317800091.827:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=762 comm="apparmor_parser" +[ 9.215162] type=1400 audit(1317800091.827:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=760 comm="apparmor_parser" +[ 9.215989] type=1400 audit(1317800091.827:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=761 comm="apparmor_parser" +[ 9.216386] type=1400 audit(1317800091.831:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=761 comm="apparmor_parser" +[ 9.216637] type=1400 audit(1317800091.831:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=761 comm="apparmor_parser" +[ 9.565602] input: zc3xx as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/input/input9 +[ 9.565840] usbcore: registered new interface driver zc3xx +[ 9.567768] usbcore: registered new interface driver snd-usb-audio +[ 10.957262] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 11.498897] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 11.610016] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 13.338782] type=1400 audit(1317800095.951:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1170 comm="apparmor_parser" +[ 14.107842] ppdev: user-space parallel port driver +[ 16.201248] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.241864] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1 +[ 16.244584] microcode: Microcode Update Driver: v2.00 , Peter Oruba +[ 16.257389] iwl3945 0000:04:00.0: loaded firmware version 15.32.2.9 +[ 16.319712] microcode: CPU0 updated to revision 0xa4, date = 2010-10-02 +[ 16.320392] microcode: CPU1 updated to revision 0xa4, date = 2010-10-02 +[ 16.327663] ADDRCONF(NETDEV_UP): wlan1: link is not ready +[ 16.411245] tg3 0000:06:00.0: irq 48 for MSI/MSI-X +[ 16.441602] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 17.163336] init: failsafe main process (1112) killed by TERM signal +[ 17.369512] init: gdm main process (1340) killed by TERM signal +[ 18.121686] tg3 0000:06:00.0: eth1: Link is up at 100 Mbps, full duplex +[ 18.121691] tg3 0000:06:00.0: eth1: Flow control is on for TX and on for RX +[ 18.122295] ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready +[ 21.210518] RPC: Registered named UNIX socket transport module. +[ 21.210523] RPC: Registered udp transport module. +[ 21.210525] RPC: Registered tcp transport module. +[ 21.210528] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 21.445931] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 21.627527] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory +[ 21.636586] NFSD: starting 90-second grace period +[ 24.852307] vboxdrv: Found 2 processor cores. +[ 24.852593] vboxdrv: fAsync=0 offMin=0x1c2 offMax=0xae6 +[ 24.852666] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'. +[ 24.852669] vboxdrv: Successfully loaded version 4.1.2_Ubuntu (interface 0x00190000). +[ 25.101599] vboxpci: IOMMU not found (not registered) +[ 27.046401] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 27.046405] Bluetooth: BNEP filters: protocol multicast +[ 27.081903] Bluetooth: RFCOMM TTY layer initialized +[ 27.081919] Bluetooth: RFCOMM socket layer initialized +[ 27.081921] Bluetooth: RFCOMM ver 1.11 +[ 28.752057] eth1: no IPv6 routers present +[ 33.139443] init: plymouth-stop pre-start process (2005) terminated with status 1 +[ 33.628053] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro,commit=0 +[ 34.056830] EXT4-fs (sda1): re-mounted. Opts: commit=0 +[ 34.217110] EXT4-fs (sda5): re-mounted. Opts: commit=0 +[ 45.192742] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 45.196319] wlan1: authenticated +[ 45.199717] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 45.202749] wlan1: RX AssocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 45.202758] wlan1: associated +[ 45.206342] ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready +[ 45.206456] cfg80211: Calling CRDA for country: GB +[ 45.213483] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213493] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213498] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213505] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213509] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213516] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213520] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213526] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213531] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213537] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213542] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213547] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213552] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213558] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213563] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213569] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213573] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213579] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213584] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213590] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213594] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213600] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213605] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213611] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213615] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213621] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213626] cfg80211: Disabling freq 5170 MHz +[ 45.213630] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213636] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213640] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213646] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213651] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213657] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213662] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213667] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213672] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213678] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213683] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213688] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213693] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213699] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213704] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213710] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213714] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213720] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213725] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213731] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213736] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213742] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 45.213746] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213752] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213757] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213763] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213768] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213774] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213779] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213785] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213789] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213795] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213800] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213806] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213810] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213816] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213821] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213827] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213831] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213837] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213842] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213848] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213852] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 45.213858] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 45.213864] cfg80211: Regulatory domain changed to country: GB +[ 45.213868] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 45.213873] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213879] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213884] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 45.213889] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 52.640123] eth1: no IPv6 routers present +[ 55.208282] wlan1: disassociating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.214021] cfg80211: All devices are disconnected, going to restore regulatory settings +[ 55.214032] cfg80211: Restoring regulatory settings +[ 55.214052] cfg80211: Calling CRDA to update world regulatory domain +[ 55.214778] wlan1: deauthenticating from 00:1a:c1:38:47:d4 by local choice (reason=3) +[ 55.221291] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 55.221299] cfg80211: World regulatory domain updated: +[ 55.221303] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 55.221309] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221315] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221321] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 55.221327] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.221333] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 55.392119] wlan1: no IPv6 routers present +[ 58.763822] wlan1: authenticate with 00:1a:c1:38:47:d4 (try 1) +[ 58.765582] wlan1: authenticated +[ 58.766582] wlan1: associate with 00:1a:c1:38:47:d4 (try 1) +[ 58.769972] wlan1: RX ReassocResp from 00:1a:c1:38:47:d4 (capab=0x431 status=0 aid=2) +[ 58.769980] wlan1: associated +[ 58.773587] cfg80211: Calling CRDA for country: GB +[ 58.778304] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778310] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778314] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778318] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778321] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778325] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778328] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778332] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778335] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778340] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778343] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778347] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778350] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778354] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778357] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778361] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778364] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778368] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778371] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778375] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778378] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778382] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778385] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778389] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778392] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778396] cfg80211: 2402000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778399] cfg80211: Disabling freq 5170 MHz +[ 58.778402] cfg80211: Updating information on frequency 5180 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778406] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778409] cfg80211: Updating information on frequency 5190 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778413] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778416] cfg80211: Updating information on frequency 5200 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778420] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778423] cfg80211: Updating information on frequency 5210 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778427] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778430] cfg80211: Updating information on frequency 5220 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778434] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778437] cfg80211: Updating information on frequency 5230 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778441] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778444] cfg80211: Updating information on frequency 5240 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778448] cfg80211: 5170000 KHz - 5250000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778452] cfg80211: Updating information on frequency 5260 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778456] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778459] cfg80211: Updating information on frequency 5280 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778463] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778466] cfg80211: Updating information on frequency 5300 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778470] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778473] cfg80211: Updating information on frequency 5320 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778477] cfg80211: 5250000 KHz - 5330000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 58.778480] cfg80211: Updating information on frequency 5500 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778484] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778487] cfg80211: Updating information on frequency 5520 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778491] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778494] cfg80211: Updating information on frequency 5540 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778498] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778501] cfg80211: Updating information on frequency 5560 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778505] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778508] cfg80211: Updating information on frequency 5580 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778512] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778515] cfg80211: Updating information on frequency 5600 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778519] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778522] cfg80211: Updating information on frequency 5620 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778526] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778529] cfg80211: Updating information on frequency 5640 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778533] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778536] cfg80211: Updating information on frequency 5660 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778540] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778543] cfg80211: Updating information on frequency 5680 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778547] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778550] cfg80211: Updating information on frequency 5700 MHz for a 20 MHz width channel with regulatory rule: +[ 58.778554] cfg80211: 5490000 KHz - 5710000 KHz @ KHz), (N/A mBi, 2700 mBm) +[ 58.778558] cfg80211: Regulatory domain changed to country: GB +[ 58.778560] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 58.778564] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778568] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778571] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm) +[ 58.778575] cfg80211: (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm) +[ 70.176124] wlan1: no IPv6 routers present +[ 75.152080] eth1: no IPv6 routers present +[ 98.736094] eth1: no IPv6 routers present +[ 648.357292] ecryptfs_mount: kern_path() failed +[ 648.388155] Reading sb failed; rc = [-2] +[ 670.016019] eth1: no IPv6 routers present +[ 688.176048] eth1: no IPv6 routers present +[ 711.096140] eth1: no IPv6 routers present diff -Nru fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/progress-0001.log fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/progress-0001.log --- fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/progress-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/progress-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,697 @@ +Running 2 tests, results appended to results.log +XXX +0 +So far: 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for Oopses. + +Running test #1: +XXX +XXX +0 +So far: 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for Oopses. + +Running test #1: Kernel log oops check. +XXX +XXX +50 +So far: 0 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for Oopses. + +Running test #1: Kernel log oops check. +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +51 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +51 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +52 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +52 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +53 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +54 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +54 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +55 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +55 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +56 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +57 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +57 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +58 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +58 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +59 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +59 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +60 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +61 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +61 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +62 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +62 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +63 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +64 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +64 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +65 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +65 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +66 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +67 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +67 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +68 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +68 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +69 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +69 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +70 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +71 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +71 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +72 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +72 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +73 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +74 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +74 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +50 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +51 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +52 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +52 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +53 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +54 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +54 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +55 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +56 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +56 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +57 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +58 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +59 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +59 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +60 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +61 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +61 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +62 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +63 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +63 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +64 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +65 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +65 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +66 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +67 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +67 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +68 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +69 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +70 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +70 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +71 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +72 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +72 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +73 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +74 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +74 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +100 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX +XXX +100 +So far: 2 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only + +Scan kernel log for errors and warnings. + +Running test #2: Kernel log error check. +XXX diff -Nru fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --show-progress-dialog option" +NAME=test-0001.sh +TMPLOG=$TMP/progress.log.$$ + +$FWTS -w 80 --show-progress-dialog -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-show-progress-dialog-0001/klog.txt oops klog > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-show-progress-dialog-0001/progress-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-show-progress-dialog-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-progress-dialog-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -D option" +NAME=test-0001.sh +TMPLOG=$TMP/progress.log.$$ + +$FWTS -w 80 -D -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-show-progress-dialog-0001/klog.txt oops klog > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-show-progress-dialog-0001/progress-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-show-tests-0001/arg-show-tests-0001.log fwts-14.03.00/fwts-test/arg-show-tests-0001/arg-show-tests-0001.log --- fwts-14.02.00/fwts-test/arg-show-tests-0001/arg-show-tests-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-tests-0001/arg-show-tests-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,82 @@ +Batch tests: + acpiinfo General ACPI information test. + acpitables ACPI table settings sanity tests. + apicedge APIC edge/level test. + apicinstance Test for single instance of APIC/MADT table. + aspm PCIe ASPM test. + autobrightness Automated LCD brightness test. + bios32 BIOS32 Service Directory test. + bios_info Gather BIOS DMI information. + checksum ACPI table checksum test. + cpufreq CPU frequency scaling tests. + crs Test PCI host bridge configuration using _CRS. + csm UEFI Compatibility Support Module test. + cstates Processor C state support test. + dmar DMA Remapping (VT-d) test. + dmicheck DMI/SMBIOS table tests. + ebda Test EBDA region is mapped and reserved in memory map table. + fadt FADT SCI_EN enabled tests. + fan Simple fan tests. + hda_audio HDA Audio Pin Configuration test. + hpet_check HPET configuration tests. + klog Scan kernel log for errors and warnings. + maxfreq Test max CPU frequencies against max scaling frequency. + maxreadreq Test firmware has set PCI Express MaxReadReq to a higher value on non-motherboard devices. + mcfg MCFG PCI Express* memory mapped config space test. + method ACPI DSDT Method Semantic tests. + microcode Test if system is using latest microcode. + mpcheck MultiProcessor Tables tests. + msr MSR register tests. + mtrr MTRR tests. + nx Test if CPU NX is disabled by the BIOS. + oops Scan kernel log for Oopses. + os2gap OS/2 memory hole test. + osilinux Disassemble DSDT to check for _OSI("Linux"). + pcc Processor Clocking Control (PCC) test. + pciirq PCI IRQ Routing Table test. + pnp BIOS Support Installation structure test. + securebootcert UEFI secure boot test. + syntaxcheck Re-assemble DSDT and find syntax errors and warnings. + version Gather kernel system information. + virt CPU Virtualisation Configuration test. + wakealarm ACPI Wakealarm tests. + wmi Extract and analyse Windows Management Instrumentation (WMI). + +Interactive tests: + ac_adapter Interactive ac_adapter power test. + battery Battery tests. + brightness Interactive LCD brightness test. + hotkey Hotkey scan code tests. + lid Interactive lid button test. + power_button Interactive power_button button test. + +Power States tests: + s3 S3 suspend/resume test. + s3power S3 power loss during suspend test (takes minimum of 10 minutes to run). + s4 S4 hibernate/resume test. + +Utilities: + acpidump Dump ACPI tables. + cmosdump Dump CMOS Memory. + crsdump Dump ACPI _CRS resources. + ebdadump Dump EBDA region. + gpedump Dump GPEs. + memmapdump Dump system memory map. + mpdump Dump MultiProcessor Data. + plddump Dump ACPI _PLD (Physical Device Location). + prsdump Dump ACPI _PRS resources. + romdump Dump ROM data. + uefidump Dump UEFI variables. + uefivarinfo UEFI variable info query. + +Unsafe tests: + uefirtmisc UEFI miscellaneous runtime service interface tests. + uefirttime UEFI Runtime service time interface tests. + uefirtvariable UEFI Runtime service variable interface tests. + +UEFI tests: + csm UEFI Compatibility Support Module test. + securebootcert UEFI secure boot test. + uefirtmisc UEFI miscellaneous runtime service interface tests. + uefirttime UEFI Runtime service time interface tests. + uefirtvariable UEFI Runtime service variable interface tests. diff -Nru fwts-14.02.00/fwts-test/arg-show-tests-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-show-tests-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-show-tests-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-tests-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,27 @@ +#!/bin/bash +# +TEST="Test -s option" +NAME=test-0001.sh +TMPLOG=$TMP/arg-show-tests.log.$$ + +# +# Non-x86 tests don't have WMI so skip this test +# +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +stty cols 80 +$FWTS -s > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-show-tests-0001/arg-show-tests-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-show-tests-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-show-tests-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-show-tests-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-tests-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,27 @@ +#!/bin/bash +# +TEST="Test --show-tests option" +NAME=test-0002.sh +TMPLOG=$TMP/arg-show-tests.log.$$ + +# +# Non-x86 tests don't have WMI so skip this test +# +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +stty cols 80 +$FWTS -s > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-show-tests-0001/arg-show-tests-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-show-tests-full-0001/arg-show-tests-full-0001.log fwts-14.03.00/fwts-test/arg-show-tests-full-0001/arg-show-tests-full-0001.log --- fwts-14.02.00/fwts-test/arg-show-tests-full-0001/arg-show-tests-full-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-tests-full-0001/arg-show-tests-full-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,369 @@ +Batch tests: + acpiinfo (3 tests): + Determine Kernel ACPI version. + Determine machine's ACPI version. + Determine AML compiler. + acpitables (1 test): + Test ACPI tables. + apicedge (1 test): + Legacy and PCI Interrupt Edge/Level trigger tests. + apicinstance (1 test): + Test for single instance of APIC/MADT table. + aspm (2 tests): + PCIe ASPM ACPI test. + PCIe ASPM registers test. + autobrightness (2 tests): + Test for maximum and actual brightness. + Change actual brightness. + bios32 (1 test): + BIOS32 Service Directory test. + bios_info (1 test): + Gather BIOS DMI information + checksum (1 test): + ACPI table checksum test. + cpufreq (1 test): + CPU P-State tests. + crs (1 test): + Test PCI host bridge configuration using _CRS. + csm (1 test): + UEFI Compatibility Support Module test. + cstates (1 test): + Test all CPUs C-states. + dmar (1 test): + DMA Remapping test. + dmicheck (2 tests): + Find and test SMBIOS Table Entry Point. + Test DMI/SMBIOS tables for errors. + ebda (1 test): + Test EBDA is reserved in E820 table. + fadt (2 tests): + Test FADT SCI_EN bit is enabled. + Test FADT reset register. + fan (2 tests): + Test fan status. + Load system, check CPU fan status. + hda_audio (1 test): + HDA Audio Pin Configuration test. + hpet_check (4 tests): + Test HPET base in kernel log. + Test HPET base in HPET table. + Test HPET base in DSDT and/or SSDT. + Test HPET configuration. + klog (1 test): + Kernel log error check. + maxfreq (1 test): + Maximum CPU frequency test. + maxreadreq (1 test): + Test firmware settings MaxReadReq for PCI Express devices. + mcfg (2 tests): + Validate MCFG table. + Validate MCFG PCI config space. + method (155 tests): + Test Method Names. + Test _AEI. + Test _PIC (Inform AML of Interrupt Model). + Test _CID (Compatible ID). + Test _DDN (DOS Device Name). + Test _HID (Hardware ID). + Test _HRV (Hardware Revision Number). + Test _PLD (Physical Device Location). + Test _SUB (Subsystem ID). + Test _SUN (Slot User Number). + Test _STR (String). + Test _UID (Unique ID). + Test _CDM (Clock Domain). + Test _CRS (Current Resource Settings). + Test _DIS (Disable). + Test _DMA (Direct Memory Access). + Test _FIX (Fixed Register Resource Provider). + Test _GSB (Global System Interrupt Base). + Test _HPP (Hot Plug Parameters). + Test _PRS (Possible Resource Settings). + Test _PXM (Proximity). + Test _EDL (Eject Device List). + Test _EJD (Ejection Dependent Device). + Test _EJ0 (Eject). + Test _EJ1 (Eject). + Test _EJ2 (Eject). + Test _EJ3 (Eject). + Test _EJ4 (Eject). + Test _LCK (Lock). + Test _RMV (Remove). + Test _STA (Status). + Test _BDN (BIOS Dock Name). + Test _BBN (Base Bus Number). + Test _DCK (Dock). + Test _INI (Initialize). + Test _SEG (Segment). + Test _OFF (Set resource off). + Test _ON (Set resource on). + Test _DSW (Device Sleep Wake). + Test _IRC (In Rush Current). + Test _PRE (Power Resources for Enumeration). + Test _PR0 (Power Resources for D0). + Test _PR1 (Power Resources for D1). + Test _PR2 (Power Resources for D2). + Test _PR3 (Power Resources for D3). + Test _PS0 (Power State 0). + Test _PS1 (Power State 1). + Test _PS2 (Power State 2). + Test _PS3 (Power State 3). + Test _PSC (Power State Current). + Test _PSE (Power State for Enumeration). + Test _PSW (Power State Wake). + Test _S1D (S1 Device State). + Test _S2D (S2 Device State). + Test _S3D (S3 Device State). + Test _S4D (S4 Device State). + Test _S0W (S0 Device Wake State). + Test _S1W (S1 Device Wake State). + Test _S2W (S2 Device Wake State). + Test _S3W (S3 Device Wake State). + Test _S4W (S4 Device Wake State). + Test _S0_ (S0 System State). + Test _S1_ (S1 System State). + Test _S2_ (S2 System State). + Test _S3_ (S3 System State). + Test _S4_ (S4 System State). + Test _S5_ (S5 System State). + Test _SWS (System Wake Source). + Test _PSS (Performance Supported States). + Test _CPC (Continuous Performance Control). + Test _CSD (C State Dependencies). + Test _CST (C States). + Test _PCT (Performance Control). + Test _PDL (P-State Depth Limit). + Test _PPC (Performance Present Capabilities). + Test _PPE (Polling for Platform Error). + Test _TDL (T-State Depth Limit). + Test _TPC (Throttling Present Capabilities). + Test _TSD (Throttling State Dependencies). + Test _TSS (Throttling Supported States). + Test _MSG (Message). + Test _ALC (Ambient Light Colour Chromaticity). + Test _ALI (Ambient Light Illuminance). + Test _ALT (Ambient Light Temperature). + Test _ALP (Ambient Light Polling). + Test _LID (Lid Status). + Test _UPD (User Presence Detect). + Test _UPP (User Presence Polling). + Test _GCP (Get Capabilities). + Test _GRT (Get Real Time). + Test _GWS (Get Wake Status). + Test _STP (Set Expired Timer Wake Policy). + Test _STV (Set Timer Value). + Test _TIP (Expired Timer Wake Policy). + Test _TIV (Timer Values). + Test _SBS (Smart Battery Subsystem). + Test _BCT (Battery Charge Time). + Test _BIF (Battery Information). + Test _BIX (Battery Information Extended). + Test _BMA (Battery Measurement Averaging). + Test _BMC (Battery Maintenance Control). + Test _BMD (Battery Maintenance Data). + Test _BMS (Battery Measurement Sampling Time). + Test _BST (Battery Status). + Test _BTP (Battery Trip Point). + Test _BTM (Battery Time). + Test _PCL (Power Consumer List). + Test _PIF (Power Source Information). + Test _PSR (Power Source). + Test _GAI (Get Averaging Level). + Test _PMM (Power Meter Measurement). + Test _FIF (Fan Information). + Test _FSL (Fan Set Level). + Test _FST (Fan Status). + Test _ACx (Active Cooling). + Test _CRT (Critical Trip Point). + Test _DTI (Device Temperature Indication). + Test _HOT (Hot Temperature). + Test _NTT (Notification Temp Threshold). + Test _PSV (Passive Temp). + Test _RTV (Relative Temp Values). + Test _SCP (Set Cooling Policy). + Test _TC1 (Thermal Constant 1). + Test _TC2 (Thermal Constant 2). + Test _TMP (Thermal Zone Current Temp). + Test _TPT (Trip Point Temperature). + Test _TSP (Thermal Sampling Period). + Test _TST (Temperature Sensor Threshold). + Test _TZP (Thermal Zone Polling). + Test _PTS (Prepare to Sleep). + Test _TTS (Transition to State). + Test _S0 (System S0 State). + Test _S1 (System S1 State). + Test _S2 (System S2 State). + Test _S3 (System S3 State). + Test _S4 (System S4 State). + Test _S5 (System S5 State). + Test _WAK (System Wake). + Test _ADR (Return Unique ID for Device). + Test _BCL (Query List of Brightness Control Levels Supported). + Test _BCM (Set Brightness Level). + Test _BQC (Brightness Query Current Level). + Test _DCS (Return the Status of Output Device). + Test _DDC (Return the EDID for this Device). + Test _DSS (Device Set State). + Test _DGS (Query Graphics State). + Test _DOD (Enumerate All Devices Attached to Display Adapter). + Test _DOS (Enable/Disable Output Switching). + Test _GPD (Get POST Device). + Test _ROM (Get ROM Data). + Test _SPD (Set POST Device). + Test _VPO (Video POST Options). + Test _CBA (Configuration Base Address). + Test _IFT (IPMI Interface Type). + Test _SRV (IPMI Interface Revision). + microcode (1 test): + Test for most recent microcode being loaded. + mpcheck (9 tests): + Test MP header. + Test MP CPU entries. + Test MP Bus entries. + Test MP IO APIC entries. + Test MP IO Interrupt entries. + Test MP Local Interrupt entries. + Test MP System Address entries. + Test MP Bus Hierarchy entries. + Test MP Compatible Bus Address Space entries. + msr (5 tests): + Test CPU generic MSRs. + Test CPU specific model MSRs. + Test all P State Ratios. + Test C1 and C3 autodemotion. + Test SMRR MSR registers. + mtrr (3 tests): + Validate the kernel MTRR IOMEM setup. + Validate the MTRR setup across all processors. + Test for AMD MtrrFixDramModEn being cleared by the BIOS. + nx (3 tests): + Test CPU NX capability. + Test all CPUs have same BIOS set NX flag. + Test all CPUs have same msr setting in MSR 0x1a0. + oops (1 test): + Kernel log oops check. + os2gap (1 test): + Test the OS/2 15Mb memory hole is absent. + osilinux (1 test): + Disassemble DSDT to check for _OSI("Linux"). + pcc (1 test): + Processor Clocking Control (PCC) test. + pciirq (1 test): + PCI IRQ Routing Table test. + pnp (1 test): + PnP BIOS Support Installation structure test. + securebootcert (1 test): + UEFI secure boot test. + syntaxcheck (2 tests): + Disassemble and reassemble DSDT + Disassemble and reassemble SSDT + version (4 tests): + Gather kernel signature. + Gather kernel system information. + Gather kernel boot command line. + Gather ACPI driver version. + virt (1 test): + CPU Virtualisation Configuration test. + wakealarm (4 tests): + Test existence of RTC with alarm interface. + Trigger wakealarm for 1 seconds in the future. + Test if wakealarm is fired. + Multiple wakealarm firing tests. + wmi (1 test): + Windows Management Instrumentation test. + +Interactive tests: + ac_adapter (3 tests): + Test ACPI ac_adapter state. + Test ac_adapter initial on-line state. + Test ac_adapter state changes. + battery (1 test): + Battery test. + brightness (3 tests): + Observe all brightness changes. + Observe min, max brightness changes. + Test brightness hotkeys. + hotkey (1 test): + Hotkey keypress checks. + lid (3 tests): + Test LID buttons report open correctly. + Test LID buttons on a single open/close. + Test LID buttons on multiple open/close events. + power_button (1 test): + Test press of power button and ACPI event. + +Power States tests: + s3 (1 test): + S3 suspend/resume test. + s3power (1 test): + S3 power loss during suspend test. + s4 (1 test): + S4 hibernate/resume test. + +Utilities: + acpidump (1 test): + Dump ACPI tables. + cmosdump (1 test): + Dump CMOS Memory. + crsdump (1 test): + Dump ACPI _CRS (Current Resource Settings). + ebdadump (1 test): + Dump EBDA region. + gpedump (1 test): + Dump GPEs. + memmapdump (1 test): + Dump system memory map. + mpdump (1 test): + Dump Multi Processor Data. + plddump (1 test): + Dump ACPI _PLD (Physical Device Location). + prsdump (1 test): + Dump ACPI _PRS (Possible Resource Settings). + romdump (1 test): + Dump ROM data. + uefidump (1 test): + Dump UEFI Variables. + uefivarinfo (1 test): + UEFI variable info query. + +Unsafe tests: + uefirtmisc (2 tests): + Test for UEFI miscellaneous runtime service interfaces. + Stress test for UEFI miscellaneous runtime service interfaces. + uefirttime (4 tests): + Test UEFI RT service get time interface. + Test UEFI RT service set time interface. + Test UEFI RT service get wakeup time interface. + Test UEFI RT service set wakeup time interface. + uefirtvariable (7 tests): + Test UEFI RT service get variable interface. + Test UEFI RT service get next variable name interface. + Test UEFI RT service set variable interface. + Test UEFI RT service query variable info interface. + Test UEFI RT service variable interface stress test. + Test UEFI RT service set variable interface stress test. + Test UEFI RT service query variable info interface stress test. + +UEFI tests: + csm (1 test): + UEFI Compatibility Support Module test. + securebootcert (1 test): + UEFI secure boot test. + uefirtmisc (2 tests): + Test for UEFI miscellaneous runtime service interfaces. + Stress test for UEFI miscellaneous runtime service interfaces. + uefirttime (4 tests): + Test UEFI RT service get time interface. + Test UEFI RT service set time interface. + Test UEFI RT service get wakeup time interface. + Test UEFI RT service set wakeup time interface. + uefirtvariable (7 tests): + Test UEFI RT service get variable interface. + Test UEFI RT service get next variable name interface. + Test UEFI RT service set variable interface. + Test UEFI RT service query variable info interface. + Test UEFI RT service variable interface stress test. + Test UEFI RT service set variable interface stress test. + Test UEFI RT service query variable info interface stress test. + +Total of 285 tests diff -Nru fwts-14.02.00/fwts-test/arg-show-tests-full-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-show-tests-full-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-show-tests-full-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-show-tests-full-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,27 @@ +#!/bin/bash +# +TEST="Test --show-tests-full option" +NAME=test-0001.sh +TMPLOG=$TMP/arg-show-tests-full.log.$$ + +# +# Non-x86 tests don't have WMI so skip this test +# +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +stty cols 80 +$FWTS --show-tests-full > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-show-tests-full-0001/arg-show-tests-full-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-table-path-0001/acpidump-0001.log fwts-14.03.00/fwts-test/arg-table-path-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/arg-table-path-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-table-path-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,458 @@ +acpidump +acpidump ---- +acpidump ---------------------------------------------------------- +acpidump 0000: 54 4d 4f 52 26 00 00 00 01 eb 50 54 4c 54 44 20 TMOR&.....PTLTD +acpidump 0010: 20 20 20 20 20 20 20 20 00 00 04 06 50 54 4c 20 ....PTL +acpidump 0020: 03 00 00 00 f3 f4 ...... +acpidump [0x000 0000 4] Signature: APIC +acpidump [0x000 0000 4] Signature: BOOT +acpidump [0x000 0000 4] Signature: DSDT +acpidump [0x000 0000 4] Signature: FACP +acpidump [0x000 0000 4] Signature: FACS +acpidump [0x000 0000 4] Signature: HPET +acpidump [0x000 0000 4] Signature: MCFG +acpidump [0x000 0000 4] Signature: RSDT +acpidump [0x000 0000 4] Signature: SLIC +acpidump [0x000 0000 4] Signature: SSDT +acpidump [0x000 0000 4] Signature: TCPA +acpidump [0x000 0000 4] Signature: TMOR +acpidump [0x000 0000 4] Signature: XSDT +acpidump [0x000 0000 8] Base Address: 0x00000000e0000000 +acpidump [0x000 0000 8] Signature: RSD PTR +acpidump [0x004 0004 4] Length: 0x00000026 +acpidump [0x004 0004 4] Length: 0x00000028 +acpidump [0x004 0004 4] Length: 0x00000032 +acpidump [0x004 0004 4] Length: 0x00000038 +acpidump [0x004 0004 4] Length: 0x0000003c +acpidump [0x004 0004 4] Length: 0x00000040 +acpidump [0x004 0004 4] Length: 0x00000068 +acpidump [0x004 0004 4] Length: 0x000000a3 +acpidump [0x004 0004 4] Length: 0x000000a6 +acpidump [0x004 0004 4] Length: 0x000000ac +acpidump [0x004 0004 4] Length: 0x000000f4 +acpidump [0x004 0004 4] Length: 0x00000176 +acpidump [0x004 0004 4] Length: 0x0000025f +acpidump [0x004 0004 4] Length: 0x000002ad +acpidump [0x004 0004 4] Length: 0x000004e6 +acpidump [0x004 0004 4] Length: 0x00005ff4 +acpidump [0x008 0008 1] Checksum: 0x1c +acpidump [0x008 0008 1] Revision: 0x01 +acpidump [0x008 0008 1] Revision: 0x02 +acpidump [0x008 0008 1] Revision: 0x03 +acpidump [0x008 0008 2] PCI Seg Grp Num: 0x0000 +acpidump [0x008 0008 4] H/W Signature: 0x00000000 +acpidump [0x009 0009 1] Checksum: 0x0a +acpidump [0x009 0009 1] Checksum: 0x11 +acpidump [0x009 0009 1] Checksum: 0x13 +acpidump [0x009 0009 1] Checksum: 0x30 +acpidump [0x009 0009 1] Checksum: 0x32 +acpidump [0x009 0009 1] Checksum: 0x52 +acpidump [0x009 0009 1] Checksum: 0x59 +acpidump [0x009 0009 1] Checksum: 0x6d +acpidump [0x009 0009 1] Checksum: 0x8f +acpidump [0x009 0009 1] Checksum: 0x99 +acpidump [0x009 0009 1] Checksum: 0xa5 +acpidump [0x009 0009 1] Checksum: 0xc8 +acpidump [0x009 0009 1] Checksum: 0xcc +acpidump [0x009 0009 1] Checksum: 0xdf +acpidump [0x009 0009 1] Checksum: 0xe5 +acpidump [0x009 0009 1] Checksum: 0xeb +acpidump [0x009 0009 1] Checksum: 0xed +acpidump [0x009 0009 6] OEM ID: LENOVO +acpidump [0x00a 0010 1] Start Bus Num: 0x00 +acpidump [0x00a 0010 6] OEM ID: BrtRef +acpidump [0x00a 0010 6] OEM ID: FWTS +acpidump [0x00a 0010 6] OEM ID: Intel +acpidump [0x00a 0010 6] OEM ID: INTEL +acpidump [0x00a 0010 6] OEM ID: LENOVO +acpidump [0x00a 0010 6] OEM ID: PmRef +acpidump [0x00a 0010 6] OEM ID: PTLTD +acpidump [0x00a 0010 6] OEM ID: SataRe +acpidump [0x00a 0010 6] OEM ID: TOSCPL +acpidump [0x00b 0011 1] End Bus Num: 0xff +acpidump [0x00c 0012 4] Reserved: 0x00000000 +acpidump [0x00c 0012 4] Waking Vector: 0x00000000 +acpidump [0x00f 0015 1] Revision: 0x02 +acpidump [0x010 0016 4] Global Lock: 0x00000000 +acpidump [0x010 0016 4] RsdtAddress: 0xbff070d1 +acpidump [0x010 0016 8] OEM Table ID: +acpidump [0x010 0016 8] OEM Table ID: APIC +acpidump [0x010 0016 8] OEM Table ID: Cpu0Tst +acpidump [0x010 0016 8] OEM Table ID: Cpu1Tst +acpidump [0x010 0016 8] OEM Table ID: CpuPm +acpidump [0x010 0016 8] OEM Table ID: CRESTLNE +acpidump [0x010 0016 8] OEM Table ID: DD01BRT +acpidump [0x010 0016 8] OEM Table ID: SataAhci +acpidump [0x010 0016 8] OEM Table ID: $SBFTBL$ +acpidump [0x010 0016 8] OEM Table ID: TP-68 +acpidump [0x014 0020 4] Flags: 0x00000000 +acpidump [0x014 0020 4] Length: 0x00000024 +acpidump [0x018 0024 4] OEM Revision: 0x00000001 +acpidump [0x018 0024 4] OEM Revision: 0x00001000 +acpidump [0x018 0024 4] OEM Revision: 0x00003000 +acpidump [0x018 0024 4] OEM Revision: 0x06040000 +acpidump [0x018 0024 8] XsdtAddress: 0x00000000bff07149 +acpidump [0x018 0024 8] X Waking Vector: 0x0000000000000000 +acpidump [0x01c 0028 4] Creator ID: ALAN +acpidump [0x01c 0028 4] Creator ID: FWTS +acpidump [0x01c 0028 4] Creator ID: INTL +acpidump [0x01c 0028 4] Creator ID: LOHR +acpidump [0x01c 0028 4] Creator ID: LTP +acpidump [0x01c 0028 4] Creator ID: PTL +acpidump [0x01c 0028 4] Creator ID: TBD +acpidump [0x020 0032 1] Extended Checksum: 0x73 +acpidump [0x020 0032 1] Version: 0x01 +acpidump [0x020 0032 4] Creator Revision: 0x00000000 +acpidump [0x020 0032 4] Creator Revision: 0x00000001 +acpidump [0x020 0032 4] Creator Revision: 0x00000003 +acpidump [0x020 0032 4] Creator Revision: 0x0000005a +acpidump [0x020 0032 4] Creator Revision: 0x20050624 +acpidump [0x020 0032 4] Creator Revision: 0x20060608 +acpidump [0x021 0033 3] Reserved: 0x00 [0] +acpidump [0x021 0033 3] Reserved: 0x00 [1] +acpidump [0x021 0033 3] Reserved: 0x00 [2] +acpidump [0x024 0036 1] CMOS offset: 0x36 +acpidump [0x024 0036 4] Entry 00 APIC: 0xbff00000 +acpidump [0x024 0036 4] Event Timer ID: 0x8086a201 +acpidump [0x024 0036 4] FACS Address: 0xbf6e2fc0 +acpidump [0x024 0036 4] Local APIC Address: 0xfee00000 +acpidump [0x024 0036 4] OSPM Flags: 0x00000000 +acpidump [0x024 0036 4] Type: 0x00000000 +acpidump [0x024 0036 8] Entry 00 APIC: 0x00000000bff00000 +acpidump [0x024 0036 8] Reserved: 0x0000000000000000 +acpidump [0x028 0040 12] Base Address: (Generic Address Structure) +acpidump [0x028 0040 1] addr_space_id: 0x00 (System Memory) +acpidump [0x028 0040 4] DSDT Address: 0xbf6d9b6a +acpidump [0x028 0040 4] Entry 01 APIC: 0xbff00078 +acpidump [0x028 0040 4] Flags: 0x00000001 +acpidump [0x028 0040 4] Length: 0x0000009c +acpidump [0x029 0041 1] reg_bit_width: 0x00 +acpidump [0x02a 0042 1] reg_bit_offset: 0x00 +acpidump [0x02b 0043 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x02c 0044 1] Key Type: 0x06 +acpidump [0x02c 0044 1] Model: 0x00 +acpidump [0x02c 0044 1] Type: 0x00 (Processor Local APIC) +acpidump [0x02c 0044 4] Entry 02 BOOT: 0xbff000f0 +acpidump [0x02c 0044 8] address: 0x00000000fed00000 +acpidump [0x02c 0044 8] Entry 01 APIC: 0x00000000bff00078 +acpidump [0x02d 0045 1] Length: 0x08 +acpidump [0x02d 0045 1] PM Profile: 0x02 (Mobile) +acpidump [0x02d 0045 1] Version: 0x02 +acpidump [0x02e 0046 1] ACPI CPU ID: 0x00 +acpidump [0x02e 0046 2] Reserved: 0x0000 +acpidump [0x02e 0046 2] SCI Interrupt: 0x0009 +acpidump [0x02f 0047 1] APIC ID: 0x00 +acpidump [0x030 0048 4] Algorithm: 0x00002400 +acpidump [0x030 0048 4] Entry 03 DSDT: 0xbff00128 +acpidump [0x030 0048 4] Flags: 0x00000001 +acpidump [0x030 0048 4] SMI Command Port: 0x000000b2 +acpidump [0x034 0052 1] ACPI Enable Value: 0xf0 +acpidump [0x034 0052 1] HPET Number: 0x00 +acpidump [0x034 0052 1] Type: 0x00 (Processor Local APIC) +acpidump [0x034 0052 4] Entry 04 FACP: 0xbff0612c +acpidump [0x034 0052 4] Magic: 0x31415352 +acpidump [0x034 0052 8] Entry 02 BOOT: 0x00000000bff000f0 +acpidump [0x035 0053 1] ACPI Disable Value: 0xf1 +acpidump [0x035 0053 1] Length: 0x08 +acpidump [0x035 0053 2] Main Counter Min: 0x0080 +acpidump [0x036 0054 1] ACPI CPU ID: 0x01 +acpidump [0x036 0054 1] S4BIOS Command: 0x00 +acpidump [0x037 0055 1] APIC ID: 0x01 +acpidump [0x037 0055 1] Page Prot Attr: 0x00 +acpidump [0x037 0055 1] P-State Control: 0x80 +acpidump [0x038 0056 4] Bit Length: 0x00000400 +acpidump [0x038 0056 4] Entry 05 FACS: 0xbff06230 +acpidump [0x038 0056 4] Flags: 0x00000001 +acpidump [0x038 0056 4] PM1A Event Block: 0x00001000 +acpidump [0x03c 0060 128] Modulus: 00 b2 3b 29 02 e2 4c 8d +acpidump [0x03c 0060 128] Modulus: 01 00 01 00 69 16 4a 9f +acpidump [0x03c 0060 128] Modulus: 29 a1 c1 f1 91 fd 48 86 +acpidump [0x03c 0060 128] Modulus: 42 c5 d5 e9 b6 43 40 55 +acpidump [0x03c 0060 128] Modulus: 44 c3 c9 37 99 5f 41 97 +acpidump [0x03c 0060 128] Modulus: 65 26 72 1e cd bf 5f 2f +acpidump [0x03c 0060 128] Modulus: 70 f3 d1 f6 07 ec 7b 1a +acpidump [0x03c 0060 128] Modulus: 83 f8 5e c9 15 95 f9 fa +acpidump [0x03c 0060 128] Modulus: 96 d6 c0 0a 92 f5 06 b5 +acpidump [0x03c 0060 128] Modulus: a7 6a 77 d1 b6 20 2a 76 +acpidump [0x03c 0060 128] Modulus: b1 4b 3a fb 80 20 aa af +acpidump [0x03c 0060 128] Modulus: b3 84 33 20 e1 d1 79 2a +acpidump [0x03c 0060 128] Modulus: c2 f2 bc 41 77 9c 70 f0 +acpidump [0x03c 0060 128] Modulus: c4 f9 3e c1 80 49 ee 6a +acpidump [0x03c 0060 128] Modulus: f3 1b 09 d2 63 5a dc a8 +acpidump [0x03c 0060 128] Modulus: fd dc 05 b7 4d 67 7f 2d +acpidump [0x03c 0060 1] Type: 0x01 (I/O APIC) +acpidump [0x03c 0060 4] Entry 06 HPET: 0xbff06280 +acpidump [0x03c 0060 4] PM1B Event Block: 0x00000000 +acpidump [0x03c 0060 8] Entry 03 DSDT: 0x00000000bff00128 +acpidump [0x03d 0061 1] Length: 0x0c +acpidump [0x03e 0062 1] I/O APIC ID: 0x01 +acpidump [0x03e 0062 1] I/O APIC ID: 0x02 +acpidump [0x040 0064 4] Entry 07 MCFG: 0xbff062c8 +acpidump [0x040 0064 4] I/O APIC Addr: 0xfec00000 +acpidump [0x040 0064 4] PM1A Control Block: 0x00001004 +acpidump [0x044 0068 4] Entry 08 RSDP: 0xbff06314 +acpidump [0x044 0068 4] Global IRQ Base: 0x00000000 +acpidump [0x044 0068 4] PM1B Control Block: 0x00000000 +acpidump [0x044 0068 8] Entry 04 FACP: 0x00000000bff0612c +acpidump [0x048 0072 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x048 0072 1] Type: 0x04 (Local APIC NMI) +acpidump [0x048 0072 4] Entry 09 SLIC: 0xbff06348 +acpidump [0x048 0072 4] PM2 Control Block: 0x00001020 +acpidump [0x049 0073 1] Length: 0x06 +acpidump [0x049 0073 1] Length: 0x0a +acpidump [0x04a 0074 1] ACPI CPU ID: 0x00 +acpidump [0x04a 0074 1] Bus: 0x00 +acpidump [0x04b 0075 1] Source: 0x00 +acpidump [0x04b 0075 2] Flags: 0x0005 +acpidump [0x04c 0076 4] Entry 10 SSDT: 0xbff064ce +acpidump [0x04c 0076 4] Gbl Sys Int: 0x00000002 +acpidump [0x04c 0076 4] PM Timer Block: 0x00001008 +acpidump [0x04c 0076 8] Entry 05 FACS: 0x00000000bff06230 +acpidump [0x04d 0077 1] Local APIC LINT: 0x01 +acpidump [0x04e 0078 1] Type: 0x04 (Local APIC NMI) +acpidump [0x04f 0079 1] Length: 0x06 +acpidump [0x050 0080 1] ACPI CPU ID: 0x01 +acpidump [0x050 0080 2] Flags: 0x0000 +acpidump [0x050 0080 4] Entry 11 SSDT: 0xbff0678b +acpidump [0x050 0080 4] GPE0 Block: 0x00001028 +acpidump [0x051 0081 2] Flags: 0x0005 +acpidump [0x052 0082 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x053 0083 1] Length: 0x0a +acpidump [0x053 0083 1] Local APIC LINT: 0x01 +acpidump [0x054 0084 1] Bus: 0x00 +acpidump [0x054 0084 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x054 0084 4] Entry 12 SSDT: 0xbff0683e +acpidump [0x054 0084 4] GPE1 Block: 0x00000000 +acpidump [0x054 0084 8] Entry 06 HPET: 0x00000000bff06280 +acpidump [0x055 0085 1] Length: 0x0a +acpidump [0x055 0085 1] Source: 0x09 +acpidump [0x056 0086 1] Bus: 0x00 +acpidump [0x056 0086 2] Reserved: 0x0000 +acpidump [0x056 0086 4] Gbl Sys Int: 0x00000009 +acpidump [0x057 0087 1] Source: 0x00 +acpidump [0x058 0088 1] PM1 Event Block Length: 0x04 +acpidump [0x058 0088 4] Entry 13 SSDT: 0xbff06aad +acpidump [0x058 0088 4] Gbl Sys Int: 0x00000002 +acpidump [0x058 0088 4] Log Zone Length: 0x00010000 +acpidump [0x059 0089 1] PM1 Control Block Length: 0x02 +acpidump [0x05a 0090 1] PM2 Control Block Length: 0x01 +acpidump [0x05a 0090 2] Flags: 0x000d +acpidump [0x05b 0091 1] PM Timer Block Length: 0x04 +acpidump [0x05c 0092 1] GPE0 Block Length: 0x08 +acpidump [0x05c 0092 1] Type: 0x04 (Local APIC NMI) +acpidump [0x05c 0092 2] Flags: 0x0005 +acpidump [0x05c 0092 4] Entry 14 SSDT: 0xbff06b63 +acpidump [0x05c 0092 8] Entry 07 MCFG: 0x00000000bff062c8 +acpidump [0x05c 0092 8] Log Zone Address: 0x0000000000000000 +acpidump [0x05d 0093 1] GPE1 Block Length: 0x00 +acpidump [0x05d 0093 1] Length: 0x06 +acpidump [0x05e 0094 1] ACPI CPU ID: 0x00 +acpidump [0x05e 0094 1] Type: 0x02 (Interrupt Source Override) +acpidump [0x05f 0095 1] _CST Support: 0x85 +acpidump [0x05f 0095 1] Length: 0x0a +acpidump [0x05f 0095 2] Flags: 0x0005 +acpidump [0x060 0096 1] Bus: 0x00 +acpidump [0x060 0096 2] C2 Latency: 0x0001 +acpidump [0x060 0096 4] Entry 15 TCPA: 0xbff07059 +acpidump [0x061 0097 1] Local APIC LINT: 0x01 +acpidump [0x061 0097 1] Source: 0x09 +acpidump [0x062 0098 1] Type: 0x04 (Local APIC NMI) +acpidump [0x062 0098 2] C3 Latency: 0x0023 +acpidump [0x062 0098 4] Gbl Sys Int: 0x00000009 +acpidump [0x063 0099 1] Length: 0x06 +acpidump [0x064 0100 1] ACPI CPU ID: 0x01 +acpidump [0x064 0100 2] CPU Cache Size: 0x0000 +acpidump [0x064 0100 4] Entry 16 TMOR: 0xbff0709b +acpidump [0x064 0100 8] Entry 08 RSDP: 0x00000000bff06314 +acpidump [0x065 0101 2] Flags: 0x0005 +acpidump [0x066 0102 2] CPU Cache Flush Stride: 0x0000 +acpidump [0x066 0102 2] Flags: 0x000d +acpidump [0x067 0103 1] Local APIC LINT: 0x01 +acpidump [0x068 0104 1] Duty Cycle Offset: 0x01 +acpidump [0x069 0105 1] Duty Cycle Width: 0x03 +acpidump [0x06a 0106 1] RTC Day Alarm Index: 0x0d +acpidump [0x06b 0107 1] RTC Month Alarm Index: 0x00 +acpidump [0x06c 0108 1] RTC Century Index: 0x32 +acpidump [0x06c 0108 8] Entry 09 SLIC: 0x00000000bff06348 +acpidump [0x06d 0109 2] IA-PC Boot Flags (see below): 0x0000 +acpidump [0x070 0112 4] Flags (see below): 0x000000a5 +acpidump [0x074 0116 12] RESET_REG: (Generic Address Structure) +acpidump [0x074 0116 1] addr_space_id: 0x00 (System Memory) +acpidump [0x074 0116 8] Entry 10 SSDT: 0x00000000bff064ce +acpidump [0x075 0117 1] reg_bit_width: 0x00 +acpidump [0x076 0118 1] reg_bit_offset: 0x00 +acpidump [0x077 0119 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x078 0120 8] address: 0x0000000000000000 +acpidump [0x07c 0124 8] Entry 11 SSDT: 0x00000000bff0678b +acpidump [0x080 0128 1] RESET_VALUE: 0x00 +acpidump [0x084 0132 8] Entry 12 SSDT: 0x00000000bff0683e +acpidump [0x084 0132 8] X_FIRMWARE_CTRL: 0x00000000bf6e2fc0 +acpidump [0x08c 0140 8] Entry 13 SSDT: 0x00000000bff06aad +acpidump [0x08c 0140 8] X_DSDT: 0x00000000bf6d9b6a +acpidump [0x094 0148 12] X_PM1a_EVT_BLK: (Generic Address Structure) +acpidump [0x094 0148 1] addr_space_id: 0x01 (System I/O) +acpidump [0x094 0148 8] Entry 14 SSDT: 0x00000000bff06b63 +acpidump [0x095 0149 1] reg_bit_width: 0x20 +acpidump [0x096 0150 1] reg_bit_offset: 0x00 +acpidump [0x097 0151 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x098 0152 8] address: 0x0000000000001000 +acpidump [0x09c 0156 8] Entry 15 TCPA: 0x00000000bff07059 +acpidump [0x0a0 0160 12] X_PM1b_EVT_BLK: (Generic Address Structure) +acpidump [0x0a0 0160 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0a1 0161 1] reg_bit_width: 0x00 +acpidump [0x0a2 0162 1] reg_bit_offset: 0x00 +acpidump [0x0a3 0163 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0a4 0164 8] address: 0x0000000000000000 +acpidump [0x0a4 0164 8] Entry 16 TMOR: 0x00000000bff0709b +acpidump [0x0ac 0172 12] X_PM1a_CNT_BLK: (Generic Address Structure) +acpidump [0x0ac 0172 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0ad 0173 1] reg_bit_width: 0x10 +acpidump [0x0ae 0174 1] reg_bit_offset: 0x00 +acpidump [0x0af 0175 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0b0 0176 8] address: 0x0000000000001004 +acpidump [0x0b8 0184 12] X_PM1b_CNT_BLK: (Generic Address Structure) +acpidump [0x0b8 0184 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0b9 0185 1] reg_bit_width: 0x00 +acpidump [0x0ba 0186 1] reg_bit_offset: 0x00 +acpidump [0x0bb 0187 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0bc 0188 8] address: 0x0000000000000000 +acpidump [0x0c0 0192 4] Type: 0x00000001 +acpidump [0x0c4 0196 12] X_PM2_CNT_BLK: (Generic Address Structure) +acpidump [0x0c4 0196 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0c4 0196 4] Length: 0x000000b6 +acpidump [0x0c5 0197 1] reg_bit_width: 0x08 +acpidump [0x0c6 0198 1] reg_bit_offset: 0x00 +acpidump [0x0c7 0199 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0c8 0200 4] Version: 0x00020000 +acpidump [0x0c8 0200 8] address: 0x0000000000001020 +acpidump [0x0cc 0204 6] OEM ID: LENOVO +acpidump [0x0d0 0208 12] X_PM_TMR_BLK: (Generic Address Structure) +acpidump [0x0d0 0208 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0d1 0209 1] reg_bit_width: 0x20 +acpidump [0x0d2 0210 1] reg_bit_offset: 0x00 +acpidump [0x0d2 0210 8] OEM TABLE ID: TP-68 +acpidump [0x0d3 0211 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0d4 0212 8] address: 0x0000000000001008 +acpidump [0x0da 0218 8] Windows Flag: 57 49 4e 44 4f 57 53 20 +acpidump [0x0dc 0220 12] X_GPE0_BLK: (Generic Address Structure) +acpidump [0x0dc 0220 1] addr_space_id: 0x01 (System I/O) +acpidump [0x0dd 0221 1] reg_bit_width: 0x40 +acpidump [0x0de 0222 1] reg_bit_offset: 0x00 +acpidump [0x0df 0223 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0e0 0224 8] address: 0x0000000000001028 +acpidump [0x0e2 0226 4] SLIC Version: 0x00000000 +acpidump [0x0e6 0230 16] Reserved: 00 00 00 00 00 00 00 00 +acpidump [0x0e8 0232 12] X_GPE1_BLK: (Generic Address Structure) +acpidump [0x0e8 0232 1] addr_space_id: 0x00 (System Memory) +acpidump [0x0e9 0233 1] reg_bit_width: 0x00 +acpidump [0x0ea 0234 1] reg_bit_offset: 0x00 +acpidump [0x0eb 0235 1] access_width: 0x00 (Undefined (legacy reasons)) +acpidump [0x0ec 0236 8] address: 0x0000000000000000 +acpidump [0x0f6 0246 128] Signature: 04 07 e3 2a 1e 14 f1 bd +acpidump [0x0f6 0246 128] Signature: 1e 81 11 42 b1 35 52 57 +acpidump [0x0f6 0246 128] Signature: 4f 4c 34 cc 99 5e 62 e1 +acpidump [0x0f6 0246 128] Signature: 5c a1 d8 f9 a4 61 8a 1c +acpidump [0x0f6 0246 128] Signature: 74 ca 11 9e dc 54 39 bf +acpidump [0x0f6 0246 128] Signature: 7f 4c 09 ff 19 11 a9 d4 +acpidump [0x0f6 0246 128] Signature: 89 8a 95 c3 4d fc e9 56 +acpidump [0x0f6 0246 128] Signature: 8a 6e 2e c9 36 e6 7f 10 +acpidump [0x0f6 0246 128] Signature: 8a ea 14 ad d2 93 b7 6d +acpidump [0x0f6 0246 128] Signature: 90 8a 54 be 4a 00 5c 9b +acpidump [0x0f6 0246 128] Signature: 9b 73 ad 83 36 b8 6c a7 +acpidump [0x0f6 0246 128] Signature: a0 86 41 46 66 9d e2 f2 +acpidump [0x0f6 0246 128] Signature: a7 ee 37 47 16 fe f3 fc +acpidump [0x0f6 0246 128] Signature: cd c7 89 84 06 16 91 0b +acpidump [0x0f6 0246 128] Signature: e7 36 9c 33 91 27 e7 8d +acpidump [0x0f6 0246 128] Signature: f6 6b bb 5f a5 81 e2 ff +acpidump 32 bit PM timer (V1): 0x0 +acpidump 8042 present on ports 60/64 (V2): 0x0 +acpidump acpidump: Dump ACPI tables. +acpidump ACPI hardware is not implemented (V5): 0x0 +acpidump All CPUs support C1 (V1): 0x1 +acpidump APIC @ bff00000 (104 bytes) (loaded from file) +acpidump APIC @ bff00078 (104 bytes) (loaded from file) +acpidump APIC Structure #1: +acpidump APIC Structure #2: +acpidump APIC Structure #3: +acpidump APIC Structure #4: +acpidump APIC Structure #5: +acpidump APIC Structure #6: +acpidump APIC Structure #7: +acpidump BOOT @ bff000f0 (40 bytes) (loaded from file) +acpidump C2 works on MP system (V1): 0x0 +acpidump CMOS RTC Not Present (V5): 0x0 +acpidump Configuration #1: +acpidump Contains 0x23b bytes of AML byte code +acpidump Contains 0x289 bytes of AML byte code +acpidump Contains 0x4c2 bytes of AML byte code +acpidump Contains 0x5fd0 bytes of AML byte code +acpidump Contains 0x7f bytes of AML byte code +acpidump Contains 0x82 bytes of AML byte code +acpidump Control Method Power Button (V1): 0x0 +acpidump Control Method Sleep Button (V1): 0x1 +acpidump Count Size Cap: 0x1 +acpidump Differentiated System Description Table: +acpidump Docking Capability (V1): 0x0 +acpidump DSDT @ bff00128 (24564 bytes) (loaded from file) +acpidump Enabled: 0x1 +acpidump Extended System Description Table: +acpidump FACP @ bff0612c (244 bytes) (loaded from file) +acpidump FACS @ bff06230 (64 bytes) (loaded from file) +acpidump Firmware ACPI Control Structure: +acpidump Fixed ACPI Description Table: +acpidump Hardware Rev: 0x01 +acpidump Headless, No Video (V3): 0x0 +acpidump HPET @ bff06280 (56 bytes) (loaded from file) +acpidump IA-PC High Precision Event Timer Table: +acpidump IRQ Routing Cap: 0x1 +acpidump Legacy Devices Supported (V2): 0x0 +acpidump MCFG @ bff062c8 (60 bytes) (loaded from file) +acpidump Microsoft Software License Table: +acpidump MSI Not Supported (V4): 0x0 +acpidump Multiple APIC Description Table: +acpidump Num Comparitors: 0x02 +acpidump OEM Attr: 0x0 +acpidump Page Protection: 0x0 +acpidump PCAT_COMPAT: 0x1 +acpidump PCIe ASPM Not supported (V4): 0x0 +acpidump PCI Express Memory Mapped Config Space Base Address Table: +acpidump PCI_EXP_WAK bits supported (V4): 0x0 +acpidump PCI Vendor ID: 0x8086 +acpidump Polarity: 0x0 +acpidump Polarity: 0x1 +acpidump Remote power on capable (V4): 0x0 +acpidump Reserved: 0x0 +acpidump RESERVED: 0x000 +acpidump Reset Register Supported (V2): 0x0 +acpidump Root System Description Pointer: +acpidump Root System Description Table: +acpidump RSDP @ bff06314 (36 bytes) (loaded from file) +acpidump RSDT @ bff070d1 (104 bytes) (generated by fwts) +acpidump RTC can wake system from S4 (V1): 0x1 +acpidump RTC_STS Valid after S4 wake (V4): 0x0 +acpidump RTC wake not in fixed reg space (V1): 0x0 +acpidump S0 power savings are equal or better than S3 (V5): 0x0 +acpidump Sealed Case (V3): 0x0 +acpidump Secondary System Description Table: +acpidump Simple Boot Flag Table: +acpidump SLIC @ bff06348 (374 bytes) (loaded from file) +acpidump SSDT @ bff064ce (685 bytes) (loaded from file) +acpidump SSDT @ bff0678b (163 bytes) (loaded from file) +acpidump SSDT @ bff0683e (607 bytes) (loaded from file) +acpidump SSDT @ bff06aad (166 bytes) (loaded from file) +acpidump SSDT @ bff06b63 (1254 bytes) (loaded from file) +acpidump TCPA @ bff07059 (50 bytes) (loaded from file) +acpidump Test 1 of 1: Dump ACPI tables. +acpidump TMOR @ bff0709b (38 bytes) (loaded from file) +acpidump Trigger Mode: 0x0 +acpidump Trigger Mode: 0x1 +acpidump Trigger Mode: 0x3 +acpidump Trusted Computing Platform Alliance Capabilities Table: +acpidump Use APIC Cluster Model (V4): 0x0 +acpidump Use APIC Physical Dest. Mode (V4): 0x0 +acpidump Use native instr. after SLP_TYPx (V3): 0x0 +acpidump Use patform clock (V4): 0x0 +acpidump VGA Not Present (V4): 0x0 +acpidump WBINVD flushes all caches (V1): 0x0 +acpidump WBINVD instruction (V1): 0x1 +acpidump XSDT @ bff07149 (172 bytes) (generated by fwts) diff -Nru fwts-14.02.00/fwts-test/arg-table-path-0001/acpidump.log fwts-14.03.00/fwts-test/arg-table-path-0001/acpidump.log --- fwts-14.02.00/fwts-test/arg-table-path-0001/acpidump.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-table-path-0001/acpidump.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,6 @@ +00014 acpidump Dump ACPI tables. +00015 acpidump ---------------------------------------------------------- +00016 acpidump Test 1 of 1: Dump ACPI tables. +00017 acpidump Cannot open directory '/home/king/firmware/fwts/fwts-test +00018 acpidump /arg-table-path-0001/acpidump.dat' to read ACPI tables. +00019 acpidump Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/APIC1.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/APIC1.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/APIC2.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/APIC2.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/BOOT.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/BOOT.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/DSDT.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/DSDT.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/FACP.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/FACP.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/FACS.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/FACS.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/HPET.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/HPET.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/MCFG.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/MCFG.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/RSDP.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/RSDP.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SLIC.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SLIC.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SSDT1.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SSDT1.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SSDT2.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SSDT2.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SSDT3.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SSDT3.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SSDT4.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SSDT4.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/SSDT5.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/SSDT5.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/TCPA.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/TCPA.dat differ diff -Nru fwts-14.02.00/fwts-test/arg-table-path-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-table-path-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-table-path-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-table-path-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,26 @@ +#!/bin/bash +# +TEST="Test --table-path to load dumped tables produced by acpixtract" +NAME=test-0001.sh +TMPLOG=$TMP/acpidump.log.$$ +SORTED=$TMP/acpidump.log.sorted +HERE=$FWTSTESTDIR/arg-table-path-0001 + +# +# Unfortunately we can pull in the tables in different order depending +# on the way the tables are stored in the directory. Since we only care +# about output content and not necessary table order, we sort and uniq +# the output before we diff. +# +$FWTS --log-format="%line %owner " -w 80 --table-path=$HERE acpidump - | grep "^[0-9]*[ ]*acpidump" | cut -c7- | sort | uniq > $TMPLOG +sort $HERE/acpidump-0001.log > $SORTED +diff $TMPLOG $SORTED >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $SORTED +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-table-path-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-table-path-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-table-path-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-table-path-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,26 @@ +#!/bin/bash +# +TEST="Test -T to load dumped tables produced by acpixtract" +NAME=test-0002.sh +TMPLOG=$TMP/acpidump.log.$$ +SORTED=$TMP/acpidump.log.sorted +HERE=$FWTSTESTDIR/arg-table-path-0001 + +# +# Unfortunately we can pull in the tables in different order depending +# on the way the tables are stored in the directory. Since we only care +# about output content and not necessary table order, we sort and uniq +# the output before we diff. +# +$FWTS --log-format="%line %owner " -w 80 -t $HERE acpidump - | grep "^[0-9]*[ ]*acpidump" | cut -c7- | sort | uniq > $TMPLOG +sort $HERE/acpidump-0001.log > $SORTED +diff $TMPLOG $SORTED >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG $SORTED +exit $ret Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/TMOR.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/TMOR.dat differ Binary files /tmp/bBsefJE_xO/fwts-14.02.00/fwts-test/arg-table-path-0001/XSDT.dat and /tmp/aLWXbvJErd/fwts-14.03.00/fwts-test/arg-table-path-0001/XSDT.dat differ diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/klog-0001.log fwts-14.03.00/fwts-test/arg-width-0001/klog-0001.log --- fwts-14.02.00/fwts-test/arg-width-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,9 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog PASSED: Test 1, Found no errors in kernel log. +klog +klog ========================================================== +klog 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/klog-0002.log fwts-14.03.00/fwts-test/arg-width-0001/klog-0002.log --- fwts-14.02.00/fwts-test/arg-width-0001/klog-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/klog-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,8 @@ +klog klog: Scan kernel log for errors and warnings. +klog -------------------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog PASSED: Test 1, Found no errors in kernel log. +klog +klog ==================================================================== +klog 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +klog ==================================================================== diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/klog-0003.log fwts-14.03.00/fwts-test/arg-width-0001/klog-0003.log --- fwts-14.02.00/fwts-test/arg-width-0001/klog-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/klog-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,8 @@ +klog klog: Scan kernel log for errors and warnings. +klog ------------------------------------------------------------------------------ +klog Test 1 of 1: Kernel log error check. +klog PASSED: Test 1, Found no errors in kernel log. +klog +klog ============================================================================== +klog 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +klog ============================================================================== diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/klog-0004.log fwts-14.03.00/fwts-test/arg-width-0001/klog-0004.log --- fwts-14.02.00/fwts-test/arg-width-0001/klog-0004.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/klog-0004.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,8 @@ +klog klog: Scan kernel log for errors and warnings. +klog ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +klog Test 1 of 1: Kernel log error check. +klog PASSED: Test 1, Found no errors in kernel log. +klog +klog ================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================== +klog 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +klog ================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================== diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/klog.txt fwts-14.03.00/fwts-test/arg-width-0001/klog.txt --- fwts-14.02.00/fwts-test/arg-width-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,8 @@ +00014 klog Scan kernel log for errors and warnings. +00015 klog --------------------------------------------------------- +00016 klog Cannot read kernel log. +00017 klog Aborted test, initialisation failed. +00018 klog ========================================================= +00019 klog 0 passed, 0 failed, 0 warnings, 1 aborted, 0 skipped, 0 +00020 klog info only. +00021 klog ========================================================= diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0001.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0001.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -w 80" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0002.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0002.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -w 90" +NAME=test-0002.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 90 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0003.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0003.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -w 100" +NAME=test-0003.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 100 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0004.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0004.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0004.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0004.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test -w 1000" +NAME=test-0004.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 1000 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0004.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0005.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0005.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0005.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0005.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-width=80" +NAME=test-0005.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " --log-width=80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0006.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0006.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0006.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0006.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-width=90" +NAME=test-0006.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " --log-width=90 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0007.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0007.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0007.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0007.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-width=100" +NAME=test-0007.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " --log-width=100 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/arg-width-0001/test-0008.sh fwts-14.03.00/fwts-test/arg-width-0001/test-0008.sh --- fwts-14.02.00/fwts-test/arg-width-0001/test-0008.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/arg-width-0001/test-0008.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test --log-width=1000" +NAME=test-0008.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " --log-width=1000 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/arg-width-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/arg-width-0001/klog-0004.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/checksum-0001/acpidump-0001.log fwts-14.03.00/fwts-test/checksum-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/checksum-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/checksum-0001/acpidump-0003.log fwts-14.03.00/fwts-test/checksum-0001/acpidump-0003.log --- fwts-14.02.00/fwts-test/checksum-0001/acpidump-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/acpidump-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 10 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/checksum-0001/acpidump-0004.log fwts-14.03.00/fwts-test/checksum-0001/acpidump-0004.log --- fwts-14.02.00/fwts-test/checksum-0001/acpidump-0004.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/acpidump-0004.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 12 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a6 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 01 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ef 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 00 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 dd 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 de 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c3 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/checksum-0001/checksum-0001.log fwts-14.03.00/fwts-test/checksum-0001/checksum-0001.log --- fwts-14.02.00/fwts-test/checksum-0001/checksum-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/checksum-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,24 @@ +checksum checksum: ACPI table checksum test. +checksum -------------------------------------------------------------------------------------------------- +checksum Test 1 of 1: ACPI table checksum test. +checksum PASSED: Test 1, Table DSDT has correct checksum 0x11 +checksum PASSED: Test 1, Table FACP has correct checksum 0x52 +checksum PASSED: Test 1, Table APIC has correct checksum 0xcc +checksum PASSED: Test 1, Table HPET has correct checksum 0x0a +checksum PASSED: Test 1, Table MCFG has correct checksum 0x32 +checksum PASSED: Test 1, Table TCPA has correct checksum 0x8f +checksum PASSED: Test 1, Table TMOR has correct checksum 0xeb +checksum PASSED: Test 1, Table SLIC has correct checksum 0x99 +checksum PASSED: Test 1, Table APIC has correct checksum 0x13 +checksum PASSED: Test 1, Table BOOT has correct checksum 0xa5 +checksum PASSED: Test 1, Table SSDT has correct checksum 0x59 +checksum PASSED: Test 1, Table SSDT has correct checksum 0xed +checksum PASSED: Test 1, Table SSDT has correct checksum 0xc8 +checksum PASSED: Test 1, Table SSDT has correct checksum 0x6d +checksum PASSED: Test 1, Table SSDT has correct checksum 0xdf +checksum PASSED: Test 1, Table XSDT has correct checksum 0xc2 +checksum PASSED: Test 1, Table RSDT has correct checksum 0x0d +checksum +checksum ================================================================================================== +checksum 19 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +checksum ================================================================================================== diff -Nru fwts-14.02.00/fwts-test/checksum-0001/checksum-0003.log fwts-14.03.00/fwts-test/checksum-0001/checksum-0003.log --- fwts-14.02.00/fwts-test/checksum-0001/checksum-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/checksum-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,30 @@ +checksum checksum: ACPI table checksum test. +checksum -------------------------------------------------------------------------------------------------- +checksum Test 1 of 1: ACPI table checksum test. +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table DSDT has incorrect checksum, expected 0x11, got +checksum 0x10. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum PASSED: Test 1, Table FACP has correct checksum 0x52 +checksum PASSED: Test 1, Table APIC has correct checksum 0xcc +checksum PASSED: Test 1, Table HPET has correct checksum 0x0a +checksum PASSED: Test 1, Table MCFG has correct checksum 0x32 +checksum PASSED: Test 1, Table TCPA has correct checksum 0x8f +checksum PASSED: Test 1, Table TMOR has correct checksum 0xeb +checksum PASSED: Test 1, Table SLIC has correct checksum 0x99 +checksum PASSED: Test 1, Table APIC has correct checksum 0x13 +checksum PASSED: Test 1, Table BOOT has correct checksum 0xa5 +checksum PASSED: Test 1, Table SSDT has correct checksum 0x59 +checksum PASSED: Test 1, Table SSDT has correct checksum 0xed +checksum PASSED: Test 1, Table SSDT has correct checksum 0xc8 +checksum PASSED: Test 1, Table SSDT has correct checksum 0x6d +checksum PASSED: Test 1, Table SSDT has correct checksum 0xdf +checksum PASSED: Test 1, Table XSDT has correct checksum 0xc2 +checksum PASSED: Test 1, Table RSDT has correct checksum 0x0d +checksum +checksum ================================================================================================== +checksum 18 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +checksum ================================================================================================== diff -Nru fwts-14.02.00/fwts-test/checksum-0001/checksum-0004.log fwts-14.03.00/fwts-test/checksum-0001/checksum-0004.log --- fwts-14.02.00/fwts-test/checksum-0001/checksum-0004.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/checksum-0004.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,114 @@ +checksum checksum: ACPI table checksum test. +checksum -------------------------------------------------------------------------------------------------- +checksum Test 1 of 1: ACPI table checksum test. +checksum PASSED: Test 1, Table DSDT has correct checksum 0x11 +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table FACP has incorrect checksum, expected 0x52, got +checksum 0x53. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table APIC has incorrect checksum, expected 0xcc, got +checksum 0xcb. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table HPET has incorrect checksum, expected 0x0a, got +checksum 0x09. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table MCFG has incorrect checksum, expected 0x32, got +checksum 0x33. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table TCPA has incorrect checksum, expected 0x8f, got +checksum 0xff. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table TMOR has incorrect checksum, expected 0xeb, got +checksum 0xbe. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SLIC has incorrect checksum, expected 0x99, got +checksum 0x88. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table APIC has incorrect checksum, expected 0x13, got +checksum 0x12. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table BOOT has incorrect checksum, expected 0xa5, got +checksum 0xa6. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SSDT has incorrect checksum, expected 0x59, got +checksum 0x01. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SSDT has incorrect checksum, expected 0xed, got +checksum 0xef. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SSDT has incorrect checksum, expected 0xc8, got +checksum 0x00. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SSDT has incorrect checksum, expected 0x6d, got +checksum 0xdd. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table SSDT has incorrect checksum, expected 0xdf, got +checksum 0xde. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum FAILED [MEDIUM] ACPITableChecksum: Test 1, Table XSDT has incorrect checksum, expected 0xc2, got +checksum 0xc3. +checksum +checksum ADVICE: The kernel will warn that this table has an invalid checksum but will ignore the error and +checksum still load it. This is not a critical issue, but should be fixed if possible to avoid the warning +checksum messages. +checksum +checksum PASSED: Test 1, Table RSDT has correct checksum 0x0d +checksum +checksum ================================================================================================== +checksum 4 passed, 15 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +checksum ================================================================================================== diff -Nru fwts-14.02.00/fwts-test/checksum-0001/test-0001.sh fwts-14.03.00/fwts-test/checksum-0001/test-0001.sh --- fwts-14.02.00/fwts-test/checksum-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test checksum against known correct ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/checksum.log.$$ + +$FWTS --log-format="%line %owner " -w 120 --dumpfile=$FWTSTESTDIR/checksum-0001/acpidump-0001.log checksum - | grep "^[0-9]*[ ]*checksum" | grep -v RSDP | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/checksum-0001/checksum-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/checksum-0001/test-0003.sh fwts-14.03.00/fwts-test/checksum-0001/test-0003.sh --- fwts-14.02.00/fwts-test/checksum-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test checksum against incorrect ACPI DSDT table" +NAME=test-0003.sh +TMPLOG=$TMP/checksum.log.$$ + +$FWTS --log-format="%line %owner " -w 120 --dumpfile=$FWTSTESTDIR/checksum-0001/acpidump-0003.log checksum - | grep "^[0-9]*[ ]*checksum" | grep -v RSDP | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/checksum-0001/checksum-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/checksum-0001/test-0004.sh fwts-14.03.00/fwts-test/checksum-0001/test-0004.sh --- fwts-14.02.00/fwts-test/checksum-0001/test-0004.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/checksum-0001/test-0004.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test checksum against incorrect ACPI DSDT table" +NAME=test-0004.sh +TMPLOG=$TMP/checksum.log.$$ + +$FWTS --log-format="%line %owner " -w 120 --dumpfile=$FWTSTESTDIR/checksum-0001/acpidump-0004.log checksum - | grep "^[0-9]*[ ]*checksum" | grep -v RSDP | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/checksum-0001/checksum-0004.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/acpidump.log fwts-14.03.00/fwts-test/disassemble-0001/acpidump.log --- fwts-14.02.00/fwts-test/disassemble-0001/acpidump.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/acpidump.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1861 @@ +RSDP @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + +RSDT @ 0xbf6d8794 + 0000: 52 53 44 54 58 00 00 00 01 43 4c 45 4e 4f 56 4f RSDTX....CLENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 5e fb 6d bf c6 fc 6d bf 2e fd 6d bf ....^.m...m...m. + 0030: 66 fd 6d bf d8 ff 6d bf d4 fd 6d bf fa fd 6d bf f.m...m...m...m. + 0040: 70 ff 6d bf bd 98 6d bf 1a 98 6d bf 10 8e 6d bf p.m...m...m...m. + 0050: 6a 8d 6d bf 84 88 6d bf j.m...m. + +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +FACP @ 0xbf6dfbd2 + 0000: 46 41 43 50 f4 00 00 00 03 52 54 4f 53 43 50 4c FACP.....RTOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 41 4c 41 4e CRESTLNE....ALAN + 0020: 01 00 00 00 c0 2f 6e bf 6a 9b 6d bf 00 02 09 00 ...../n.j.m..... + 0030: b2 00 00 00 f0 f1 00 80 00 10 00 00 00 00 00 00 ................ + 0040: 04 10 00 00 00 00 00 00 20 10 00 00 08 10 00 00 ........ ....... + 0050: 28 10 00 00 00 00 00 00 04 02 01 04 08 00 00 85 (............... + 0060: 01 00 23 00 00 00 00 00 01 03 0d 00 32 00 00 00 ..#.........2... + 0070: a5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 00 c0 2f 6e bf 00 00 00 00 6a 9b 6d bf ...../n.....j.m. + 0090: 00 00 00 00 01 20 00 00 00 10 00 00 00 00 00 00 ..... .......... + 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00 ................ + 00b0: 04 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00c0: 00 00 00 00 01 08 00 00 20 10 00 00 00 00 00 00 ........ ....... + 00d0: 01 20 00 00 08 10 00 00 00 00 00 00 01 40 00 00 . ...........@.. + 00e0: 28 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (............... + 00f0: 00 00 00 00 .... + +TCPA @ 0xbf6dfda2 + 0000: 54 43 50 41 32 00 00 00 01 8f 49 6e 74 65 6c 20 TCPA2.....Intel + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 4c 4f 48 52 CRESTLNE....LOHR + 0020: 5a 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 Z............... + 0030: 00 00 .. + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/disassemble-aml-0001.log fwts-14.03.00/fwts-test/disassemble-0001/disassemble-aml-0001.log --- fwts-14.02.00/fwts-test/disassemble-0001/disassemble-aml-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/disassemble-aml-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,6 @@ +Disassembled DSDT to /tmp/disassemble-aml/DSDT.dsl +Disassembled SSDT 0 to /tmp/disassemble-aml/SSDT0.dsl +Disassembled SSDT 1 to /tmp/disassemble-aml/SSDT1.dsl +Disassembled SSDT 2 to /tmp/disassemble-aml/SSDT2.dsl +Disassembled SSDT 3 to /tmp/disassemble-aml/SSDT3.dsl +Disassembled SSDT 4 to /tmp/disassemble-aml/SSDT4.dsl diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/DSDT.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/DSDT.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/DSDT.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/DSDT.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,6636 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_DSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "DSDT" + * Length 0x00005FF4 (24564) + * Revision 0x02 + * Checksum 0x11 + * OEM ID "TOSCPL" + * OEM Table ID "CRESTLNE" + * OEM Revision 0x06040000 (100925440) + * Compiler ID "INTL" + * Compiler Version 0x20060608 (537265672) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_DSDT.aml", "DSDT", 2, "TOSCPL", "CRESTLNE", 0x06040000) +{ + + External (_PR_.CPU0._PPC) + External (CFGD) + External (PDC0) + External (PDC1) + + Name (Z000, One) + Name (Z001, 0x02) + Name (Z002, 0x04) + Name (Z003, 0x08) + Name (Z004, Zero) + Name (Z005, 0x0F) + Name (Z006, 0x0D) + Name (Z007, 0x0B) + Name (Z008, 0x09) + Name (ECDY, 0x07) + Mutex (MUTX, 0x00) + OperationRegion (PRT0, SystemIO, 0x80, 0x04) + Field (PRT0, DWordAcc, Lock, Preserve) + { + P80H, 32 + } + + Method (P8XH, 2, Serialized) + { + If (LEqual (Arg0, Zero)) + { + Store (Or (And (P80D, 0xFFFFFF00), Arg1), P80D) + } + + If (LEqual (Arg0, One)) + { + Store (Or (And (P80D, 0xFFFF00FF), ShiftLeft (Arg1, 0x08) + ), P80D) + } + + If (LEqual (Arg0, 0x02)) + { + Store (Or (And (P80D, 0xFF00FFFF), ShiftLeft (Arg1, 0x10) + ), P80D) + } + + If (LEqual (Arg0, 0x03)) + { + Store (Or (And (P80D, 0x00FFFFFF), ShiftLeft (Arg1, 0x18) + ), P80D) + } + + Store (P80D, P80H) + } + + Method (_PIC, 1, NotSerialized) // _PIC: Interrupt Model + { + Store (Arg0, GPIC) + } + + Method (_PTS, 1, NotSerialized) // _PTS: Prepare To Sleep + { + Store (Zero, P80D) + P8XH (Zero, Arg0) + If (LEqual (Arg0, 0x03)) + { + Store (One, \_SB.PCI0.LPCB.EC0.S3LD) + } + + If (LEqual (Arg0, 0x04)) + { + Store (One, \_SB.PCI0.LPCB.EC0.S3LD) + \_SB.PCI0.LPCB.PHSS (0x0E) + } + } + + Method (_WAK, 1, NotSerialized) // _WAK: Wake + { + P8XH (One, 0xAB) + If (LOr (LEqual (Arg0, 0x03), LEqual (Arg0, 0x04))) + { + If (And (CFGD, 0x01000000)) + { + If (LAnd (And (CFGD, 0xF0), LEqual (OSYS, 0x07D1))) + { + TRAP (0x3D) + } + } + } + + If (LEqual (RP1D, Zero)) + { + Notify (\_SB.PCI0.RP01, Zero) + } + + If (LEqual (RP2D, Zero)) + { + Notify (\_SB.PCI0.RP02, Zero) + } + + If (LEqual (RP3D, Zero)) + { + Notify (\_SB.PCI0.RP03, Zero) + } + + If (LEqual (RP4D, Zero)) + { + Notify (\_SB.PCI0.RP04, Zero) + } + + If (LEqual (RP5D, Zero)) + { + Notify (\_SB.PCI0.RP05, Zero) + } + + If (LEqual (RP6D, Zero)) + { + Notify (\_SB.PCI0.RP06, Zero) + } + + If (LEqual (Arg0, 0x03)) + { + P8XH (Zero, 0x30) + TRAP (0x46) + } + + If (LEqual (Arg0, 0x04)) + { + P8XH (Zero, 0x40) + \_SB.PCI0.LPCB.PHSS (0x0F) + Store (WAKF, Local0) + Store (Zero, WAKF) + And (Local0, 0x05, Local0) + If (LEqual (Local0, One)) + { + P8XH (Zero, 0x41) + Notify (\_SB.PWRB, 0x02) + } + + If (DTSE) + { + TRAP (0x47) + If (LAnd (\_SB.PCI0.LPCB.ECOK (), LEqual (ECDY, Zero))) + { + If (LGreaterEqual (DTS1, DTS2)) + { + Store (DTS1, \_SB.PCI0.LPCB.EC0.SKTA) + } + Else + { + Store (DTS2, \_SB.PCI0.LPCB.EC0.SKTA) + } + } + Else + { + \_SB.PCI0.LPCB.PHSS (0x10) + } + } + } + + \_PR.RPPC () + Return (Package (0x02) + { + Zero, + Zero + }) + } + + Method (GETB, 3, Serialized) + { + Multiply (Arg0, 0x08, Local0) + Multiply (Arg1, 0x08, Local1) + CreateField (Arg2, Local0, Local1, TBF3) + Return (TBF3) + } + + Method (PNOT, 0, Serialized) + { + If (MPEN) + { + If (And (PDC0, 0x08)) + { + Notify (\_PR.CPU0, 0x80) + If (And (PDC0, 0x10)) + { + Sleep (0x64) + Notify (\_PR.CPU0, 0x81) + } + } + + If (And (PDC1, 0x08)) + { + Notify (\_PR.CPU1, 0x80) + If (And (PDC1, 0x10)) + { + Sleep (0x64) + Notify (\_PR.CPU1, 0x81) + } + } + } + Else + { + Notify (\_PR.CPU0, 0x80) + Sleep (0x64) + Notify (\_PR.CPU0, 0x81) + } + } + + Method (TRAP, 1, Serialized) + { + Store (Arg0, SMIF) + Store (Zero, TRP0) + Return (SMIF) + } + + Scope (_SB) + { + Method (_INI, 0, NotSerialized) // _INI: Initialize + { + Store (0x9999, MARK) + If (DTSE) + { + TRAP (0x47) + ^PCI0.LPCB.PHSS (0x10) + } + + Store (0x07D0, OSYS) + If (CondRefOf (_OSI, Local0)) + { + If (_OSI ("Linux")) + { + Store (One, LINX) + Store (Zero, ECDY) + } + + If (_OSI ("Windows 2001")) + { + Store (0x07D1, OSYS) + } + + If (_OSI ("Windows 2001 SP1")) + { + Store (0x07D1, OSYS) + } + + If (_OSI ("Windows 2001 SP2")) + { + Store (0x07D2, OSYS) + } + + If (_OSI ("Windows 2006")) + { + Store (0x07D6, OSYS) + } + } + + If (LAnd (MPEN, LEqual (OSYS, 0x07D1))) + { + TRAP (0x3D) + } + + TRAP (0x2B) + } + } + + OperationRegion (GNVS, SystemMemory, 0xBF6E2DBC, 0x0100) + Field (GNVS, AnyAcc, Lock, Preserve) + { + OSYS, 16, + SMIF, 8, + PRM0, 8, + PRM1, 8, + SCIF, 8, + PRM2, 8, + PRM3, 8, + LCKF, 8, + PRM4, 8, + PRM5, 8, + P80D, 32, + LIDS, 8, + PWRS, 8, + DBGS, 8, + LINX, 8, + Offset (0x14), + ACT1, 8, + ACTT, 8, + PSVT, 8, + TC1V, 8, + TC2V, 8, + TSPV, 8, + CRTT, 8, + DTSE, 8, + DTS1, 8, + DTS2, 8, + Offset (0x28), + APIC, 8, + MPEN, 8, + PCP0, 8, + PCP1, 8, + PPCM, 8, + Offset (0x32), + CMAP, 8, + CMBP, 8, + LPTP, 8, + FDCP, 8, + Offset (0x3C), + IGDS, 8, + TLST, 8, + CADL, 8, + PADL, 8, + CSTE, 16, + NSTE, 16, + SSTE, 16, + NDID, 8, + DID1, 32, + DID2, 32, + DID3, 32, + DID4, 32, + DID5, 32, + Offset (0x67), + BLCS, 8, + BRTL, 8, + ALSE, 8, + ALAF, 8, + LLOW, 8, + LHIH, 8, + Offset (0x6E), + EMAE, 8, + EMAP, 16, + EMAL, 16, + Offset (0x74), + MEFE, 8, + Offset (0x78), + TPMP, 8, + TPME, 8, + Offset (0x82), + GTF0, 56, + GTF2, 56, + IDEM, 8, + GTF1, 56, + Offset (0xAA), + ASLB, 32, + IBTT, 8, + IPAT, 8, + ITVF, 8, + ITVM, 8, + IPSC, 8, + IBLC, 8, + IBIA, 8, + ISSC, 8, + I409, 8, + I509, 8, + I609, 8, + I709, 8, + IDMM, 8, + IDMS, 8, + IF1E, 8, + HVCO, 8, + NXD1, 32, + NXD2, 32, + MARK, 16, + BRAD, 8, + BTEN, 8, + VVEN, 8, + BGTL, 8, + TMEE, 1, + Offset (0xCD), + SCU0, 1, + SCU1, 1, + SCU2, 1, + SCU3, 1, + Offset (0xCE), + XKSP, 1, + XKIN, 1, + XKID, 1, + XKOK, 1, + Offset (0xCF), + BGU1, 8, + BST1, 8, + BFC1, 16, + WKLN, 8, + WAKF, 8, + DSMD, 8, + BAYS, 8, + HAPE, 1, + Offset (0xD8), + DTSM, 1, + Offset (0xD9), + ODT1, 8, + ODT2, 8, + DTSW, 8 + } + + Name (DSEN, One) + Name (ECON, Zero) + Name (GPIC, Zero) + Name (CTYP, Zero) + Name (L01C, Zero) + Name (VFN0, Zero) + Name (VFN1, Zero) + Scope (_GPE) + { + Method (_L01, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Add (L01C, One, L01C) + P8XH (Zero, One) + P8XH (One, L01C) + If (LAnd (LEqual (RP1D, Zero), \_SB.PCI0.RP01.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP01.PDCX) + { + Store (One, \_SB.PCI0.RP01.PDCX) + Store (One, \_SB.PCI0.RP01.HPSX) + Notify (\_SB.PCI0.RP01, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP01.HPSX) + } + } + + If (LAnd (LEqual (RP2D, Zero), \_SB.PCI0.RP02.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP02.PDCX) + { + Store (One, \_SB.PCI0.RP02.PDCX) + Store (One, \_SB.PCI0.RP02.HPSX) + Notify (\_SB.PCI0.RP02, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP02.HPSX) + } + } + + If (LAnd (LEqual (RP3D, Zero), \_SB.PCI0.RP03.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP03.PDCX) + { + Store (One, \_SB.PCI0.RP03.PDCX) + Store (One, \_SB.PCI0.RP03.HPSX) + Notify (\_SB.PCI0.RP03, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP03.HPSX) + } + } + + If (LAnd (LEqual (RP4D, Zero), \_SB.PCI0.RP04.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP04.PDCX) + { + Store (One, \_SB.PCI0.RP04.PDCX) + Store (One, \_SB.PCI0.RP04.HPSX) + Notify (\_SB.PCI0.RP04, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP04.HPSX) + } + } + + If (LAnd (LEqual (RP5D, Zero), \_SB.PCI0.RP05.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP05.PDCX) + { + Store (One, \_SB.PCI0.RP05.PDCX) + Store (One, \_SB.PCI0.RP05.HPSX) + Notify (\_SB.PCI0.RP05, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP05.HPSX) + } + } + + If (LAnd (LEqual (RP6D, Zero), \_SB.PCI0.RP06.HPSX)) + { + Sleep (0x64) + If (\_SB.PCI0.RP06.PDCX) + { + Store (One, \_SB.PCI0.RP06.PDCX) + Store (One, \_SB.PCI0.RP06.HPSX) + Notify (\_SB.PCI0.RP06, Zero) + } + Else + { + Store (One, \_SB.PCI0.RP06.HPSX) + } + } + } + + Method (_L02, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Store (Zero, GPEC) + If (\_SB.PCI0.LPCB.ECOK ()) + { + If (LEqual (DTSW, One)) + { + If (LGreaterEqual (DTS1, DTS2)) + { + Store (DTS1, \_SB.PCI0.LPCB.EC0.SKTA) + } + Else + { + Store (DTS2, \_SB.PCI0.LPCB.EC0.SKTA) + } + } + Else + { + If (LGreaterEqual (ODT1, ODT2)) + { + Store (ODT1, \_SB.PCI0.LPCB.EC0.SKTA) + } + Else + { + Store (ODT2, \_SB.PCI0.LPCB.EC0.SKTA) + } + } + } + Else + { + \_SB.PCI0.LPCB.PHSS (0x10) + } + } + + Method (_L03, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.USB1, 0x02) + } + + Method (_L04, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.USB2, 0x02) + } + + Method (_L05, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.USB5, 0x02) + } + + Method (_L06, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + If (\_SB.PCI0.GFX0.GSSE) + { + \_SB.PCI0.GFX0.GSCI () + } + Else + { + Store (One, SCIS) + } + } + + Method (_L09, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + If (\_SB.PCI0.RP01.PSPX) + { + Store (One, \_SB.PCI0.RP01.PSPX) + Store (One, \_SB.PCI0.RP01.PMSX) + Notify (\_SB.PCI0.RP01, 0x02) + } + + If (\_SB.PCI0.RP02.PSPX) + { + Store (One, \_SB.PCI0.RP02.PSPX) + Store (One, \_SB.PCI0.RP02.PMSX) + Notify (\_SB.PCI0.RP02, 0x02) + } + + If (\_SB.PCI0.RP03.PSPX) + { + Store (One, \_SB.PCI0.RP03.PSPX) + Store (One, \_SB.PCI0.RP03.PMSX) + Notify (\_SB.PCI0.RP03, 0x02) + } + + If (\_SB.PCI0.RP04.PSPX) + { + Store (One, \_SB.PCI0.RP04.PSPX) + Store (One, \_SB.PCI0.RP04.PMSX) + Notify (\_SB.PCI0.RP04, 0x02) + } + + If (\_SB.PCI0.RP05.PSPX) + { + Store (One, \_SB.PCI0.RP05.PSPX) + Store (One, \_SB.PCI0.RP05.PMSX) + Notify (\_SB.PCI0.RP05, 0x02) + } + + If (\_SB.PCI0.RP06.PSPX) + { + Store (One, \_SB.PCI0.RP06.PSPX) + Store (One, \_SB.PCI0.RP06.PMSX) + Notify (\_SB.PCI0.RP06, 0x02) + } + } + + Method (_L0B, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.PCIB, 0x02) + } + + Method (_L0C, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.USB3, 0x02) + } + + Method (_L0D, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + If (\_SB.PCI0.EHC1.PMES) + { + Store (One, \_SB.PCI0.EHC1.PMES) + Notify (\_SB.PCI0.EHC1, 0x02) + } + + If (\_SB.PCI0.EHC2.PMES) + { + Store (One, \_SB.PCI0.EHC2.PMES) + Notify (\_SB.PCI0.EHC2, 0x02) + } + + If (\_SB.PCI0.HDEF.PMES) + { + Store (One, \_SB.PCI0.HDEF.PMES) + Notify (\_SB.PCI0.HDEF, 0x02) + } + } + + Method (_L0E, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Notify (\_SB.PCI0.USB4, 0x02) + } + + Method (_L1B, 0, NotSerialized) // _Lxx: Level-Triggered GPE + { + Not (LPOL, LPOL) + Notify (\_SB.LID0, 0x80) + } + } + + Scope (_PR) + { + Processor (CPU0, 0x00, 0x00001010, 0x06) {} + Processor (CPU1, 0x01, 0x00001010, 0x06) {} + Method (RPPC, 0, NotSerialized) + { + If (LEqual (OSYS, 0x07D2)) + { + If (And (CFGD, One)) + { + If (LGreater (^CPU0._PPC, Zero)) + { + Subtract (^CPU0._PPC, One, ^CPU0._PPC) + PNOT () + Add (^CPU0._PPC, One, ^CPU0._PPC) + PNOT () + } + Else + { + Add (^CPU0._PPC, One, ^CPU0._PPC) + PNOT () + Subtract (^CPU0._PPC, One, ^CPU0._PPC) + PNOT () + } + } + } + } + } + + Name (FWSO, "FWSO") + Name (_PSC, Zero) // _PSC: Power State Current + Method (_PS0, 0, NotSerialized) // _PS0: Power State 0 + { + Store (_PSC, Local0) + Store (Zero, _PSC) + } + + Method (_PS3, 0, NotSerialized) // _PS3: Power State 3 + { + Store (0x03, _PSC) + } + + Scope (_SB) + { + Device (AMW0) + { + Name (_HID, "pnp0c14") // _HID: Hardware ID + Name (_UID, Zero) // _UID: Unique ID + Name (_WDG, Buffer (0x3C) + { + /* 0000 */ 0xA7, 0x1D, 0x85, 0x2E, 0x53, 0xD0, 0x5F, 0x49, + /* 0008 */ 0x9D, 0xFA, 0x1A, 0x4A, 0xD6, 0x2E, 0x6A, 0x86, + /* 0010 */ 0x41, 0x43, 0x01, 0x00, 0x3B, 0x6D, 0x43, 0x71, + /* 0018 */ 0xDD, 0xFB, 0x72, 0x4C, 0xBC, 0xB8, 0x43, 0x5B, + /* 0020 */ 0xFE, 0x0D, 0x64, 0xF9, 0x42, 0x43, 0x01, 0x00, + /* 0028 */ 0x21, 0x12, 0x90, 0x05, 0x66, 0xD5, 0xD1, 0x11, + /* 0030 */ 0xB2, 0xF0, 0x00, 0xA0, 0xC9, 0x06, 0x29, 0x10, + /* 0038 */ 0x42, 0x41, 0x01, 0x00 + }) + Name (STAC, Buffer (0x04) + { + 0x01, 0x14, 0x03, 0x00 + }) + Method (WQAC, 1, NotSerialized) + { + Store ("MXMTCConfigData", Debug) + Return (STAC) + } + + Name (STBC, Buffer (0x04) + { + 0x01, 0x00, 0x00, 0x00 + }) + Method (WQBC, 1, NotSerialized) + { + Store ("Get MXMTCControlData: STBC = ", Debug) + Store (STBC, Debug) + Return (STBC) + } + + Method (WSBC, 2, NotSerialized) + { + Store (Arg1, STBC) + Store ("Set MXMTCControlData: STBC = ", Debug) + Store (STBC, Debug) + If (LEqual (^^PCI0.LPCB.ECOK (), One)) + { + Store (DerefOf (Index (STBC, One)), ^^PCI0.LPCB.EC0.SKTC) + } + } + + Name (WQBA, Buffer (0x02AE) + { + /* 0000 */ 0x46, 0x4F, 0x4D, 0x42, 0x01, 0x00, 0x00, 0x00, + /* 0008 */ 0x9E, 0x02, 0x00, 0x00, 0xC0, 0x0B, 0x00, 0x00, + /* 0010 */ 0x44, 0x53, 0x00, 0x01, 0x1A, 0x7D, 0xDA, 0x54, + /* 0018 */ 0x28, 0xD9, 0x85, 0x00, 0x01, 0x06, 0x18, 0x42, + /* 0020 */ 0x10, 0x07, 0x10, 0x0A, 0x4B, 0x61, 0x02, 0xC9, + /* 0028 */ 0x21, 0x52, 0x3C, 0x18, 0x94, 0x05, 0x10, 0x43, + /* 0030 */ 0x88, 0x57, 0x04, 0x44, 0x04, 0x84, 0xBC, 0x0A, + /* 0038 */ 0xB0, 0x29, 0xC0, 0x24, 0x88, 0xFA, 0xF7, 0x87, + /* 0040 */ 0x28, 0x09, 0x0E, 0x25, 0x04, 0x42, 0x12, 0x05, + /* 0048 */ 0x98, 0x17, 0xA0, 0x5B, 0x80, 0x61, 0x01, 0xB6, + /* 0050 */ 0x05, 0x98, 0x16, 0xE0, 0x18, 0x92, 0x4A, 0x03, + /* 0058 */ 0xA7, 0x04, 0x96, 0x02, 0x21, 0xA1, 0x02, 0x94, + /* 0060 */ 0x0B, 0xF0, 0x2D, 0x40, 0x3B, 0xA2, 0x24, 0x0B, + /* 0068 */ 0xB0, 0x0C, 0x23, 0x02, 0x8F, 0x82, 0xA1, 0x71, + /* 0070 */ 0x68, 0xEC, 0x30, 0x2C, 0x13, 0x4C, 0x83, 0x38, + /* 0078 */ 0x8C, 0xB2, 0x91, 0x45, 0x60, 0xDC, 0x4E, 0x05, + /* 0080 */ 0xC8, 0x15, 0x20, 0x4C, 0x80, 0x78, 0x54, 0x61, + /* 0088 */ 0x34, 0x07, 0x45, 0xE0, 0x42, 0x63, 0x64, 0x40, + /* 0090 */ 0xC8, 0xA3, 0x00, 0xAB, 0xA3, 0xD0, 0xA4, 0x12, + /* 0098 */ 0xD8, 0xBD, 0x00, 0x65, 0x02, 0x2C, 0x0A, 0x10, + /* 00A0 */ 0x27, 0xC0, 0x9A, 0x00, 0x63, 0x48, 0x32, 0x28, + /* 00A8 */ 0x40, 0x9B, 0x00, 0x5B, 0x20, 0x42, 0x0F, 0xD4, + /* 00B0 */ 0x19, 0x8A, 0x46, 0x70, 0x02, 0x51, 0x6A, 0x46, + /* 00B8 */ 0x11, 0x48, 0xAC, 0x1A, 0x01, 0x85, 0x12, 0x34, + /* 00C0 */ 0x46, 0xB0, 0x10, 0x81, 0xC2, 0x86, 0x37, 0x46, + /* 00C8 */ 0x98, 0x03, 0x88, 0xD1, 0xFE, 0x20, 0x48, 0x20, + /* 00D0 */ 0x05, 0xE3, 0x66, 0x91, 0x46, 0x83, 0x1A, 0x6B, + /* 00D8 */ 0x82, 0x63, 0xF7, 0x68, 0x4E, 0xB8, 0x73, 0x01, + /* 00E0 */ 0xD2, 0xE7, 0x26, 0x90, 0xA3, 0x3B, 0xB8, 0x3A, + /* 00E8 */ 0x07, 0x4D, 0x86, 0xC7, 0xB0, 0x1E, 0x06, 0xD8, + /* 00F0 */ 0x29, 0x00, 0xEF, 0x1A, 0x50, 0xD3, 0x3F, 0x78, + /* 00F8 */ 0x26, 0x08, 0x0E, 0x35, 0x44, 0x8F, 0x3A, 0xDC, + /* 0100 */ 0x09, 0x1C, 0xFB, 0x91, 0x30, 0x88, 0xB3, 0x3B, + /* 0108 */ 0x6E, 0xAC, 0xC3, 0xC9, 0x68, 0xD0, 0xA5, 0x0A, + /* 0110 */ 0x30, 0x7B, 0x00, 0xD0, 0xD0, 0x12, 0x9C, 0xF6, + /* 0118 */ 0x99, 0x84, 0x7E, 0x0F, 0x38, 0x9F, 0x9E, 0x21, + /* 0120 */ 0x89, 0xFC, 0x41, 0xA0, 0x46, 0xE6, 0xFF, 0x3F, + /* 0128 */ 0xB4, 0xC7, 0x78, 0x5A, 0x31, 0x43, 0x3E, 0x0B, + /* 0130 */ 0x1C, 0x16, 0x13, 0x0B, 0xA1, 0x4D, 0x6A, 0x3C, + /* 0138 */ 0x40, 0x40, 0xE1, 0xD1, 0x40, 0x08, 0x6F, 0x06, + /* 0140 */ 0x9E, 0xAF, 0x09, 0x46, 0x86, 0x90, 0x93, 0xF1, + /* 0148 */ 0xA0, 0x06, 0xE0, 0x41, 0xD7, 0x3A, 0x32, 0x8D, + /* 0150 */ 0x27, 0xA6, 0x21, 0xCF, 0xE8, 0x00, 0x22, 0xBF, + /* 0158 */ 0x32, 0x78, 0x0C, 0x41, 0x02, 0xF9, 0xC4, 0x60, + /* 0160 */ 0xB8, 0xC7, 0x81, 0x13, 0x78, 0x02, 0xF0, 0x59, + /* 0168 */ 0x40, 0x10, 0x92, 0x00, 0x21, 0x51, 0xE3, 0xA7, + /* 0170 */ 0x47, 0x08, 0x7E, 0x7A, 0x78, 0x93, 0x30, 0x28, + /* 0178 */ 0x1F, 0xD2, 0x99, 0xF9, 0x90, 0xE1, 0x11, 0xC2, + /* 0180 */ 0x07, 0xC4, 0x7B, 0x9F, 0x3B, 0x19, 0xC1, 0x29, + /* 0188 */ 0x7B, 0xA4, 0xE0, 0xB0, 0x7E, 0x0E, 0x20, 0xC0, + /* 0190 */ 0xAF, 0x0F, 0x8F, 0x0D, 0x09, 0x7C, 0xAE, 0x08, + /* 0198 */ 0x8C, 0x1D, 0xAA, 0xFD, 0x0A, 0x40, 0x08, 0x1E, + /* 01A0 */ 0xED, 0x51, 0xE0, 0x54, 0x23, 0x1C, 0x2D, 0x78, + /* 01A8 */ 0x08, 0x8A, 0x1C, 0x03, 0x4A, 0xCC, 0x18, 0x50, + /* 01B0 */ 0x03, 0x38, 0x85, 0xD0, 0xE7, 0x73, 0x04, 0x47, + /* 01B8 */ 0x14, 0x25, 0xF6, 0x21, 0x19, 0xDA, 0x08, 0xE1, + /* 01C0 */ 0x1F, 0x39, 0x4E, 0xC1, 0xF7, 0x8B, 0x23, 0x3D, + /* 01C8 */ 0xAD, 0x23, 0x78, 0x91, 0xF0, 0x08, 0x30, 0xE1, + /* 01D0 */ 0xCE, 0x28, 0xA8, 0x38, 0x30, 0xF4, 0xFF, 0x7F, + /* 01D8 */ 0x4C, 0x01, 0xDC, 0x7A, 0x3B, 0xA6, 0x80, 0x3E, + /* 01E0 */ 0xC0, 0x31, 0x05, 0x50, 0xFC, 0xFF, 0x3F, 0xA6, + /* 01E8 */ 0x00, 0x87, 0xA8, 0xC7, 0x14, 0xF4, 0x40, 0x0C, + /* 01F0 */ 0x7C, 0x2E, 0xA1, 0x0D, 0xFF, 0x96, 0xC1, 0x8E, + /* 01F8 */ 0x03, 0x87, 0x74, 0x6A, 0x8F, 0x28, 0x80, 0x29, + /* 0200 */ 0x79, 0x47, 0x14, 0x50, 0x8C, 0x14, 0xD6, 0xF1, + /* 0208 */ 0x04, 0x18, 0x05, 0x3C, 0x9B, 0xA0, 0x22, 0x1D, + /* 0210 */ 0x4F, 0x80, 0xCE, 0xFF, 0xFF, 0x78, 0x02, 0x58, + /* 0218 */ 0xB8, 0x9A, 0xBC, 0x92, 0x84, 0x7D, 0x1E, 0x78, + /* 0220 */ 0x1D, 0x89, 0x14, 0xE3, 0x41, 0xE2, 0xB5, 0xE4, + /* 0228 */ 0xC1, 0x24, 0x46, 0x98, 0x08, 0x8F, 0x27, 0x1E, + /* 0230 */ 0x47, 0xC0, 0xB7, 0x82, 0x28, 0x91, 0x8E, 0x3E, + /* 0238 */ 0xC4, 0x83, 0x49, 0x28, 0x63, 0x3E, 0xA3, 0x84, + /* 0240 */ 0x89, 0xF9, 0x04, 0x70, 0x22, 0xEF, 0x27, 0x46, + /* 0248 */ 0x0A, 0x73, 0x2A, 0x8F, 0x27, 0x2C, 0xC4, 0xF1, + /* 0250 */ 0x04, 0xA0, 0x85, 0xE2, 0xE3, 0x09, 0x3A, 0x2C, + /* 0258 */ 0x84, 0xFE, 0xFF, 0xC7, 0x13, 0xDC, 0xE1, 0xC1, + /* 0260 */ 0xA7, 0x0C, 0xFC, 0x85, 0x0C, 0xC6, 0xF9, 0x04, + /* 0268 */ 0x30, 0x24, 0xF0, 0x7C, 0x02, 0xCA, 0xDB, 0x18, + /* 0270 */ 0xE6, 0x80, 0x02, 0x8C, 0x14, 0xDA, 0xF4, 0xA9, + /* 0278 */ 0xD1, 0xA8, 0x55, 0x83, 0x32, 0x35, 0xCA, 0x34, + /* 0280 */ 0xA8, 0xD5, 0xA7, 0x52, 0x63, 0xC6, 0x4C, 0x9C, + /* 0288 */ 0x52, 0xBC, 0x6C, 0x8D, 0xDF, 0xF2, 0x9E, 0x09, + /* 0290 */ 0x02, 0xB1, 0x20, 0x0A, 0x81, 0x38, 0xCC, 0xF3, + /* 0298 */ 0x42, 0x20, 0x96, 0xA2, 0x01, 0x84, 0x85, 0x06, + /* 02A0 */ 0xA1, 0x42, 0xA9, 0x05, 0xE2, 0x98, 0x20, 0x34, + /* 02A8 */ 0x92, 0x0A, 0x10, 0xF6, 0xFF, 0x07 + }) + } + + Device (LID0) + { + Name (_HID, EisaId ("PNP0C0D")) // _HID: Hardware ID + Method (_LID, 0, NotSerialized) // _LID: Lid Status + { + Return (LPOL) + } + } + + Device (PWRB) + { + Name (_HID, EisaId ("PNP0C0C")) // _HID: Hardware ID + } + + Device (PCI0) + { + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + + Name (_HID, EisaId ("PNP0A08")) // _HID: Hardware ID + Name (_CID, EisaId ("PNP0A03")) // _CID: Compatible ID + Device (MCHC) + { + Name (_ADR, Zero) // _ADR: Address + OperationRegion (HBUS, PCI_Config, 0x40, 0xC0) + Field (HBUS, DWordAcc, NoLock, Preserve) + { + EPEN, 1, + , 11, + EPBR, 20, + Offset (0x08), + MHEN, 1, + , 13, + MHBR, 18, + Offset (0x20), + PXEN, 1, + PXSZ, 2, + , 23, + PXBR, 6, + Offset (0x28), + DIEN, 1, + , 11, + DIBR, 20, + Offset (0x30), + IPEN, 1, + , 11, + IPBR, 20, + Offset (0x50), + , 4, + PM0H, 2, + Offset (0x51), + PM1L, 2, + , 2, + PM1H, 2, + Offset (0x52), + PM2L, 2, + , 2, + PM2H, 2, + Offset (0x53), + PM3L, 2, + , 2, + PM3H, 2, + Offset (0x54), + PM4L, 2, + , 2, + PM4H, 2, + Offset (0x55), + PM5L, 2, + , 2, + PM5H, 2, + Offset (0x56), + PM6L, 2, + , 2, + PM6H, 2, + Offset (0x57), + , 7, + HENA, 1, + Offset (0x62), + TUUD, 16, + Offset (0x70), + , 4, + TLUD, 12 + } + } + + Name (BUF0, ResourceTemplate () + { + WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode, + 0x0000, // Granularity + 0x0000, // Range Minimum + 0x00FF, // Range Maximum + 0x0000, // Translation Offset + 0x0100, // Length + ,, ) + DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange, + 0x00000000, // Granularity + 0x00000000, // Range Minimum + 0x00000CF7, // Range Maximum + 0x00000000, // Translation Offset + 0x00000CF8, // Length + ,, , TypeStatic) + IO (Decode16, + 0x0CF8, // Range Minimum + 0x0CF8, // Range Maximum + 0x01, // Alignment + 0x08, // Length + ) + DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange, + 0x00000000, // Granularity + 0x00000D00, // Range Minimum + 0x0000FFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x0000F300, // Length + ,, , TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000A0000, // Range Minimum + 0x000BFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00020000, // Length + ,, , AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000C0000, // Range Minimum + 0x000C3FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y00, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000C4000, // Range Minimum + 0x000C7FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y01, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000C8000, // Range Minimum + 0x000CBFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y02, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000CC000, // Range Minimum + 0x000CFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y03, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000D0000, // Range Minimum + 0x000D3FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y04, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000D4000, // Range Minimum + 0x000D7FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y05, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000D8000, // Range Minimum + 0x000DBFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y06, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000DC000, // Range Minimum + 0x000DFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y07, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000E0000, // Range Minimum + 0x000E3FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y08, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000E4000, // Range Minimum + 0x000E7FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y09, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000E8000, // Range Minimum + 0x000EBFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y0A, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000EC000, // Range Minimum + 0x000EFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00004000, // Length + ,, _Y0B, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x000F0000, // Range Minimum + 0x000FFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00010000, // Length + ,, _Y0C, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0x00000000, // Range Minimum + 0xDFFFFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00000000, // Length + ,, _Y0D, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0xF0000000, // Range Minimum + 0xFEBFFFFF, // Range Maximum + 0x00000000, // Translation Offset + 0x0EC00000, // Length + ,, _Y0E, AddressRangeMemory, TypeStatic) + DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, + 0x00000000, // Granularity + 0xFED40000, // Range Minimum + 0xFED44FFF, // Range Maximum + 0x00000000, // Translation Offset + 0x00000000, // Length + ,, , AddressRangeMemory, TypeStatic) + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + If (^MCHC.PM1L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y00._LEN, C0LN) // _LEN: Length + Store (Zero, C0LN) + } + + If (LEqual (^MCHC.PM1L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y00._RW, C0RW) // _RW_: Read-Write Status + Store (Zero, C0RW) + } + + If (^MCHC.PM1H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y01._LEN, C4LN) // _LEN: Length + Store (Zero, C4LN) + } + + If (LEqual (^MCHC.PM1H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y01._RW, C4RW) // _RW_: Read-Write Status + Store (Zero, C4RW) + } + + If (^MCHC.PM2L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y02._LEN, C8LN) // _LEN: Length + Store (Zero, C8LN) + } + + If (LEqual (^MCHC.PM2L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y02._RW, C8RW) // _RW_: Read-Write Status + Store (Zero, C8RW) + } + + If (^MCHC.PM2H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y03._LEN, CCLN) // _LEN: Length + Store (Zero, CCLN) + } + + If (LEqual (^MCHC.PM2H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y03._RW, CCRW) // _RW_: Read-Write Status + Store (Zero, CCRW) + } + + If (^MCHC.PM3L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y04._LEN, D0LN) // _LEN: Length + Store (Zero, D0LN) + } + + If (LEqual (^MCHC.PM3L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y04._RW, D0RW) // _RW_: Read-Write Status + Store (Zero, D0RW) + } + + If (^MCHC.PM3H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y05._LEN, D4LN) // _LEN: Length + Store (Zero, D4LN) + } + + If (LEqual (^MCHC.PM3H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y05._RW, D4RW) // _RW_: Read-Write Status + Store (Zero, D4RW) + } + + If (^MCHC.PM4L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y06._LEN, D8LN) // _LEN: Length + Store (Zero, D8LN) + } + + If (LEqual (^MCHC.PM4L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y06._RW, D8RW) // _RW_: Read-Write Status + Store (Zero, D8RW) + } + + If (^MCHC.PM4H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y07._LEN, DCLN) // _LEN: Length + Store (Zero, DCLN) + } + + If (LEqual (^MCHC.PM4H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y07._RW, DCRW) // _RW_: Read-Write Status + Store (Zero, DCRW) + } + + If (^MCHC.PM5L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y08._LEN, E0LN) // _LEN: Length + Store (Zero, E0LN) + } + + If (LEqual (^MCHC.PM5L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y08._RW, E0RW) // _RW_: Read-Write Status + Store (Zero, E0RW) + } + + If (^MCHC.PM5H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y09._LEN, E4LN) // _LEN: Length + Store (Zero, E4LN) + } + + If (LEqual (^MCHC.PM5H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y09._RW, E4RW) // _RW_: Read-Write Status + Store (Zero, E4RW) + } + + If (^MCHC.PM6L) + { + CreateDWordField (BUF0, \_SB.PCI0._Y0A._LEN, E8LN) // _LEN: Length + Store (Zero, E8LN) + } + + If (LEqual (^MCHC.PM6L, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y0A._RW, E8RW) // _RW_: Read-Write Status + Store (Zero, E8RW) + } + + If (^MCHC.PM6H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y0B._LEN, ECLN) // _LEN: Length + Store (Zero, ECLN) + } + + If (LEqual (^MCHC.PM6H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y0B._RW, ECRW) // _RW_: Read-Write Status + Store (Zero, ECRW) + } + + If (^MCHC.PM0H) + { + CreateDWordField (BUF0, \_SB.PCI0._Y0C._LEN, F0LN) // _LEN: Length + Store (Zero, F0LN) + } + + If (LEqual (^MCHC.PM0H, One)) + { + CreateBitField (BUF0, \_SB.PCI0._Y0C._RW, F0RW) // _RW_: Read-Write Status + Store (Zero, F0RW) + } + + CreateDWordField (BUF0, \_SB.PCI0._Y0D._MIN, M1MN) // _MIN: Minimum Base Address + CreateDWordField (BUF0, \_SB.PCI0._Y0D._MAX, M1MX) // _MAX: Maximum Base Address + CreateDWordField (BUF0, \_SB.PCI0._Y0D._LEN, M1LN) // _LEN: Length + CreateDWordField (BUF0, \_SB.PCI0._Y0E._MIN, M2MN) // _MIN: Minimum Base Address + CreateDWordField (BUF0, \_SB.PCI0._Y0E._MAX, M2MX) // _MAX: Maximum Base Address + CreateDWordField (BUF0, \_SB.PCI0._Y0E._LEN, M2LN) // _LEN: Length + ShiftLeft (^MCHC.PXBR, 0x1A, M1MX) + ShiftRight (0x10000000, ^MCHC.PXSZ, Local0) + Add (M1MX, Local0, M2MN) + Add (Subtract (M2MX, M2MN), One, M2LN) + Subtract (M1MX, One, M1MX) + ShiftLeft (^MCHC.TLUD, 0x14, M1MN) + Add (Subtract (M1MX, M1MN), One, M1LN) + Return (BUF0) + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x13) + { + Package (0x04) + { + 0x0001FFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0x0002FFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0x0007FFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0x0019FFFF, + Zero, + Zero, + 0x14 + }, + + Package (0x04) + { + 0x001AFFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0x001AFFFF, + One, + Zero, + 0x15 + }, + + Package (0x04) + { + 0x001AFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0x001BFFFF, + Zero, + Zero, + 0x16 + }, + + Package (0x04) + { + 0x001CFFFF, + Zero, + Zero, + 0x11 + }, + + Package (0x04) + { + 0x001CFFFF, + One, + Zero, + 0x10 + }, + + Package (0x04) + { + 0x001CFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0x001CFFFF, + 0x03, + Zero, + 0x13 + }, + + Package (0x04) + { + 0x001DFFFF, + Zero, + Zero, + 0x17 + }, + + Package (0x04) + { + 0x001DFFFF, + One, + Zero, + 0x13 + }, + + Package (0x04) + { + 0x001DFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0x001FFFFF, + Zero, + Zero, + 0x13 + }, + + Package (0x04) + { + 0x001FFFFF, + One, + Zero, + 0x13 + }, + + Package (0x04) + { + 0x001FFFFF, + 0x02, + Zero, + 0x13 + }, + + Package (0x04) + { + 0x001FFFFF, + 0x03, + Zero, + 0x10 + } + }) + } + Else + { + Return (Package (0x13) + { + Package (0x04) + { + 0x0001FFFF, + Zero, + ^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0x0002FFFF, + Zero, + ^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0x0007FFFF, + Zero, + ^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0x0019FFFF, + Zero, + ^LPCB.LNKE, + Zero + }, + + Package (0x04) + { + 0x001AFFFF, + Zero, + ^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0x001AFFFF, + One, + ^LPCB.LNKF, + Zero + }, + + Package (0x04) + { + 0x001AFFFF, + 0x02, + ^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0x001BFFFF, + Zero, + ^LPCB.LNKG, + Zero + }, + + Package (0x04) + { + 0x001CFFFF, + Zero, + ^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0x001CFFFF, + One, + ^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0x001CFFFF, + 0x02, + ^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0x001CFFFF, + 0x03, + ^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0x001DFFFF, + Zero, + ^LPCB.LNKH, + Zero + }, + + Package (0x04) + { + 0x001DFFFF, + One, + ^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0x001DFFFF, + 0x02, + ^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0x001FFFFF, + Zero, + ^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0x001FFFFF, + One, + ^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0x001FFFFF, + 0x02, + ^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0x001FFFFF, + 0x03, + ^LPCB.LNKA, + Zero + } + }) + } + } + + Device (PDRC) + { + Name (_HID, EisaId ("PNP0C02")) // _HID: Hardware ID + Name (_UID, One) // _UID: Unique ID + Name (BUF0, ResourceTemplate () + { + Memory32Fixed (ReadWrite, + 0x00000000, // Address Base + 0x00004000, // Address Length + _Y0F) + Memory32Fixed (ReadWrite, + 0x00000000, // Address Base + 0x00004000, // Address Length + _Y10) + Memory32Fixed (ReadWrite, + 0x00000000, // Address Base + 0x00001000, // Address Length + _Y11) + Memory32Fixed (ReadWrite, + 0x00000000, // Address Base + 0x00001000, // Address Length + _Y12) + Memory32Fixed (ReadWrite, + 0x00000000, // Address Base + 0x00000000, // Address Length + _Y13) + Memory32Fixed (ReadWrite, + 0xFED20000, // Address Base + 0x00020000, // Address Length + ) + Memory32Fixed (ReadWrite, + 0xFED40000, // Address Base + 0x00005000, // Address Length + ) + Memory32Fixed (ReadWrite, + 0xFED45000, // Address Base + 0x0004B000, // Address Length + ) + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y0F._BAS, RBR0) // _BAS: Base Address + ShiftLeft (^^LPCB.RCBA, 0x0E, RBR0) + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y10._BAS, MBR0) // _BAS: Base Address + ShiftLeft (^^MCHC.MHBR, 0x0E, MBR0) + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y11._BAS, DBR0) // _BAS: Base Address + ShiftLeft (^^MCHC.DIBR, 0x0C, DBR0) + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y12._BAS, EBR0) // _BAS: Base Address + ShiftLeft (^^MCHC.EPBR, 0x0C, EBR0) + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y13._BAS, XBR0) // _BAS: Base Address + ShiftLeft (^^MCHC.PXBR, 0x1A, XBR0) + CreateDWordField (BUF0, \_SB.PCI0.PDRC._Y13._LEN, XSZ0) // _LEN: Length + ShiftRight (0x10000000, ^^MCHC.PXSZ, XSZ0) + Return (BUF0) + } + } + + Device (PEGP) + { + Name (_ADR, 0x00010000) // _ADR: Address + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x13 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKD, + Zero + } + }) + } + } + + Device (VGA) + { + Name (_ADR, Zero) // _ADR: Address + Name (SWIT, One) + Name (CRTA, One) + Name (LCDA, One) + Name (TVAA, One) + Name (VLDF, One) + OperationRegion (VIDS, PCI_Config, Zero, 0xC8) + Field (VIDS, DWordAcc, NoLock, Preserve) + { + VDID, 32 + } + + Method (_STA, 0, NotSerialized) // _STA: Status + { + Return (0x0F) + } + + Name (_PSC, Zero) // _PSC: Power State Current + Method (_PS0, 0, NotSerialized) // _PS0: Power State 0 + { + Store (Zero, _PSC) + } + + Method (_PS1, 0, NotSerialized) // _PS1: Power State 1 + { + Store (One, _PSC) + } + + Method (_PS3, 0, NotSerialized) // _PS3: Power State 3 + { + Store (0x03, _PSC) + } + + Method (_DOS, 1, NotSerialized) // _DOS: Disable Output Switching + { + Store (And (Arg0, 0x03), SWIT) + } + + Method (_DOD, 0, NotSerialized) // _DOD: Display Output Devices + { + Return (Package (0x03) + { + 0x00010100, + 0x00010110, + 0x0200 + }) + } + + Device (CRT) + { + Method (_ADR, 0, NotSerialized) // _ADR: Address + { + Return (0x0100) + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + ^^^^LPCB.PHSS (0x0C) + Store (CADL, Local0) + Store (CSTE, Local1) + And (Local0, 0x02, Local0) + And (Local1, 0x02, Local1) + If (Local0) + { + Store (One, CRTA) + } + Else + { + Store (Zero, CRTA) + } + + If (CRTA) + { + If (LEqual (Local1, 0x02)) + { + Return (0x1F) + } + Else + { + Return (0x1D) + } + } + Else + { + If (LEqual (Local1, 0x02)) + { + Return (0x0F) + } + Else + { + Return (0x0D) + } + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + If (CRTA) + { + Return (One) + } + Else + { + Return (Zero) + } + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + } + } + + Device (LCD) + { + Method (_ADR, 0, NotSerialized) // _ADR: Address + { + Return (0x0110) + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + ^^^^LPCB.PHSS (0x0C) + Store (CADL, Local0) + Store (CSTE, Local1) + And (Local0, One, Local0) + And (Local1, One, Local1) + If (Local0) + { + Store (One, LCDA) + } + Else + { + Store (Zero, LCDA) + } + + If (LCDA) + { + If (LEqual (Local1, One)) + { + Return (0x1F) + } + Else + { + Return (0x1D) + } + } + Else + { + If (LEqual (Local1, One)) + { + Return (0x0F) + } + Else + { + Return (0x0D) + } + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + If (LCDA) + { + Return (One) + } + Else + { + Return (Zero) + } + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + } + + Method (_BCL, 0, NotSerialized) // _BCL: Brightness Control Levels + { + Return (Package (0x0A) + { + 0x46, + 0x28, + Zero, + 0x0A, + 0x14, + 0x1E, + 0x28, + 0x32, + 0x3C, + 0x46 + }) + } + + Method (_BCM, 1, NotSerialized) // _BCM: Brightness Control Method + { + Divide (Arg0, 0x0A, Local0, Local1) + Store (Local1, ^^^^LPCB.EC0.BRTS) + } + + Method (_BQC, 0, NotSerialized) // _BQC: Brightness Query Current + { + Multiply (^^^^LPCB.EC0.BRTS, 0x0A, Local0) + Return (Local0) + } + } + + Device (TV) + { + Method (_ADR, 0, NotSerialized) // _ADR: Address + { + Return (0x0200) + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + ^^^^LPCB.PHSS (0x0C) + Store (CADL, Local0) + Store (CSTE, Local1) + And (Local0, 0x04, Local0) + And (Local1, 0x04, Local1) + If (Local0) + { + Store (One, TVAA) + } + Else + { + Store (Zero, TVAA) + } + + If (TVAA) + { + If (LEqual (Local1, 0x04)) + { + Return (0x1F) + } + Else + { + Return (0x1D) + } + } + Else + { + If (LEqual (Local1, 0x04)) + { + Return (0x0F) + } + Else + { + Return (0x0D) + } + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + If (TVAA) + { + Return (One) + } + Else + { + Return (Zero) + } + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + } + } + + Method (DSSW, 0, NotSerialized) + { + If (LEqual (SWIT, Zero)) + { + ^^^LPCB.PHSS (0x0C) + Store (CADL, Local0) + Store (CSTE, Local1) + If (LGreater (Local1, One)) + { + And (Local0, Local1, VLDF) + And (VLDF, 0xFE, VLDF) + } + + If (VLDF) + { + If (LEqual (Local0, 0x09)) + { + If (LEqual (Local1, 0x08)) + { + STBL (0x02) + } + + If (LEqual (Local1, One)) + { + STBL (0x03) + } + + If (LEqual (Local1, 0x09)) + { + STBL (One) + } + } + + If (LEqual (Local0, 0x0A)) + { + If (LEqual (Local1, 0x08)) + { + STBL (0x05) + } + + If (LEqual (Local1, 0x02)) + { + STBL (One) + } + + If (LEqual (Local1, 0x0A)) + { + STBL (0x04) + } + } + + If (LEqual (Local0, 0x0B)) + { + If (LEqual (Local1, 0x08)) + { + STBL (0x02) + } + + If (LEqual (Local1, 0x09)) + { + STBL (0x05) + } + + If (LEqual (Local1, One)) + { + STBL (0x03) + } + + If (LEqual (Local1, 0x0A)) + { + STBL (0x04) + } + + If (LEqual (Local1, 0x02)) + { + STBL (One) + } + + If (LEqual (Local1, 0x0B)) + { + STBL (One) + } + } + } + Else + { + Store (One, VLDF) + STBL (One) + } + } + Else + { + If (LEqual (SWIT, One)) + { + ^^^LPCB.PHSS (One) + } + } + } + + Method (STBL, 1, NotSerialized) + { + If (LEqual (Arg0, One)) + { + Store (Zero, CRTA) + Store (One, LCDA) + Store (Zero, TVAA) + } + + If (LEqual (Arg0, 0x02)) + { + Store (One, CRTA) + Store (Zero, LCDA) + Store (Zero, TVAA) + } + + If (LEqual (Arg0, 0x03)) + { + Store (One, CRTA) + Store (One, LCDA) + Store (Zero, TVAA) + } + + If (LEqual (Arg0, 0x04)) + { + Store (Zero, CRTA) + Store (Zero, LCDA) + Store (One, TVAA) + } + + If (LEqual (Arg0, 0x05)) + { + Store (Zero, CRTA) + Store (One, LCDA) + Store (One, TVAA) + } + + If (LEqual (Arg0, 0x06)) + { + Store (One, CRTA) + Store (Zero, LCDA) + Store (One, TVAA) + } + + If (LEqual (Arg0, 0x07)) + { + Store (One, CRTA) + Store (One, LCDA) + Store (One, TVAA) + } + + Notify (VGA, 0x80) + } + } + } + + Device (GFX0) + { + Name (_ADR, 0x00020000) // _ADR: Address + Method (_DOS, 1, NotSerialized) // _DOS: Disable Output Switching + { + Store (And (Arg0, 0x07), DSEN) + } + + Method (_DOD, 0, NotSerialized) // _DOD: Display Output Devices + { + Store (Zero, NDID) + If (LNotEqual (DIDL, Zero)) + { + Store (SDDL (DID1), DID1) + } + + If (LNotEqual (DDL2, Zero)) + { + Store (SDDL (DID2), DID2) + } + + If (LNotEqual (DDL3, Zero)) + { + Store (SDDL (DID3), DID3) + } + + If (LNotEqual (DDL4, Zero)) + { + Store (SDDL (DID4), DID4) + } + + If (LNotEqual (DDL5, Zero)) + { + Store (SDDL (DID5), DID5) + } + + If (LEqual (NDID, One)) + { + Name (TMP1, Package (0x01) + { + 0xFFFFFFFF + }) + Store (Or (0x00010000, DID1), Index (TMP1, Zero)) + Return (TMP1) + } + + If (LEqual (NDID, 0x02)) + { + Name (TMP2, Package (0x02) + { + 0xFFFFFFFF, + 0xFFFFFFFF + }) + Store (Or (0x00010000, DID1), Index (TMP2, Zero)) + Store (Or (0x00010000, DID2), Index (TMP2, One)) + Return (TMP2) + } + + If (LEqual (NDID, 0x03)) + { + Name (TMP3, Package (0x03) + { + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF + }) + Store (Or (0x00010000, DID1), Index (TMP3, Zero)) + Store (Or (0x00010000, DID2), Index (TMP3, One)) + Store (Or (0x00010000, DID3), Index (TMP3, 0x02)) + Return (TMP3) + } + + If (LEqual (NDID, 0x04)) + { + Name (TMP4, Package (0x04) + { + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF + }) + Store (Or (0x00010000, DID1), Index (TMP4, Zero)) + Store (Or (0x00010000, DID2), Index (TMP4, One)) + Store (Or (0x00010000, DID3), Index (TMP4, 0x02)) + Store (Or (0x00010000, DID4), Index (TMP4, 0x03)) + Return (TMP4) + } + + If (LGreater (NDID, 0x04)) + { + Name (TMP5, Package (0x05) + { + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF, + 0xFFFFFFFF + }) + Store (Or (0x00010000, DID1), Index (TMP5, Zero)) + Store (Or (0x00010000, DID2), Index (TMP5, One)) + Store (Or (0x00010000, DID3), Index (TMP5, 0x02)) + Store (Or (0x00010000, DID4), Index (TMP5, 0x03)) + Store (Or (0x00010000, DID4), Index (TMP5, 0x04)) + Return (TMP5) + } + + Return (Package (0x01) + { + 0x0400 + }) + } + + Device (DD01) + { + Method (_ADR, 0, Serialized) // _ADR: Address + { + If (LEqual (DID1, Zero)) + { + Return (One) + } + Else + { + Return (And (0xFFFF, DID1)) + } + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + Return (CDDS (DID1)) + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + Return (NDDS (DID1)) + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + If (LEqual (And (Arg0, 0xC0000000), 0xC0000000)) + { + Store (NSTE, CSTE) + } + } + } + + Device (DD02) + { + Method (_ADR, 0, Serialized) // _ADR: Address + { + If (LEqual (DID2, Zero)) + { + Return (0x02) + } + Else + { + Return (And (0xFFFF, DID2)) + } + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + Return (CDDS (DID2)) + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + Return (NDDS (DID2)) + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + If (LEqual (And (Arg0, 0xC0000000), 0xC0000000)) + { + Store (NSTE, CSTE) + } + } + } + + Device (DD03) + { + Method (_ADR, 0, Serialized) // _ADR: Address + { + If (LEqual (DID3, Zero)) + { + Return (0x03) + } + Else + { + Return (And (0xFFFF, DID3)) + } + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + If (LEqual (DID3, Zero)) + { + Return (0x0B) + } + Else + { + Return (CDDS (DID3)) + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + Return (NDDS (DID3)) + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + If (LEqual (And (Arg0, 0xC0000000), 0xC0000000)) + { + Store (NSTE, CSTE) + } + } + } + + Device (DD04) + { + Method (_ADR, 0, Serialized) // _ADR: Address + { + If (LEqual (DID4, Zero)) + { + Return (0x04) + } + Else + { + Return (And (0xFFFF, DID4)) + } + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + If (LEqual (DID4, Zero)) + { + Return (0x0B) + } + Else + { + Return (CDDS (DID4)) + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + Return (NDDS (DID4)) + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + If (LEqual (And (Arg0, 0xC0000000), 0xC0000000)) + { + Store (NSTE, CSTE) + } + } + } + + Device (DD05) + { + Method (_ADR, 0, Serialized) // _ADR: Address + { + If (LEqual (DID5, Zero)) + { + Return (0x05) + } + Else + { + Return (And (0xFFFF, DID5)) + } + } + + Method (_DCS, 0, NotSerialized) // _DCS: Display Current Status + { + If (LEqual (DID5, Zero)) + { + Return (0x0B) + } + Else + { + Return (CDDS (DID5)) + } + } + + Method (_DGS, 0, NotSerialized) // _DGS: Display Graphics State + { + Return (NDDS (DID5)) + } + + Method (_DSS, 1, NotSerialized) // _DSS: Device Set State + { + If (LEqual (And (Arg0, 0xC0000000), 0xC0000000)) + { + Store (NSTE, CSTE) + } + } + } + + Method (SDDL, 1, NotSerialized) + { + Increment (NDID) + Store (And (Arg0, 0x0F0F), Local0) + Or (0x80000000, Local0, Local1) + If (LEqual (DIDL, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL2, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL3, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL4, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL5, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL6, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL7, Local0)) + { + Return (Local1) + } + + If (LEqual (DDL8, Local0)) + { + Return (Local1) + } + + Return (Zero) + } + + Method (CDDS, 1, NotSerialized) + { + If (LEqual (CADL, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL2, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL3, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL4, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL5, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL6, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL7, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + If (LEqual (CAL8, And (Arg0, 0x0F0F))) + { + Return (0x1F) + } + + Return (0x1D) + } + + Method (NDDS, 1, NotSerialized) + { + If (LEqual (NADL, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL2, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL3, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL4, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL5, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL6, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL7, And (Arg0, 0x0F0F))) + { + Return (One) + } + + If (LEqual (NDL8, And (Arg0, 0x0F0F))) + { + Return (One) + } + + Return (Zero) + } + + Method (BRTN, 1, Serialized) + { + If (LEqual (And (DID1, 0x0F00), 0x0400)) + { + Notify (DD01, Arg0) + } + + If (LEqual (And (DID2, 0x0F00), 0x0400)) + { + Notify (DD02, Arg0) + } + + If (LEqual (And (DID3, 0x0F00), 0x0400)) + { + Notify (DD03, Arg0) + } + + If (LEqual (And (DID4, 0x0F00), 0x0400)) + { + Notify (DD04, Arg0) + } + + If (LEqual (And (DID5, 0x0F00), 0x0400)) + { + Notify (DD05, Arg0) + } + } + + Scope (^^PCI0) + { + OperationRegion (MCHP, PCI_Config, 0x40, 0xC0) + Field (MCHP, AnyAcc, NoLock, Preserve) + { + Offset (0x60), + TASM, 10, + Offset (0x62) + } + } + + OperationRegion (IGDP, PCI_Config, 0x40, 0xC0) + Field (IGDP, AnyAcc, NoLock, Preserve) + { + Offset (0x12), + , 1, + GIVD, 1, + , 2, + GUMA, 3, + Offset (0x14), + , 4, + GMFN, 1, + Offset (0x18), + Offset (0xA4), + ASLE, 8, + Offset (0xA8), + GSSE, 1, + GSSB, 14, + GSES, 1, + Offset (0xB0), + Offset (0xB1), + CDVL, 5, + Offset (0xB2), + Offset (0xB5), + LBPC, 8, + Offset (0xBC), + ASLS, 32 + } + + OperationRegion (IGDM, SystemMemory, ASLB, 0x2000) + Field (IGDM, AnyAcc, NoLock, Preserve) + { + SIGN, 128, + SIZE, 32, + OVER, 32, + SVER, 256, + VVER, 128, + GVER, 128, + MBOX, 32, + Offset (0x100), + DRDY, 32, + CSTS, 32, + CEVT, 32, + Offset (0x120), + DIDL, 32, + DDL2, 32, + DDL3, 32, + DDL4, 32, + DDL5, 32, + DDL6, 32, + DDL7, 32, + DDL8, 32, + CPDL, 32, + CPL2, 32, + CPL3, 32, + CPL4, 32, + CPL5, 32, + CPL6, 32, + CPL7, 32, + CPL8, 32, + CADL, 32, + CAL2, 32, + CAL3, 32, + CAL4, 32, + CAL5, 32, + CAL6, 32, + CAL7, 32, + CAL8, 32, + NADL, 32, + NDL2, 32, + NDL3, 32, + NDL4, 32, + NDL5, 32, + NDL6, 32, + NDL7, 32, + NDL8, 32, + ASLP, 32, + TIDX, 32, + CHPD, 32, + CLID, 32, + CDCK, 32, + SXSW, 32, + EVTS, 32, + CNOT, 32, + NRDY, 32, + Offset (0x200), + SCIE, 1, + GEFC, 4, + GXFC, 3, + GESF, 8, + Offset (0x204), + PARM, 32, + DSLP, 32, + Offset (0x300), + ARDY, 32, + ASLC, 32, + TCHE, 32, + ALSI, 32, + BCLP, 32, + PFIT, 32, + CBLV, 32, + BCLM, 320, + CPFM, 32, + Offset (0x400), + GVD1, 57344 + } + + Name (DBTB, Package (0x15) + { + Zero, + 0x07, + 0x38, + 0x01C0, + 0x0E00, + 0x3F, + 0x01C7, + 0x0E07, + 0x01F8, + 0x0E38, + 0x0FC0, + Zero, + Zero, + Zero, + Zero, + Zero, + 0x7000, + 0x7007, + 0x7038, + 0x71C0, + 0x7E00 + }) + Name (CDCT, Package (0x03) + { + Package (0x03) + { + 0xC8, + 0x0140, + 0x0190 + }, + + Package (0x03) + { + 0xC8, + 0x014D, + 0x0190 + }, + + Package (0x03) + { + 0xDE, + 0x014D, + 0x017D + } + }) + Name (SUCC, One) + Name (NVLD, 0x02) + Name (CRIT, 0x04) + Name (NCRT, 0x06) + Method (GSCI, 0, Serialized) + { + Method (GBDA, 0, Serialized) + { + If (LEqual (GESF, Zero)) + { + Store (0x0279, PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, One)) + { + Store (0x0240, PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x04)) + { + And (PARM, 0xEFFF0000, PARM) + And (PARM, ShiftLeft (DerefOf (Index (DBTB, IBTT)), 0x10), + PARM) + Or (IBTT, PARM, PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x05)) + { + Store (IPSC, PARM) + Or (PARM, ShiftLeft (IPAT, 0x08), PARM) + Add (PARM, 0x0100, PARM) + Or (PARM, ShiftLeft (LIDS, 0x10), PARM) + Add (PARM, 0x00010000, PARM) + Or (PARM, ShiftLeft (IBIA, 0x14), PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x06)) + { + Store (ITVF, PARM) + Or (PARM, ShiftLeft (ITVM, 0x04), PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x07)) + { + Store (GIVD, PARM) + XOr (PARM, One, PARM) + Or (PARM, ShiftLeft (GMFN, One), PARM) + Or (PARM, 0x1000, PARM) + If (IDMM) + { + Or (PARM, ShiftLeft (IDMS, 0x11), PARM) + } + Else + { + Or (PARM, ShiftLeft (IDMS, 0x0D), PARM) + } + + Or (ShiftLeft (DerefOf (Index (DerefOf (Index (CDCT, HVCO)), Subtract ( + CDVL, One))), 0x15), PARM, PARM) + Store (One, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x0A)) + { + Store (Zero, PARM) + If (ISSC) + { + Or (PARM, 0x03, PARM) + } + + Store (Zero, GESF) + Return (SUCC) + } + + Store (Zero, GESF) + Return (CRIT) + } + + Method (SBCB, 0, Serialized) + { + If (LEqual (GESF, Zero)) + { + Store (Zero, PARM) + Store (0xF77D, PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, One)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x03)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x04)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x05)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x06)) + { + Store (And (PARM, 0x0F), ITVF) + Store (ShiftRight (And (PARM, 0xF0), 0x04), ITVM) + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x07)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x08)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x09)) + { + And (PARM, 0xFF, IBTT) + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x0A)) + { + And (PARM, 0xFF, IPSC) + If (And (ShiftRight (PARM, 0x08), 0xFF)) + { + And (ShiftRight (PARM, 0x08), 0xFF, IPAT) + Decrement (IPAT) + } + + And (ShiftRight (PARM, 0x14), 0x07, IBIA) + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x0B)) + { + And (ShiftRight (PARM, One), One, IF1E) + If (And (PARM, 0x0001E000)) + { + And (ShiftRight (PARM, 0x0D), 0x0F, IDMS) + Store (Zero, IDMM) + } + Else + { + And (ShiftRight (PARM, 0x11), 0x0F, IDMS) + Store (One, IDMM) + } + + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x10)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x11)) + { + Or (PARM, 0x0100, PARM) + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GESF, 0x12)) + { + If (And (PARM, One)) + { + If (LEqual (ShiftRight (PARM, One), One)) + { + Store (One, ISSC) + } + Else + { + Store (Zero, GESF) + Return (CRIT) + } + } + Else + { + Store (Zero, ISSC) + } + + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + If (LEqual (GESF, 0x13)) + { + Store (Zero, GESF) + Store (Zero, PARM) + Return (SUCC) + } + + Store (Zero, GESF) + Return (SUCC) + } + + If (LEqual (GEFC, 0x04)) + { + Store (GBDA (), GXFC) + } + + If (LEqual (GEFC, 0x06)) + { + Store (SBCB (), GXFC) + } + + Store (Zero, GEFC) + Store (One, SCIS) + Store (Zero, GSSE) + Store (Zero, SCIE) + Return (Zero) + } + + Method (PDRD, 0, NotSerialized) + { + If (LNot (DRDY)) + { + Sleep (ASLP) + } + + Return (LNot (DRDY)) + } + + Method (PSTS, 0, NotSerialized) + { + If (LGreater (CSTS, 0x02)) + { + Sleep (ASLP) + } + + Return (LEqual (CSTS, 0x03)) + } + + Method (GNOT, 2, NotSerialized) + { + If (PDRD ()) + { + Return (One) + } + + If (PSTS ()) + { + Return (One) + } + + Store (Arg0, CEVT) + Store (0x03, CSTS) + If (LAnd (LEqual (CHPD, Zero), LEqual (Arg1, Zero))) + { + If (LOr (LGreater (OSYS, 0x07D0), LLess (OSYS, 0x07D6))) + { + Notify (PCI0, Arg1) + } + Else + { + Notify (GFX0, Arg1) + } + } + + Notify (GFX0, 0x80) + If (LNot (PSTS ())) + { + Store (Zero, CEVT) + } + + Return (Zero) + } + + Method (GHDS, 1, NotSerialized) + { + Store (Arg0, TIDX) + Return (GNOT (One, Zero)) + } + + Method (GLID, 1, NotSerialized) + { + Store (Arg0, CLID) + Return (GNOT (0x02, Zero)) + } + + Method (GDCK, 1, NotSerialized) + { + Store (Arg0, CDCK) + Return (GNOT (0x04, 0x80)) + } + + Method (PARD, 0, NotSerialized) + { + If (LNot (ARDY)) + { + Sleep (ASLP) + } + + Return (LNot (ARDY)) + } + + Method (AINT, 2, NotSerialized) + { + If (LNot (And (TCHE, ShiftLeft (One, Arg0)))) + { + Return (One) + } + + If (PARD ()) + { + Return (One) + } + + If (LEqual (Arg0, 0x02)) + { + If (CPFM) + { + If (LEqual (CPFM, One)) + { + Store (0x06, PFIT) + } + + If (LEqual (CPFM, 0x06)) + { + Store (0x08, PFIT) + } + + If (LEqual (CPFM, 0x08)) + { + Store (One, PFIT) + } + } + Else + { + XOr (PFIT, 0x07, PFIT) + } + + Or (PFIT, 0x80000000, PFIT) + Store (0x04, ASLC) + } + Else + { + If (LEqual (Arg0, One)) + { + Store (Divide (Multiply (Arg1, 0xFF), 0x64, ), BCLP) + Or (BCLP, 0x80000000, BCLP) + Store (0x02, ASLC) + } + Else + { + If (LEqual (Arg0, Zero)) + { + Store (Arg1, ALSI) + Store (One, ASLC) + } + Else + { + Return (One) + } + } + } + + Store (Zero, LBPC) + Return (Zero) + } + } + + Scope (\) + { + OperationRegion (IO_T, SystemIO, 0x0800, 0x10) + Field (IO_T, ByteAcc, NoLock, Preserve) + { + Offset (0x08), + TRP0, 8 + } + + OperationRegion (PMIO, SystemIO, 0x1000, 0x80) + Field (PMIO, ByteAcc, NoLock, Preserve) + { + Offset (0x2A), + Offset (0x2B), + , 2, + ACPW, 1, + Offset (0x42), + , 1, + GPEC, 1, + Offset (0x64), + , 9, + SCIS, 1, + Offset (0x66) + } + + OperationRegion (GPIO, SystemIO, 0x1180, 0x3C) + Field (GPIO, ByteAcc, NoLock, Preserve) + { + GU00, 8, + GU01, 8, + GU02, 8, + GU03, 8, + GIO0, 8, + GIO1, 8, + GIO2, 8, + GIO3, 8, + Offset (0x0C), + GL00, 8, + GL01, 8, + GL02, 8, + , 3, + GP27, 1, + GP28, 1, + Offset (0x10), + Offset (0x18), + GB00, 8, + GB01, 8, + GB02, 8, + GB03, 8, + Offset (0x2C), + GIV0, 8, + , 3, + LPOL, 1, + Offset (0x2E), + GIV2, 8, + GIV3, 8, + GU04, 8, + GU05, 8, + GU06, 8, + GU07, 8, + GIO4, 8, + GIO5, 8, + GIO6, 8, + GIO7, 8, + , 5, + GP37, 1, + Offset (0x39), + GL05, 8, + GL06, 8, + GL07, 8 + } + + OperationRegion (RCRB, SystemMemory, 0xFED1C000, 0x4000) + Field (RCRB, DWordAcc, Lock, Preserve) + { + Offset (0x1000), + Offset (0x3000), + Offset (0x3404), + HPAS, 2, + , 5, + HPAE, 1, + Offset (0x3418), + , 1, + PATD, 1, + SATD, 1, + SMBD, 1, + HDAD, 1, + Offset (0x341A), + RP1D, 1, + RP2D, 1, + RP3D, 1, + RP4D, 1, + RP5D, 1, + RP6D, 1 + } + + Name (_S0, Package (0x03) // _S0_: S0 System State + { + Zero, + Zero, + Zero + }) + Name (_S3, Package (0x03) // _S3_: S3 System State + { + 0x05, + 0x05, + Zero + }) + Name (_S4, Package (0x03) // _S4_: S4 System State + { + 0x06, + 0x06, + Zero + }) + Name (_S5, Package (0x03) // _S5_: S5 System State + { + 0x07, + 0x07, + Zero + }) + Method (GETP, 1, Serialized) + { + If (LEqual (And (Arg0, 0x09), Zero)) + { + Return (0xFFFFFFFF) + } + + If (LEqual (And (Arg0, 0x09), 0x08)) + { + Return (0x0384) + } + + ShiftRight (And (Arg0, 0x0300), 0x08, Local0) + ShiftRight (And (Arg0, 0x3000), 0x0C, Local1) + Return (Multiply (0x1E, Subtract (0x09, Add (Local0, Local1)) + )) + } + + Method (GDMA, 5, Serialized) + { + If (Arg0) + { + If (LAnd (Arg1, Arg4)) + { + Return (0x14) + } + + If (LAnd (Arg2, Arg4)) + { + Return (Multiply (Subtract (0x04, Arg3), 0x0F)) + } + + Return (Multiply (Subtract (0x04, Arg3), 0x1E)) + } + + Return (0xFFFFFFFF) + } + + Method (GETT, 1, Serialized) + { + Return (Multiply (0x1E, Subtract (0x09, Add (And (ShiftRight (Arg0, 0x02 + ), 0x03), And (Arg0, 0x03))))) + } + + Method (GETF, 3, Serialized) + { + Name (TMPF, Zero) + If (Arg0) + { + Or (TMPF, One, TMPF) + } + + If (And (Arg2, 0x02)) + { + Or (TMPF, 0x02, TMPF) + } + + If (Arg1) + { + Or (TMPF, 0x04, TMPF) + } + + If (And (Arg2, 0x20)) + { + Or (TMPF, 0x08, TMPF) + } + + If (And (Arg2, 0x4000)) + { + Or (TMPF, 0x10, TMPF) + } + + Return (TMPF) + } + + Method (SETP, 3, Serialized) + { + If (LGreater (Arg0, 0xF0)) + { + Return (0x08) + } + Else + { + If (And (Arg1, 0x02)) + { + If (LAnd (LLessEqual (Arg0, 0x78), And (Arg2, 0x02))) + { + Return (0x2301) + } + + If (LAnd (LLessEqual (Arg0, 0xB4), And (Arg2, One))) + { + Return (0x2101) + } + } + + Return (0x1001) + } + } + + Method (SDMA, 1, Serialized) + { + If (LLessEqual (Arg0, 0x14)) + { + Return (One) + } + + If (LLessEqual (Arg0, 0x1E)) + { + Return (0x02) + } + + If (LLessEqual (Arg0, 0x2D)) + { + Return (One) + } + + If (LLessEqual (Arg0, 0x3C)) + { + Return (0x02) + } + + If (LLessEqual (Arg0, 0x5A)) + { + Return (One) + } + + Return (Zero) + } + + Method (SETT, 3, Serialized) + { + If (And (Arg1, 0x02)) + { + If (LAnd (LLessEqual (Arg0, 0x78), And (Arg2, 0x02))) + { + Return (0x0B) + } + + If (LAnd (LLessEqual (Arg0, 0xB4), And (Arg2, One))) + { + Return (0x09) + } + } + + Return (0x04) + } + } + + Device (HDEF) + { + Name (_ADR, 0x001B0000) // _ADR: Address + OperationRegion (HDAR, PCI_Config, 0x4C, 0x10) + Field (HDAR, WordAcc, NoLock, Preserve) + { + DCKA, 1, + Offset (0x01), + DCKM, 1, + , 6, + DCKS, 1, + Offset (0x08), + , 15, + PMES, 1 + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x0D, + 0x03 + }) + } + + Device (RP01) + { + Name (_ADR, 0x001C0000) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x13 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKD, + Zero + } + }) + } + } + } + + Device (RP02) + { + Name (_ADR, 0x001C0001) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x13 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x10 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKA, + Zero + } + }) + } + } + } + + Device (RP03) + { + Name (_ADR, 0x001C0002) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + } + + Name (PXSX._RMV, One) // _RMV: Removal Status + Name (PXSX._PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x09, + 0x03 + }) + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x13 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x10 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x11 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKB, + Zero + } + }) + } + } + } + + Device (RP04) + { + Name (_ADR, 0x001C0003) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + Method (_PRW, 0, NotSerialized) // _PRW: Power Resources for Wake + { + If (WKLN) + { + Return (Package (0x02) + { + 0x09, + 0x03 + }) + } + Else + { + Return (Package (0x02) + { + 0x09, + Zero + }) + } + } + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x13 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x10 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x12 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKC, + Zero + } + }) + } + } + } + + Device (RP05) + { + Name (_ADR, 0x001C0004) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x10 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x13 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKA, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKD, + Zero + } + }) + } + } + } + + Device (RP06) + { + Name (_ADR, 0x001C0005) // _ADR: Address + OperationRegion (PXCS, PCI_Config, 0x40, 0xC0) + Field (PXCS, AnyAcc, NoLock, WriteAsZeros) + { + Offset (0x12), + , 13, + LASX, 1, + Offset (0x1A), + ABPX, 1, + , 2, + PDCX, 1, + , 2, + PDSX, 1, + Offset (0x1B), + LSCX, 1, + Offset (0x20), + Offset (0x22), + PSPX, 1, + Offset (0x9C), + , 30, + HPSX, 1, + PMSX, 1 + } + + Device (PXSX) + { + Name (_ADR, Zero) // _ADR: Address + } + + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + Zero, + 0x11 + }, + + Package (0x04) + { + 0xFFFF, + One, + Zero, + 0x12 + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + Zero, + 0x13 + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + Zero, + 0x10 + } + }) + } + Else + { + Return (Package (0x04) + { + Package (0x04) + { + 0xFFFF, + Zero, + ^^LPCB.LNKB, + Zero + }, + + Package (0x04) + { + 0xFFFF, + One, + ^^LPCB.LNKC, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x02, + ^^LPCB.LNKD, + Zero + }, + + Package (0x04) + { + 0xFFFF, + 0x03, + ^^LPCB.LNKA, + Zero + } + }) + } + } + } + + Device (USB1) + { + Name (_ADR, 0x001D0000) // _ADR: Address + OperationRegion (U1CS, PCI_Config, 0xC4, 0x04) + Field (U1CS, DWordAcc, NoLock, Preserve) + { + U1EN, 2 + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x03, + 0x03 + }) + Method (_PSW, 1, NotSerialized) // _PSW: Power State Wake + { + If (Arg0) + { + Store (One, ACPW) + If (ACPW) + { + Store (0x03, U1EN) + } + } + Else + { + Store (Zero, U1EN) + } + } + + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (USB2) + { + Name (_ADR, 0x001D0001) // _ADR: Address + OperationRegion (U2CS, PCI_Config, 0xC4, 0x04) + Field (U2CS, DWordAcc, NoLock, Preserve) + { + U2EN, 2 + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x04, + 0x03 + }) + Method (_PSW, 1, NotSerialized) // _PSW: Power State Wake + { + If (Arg0) + { + Store (One, ACPW) + If (ACPW) + { + Store (One, U2EN) + } + } + Else + { + Store (Zero, U2EN) + } + } + + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (USB3) + { + Name (_ADR, 0x001D0002) // _ADR: Address + OperationRegion (U2CS, PCI_Config, 0xC4, 0x04) + Field (U2CS, DWordAcc, NoLock, Preserve) + { + U3EN, 2 + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x0C, + 0x03 + }) + Method (_PSW, 1, NotSerialized) // _PSW: Power State Wake + { + If (Arg0) + { + Store (One, ACPW) + If (ACPW) + { + Store (0x03, U3EN) + } + } + Else + { + Store (Zero, U3EN) + } + } + + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (USB4) + { + Name (_ADR, 0x001A0000) // _ADR: Address + OperationRegion (U4CS, PCI_Config, 0xC4, 0x04) + Field (U4CS, DWordAcc, NoLock, Preserve) + { + U4EN, 2 + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x0E, + 0x03 + }) + Method (_PSW, 1, NotSerialized) // _PSW: Power State Wake + { + If (Arg0) + { + Store (One, ACPW) + If (ACPW) + { + Store (0x03, U4EN) + } + } + Else + { + Store (Zero, U4EN) + } + } + + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (USB5) + { + Name (_ADR, 0x001A0001) // _ADR: Address + OperationRegion (U5CS, PCI_Config, 0xC4, 0x04) + Field (U5CS, DWordAcc, NoLock, Preserve) + { + U5EN, 2 + } + + Method (_PSW, 1, NotSerialized) // _PSW: Power State Wake + { + If (Arg0) + { + Store (One, ACPW) + If (ACPW) + { + Store (0x03, U5EN) + } + } + Else + { + Store (Zero, U5EN) + } + } + + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (EHC1) + { + Name (_ADR, 0x001D0007) // _ADR: Address + OperationRegion (U7CS, PCI_Config, 0x54, 0x04) + Field (U7CS, DWordAcc, NoLock, Preserve) + { + , 15, + PMES, 1 + } + + Device (HUB7) + { + Name (_ADR, Zero) // _ADR: Address + Device (PRT1) + { + Name (_ADR, One) // _ADR: Address + } + + Device (PRT2) + { + Name (_ADR, 0x02) // _ADR: Address + } + + Device (PRT3) + { + Name (_ADR, 0x03) // _ADR: Address + } + + Device (PRT4) + { + Name (_ADR, 0x04) // _ADR: Address + } + + Device (PRT5) + { + Name (_ADR, 0x05) // _ADR: Address + } + + Device (PRT6) + { + Name (_ADR, 0x06) // _ADR: Address + } + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x0D, + 0x03 + }) + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (EHC2) + { + Name (_ADR, 0x001A0007) // _ADR: Address + OperationRegion (UFCS, PCI_Config, 0x54, 0x04) + Field (UFCS, DWordAcc, NoLock, Preserve) + { + , 15, + PMES, 1 + } + + Device (HUB7) + { + Name (_ADR, Zero) // _ADR: Address + Device (PRT1) + { + Name (_ADR, One) // _ADR: Address + } + + Device (PRT2) + { + Name (_ADR, 0x02) // _ADR: Address + } + + Device (PRT3) + { + Name (_ADR, 0x03) // _ADR: Address + } + + Device (PRT4) + { + Name (_ADR, 0x04) // _ADR: Address + } + } + + Name (_PRW, Package (0x02) // _PRW: Power Resources for Wake + { + 0x0D, + 0x03 + }) + Method (_S3D, 0, NotSerialized) // _S3D: S3 Device State + { + Return (0x02) + } + + Method (_S4D, 0, NotSerialized) // _S4D: S4 Device State + { + Return (0x02) + } + } + + Device (PCIB) + { + Name (_ADR, 0x001E0000) // _ADR: Address + Method (_PRT, 0, NotSerialized) // _PRT: PCI Routing Table + { + If (GPIC) + { + Return (Package (0x02) + { + Package (0x04) + { + 0x0006FFFF, + Zero, + Zero, + 0x16 + }, + + Package (0x04) + { + 0x0006FFFF, + One, + Zero, + 0x17 + } + }) + } + Else + { + Return (Package (0x02) + { + Package (0x04) + { + 0x0006FFFF, + Zero, + ^^LPCB.LNKG, + Zero + }, + + Package (0x04) + { + 0x0006FFFF, + One, + ^^LPCB.LNKH, + Zero + } + }) + } + } + } + + Device (LPCB) + { + Name (_ADR, 0x001F0000) // _ADR: Address + OperationRegion (LPC0, PCI_Config, 0x40, 0xC0) + Field (LPC0, AnyAcc, NoLock, Preserve) + { + Offset (0x20), + PARC, 8, + PBRC, 8, + PCRC, 8, + PDRC, 8, + Offset (0x28), + PERC, 8, + PFRC, 8, + PGRC, 8, + PHRC, 8, + Offset (0x40), + CMAR, 3, + , 1, + CMBR, 3, + Offset (0x41), + LPTR, 2, + Offset (0x42), + CMAD, 1, + CMBD, 1, + LPTD, 1, + FDDD, 1, + Offset (0x48), + IOR2, 16, + , 2, + LGRM, 6, + Offset (0xB0), + RAEN, 1, + , 13, + RCBA, 18 + } + + OperationRegion (SMI0, SystemIO, 0x0000FE00, 0x00000002) + Field (SMI0, AnyAcc, NoLock, Preserve) + { + SMIC, 8 + } + + OperationRegion (SMI1, SystemMemory, 0xBF6E2EBD, 0x00000090) + Field (SMI1, AnyAcc, NoLock, Preserve) + { + BCMD, 8, + DID, 32, + INFO, 1024 + } + + Field (SMI1, AnyAcc, NoLock, Preserve) + { + AccessAs (ByteAcc, 0x00), + Offset (0x05), + INF, 8, + INF1, 32 + } + + Mutex (PSMX, 0x00) + Method (PHSS, 1, NotSerialized) + { + Acquire (PSMX, 0xFFFF) + Store (0x80, BCMD) + Store (Arg0, DID) + Store (Zero, SMIC) + Release (PSMX) + } + + Device (LNKA) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, One) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PARC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,10,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLA, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLA, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PARC, 0x0F), IRQ0) + Return (RTLA) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PARC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PARC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKB) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x02) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PBRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,11,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLB, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLB, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PBRC, 0x0F), IRQ0) + Return (RTLB) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PBRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PBRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKC) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x03) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PCRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,10,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLC, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLC, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PCRC, 0x0F), IRQ0) + Return (RTLC) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PCRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PCRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKD) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x04) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PDRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,11,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLD, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLD, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PDRC, 0x0F), IRQ0) + Return (RTLD) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PDRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PDRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKE) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x05) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PERC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,10,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLE, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLE, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PERC, 0x0F), IRQ0) + Return (RTLE) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PERC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PERC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKF) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x06) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PFRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,11,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLF, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLF, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PFRC, 0x0F), IRQ0) + Return (RTLF) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PFRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PFRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKG) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x07) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PGRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,10,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLG, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLG, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PGRC, 0x0F), IRQ0) + Return (RTLG) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PGRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PGRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (LNKH) + { + Name (_HID, EisaId ("PNP0C0F")) // _HID: Hardware ID + Name (_UID, 0x08) // _UID: Unique ID + Method (_DIS, 0, Serialized) // _DIS: Disable Device + { + Store (0x80, PHRC) + } + + Name (_PRS, ResourceTemplate () // _PRS: Possible Resource Settings + { + IRQ (Level, ActiveLow, Shared, ) + {1,3,4,5,6,7,11,12,14,15} + }) + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + Name (RTLH, ResourceTemplate () + { + IRQ (Level, ActiveLow, Shared, ) + {} + }) + CreateWordField (RTLH, One, IRQ0) + Store (Zero, IRQ0) + ShiftLeft (One, And (PHRC, 0x0F), IRQ0) + Return (RTLH) + } + + Method (_SRS, 1, Serialized) // _SRS: Set Resource Settings + { + CreateWordField (Arg0, One, IRQ0) + FindSetRightBit (IRQ0, Local0) + Decrement (Local0) + Store (Local0, PHRC) + } + + Method (_STA, 0, Serialized) // _STA: Status + { + If (And (PHRC, 0x80)) + { + Return (0x09) + } + Else + { + Return (0x0B) + } + } + } + + Device (DMAC) + { + Name (_HID, EisaId ("PNP0200")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0000, // Range Minimum + 0x0000, // Range Maximum + 0x01, // Alignment + 0x20, // Length + ) + IO (Decode16, + 0x0081, // Range Minimum + 0x0081, // Range Maximum + 0x01, // Alignment + 0x11, // Length + ) + IO (Decode16, + 0x0093, // Range Minimum + 0x0093, // Range Maximum + 0x01, // Alignment + 0x0D, // Length + ) + IO (Decode16, + 0x00C0, // Range Minimum + 0x00C0, // Range Maximum + 0x01, // Alignment + 0x20, // Length + ) + DMA (Compatibility, NotBusMaster, Transfer8_16, ) + {4} + }) + } + + Device (FWHD) + { + Name (_HID, EisaId ("INT0800")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + Memory32Fixed (ReadOnly, + 0xFF000000, // Address Base + 0x01000000, // Address Length + ) + }) + } + + Device (HPET) + { + Name (_HID, EisaId ("PNP0103")) // _HID: Hardware ID + Name (_CID, EisaId ("PNP0C01")) // _CID: Compatible ID + Name (BUF0, ResourceTemplate () + { + Memory32Fixed (ReadOnly, + 0xFED00000, // Address Base + 0x00000400, // Address Length + _Y14) + }) + Method (_STA, 0, NotSerialized) // _STA: Status + { + If (LGreaterEqual (OSYS, 0x07D1)) + { + If (HPAE) + { + Return (0x0F) + } + } + Else + { + If (HPAE) + { + Return (0x0B) + } + } + + Return (Zero) + } + + Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings + { + If (HPAE) + { + CreateDWordField (BUF0, \_SB.PCI0.LPCB.HPET._Y14._BAS, HPT0) // _BAS: Base Address + If (LEqual (HPAS, One)) + { + Store (0xFED01000, HPT0) + } + + If (LEqual (HPAS, 0x02)) + { + Store (0xFED02000, HPT0) + } + + If (LEqual (HPAS, 0x03)) + { + Store (0xFED03000, HPT0) + } + } + + Return (BUF0) + } + } + + Device (IPIC) + { + Name (_HID, EisaId ("PNP0000")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0020, // Range Minimum + 0x0020, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0024, // Range Minimum + 0x0024, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0028, // Range Minimum + 0x0028, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x002C, // Range Minimum + 0x002C, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0030, // Range Minimum + 0x0030, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0034, // Range Minimum + 0x0034, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0038, // Range Minimum + 0x0038, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x003C, // Range Minimum + 0x003C, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00A0, // Range Minimum + 0x00A0, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00A4, // Range Minimum + 0x00A4, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00A8, // Range Minimum + 0x00A8, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00AC, // Range Minimum + 0x00AC, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00B0, // Range Minimum + 0x00B0, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00B4, // Range Minimum + 0x00B4, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00B8, // Range Minimum + 0x00B8, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x00BC, // Range Minimum + 0x00BC, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x04D0, // Range Minimum + 0x04D0, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IRQNoFlags () + {2} + }) + } + + Device (MATH) + { + Name (_HID, EisaId ("PNP0C04")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x00F0, // Range Minimum + 0x00F0, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IRQNoFlags () + {13} + }) + } + + Device (LDRC) + { + Name (_HID, EisaId ("PNP0C02")) // _HID: Hardware ID + Name (_UID, 0x02) // _UID: Unique ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x002E, // Range Minimum + 0x002E, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x004E, // Range Minimum + 0x004E, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0061, // Range Minimum + 0x0061, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0063, // Range Minimum + 0x0063, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0065, // Range Minimum + 0x0065, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0067, // Range Minimum + 0x0067, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0080, // Range Minimum + 0x0080, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0092, // Range Minimum + 0x0092, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x00B2, // Range Minimum + 0x00B2, // Range Maximum + 0x01, // Alignment + 0x02, // Length + ) + IO (Decode16, + 0x0680, // Range Minimum + 0x0680, // Range Maximum + 0x01, // Alignment + 0x20, // Length + ) + IO (Decode16, + 0x0800, // Range Minimum + 0x0800, // Range Maximum + 0x01, // Alignment + 0x10, // Length + ) + IO (Decode16, + 0x1000, // Range Minimum + 0x1000, // Range Maximum + 0x01, // Alignment + 0x80, // Length + ) + IO (Decode16, + 0x1180, // Range Minimum + 0x1180, // Range Maximum + 0x01, // Alignment + 0x40, // Length + ) + IO (Decode16, + 0xFE00, // Range Minimum + 0xFE00, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0xFF00, // Range Minimum + 0xFF00, // Range Maximum + 0x01, // Alignment + 0x80, // Length + ) + }) + } + + Device (RTC) + { + Name (_HID, EisaId ("PNP0B00")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0070, // Range Minimum + 0x0070, // Range Maximum + 0x01, // Alignment + 0x08, // Length + ) + IRQNoFlags () + {8} + }) + } + + Device (TIMR) + { + Name (_HID, EisaId ("PNP0100")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0040, // Range Minimum + 0x0040, // Range Maximum + 0x01, // Alignment + 0x04, // Length + ) + IO (Decode16, + 0x0050, // Range Minimum + 0x0050, // Range Maximum + 0x10, // Alignment + 0x04, // Length + ) + IRQNoFlags () + {0} + }) + } + + Device (ACAD) + { + Name (_HID, "ACPI0003") // _HID: Hardware ID + Name (_PCL, Package (0x01) // _PCL: Power Consumer List + { + _SB + }) + Method (_PSR, 0, NotSerialized) // _PSR: Power Source + { + Store (One, ACPW) + Return (ACPW) + } + } + + Method (ECOK, 0, NotSerialized) + { + If (LEqual (^EC0.Z009, One)) + { + Return (One) + } + Else + { + Return (Zero) + } + } + + Device (EC0) + { + Name (_HID, EisaId ("PNP0C09")) // _HID: Hardware ID + Name (_GPE, 0x1C) // _GPE: General Purpose Events + Name (Z009, Zero) + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0062, // Range Minimum + 0x0062, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0066, // Range Minimum + 0x0066, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + }) + Method (_REG, 2, NotSerialized) // _REG: Region Availability + { + If (LEqual (Arg0, 0x03)) + { + Store (Arg1, Z009) + If (CondRefOf (_OSI, Local0)) + { + Store (Zero, BTDS) + If (_OSI ("Windows 2006")) + { + Store (One, BTDS) + } + } + } + } + + OperationRegion (ERAM, EmbeddedControl, Zero, 0xFF) + Field (ERAM, ByteAcc, Lock, Preserve) + { + Offset (0x60), + SMPR, 8, + SMST, 8, + SMAD, 8, + SMCM, 8, + SMD0, 256, + BCNT, 8, + SMAA, 24, + Offset (0x90), + CHGM, 16, + CHGS, 16, + ENID, 8, + ENIB, 8, + ENDD, 8, + CHGV, 8, + CHGA, 16, + BAL0, 1, + BAL1, 1, + BAL2, 1, + BAL3, 1, + BBC0, 1, + BBC1, 1, + BBC2, 1, + BBC3, 1, + Offset (0x9C), + PHDD, 1, + IFDD, 1, + IODD, 1, + SHDD, 1, + S120, 1, + EFDD, 1, + CRTD, 1, + SPWR, 1, + SBTN, 1, + VIDO, 1, + VOLD, 1, + VOLU, 1, + MUTE, 1, + CONT, 1, + BRGT, 1, + HBTN, 1, + S4ST, 1, + SKEY, 1, + BKEY, 1, + TOUP, 1, + FNBN, 1, + LIDF, 1, + DIGM, 1, + UWAK, 1, + Offset (0xA0), + DKSP, 1, + DKIN, 1, + DKID, 1, + DKOK, 1, + Offset (0xA1), + DKPW, 1, + Offset (0xA2), + BTNS, 8, + S1LD, 1, + S3LD, 1, + VGAQ, 1, + PCMQ, 1, + PCMR, 1, + ADPT, 1, + SLLS, 1, + SYS7, 1, + PWAK, 1, + MWAK, 1, + LWAK, 1, + Offset (0xA5), + Offset (0xAA), + TCNL, 8, + TMPI, 8, + TMSD, 8, + FASN, 4, + FASU, 4, + PCVL, 4, + , 2, + SWTO, 1, + HWTO, 1, + MODE, 1, + FANS, 2, + INIT, 1, + FAN1, 1, + FAN2, 1, + FANT, 1, + SKNM, 1, + CTMP, 8, + LIDE, 1, + PMEE, 1, + PWBE, 1, + RNGE, 1, + BTWE, 1, + DCKE, 1, + Offset (0xB2), + SKTX, 8, + SKTB, 8, + SKTC, 8, + SKTA, 8, + Offset (0xB7), + HAPL, 2, + HAPR, 1, + Offset (0xB8), + BTDT, 1, + BTPW, 1, + BTDS, 1, + BTPS, 1, + BTSW, 1, + BTWK, 1, + BTLD, 1, + Offset (0xB9), + BRTS, 8, + CNTS, 8, + WLAT, 1, + BTAT, 1, + WLEX, 1, + BTEX, 1, + KLSW, 1, + WLOK, 1, + Offset (0xBC), + PTID, 8, + CPUT, 8, + EPKT, 8, + GHID, 8, + , 4, + BMF0, 3, + BTY0, 1, + BST0, 8, + BRC0, 16, + BSN0, 16, + BPV0, 16, + BDV0, 16, + BDC0, 16, + BFC0, 16, + GAU0, 8, + CYC0, 8, + BPC0, 16, + BAC0, 16, + BAT0, 8, + BTW0, 16, + BDN0, 8, + Offset (0xE0), + , 4, + BMF1, 3, + BTY1, 1, + BST1, 8, + BRC1, 16, + BSN1, 16, + BPV1, 16, + BDV1, 16, + BDC1, 16, + BFC1, 16, + GAU1, 8, + CYC1, 8, + BPC1, 16, + BAC1, 16, + BAT1, 8, + BTW1, 16 + } + + Method (_Q11, 0, NotSerialized) // _Qxx: EC Query + { + Store (0x87, P80H) + If (IGDS) + { + ^^^GFX0.BRTN (0x87) + } + Else + { + Notify (^^^PEGP.VGA.LCD, 0x87) + } + } + + Method (_Q12, 0, NotSerialized) // _Qxx: EC Query + { + Store (0x86, P80H) + If (IGDS) + { + ^^^GFX0.BRTN (0x86) + } + Else + { + Notify (^^^PEGP.VGA.LCD, 0x86) + } + } + + Method (_Q1C, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_1C=====", Debug) + If (VIDO) + { + If (IGDS) + { + ^^^GFX0.GHDS (Zero) + } + Else + { + ^^^PEGP.VGA.DSSW () + } + + Store (Zero, VIDO) + } + } + + Method (_Q1D, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_1D=====", Debug) + PCLK () + } + + Method (_Q1E, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_1E=====", Debug) + PCLK () + } + + Method (_Q25, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_25=====", Debug) + Sleep (0x03E8) + Notify (^^BAT1, 0x81) + Sleep (0x03E8) + Notify (^^BAT1, 0x80) + } + + Method (_Q34, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_34=====", Debug) + If (BKEY) + { + PHSS (0x71) + Store (Zero, BKEY) + } + } + + Method (_Q37, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_37=====", Debug) + Notify (ACAD, 0x80) + Sleep (0x03E8) + Notify (^^BAT1, 0x80) + } + + Method (_Q38, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_38=====", Debug) + Notify (ACAD, 0x80) + Sleep (0x03E8) + Notify (^^BAT1, 0x80) + } + + Method (_Q2D, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_2D=====", Debug) + Store (Zero, DTSM) + TRAP (0x46) + } + + Method (_Q2E, 0, NotSerialized) // _Qxx: EC Query + { + Store ("=====QUERY_2E=====", Debug) + Store (One, DTSM) + TRAP (0x46) + } + + OperationRegion (CCLK, SystemIO, 0x1010, 0x04) + Field (CCLK, DWordAcc, NoLock, Preserve) + { + , 1, + DUTY, 3, + THEN, 1, + Offset (0x01), + FTT, 1, + , 8, + TSTS, 1 + } + + OperationRegion (ECRM, EmbeddedControl, Zero, 0xFF) + Field (ECRM, ByteAcc, Lock, Preserve) + { + Offset (0x94), + ERIB, 16, + ERBD, 8, + Offset (0xAC), + SDTM, 8, + FSSN, 4, + FANU, 4, + PTVL, 3, + , 4, + TTHR, 1, + Offset (0xBC), + PJID, 8, + Offset (0xBE), + Offset (0xF9), + RFRD, 16 + } + + Mutex (FAMX, 0x00) + Method (FANG, 1, NotSerialized) + { + Acquire (FAMX, 0xFFFF) + Store (Arg0, ERIB) + Store (ERBD, Local0) + Release (FAMX) + Return (Local0) + } + + Method (FANW, 2, NotSerialized) + { + Acquire (FAMX, 0xFFFF) + Store (Arg0, ERIB) + Store (Arg1, ERBD) + Release (FAMX) + Return (Arg1) + } + + Method (TUVR, 1, NotSerialized) + { + Return (0x03) + } + + Method (THRO, 1, NotSerialized) + { + If (LEqual (Arg0, Zero)) + { + Return (THEN) + } + Else + { + If (LEqual (Arg0, One)) + { + Return (DUTY) + } + Else + { + If (LEqual (Arg0, 0x02)) + { + Return (TTHR) + } + Else + { + Return (0xFF) + } + } + } + } + + Method (CLCK, 1, NotSerialized) + { + If (LEqual (Arg0, Zero)) + { + Store (Zero, THEN) + Store (Zero, FTT) + } + Else + { + Store (Arg0, DUTY) + Store (One, THEN) + } + + Return (THEN) + } + + Method (PCLK, 0, NotSerialized) + { + Store (PTVL, Local0) + If (LEqual (Local0, Zero)) + { + Store (Zero, THEN) + Store (Zero, FTT) + } + Else + { + Decrement (Local0) + Store (Not (Local0), Local1) + And (Local1, 0x07, Local1) + Store (Local1, DUTY) + Store (One, THEN) + } + } + } + + Device (BAT1) + { + Name (_HID, EisaId ("PNP0C0A")) // _HID: Hardware ID + Name (_UID, One) // _UID: Unique ID + Name (_PCL, Package (0x01) // _PCL: Power Consumer List + { + _SB + }) + Method (_STA, 0, NotSerialized) // _STA: Status + { + If (LAnd (ECOK (), LEqual (ECDY, Zero))) + { + If (^^EC0.BAL0) + { + Sleep (0x14) + Return (0x1F) + } + Else + { + Sleep (0x14) + Return (0x0F) + } + } + Else + { + Sleep (0x14) + Return (0x1F) + } + } + + Method (_BIF, 0, NotSerialized) // _BIF: Battery Information + { + Name (STAT, Package (0x0D) + { + One, + 0x0FA0, + 0x0FA0, + One, + 0x2B5C, + 0x01A4, + 0x9C, + 0x0108, + 0x0EC4, + "PA3465U ", + "3658Q", + "Li-Ion", + "COMPAL " + }) + If (LAnd (ECOK (), LEqual (ECDY, Zero))) + { + Store (^^EC0.BDN0, Local0) + If (LEqual (Local0, 0x08)) + { + Store (0xB4, Index (STAT, 0x06)) + Store ("PA3457U ", Index (STAT, 0x09)) + } + + If (LEqual (Local0, 0x20)) + { + Store (0x0102, Index (STAT, 0x06)) + Store ("PA3457U ", Index (STAT, 0x09)) + } + + Sleep (0x14) + Store (^^EC0.BDC0, BFC1) + Sleep (0x14) + } + Else + { + Store ("Li-Ion", Index (STAT, 0x0B)) + } + + If (BFC1) + { + Divide (BFC1, 0x64, Local0, Local1) + Multiply (Local1, 0x64, Local1) + Store (Local1, BFC1) + Store (Local1, Index (STAT, One)) + Store (Local1, Index (STAT, 0x02)) + } + + Return (STAT) + } + + Method (_BST, 0, NotSerialized) // _BST: Battery Status + { + Name (PBST, Package (0x04) + { + Zero, + 0xFFFFFFFF, + 0xFFFFFFFF, + 0x2B5C + }) + Store (0x2B5C, Local3) + If (LAnd (ECOK (), LEqual (ECDY, Zero))) + { + Sleep (0x14) + Store (^^EC0.BST0, BST1) + Sleep (0x14) + Store (^^EC0.GAU0, BGU1) + Sleep (0x14) + } + + If (BFC1) + { + Multiply (BGU1, BFC1, Local2) + Divide (Local2, 0x64, Local4, Local2) + } + Else + { + Multiply (BGU1, 0x28, Local2) + } + + Store (BST1, Index (PBST, Zero)) + Store (Zero, Index (PBST, One)) + Store (Local2, Index (PBST, 0x02)) + Store (Local3, Index (PBST, 0x03)) + If (LGreater (ECDY, Zero)) + { + Decrement (ECDY) + If (LEqual (ECDY, Zero)) + { + Notify (BAT1, 0x80) + } + } + + Return (PBST) + } + } + + Device (PS2K) + { + Name (_HID, EisaId ("PNP0303")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IO (Decode16, + 0x0060, // Range Minimum + 0x0060, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IO (Decode16, + 0x0064, // Range Minimum + 0x0064, // Range Maximum + 0x01, // Alignment + 0x01, // Length + ) + IRQ (Edge, ActiveHigh, Exclusive, ) + {1} + }) + } + + Device (PS2M) + { + Name (_HID, EisaId ("PNP0F13")) // _HID: Hardware ID + Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings + { + IRQ (Edge, ActiveHigh, Exclusive, ) + {12} + }) + } + } + + Device (PATA) + { + Name (_ADR, 0x001F0001) // _ADR: Address + OperationRegion (PACS, PCI_Config, 0x40, 0xC0) + Field (PACS, DWordAcc, NoLock, Preserve) + { + PRIT, 16, + Offset (0x04), + PSIT, 4, + Offset (0x08), + SYNC, 4, + Offset (0x0A), + SDT0, 2, + , 2, + SDT1, 2, + Offset (0x14), + ICR0, 4, + ICR1, 4, + ICR2, 4, + ICR3, 4, + ICR4, 4, + ICR5, 4 + } + + Device (PRID) + { + Name (_ADR, Zero) // _ADR: Address + Method (_GTM, 0, NotSerialized) // _GTM: Get Timing Mode + { + Name (PBUF, Buffer (0x14) + { + /* 0000 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + /* 0008 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + /* 0010 */ 0x00, 0x00, 0x00, 0x00 + }) + CreateDWordField (PBUF, Zero, PIO0) + CreateDWordField (PBUF, 0x04, DMA0) + CreateDWordField (PBUF, 0x08, PIO1) + CreateDWordField (PBUF, 0x0C, DMA1) + CreateDWordField (PBUF, 0x10, FLAG) + Store (GETP (PRIT), PIO0) + Store (GDMA (And (SYNC, One), And (ICR3, One), + And (ICR0, One), SDT0, And (ICR1, One)), DMA0) + If (LEqual (DMA0, 0xFFFFFFFF)) + { + Store (PIO0, DMA0) + } + + If (And (PRIT, 0x4000)) + { + If (LEqual (And (PRIT, 0x90), 0x80)) + { + Store (0x0384, PIO1) + } + Else + { + Store (GETT (PSIT), PIO1) + } + } + Else + { + Store (0xFFFFFFFF, PIO1) + } + + Store (GDMA (And (SYNC, 0x02), And (ICR3, 0x02), + And (ICR0, 0x02), SDT1, And (ICR1, 0x02)), DMA1) + If (LEqual (DMA1, 0xFFFFFFFF)) + { + Store (PIO1, DMA1) + } + + Store (GETF (And (SYNC, One), And (SYNC, 0x02), + PRIT), FLAG) + If (And (LEqual (PIO0, 0xFFFFFFFF), LEqual (DMA0, 0xFFFFFFFF))) + { + Store (0x78, PIO0) + Store (0x14, DMA0) + Store (0x03, FLAG) + } + + Return (PBUF) + } + + Method (_STM, 3, NotSerialized) // _STM: Set Timing Mode + { + CreateDWordField (Arg0, Zero, PIO0) + CreateDWordField (Arg0, 0x04, DMA0) + CreateDWordField (Arg0, 0x08, PIO1) + CreateDWordField (Arg0, 0x0C, DMA1) + CreateDWordField (Arg0, 0x10, FLAG) + If (LEqual (SizeOf (Arg1), 0x0200)) + { + And (PRIT, 0xC0F0, PRIT) + And (SYNC, 0x02, SYNC) + Store (Zero, SDT0) + And (ICR0, 0x02, ICR0) + And (ICR1, 0x02, ICR1) + And (ICR3, 0x02, ICR3) + And (ICR5, 0x02, ICR5) + CreateWordField (Arg1, 0x62, W490) + CreateWordField (Arg1, 0x6A, W530) + CreateWordField (Arg1, 0x7E, W630) + CreateWordField (Arg1, 0x80, W640) + CreateWordField (Arg1, 0xB0, W880) + CreateWordField (Arg1, 0xBA, W930) + Or (PRIT, 0x8004, PRIT) + If (LAnd (And (FLAG, 0x02), And (W490, 0x0800))) + { + Or (PRIT, 0x02, PRIT) + } + + Or (PRIT, SETP (PIO0, W530, W640), PRIT) + If (And (FLAG, One)) + { + Or (SYNC, One, SYNC) + Store (SDMA (DMA0), SDT0) + If (LLess (DMA0, 0x1E)) + { + Or (ICR3, One, ICR3) + } + + If (LLess (DMA0, 0x3C)) + { + Or (ICR0, One, ICR0) + } + + If (And (W930, 0x2000)) + { + Or (ICR1, One, ICR1) + } + } + } + + If (LEqual (SizeOf (Arg2), 0x0200)) + { + And (PRIT, 0xBF0F, PRIT) + Store (Zero, PSIT) + And (SYNC, One, SYNC) + Store (Zero, SDT1) + And (ICR0, One, ICR0) + And (ICR1, One, ICR1) + And (ICR3, One, ICR3) + And (ICR5, One, ICR5) + CreateWordField (Arg2, 0x62, W491) + CreateWordField (Arg2, 0x6A, W531) + CreateWordField (Arg2, 0x7E, W631) + CreateWordField (Arg2, 0x80, W641) + CreateWordField (Arg2, 0xB0, W881) + CreateWordField (Arg2, 0xBA, W931) + Or (PRIT, 0x8040, PRIT) + If (LAnd (And (FLAG, 0x08), And (W491, 0x0800))) + { + Or (PRIT, 0x20, PRIT) + } + + If (And (FLAG, 0x10)) + { + Or (PRIT, 0x4000, PRIT) + If (LGreater (PIO1, 0xF0)) + { + Or (PRIT, 0x80, PRIT) + } + Else + { + Or (PRIT, 0x10, PRIT) + Store (SETT (PIO1, W531, W641), PSIT) + } + } + + If (And (FLAG, 0x04)) + { + Or (SYNC, 0x02, SYNC) + Store (SDMA (DMA1), SDT1) + If (LLess (DMA1, 0x1E)) + { + Or (ICR3, 0x02, ICR3) + } + + If (LLess (DMA1, 0x3C)) + { + Or (ICR0, 0x02, ICR0) + } + + If (And (W931, 0x2000)) + { + Or (ICR1, 0x02, ICR1) + } + } + } + } + + Device (P_D0) + { + Name (_ADR, Zero) // _ADR: Address + Method (_GTF, 0, NotSerialized) // _GTF: Get Task File + { + Name (PIB0, Buffer (0x0E) + { + /* 0000 */ 0x03, 0x00, 0x00, 0x00, 0x00, 0xA0, 0xEF, 0x03, + /* 0008 */ 0x00, 0x00, 0x00, 0x00, 0xA0, 0xEF + }) + CreateByteField (PIB0, One, PMD0) + CreateByteField (PIB0, 0x08, DMD0) + If (And (PRIT, 0x02)) + { + If (LEqual (And (PRIT, 0x09), 0x08)) + { + Store (0x08, PMD0) + } + Else + { + Store (0x0A, PMD0) + ShiftRight (And (PRIT, 0x0300), 0x08, Local0) + ShiftRight (And (PRIT, 0x3000), 0x0C, Local1) + Add (Local0, Local1, Local2) + If (LEqual (0x03, Local2)) + { + Store (0x0B, PMD0) + } + + If (LEqual (0x05, Local2)) + { + Store (0x0C, PMD0) + } + } + } + Else + { + Store (One, PMD0) + } + + If (And (SYNC, One)) + { + Store (Or (SDT0, 0x40), DMD0) + If (And (ICR1, One)) + { + If (And (ICR0, One)) + { + Add (DMD0, 0x02, DMD0) + } + + If (And (ICR3, One)) + { + Store (0x45, DMD0) + } + } + } + Else + { + Or (Subtract (And (PMD0, 0x07), 0x02), 0x20, DMD0) + } + + Return (PIB0) + } + } + + Device (P_D1) + { + Name (_ADR, One) // _ADR: Address + Method (_GTF, 0, NotSerialized) // _GTF: Get Task File + { + Name (PIB1, Buffer (0x0E) + { + /* 0000 */ 0x03, 0x00, 0x00, 0x00, 0x00, 0xB0, 0xEF, 0x03, + /* 0008 */ 0x00, 0x00, 0x00, 0x00, 0xB0, 0xEF + }) + CreateByteField (PIB1, One, PMD1) + CreateByteField (PIB1, 0x08, DMD1) + If (And (PRIT, 0x20)) + { + If (LEqual (And (PRIT, 0x90), 0x80)) + { + Store (0x08, PMD1) + } + Else + { + Add (And (PSIT, 0x03), ShiftRight (And (PSIT, 0x0C), + 0x02), Local0) + If (LEqual (0x05, Local0)) + { + Store (0x0C, PMD1) + } + Else + { + If (LEqual (0x03, Local0)) + { + Store (0x0B, PMD1) + } + Else + { + Store (0x0A, PMD1) + } + } + } + } + Else + { + Store (One, PMD1) + } + + If (And (SYNC, 0x02)) + { + Store (Or (SDT1, 0x40), DMD1) + If (And (ICR1, 0x02)) + { + If (And (ICR0, 0x02)) + { + Add (DMD1, 0x02, DMD1) + } + + If (And (ICR3, 0x02)) + { + Store (0x45, DMD1) + } + } + } + Else + { + Or (Subtract (And (PMD1, 0x07), 0x02), 0x20, DMD1) + } + + Return (PIB1) + } + } + } + } + + Device (SATA) + { + Name (_ADR, 0x001F0002) // _ADR: Address + OperationRegion (SACS, PCI_Config, 0x40, 0xC0) + Field (SACS, DWordAcc, NoLock, Preserve) + { + PRIT, 16, + SECT, 16, + PSIT, 4, + SSIT, 4, + Offset (0x08), + SYNC, 4, + Offset (0x0A), + SDT0, 2, + , 2, + SDT1, 2, + Offset (0x0B), + SDT2, 2, + , 2, + SDT3, 2, + Offset (0x14), + ICR0, 4, + ICR1, 4, + ICR2, 4, + ICR3, 4, + ICR4, 4, + ICR5, 4, + Offset (0x50), + MAPV, 2 + } + } + + Device (SBUS) + { + Name (_ADR, 0x001F0003) // _ADR: Address + OperationRegion (SMBP, PCI_Config, 0x40, 0xC0) + Field (SMBP, DWordAcc, NoLock, Preserve) + { + , 2, + I2CE, 1 + } + + OperationRegion (SMBI, SystemIO, 0x1C20, 0x10) + Field (SMBI, ByteAcc, NoLock, Preserve) + { + HSTS, 8, + Offset (0x02), + HCON, 8, + HCOM, 8, + TXSA, 8, + DAT0, 8, + DAT1, 8, + HBDR, 8, + PECR, 8, + RXSA, 8, + SDAT, 16 + } + + Method (SSXB, 2, Serialized) + { + If (STRT ()) + { + Return (Zero) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Arg0, TXSA) + Store (Arg1, HCOM) + Store (0x48, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (One) + } + + Return (Zero) + } + + Method (SRXB, 1, Serialized) + { + If (STRT ()) + { + Return (0xFFFF) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Or (Arg0, One), TXSA) + Store (0x44, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (DAT0) + } + + Return (0xFFFF) + } + + Method (SWRB, 3, Serialized) + { + If (STRT ()) + { + Return (Zero) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Arg0, TXSA) + Store (Arg1, HCOM) + Store (Arg2, DAT0) + Store (0x48, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (One) + } + + Return (Zero) + } + + Method (SRDB, 2, Serialized) + { + If (STRT ()) + { + Return (0xFFFF) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Or (Arg0, One), TXSA) + Store (Arg1, HCOM) + Store (0x48, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (DAT0) + } + + Return (0xFFFF) + } + + Method (SWRW, 3, Serialized) + { + If (STRT ()) + { + Return (Zero) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Arg0, TXSA) + Store (Arg1, HCOM) + And (Arg2, 0xFF, DAT0) + And (ShiftRight (Arg2, 0x08), 0xFF, DAT1) + Store (0x4C, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (One) + } + + Return (Zero) + } + + Method (SRDW, 2, Serialized) + { + If (STRT ()) + { + Return (0xFFFF) + } + + Store (Zero, I2CE) + Store (0xBF, HSTS) + Store (Or (Arg0, One), TXSA) + Store (Arg1, HCOM) + Store (0x4C, HCON) + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (Or (ShiftLeft (DAT1, 0x08), DAT0)) + } + + Return (0xFFFFFFFF) + } + + Method (SBLW, 4, Serialized) + { + If (STRT ()) + { + Return (Zero) + } + + Store (Arg3, I2CE) + Store (0xBF, HSTS) + Store (Arg0, TXSA) + Store (Arg1, HCOM) + Store (SizeOf (Arg2), DAT0) + Store (Zero, Local1) + Store (DerefOf (Index (Arg2, Zero)), HBDR) + Store (0x54, HCON) + While (LGreater (SizeOf (Arg2), Local1)) + { + Store (0x0FA0, Local0) + While (LAnd (LNot (And (HSTS, 0x80)), Local0)) + { + Decrement (Local0) + Stall (0x32) + } + + If (LNot (Local0)) + { + KILL () + Return (Zero) + } + + Store (0x80, HSTS) + Increment (Local1) + If (LGreater (SizeOf (Arg2), Local1)) + { + Store (DerefOf (Index (Arg2, Local1)), HBDR) + } + } + + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (One) + } + + Return (Zero) + } + + Method (SBLR, 3, Serialized) + { + Name (TBUF, Buffer (0x0100) {}) + If (STRT ()) + { + Return (Zero) + } + + Store (Arg2, I2CE) + Store (0xBF, HSTS) + Store (Or (Arg0, One), TXSA) + Store (Arg1, HCOM) + Store (0x54, HCON) + Store (0x0FA0, Local0) + While (LAnd (LNot (And (HSTS, 0x80)), Local0)) + { + Decrement (Local0) + Stall (0x32) + } + + If (LNot (Local0)) + { + KILL () + Return (Zero) + } + + Store (DAT0, Index (TBUF, Zero)) + Store (0x80, HSTS) + Store (One, Local1) + While (LLess (Local1, DerefOf (Index (TBUF, Zero)))) + { + Store (0x0FA0, Local0) + While (LAnd (LNot (And (HSTS, 0x80)), Local0)) + { + Decrement (Local0) + Stall (0x32) + } + + If (LNot (Local0)) + { + KILL () + Return (Zero) + } + + Store (HBDR, Index (TBUF, Local1)) + Store (0x80, HSTS) + Increment (Local1) + } + + If (COMP ()) + { + Or (HSTS, 0xFF, HSTS) + Return (TBUF) + } + + Return (Zero) + } + + Method (STRT, 0, Serialized) + { + Store (0xC8, Local0) + While (Local0) + { + If (And (HSTS, 0x40)) + { + Decrement (Local0) + Sleep (One) + If (LEqual (Local0, Zero)) + { + Return (One) + } + } + Else + { + Store (Zero, Local0) + } + } + + Store (0x0FA0, Local0) + While (Local0) + { + If (And (HSTS, One)) + { + Decrement (Local0) + Stall (0x32) + If (LEqual (Local0, Zero)) + { + KILL () + } + } + Else + { + Return (Zero) + } + } + + Return (One) + } + + Method (COMP, 0, Serialized) + { + Store (0x0FA0, Local0) + While (Local0) + { + If (And (HSTS, 0x02)) + { + Return (One) + } + Else + { + Decrement (Local0) + Stall (0x32) + If (LEqual (Local0, Zero)) + { + KILL () + } + } + } + + Return (Zero) + } + + Method (KILL, 0, Serialized) + { + Or (HCON, 0x02, HCON) + Or (HSTS, 0xFF, HSTS) + } + } + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/SSDT0.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/SSDT0.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/SSDT0.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/SSDT0.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,156 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_SSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "SSDT" + * Length 0x000002AD (685) + * Revision 0x01 + * Checksum 0x59 + * OEM ID "SataRe" + * OEM Table ID "SataAhci" + * OEM Revision 0x00001000 (4096) + * Compiler ID "INTL" + * Compiler Version 0x20050624 (537200164) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_SSDT.aml", "SSDT", 1, "SataRe", "SataAhci", 0x00001000) +{ + + External (_SB_.PCI0.SATA, DeviceObj) + External (GTF0, IntObj) + External (GTF1, IntObj) + External (GTF2, IntObj) + + Scope (\_SB.PCI0.SATA) + { + Device (PRT0) + { + Name (_ADR, 0xFFFF) // _ADR: Address + Method (_SDD, 1, NotSerialized) // _SDD: Set Device Data + { + Name (GBU0, Buffer (0x07) + { + 0x00, 0x00, 0x00, 0x00, 0x00, 0xA0, 0x00 + }) + CreateByteField (GBU0, 0x00, GB00) + CreateByteField (GBU0, 0x01, GB01) + CreateByteField (GBU0, 0x02, GB02) + CreateByteField (GBU0, 0x03, GB03) + CreateByteField (GBU0, 0x04, GB04) + CreateByteField (GBU0, 0x05, GB05) + CreateByteField (GBU0, 0x06, GB06) + If (LEqual (SizeOf (Arg0), 0x0200)) + { + CreateWordField (Arg0, 0x9C, W780) + If (And (W780, 0x08)) + { + Store (0x10, GB00) + Store (0x03, GB01) + Store (0xEF, GB06) + } + Else + { + Store (0x90, GB00) + Store (0x03, GB01) + Store (0xEF, GB06) + } + } + + Store (GBU0, GTF0) + } + + Method (_GTF, 0, NotSerialized) // _GTF: Get Task File + { + Return (GTF0) + } + } + + Device (PRT1) + { + Name (_ADR, 0x0001FFFF) // _ADR: Address + Method (_SDD, 1, NotSerialized) // _SDD: Set Device Data + { + Name (GBU1, Buffer (0x07) + { + 0x00, 0x00, 0x00, 0x00, 0x00, 0xA0, 0x00 + }) + CreateByteField (GBU1, 0x00, GB10) + CreateByteField (GBU1, 0x01, GB11) + CreateByteField (GBU1, 0x02, GB12) + CreateByteField (GBU1, 0x03, GB13) + CreateByteField (GBU1, 0x04, GB14) + CreateByteField (GBU1, 0x05, GB15) + CreateByteField (GBU1, 0x06, GB16) + If (LEqual (SizeOf (Arg0), 0x0200)) + { + CreateWordField (Arg0, 0x9C, W781) + If (And (W781, 0x08)) + { + Store (0x10, GB10) + Store (0x03, GB11) + Store (0xEF, GB16) + } + Else + { + Store (0x90, GB10) + Store (0x03, GB11) + Store (0xEF, GB16) + } + } + + Store (GBU1, GTF1) + } + + Method (_GTF, 0, NotSerialized) // _GTF: Get Task File + { + Return (GTF1) + } + } + + Device (PRT2) + { + Name (_ADR, 0x0002FFFF) // _ADR: Address + Method (_SDD, 1, NotSerialized) // _SDD: Set Device Data + { + Name (GBU2, Buffer (0x07) + { + 0x00, 0x00, 0x00, 0x00, 0x00, 0xA0, 0x00 + }) + CreateByteField (GBU2, 0x00, GB20) + CreateByteField (GBU2, 0x01, GB21) + CreateByteField (GBU2, 0x02, GB22) + CreateByteField (GBU2, 0x03, GB23) + CreateByteField (GBU2, 0x04, GB24) + CreateByteField (GBU2, 0x05, GB25) + CreateByteField (GBU2, 0x06, GB26) + If (LEqual (SizeOf (Arg0), 0x0200)) + { + CreateWordField (Arg0, 0x9C, W782) + If (And (W782, 0x08)) + { + Store (0x10, GB20) + Store (0x03, GB21) + Store (0xEF, GB26) + } + Else + { + Store (0x90, GB20) + Store (0x03, GB21) + Store (0xEF, GB26) + } + } + + Store (GBU2, GTF2) + } + + Method (_GTF, 0, NotSerialized) // _GTF: Get Task File + { + Return (GTF2) + } + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/SSDT1.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/SSDT1.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/SSDT1.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/SSDT1.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,57 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_SSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "SSDT" + * Length 0x000000A3 (163) + * Revision 0x01 + * Checksum 0xED + * OEM ID "BrtRef" + * OEM Table ID "DD01BRT" + * OEM Revision 0x00001000 (4096) + * Compiler ID "INTL" + * Compiler Version 0x20050624 (537200164) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_SSDT.aml", "SSDT", 1, "BrtRef", "DD01BRT", 0x00001000) +{ + + External (_SB_.PCI0.GFX0.DD03, DeviceObj) + External (_SB_.PCI0.LPCB.EC0_.BRTS) + + Scope (\_SB.PCI0.GFX0.DD03) + { + Method (_BCL, 0, NotSerialized) // _BCL: Brightness Control Levels + { + Return (Package (0x0A) + { + 0x46, + 0x28, + 0x00, + 0x0A, + 0x14, + 0x1E, + 0x28, + 0x32, + 0x3C, + 0x46 + }) + } + + Method (_BCM, 1, NotSerialized) // _BCM: Brightness Control Method + { + Divide (Arg0, 0x0A, Local0, Local1) + Store (Local1, \_SB.PCI0.LPCB.EC0.BRTS) + } + + Method (_BQC, 0, NotSerialized) // _BQC: Brightness Query Current + { + Multiply (\_SB.PCI0.LPCB.EC0.BRTS, 0x0A, Local0) + Return (Local0) + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/SSDT2.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/SSDT2.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/SSDT2.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/SSDT2.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,289 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_SSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "SSDT" + * Length 0x0000025F (607) + * Revision 0x01 + * Checksum 0xC8 + * OEM ID "PmRef" + * OEM Table ID "Cpu0Tst" + * OEM Revision 0x00003000 (12288) + * Compiler ID "INTL" + * Compiler Version 0x20050624 (537200164) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_SSDT.aml", "SSDT", 1, "PmRef", "Cpu0Tst", 0x00003000) +{ + + External (_PR_.CPU0, DeviceObj) + External (_PSS, IntObj) + External (CFGD) + External (PDC0) + + Scope (\_PR.CPU0) + { + Name (_TPC, 0x00) // _TPC: Throttling Present Capabilities + Method (_PTC, 0, NotSerialized) // _PTC: Processor Throttling Control + { + If (And (PDC0, 0x04)) + { + Return (Package (0x02) + { + ResourceTemplate () + { + Register (FFixedHW, + 0x00, // Bit Width + 0x00, // Bit Offset + 0x0000000000000000, // Address + ,) + }, + + ResourceTemplate () + { + Register (FFixedHW, + 0x00, // Bit Width + 0x00, // Bit Offset + 0x0000000000000000, // Address + ,) + } + }) + } + + Return (Package (0x02) + { + ResourceTemplate () + { + Register (SystemIO, + 0x04, // Bit Width + 0x01, // Bit Offset + 0x0000000000001010, // Address + ,) + }, + + ResourceTemplate () + { + Register (SystemIO, + 0x04, // Bit Width + 0x01, // Bit Offset + 0x0000000000001010, // Address + ,) + } + }) + } + + Name (TSSI, Package (0x08) + { + Package (0x05) + { + 0x64, + 0x03E8, + 0x00, + 0x00, + 0x00 + }, + + Package (0x05) + { + 0x58, + 0x036B, + 0x00, + 0x0F, + 0x00 + }, + + Package (0x05) + { + 0x4B, + 0x02EE, + 0x00, + 0x0E, + 0x00 + }, + + Package (0x05) + { + 0x3F, + 0x0271, + 0x00, + 0x0D, + 0x00 + }, + + Package (0x05) + { + 0x32, + 0x01F4, + 0x00, + 0x0C, + 0x00 + }, + + Package (0x05) + { + 0x26, + 0x0177, + 0x00, + 0x0B, + 0x00 + }, + + Package (0x05) + { + 0x19, + 0xFA, + 0x00, + 0x0A, + 0x00 + }, + + Package (0x05) + { + 0x0D, + 0x7D, + 0x00, + 0x09, + 0x00 + } + }) + Name (TSSM, Package (0x08) + { + Package (0x05) + { + 0x64, + 0x03E8, + 0x00, + 0x00, + 0x00 + }, + + Package (0x05) + { + 0x58, + 0x036B, + 0x00, + 0x1E, + 0x00 + }, + + Package (0x05) + { + 0x4B, + 0x02EE, + 0x00, + 0x1C, + 0x00 + }, + + Package (0x05) + { + 0x3F, + 0x0271, + 0x00, + 0x1A, + 0x00 + }, + + Package (0x05) + { + 0x32, + 0x01F4, + 0x00, + 0x18, + 0x00 + }, + + Package (0x05) + { + 0x26, + 0x0177, + 0x00, + 0x16, + 0x00 + }, + + Package (0x05) + { + 0x19, + 0xFA, + 0x00, + 0x14, + 0x00 + }, + + Package (0x05) + { + 0x0D, + 0x7D, + 0x00, + 0x12, + 0x00 + } + }) + Name (TSSF, 0x00) + Method (_TSS, 0, NotSerialized) // _TSS: Throttling Supported States + { + If (LAnd (LNot (TSSF), CondRefOf (_PSS))) + { + Store (_PSS, Local0) + Store (SizeOf (Local0), Local1) + Decrement (Local1) + Store (DerefOf (Index (DerefOf (Index (Local0, Local1)), 0x01)), + Local2) + Store (0x00, Local3) + While (LLess (Local3, SizeOf (TSSI))) + { + Store (Divide (Multiply (Local2, Subtract (0x08, Local3)), 0x08, + ), Local4) + Store (Local4, Index (DerefOf (Index (TSSI, Local3)), 0x01)) + Store (Local4, Index (DerefOf (Index (TSSM, Local3)), 0x01)) + Increment (Local3) + } + + Store (Ones, TSSF) + } + + If (And (PDC0, 0x04)) + { + Return (TSSM) + } + + Return (TSSI) + } + + Method (_TSD, 0, NotSerialized) // _TSD: Throttling State Dependencies + { + If (LAnd (And (CFGD, 0x01000000), LNot (And (PDC0, 0x04 + )))) + { + Return (Package (0x01) + { + Package (0x05) + { + 0x05, + 0x00, + 0x00, + 0xFD, + 0x02 + } + }) + } + + Return (Package (0x01) + { + Package (0x05) + { + 0x05, + 0x00, + 0x00, + 0xFC, + 0x01 + } + }) + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/SSDT3.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/SSDT3.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/SSDT3.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/SSDT3.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,73 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_SSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "SSDT" + * Length 0x000000A6 (166) + * Revision 0x01 + * Checksum 0x6D + * OEM ID "PmRef" + * OEM Table ID "Cpu1Tst" + * OEM Revision 0x00003000 (12288) + * Compiler ID "INTL" + * Compiler Version 0x20050624 (537200164) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_SSDT.aml", "SSDT", 1, "PmRef", "Cpu1Tst", 0x00003000) +{ + + External (_PR_.CPU0._PTC, IntObj) + External (_PR_.CPU0._TSS, IntObj) + External (_PR_.CPU1, DeviceObj) + External (CFGD) + External (PDC1) + + Scope (\_PR.CPU1) + { + Name (_TPC, 0x00) // _TPC: Throttling Present Capabilities + Method (_PTC, 0, NotSerialized) // _PTC: Processor Throttling Control + { + Return (\_PR.CPU0._PTC) + } + + Method (_TSS, 0, NotSerialized) // _TSS: Throttling Supported States + { + Return (\_PR.CPU0._TSS) + } + + Method (_TSD, 0, NotSerialized) // _TSD: Throttling State Dependencies + { + If (LAnd (And (CFGD, 0x01000000), LNot (And (PDC1, 0x04 + )))) + { + Return (Package (0x01) + { + Package (0x05) + { + 0x05, + 0x00, + 0x00, + 0xFD, + 0x02 + } + }) + } + + Return (Package (0x01) + { + Package (0x05) + { + 0x05, + 0x00, + 0x01, + 0xFC, + 0x01 + } + }) + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/SSDT4.dsl.original fwts-14.03.00/fwts-test/disassemble-0001/SSDT4.dsl.original --- fwts-14.02.00/fwts-test/disassemble-0001/SSDT4.dsl.original 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/SSDT4.dsl.original 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,216 @@ +/* + * Intel ACPI Component Architecture + * AML Disassembler version 20130418-64 [May 2 2013] + * Copyright (c) 2000 - 2014 Intel Corporation + * + * Disassembly of /tmp/fwts_iasl_12884_SSDT.dat, Fri May 3 09:41:56 2013 + * + * Original Table Header: + * Signature "SSDT" + * Length 0x000004E6 (1254) + * Revision 0x01 + * Checksum 0xDF + * OEM ID "PmRef" + * OEM Table ID "CpuPm" + * OEM Revision 0x00003000 (12288) + * Compiler ID "INTL" + * Compiler Version 0x20050624 (537200164) + */ +DefinitionBlock ("/tmp/fwts_iasl_12884_SSDT.aml", "SSDT", 1, "PmRef", "CpuPm", 0x00003000) +{ + + External (_PR_.CPU0, DeviceObj) + External (_PR_.CPU1, DeviceObj) + External (PCP0) + External (PCP1) + + Scope (\) + { + Name (SSDT, Package (0x0C) + { + "CPU0IST ", + 0xBF6D959E, + 0x000001B4, + "CPU1IST ", + 0xBF6D9752, + 0x000000C8, + "CPU0CST ", + 0xBF6D906F, + 0x000004AA, + "CPU1CST ", + 0xBF6D9519, + 0x00000085 + }) + Name (CFGD, 0x113F69F1) + Name (\PDC0, 0x80000000) + Name (\PDC1, 0x80000000) + Name (\SDTL, 0x00) + } + + Scope (\_PR.CPU0) + { + Name (HI0, 0x00) + Name (HC0, 0x00) + Method (_PDC, 1, NotSerialized) // _PDC: Processor Driver Capabilities + { + CreateDWordField (Arg0, 0x00, REVS) + CreateDWordField (Arg0, 0x04, SIZE) + Store (SizeOf (Arg0), Local0) + Store (Subtract (Local0, 0x08), Local1) + CreateField (Arg0, 0x40, Multiply (Local1, 0x08), TEMP) + Name (STS0, Buffer (0x04) + { + 0x00, 0x00, 0x00, 0x00 + }) + Concatenate (STS0, TEMP, Local2) + _OSC (Buffer (0x10) + { + /* 0000 */ 0x16, 0xA6, 0x77, 0x40, 0x0C, 0x29, 0xBE, 0x47, + /* 0008 */ 0x9E, 0xBD, 0xD8, 0x70, 0x58, 0x71, 0x39, 0x53 + }, REVS, SIZE, Local2) + } + + Method (_OSC, 4, NotSerialized) // _OSC: Operating System Capabilities + { + CreateDWordField (Arg3, 0x00, STS0) + CreateDWordField (Arg3, 0x04, CAP0) + CreateDWordField (Arg0, 0x00, IID0) + CreateDWordField (Arg0, 0x04, IID1) + CreateDWordField (Arg0, 0x08, IID2) + CreateDWordField (Arg0, 0x0C, IID3) + Name (UID0, Buffer (0x10) + { + /* 0000 */ 0x16, 0xA6, 0x77, 0x40, 0x0C, 0x29, 0xBE, 0x47, + /* 0008 */ 0x9E, 0xBD, 0xD8, 0x70, 0x58, 0x71, 0x39, 0x53 + }) + CreateDWordField (UID0, 0x00, EID0) + CreateDWordField (UID0, 0x04, EID1) + CreateDWordField (UID0, 0x08, EID2) + CreateDWordField (UID0, 0x0C, EID3) + If (LNot (LAnd (LAnd (LEqual (IID0, EID0), LEqual (IID1, EID1)), + LAnd (LEqual (IID2, EID2), LEqual (IID3, EID3))))) + { + Store (0x06, STS0) + Return (Arg3) + } + + If (LNotEqual (Arg1, 0x01)) + { + Store (0x0A, STS0) + Return (Arg3) + } + + Or (And (PDC0, 0x7FFFFFFF), CAP0, PDC0) + Store (And (PDC0, 0xFF), PCP0) + If (And (CFGD, 0x01)) + { + If (LAnd (LAnd (And (CFGD, 0x01000000), LEqual (And (PDC0, + 0x09), 0x09)), LNot (And (SDTL, 0x01)))) + { + Or (SDTL, 0x01, SDTL) + OperationRegion (IST0, SystemMemory, DerefOf (Index (SSDT, 0x01)), DerefOf (Index (SSDT, 0x02 + ))) + Load (IST0, HI0) + } + } + + If (And (CFGD, 0xF0)) + { + If (LAnd (LAnd (And (CFGD, 0x01000000), And (PDC0, 0x18 + )), LNot (And (SDTL, 0x02)))) + { + Or (SDTL, 0x02, SDTL) + OperationRegion (CST0, SystemMemory, DerefOf (Index (SSDT, 0x07)), DerefOf (Index (SSDT, 0x08 + ))) + Load (CST0, HC0) + } + } + + Return (Arg3) + } + } + + Scope (\_PR.CPU1) + { + Name (HI1, 0x00) + Name (HC1, 0x00) + Method (_PDC, 1, NotSerialized) // _PDC: Processor Driver Capabilities + { + CreateDWordField (Arg0, 0x00, REVS) + CreateDWordField (Arg0, 0x04, SIZE) + Store (SizeOf (Arg0), Local0) + Store (Subtract (Local0, 0x08), Local1) + CreateField (Arg0, 0x40, Multiply (Local1, 0x08), TEMP) + Name (STS1, Buffer (0x04) + { + 0x00, 0x00, 0x00, 0x00 + }) + Concatenate (STS1, TEMP, Local2) + _OSC (Buffer (0x10) + { + /* 0000 */ 0x16, 0xA6, 0x77, 0x40, 0x0C, 0x29, 0xBE, 0x47, + /* 0008 */ 0x9E, 0xBD, 0xD8, 0x70, 0x58, 0x71, 0x39, 0x53 + }, REVS, SIZE, Local2) + } + + Method (_OSC, 4, NotSerialized) // _OSC: Operating System Capabilities + { + CreateDWordField (Arg3, 0x00, STS1) + CreateDWordField (Arg3, 0x04, CAP1) + CreateDWordField (Arg0, 0x00, IID0) + CreateDWordField (Arg0, 0x04, IID1) + CreateDWordField (Arg0, 0x08, IID2) + CreateDWordField (Arg0, 0x0C, IID3) + Name (UID1, Buffer (0x10) + { + /* 0000 */ 0x16, 0xA6, 0x77, 0x40, 0x0C, 0x29, 0xBE, 0x47, + /* 0008 */ 0x9E, 0xBD, 0xD8, 0x70, 0x58, 0x71, 0x39, 0x53 + }) + CreateDWordField (UID1, 0x00, EID0) + CreateDWordField (UID1, 0x04, EID1) + CreateDWordField (UID1, 0x08, EID2) + CreateDWordField (UID1, 0x0C, EID3) + If (LNot (LAnd (LAnd (LEqual (IID0, EID0), LEqual (IID1, EID1)), + LAnd (LEqual (IID2, EID2), LEqual (IID3, EID3))))) + { + Store (0x06, STS1) + Return (Arg3) + } + + If (LNotEqual (Arg1, 0x01)) + { + Store (0x0A, STS1) + Return (Arg3) + } + + Or (And (PDC1, 0x7FFFFFFF), CAP1, PDC1) + Store (And (PDC1, 0xFF), PCP1) + If (And (CFGD, 0x01)) + { + If (LAnd (LAnd (And (CFGD, 0x01000000), LEqual (And (PDC1, + 0x09), 0x09)), LNot (And (SDTL, 0x10)))) + { + Or (SDTL, 0x10, SDTL) + OperationRegion (IST1, SystemMemory, DerefOf (Index (SSDT, 0x04)), DerefOf (Index (SSDT, 0x05 + ))) + Load (IST1, HI1) + } + } + + If (And (CFGD, 0xF0)) + { + If (LAnd (LAnd (And (CFGD, 0x01000000), And (PDC1, 0x18 + )), LNot (And (SDTL, 0x20)))) + { + Or (SDTL, 0x20, SDTL) + OperationRegion (CST1, SystemMemory, DerefOf (Index (SSDT, 0x0A)), DerefOf (Index (SSDT, 0x0B + ))) + Load (CST1, HC1) + } + } + + Return (Arg3) + } + } +} + diff -Nru fwts-14.02.00/fwts-test/disassemble-0001/test-0001.sh fwts-14.03.00/fwts-test/disassemble-0001/test-0001.sh --- fwts-14.02.00/fwts-test/disassemble-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/disassemble-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,43 @@ +#!/bin/bash +# +NAME=test-0001.sh + +TMPDIR=$TMP/disassemble-aml +TMPLOG=$TMP/disassemble-aml.log.$$ +HERE=$FWTSTESTDIR/disassemble-0001 + +mkdir $TMPDIR +$FWTS -w 80 --dumpfile=$HERE/acpidump.log --disassemble-aml=$TMPDIR - > $TMPLOG + +failed=0 +TEST="Test --disassemble-aml output to stdout" +diff $HERE/disassemble-aml-0001.log $TMPLOG >> $FAILURE_LOG +if [ $? -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME + failed=1 +fi + +for I in DSDT SSDT0 SSDT1 SSDT2 SSDT3 SSDT4 +do + TEST="Test --disassemble-aml against known $I" + # + # Remove lines that contain a tmp file output name in disassembly + # + grep -v "/tmp/fwts_iasl" $TMPDIR/$I.dsl | grep -v "AML Disassembler version" > $TMPDIR/$I.dsl.fixed.$$ + grep -v "/tmp/fwts_iasl" $HERE/$I.dsl.original | grep -v "AML Disassembler version" > $TMPDIR/$I.dsl.orig.fixed.$$ + + diff $TMPDIR/$I.dsl.fixed.$$ $TMPDIR/$I.dsl.orig.fixed.$$ + if [ $? -eq 0 ]; then + echo PASSED: $TEST, $NAME + else + echo FAILED: $TEST, $NAME + failed=1 + fi + + rm $TMPDIR/$I.dsl.fixed.$$ $TMPDIR/$I.dsl.orig.fixed.$$ +done + +rm -rf $TMPDIR $TMPLOG +exit $failed diff -Nru fwts-14.02.00/fwts-test/klog-0001/klog-0001.log fwts-14.03.00/fwts-test/klog-0001/klog-0001.log --- fwts-14.02.00/fwts-test/klog-0001/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,15142 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [HIGH] KlogAcpiMultipleApicMadtFound: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC +klog /MADT found, using 0 +klog +klog ADVICE: The kernel has detected more than one ACPI +klog Multiple APIC Description Table (MADT) (these tables have +klog the "APIC" signature). There should only be one MADT and +klog the kernel will by default select the first one. However, +klog one can override this and select the Nth MADT using +klog acpi_apic_instance=N. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Gpe0Block: 00008018/0000000000008028, +klog using 32 (20090903/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Gpe0Block: 00008020/0000000000008028, +klog using 32 (20090903/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Gpe0Block: 0x00008020 +klog /0x0000000000008028, using 32 (20110112/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 00008030 +klog /0000000000008020, using 32 (20090903/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 00008800 +klog /0000000000008100, using 32 (20090903/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 0x00000900 +klog /0x0000000000000800, using 32 (20110112/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 0x00001218 +klog /0x0000000000001214, using 32 (20100428/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 0x00001218 +klog /0x0000000000001214, using 32 (20110413/tbfadt-430) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatch: Test 1, +klog HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X +klog address mismatch in Pm2ControlBlock: 0x00008800 +klog /0x0000000000008100, using 32 (20110112/tbfadt-427) +klog +klog ADVICE: The FADT table contains a mismatch between a 32 +klog bit pointer and a 64 bit Generic Address pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect. If a non-null 32 bit pointer exists, +klog then the kernel will opt for this in preference to the 64 +klog bit pointer even though this is not in accordance to the +klog ACPI specification. +klog +klog FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, +klog CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid +klog RSDP was not found (20090903/tbxfroot-219) +klog +klog ADVICE: An ACPI compatible system must provide an RSDP +klog (Root System Description Pointer). This structure provides +klog the physical address of the RSDT and XSDT. Since this +klog could not be found, the ACPI driver has had to disable +klog ACPI support. +klog +klog FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, +klog CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid +klog RSDP was not found (20100428/tbxfroot-219) +klog +klog ADVICE: An ACPI compatible system must provide an RSDP +klog (Root System Description Pointer). This structure provides +klog the physical address of the RSDT and XSDT. Since this +klog could not be found, the ACPI driver has had to disable +klog ACPI support. +klog +klog FAILED [CRITICAL] KlogAcpiValidRsdpNotFound: Test 1, +klog CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid +klog RSDP was not found (20110112/tbxfroot-219) +klog +klog ADVICE: An ACPI compatible system must provide an RSDP +klog (Root System Description Pointer). This structure provides +klog the physical address of the RSDT and XSDT. Since this +klog could not be found, the ACPI driver has had to disable +klog ACPI support. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! 20090521 tbfadt-370 +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20090903/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20100121/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20100428/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20100702/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20101013/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20110112/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20110316/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpiTwoFacs: Test 1, HIGH Kernel message +klog : [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in +klog FADT - two FACS tables! (20110413/tbfadt-369) +klog +klog ADVICE: The FADT table contains a mismatch between the 32 +klog bit pointer (FIRMWARE_CTRL) and 64 bit pointer +klog (X_FIRMWARE_CTRL) pointer to the FACS table. Section 5.2.9 +klog of version 4.0a of the ACPI specification states that +klog X_FIRMWARE_CTRL should be zero if FIRMWARE_CTRL is defined +klog , or FIRMWARE_CTRL should be zero if X_FIRMWARE_CTRL is +klog zero. With two different pointers defined, the kernel has +klog to make a choice, and opts for the 32 bit pointer. Because +klog these pointers are different, it suggests either one of +klog them is incorrect, or different 32 bit and 64 bit FACS +klog tables are present in your system, which is NOT complaint +klog with the ACPI specification. The kernel has to make a +klog choice and opts for the 32 bit FIRMWARE_CTRL. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3776BF40 +klog /0x000000003776ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x38FE4E40 +klog /0x0000000038FE4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x38FE4E40 +klog /0x0000000038FE4D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F465F40 +klog /0x000000003F465F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F473F40 +klog /0x000000003F473F80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F509F40 +klog /0x000000003F509F80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F509F40 +klog /0x000000003F509F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F611E40 +klog /0x000000003F611D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F611E40 +klog /0x000000003F611D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x3F611E40 +klog /0x000000003F611D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x6FB75F40 +klog /0x000000006FB75F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x77603F40 +klog /0x0000000077603F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x77603F40 +klog /0x0000000077603F80, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7762DF40 +klog /0x000000007762DF80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x77630F40 +klog /0x0000000077630F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7776BF40 +klog /0x000000007776ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7776BF40 +klog /0x000000007776ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x78FE4E40 +klog /0x0000000078FE4D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7A7E4E40 +klog /0x000000007A7E4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7BE20F40 +klog /0x000000007BE20F80, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7D7E4E40 +klog /0x000000007D7E4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7D8C4F40 +klog /0x000000007D8C5E40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7F611E40 +klog /0x000000007F611D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7FCEBF40 +klog /0x000000007FCE7F40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0x7FD5AF40 +klog /0x000000007FD5FF40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAAD87F40 +klog /0x00000000AADA1D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAAD87F40 +klog /0x00000000AADA1D40, using 32 (20110316/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAAD87F40 +klog /0x00000000AADA1D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAADB7F40 +klog /0x00000000AADD1D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAADB7F40 +klog /0x00000000AADD1D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAADB9F40 +klog /0x00000000AADD3D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAAF2AF40 +klog /0x00000000AAF2DD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAAFE4E40 +klog /0x00000000AAFE4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAB62DF40 +klog /0x00000000AB62DF80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAB62DF40 +klog /0x00000000AB62DF80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xAFB77F40 +klog /0x00000000AFB77F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB5F17E40 +klog /0x00000000B5F17D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB5F1BE40 +klog /0x00000000B5F1BD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB6D5AF40 +klog /0x00000000B6D61D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB6DB9F40 +klog /0x00000000B6DD3D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB762CF40 +klog /0x00000000B762CF80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB7B1CE40 +klog /0x00000000B7B1CD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB7B1CE40 +klog /0x00000000B7B1CD40, using 32 (20110316/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB7B1CE40 +klog /0x00000000B7B1CD40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xB8FE4E40 +klog /0x00000000B8FE4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBAD17F40 +klog /0x00000000BAD31D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBAD87F40 +klog /0x00000000BADA1D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBADABF40 +klog /0x00000000BADAED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBADABF40 +klog /0x00000000BADAED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBAF1CF40 +klog /0x00000000BAF1FD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBAFE4E40 +klog /0x00000000BAFE4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBAFE5E40 +klog /0x00000000BAFE5D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB4D1F40 +klog /0x00000000BB4DFD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB583F40 +klog /0x00000000BB59DD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB583F40 +klog /0x00000000BB59DD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB5B3F40 +klog /0x00000000BB5CDD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB5B3F40 +klog /0x00000000BB5CDD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB5B3F40 +klog /0x00000000BB5CDD40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB62CF40 +klog /0x00000000BB62CF80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB62DF40 +klog /0x00000000BB62DF80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB648F40 +klog /0x00000000BB64BD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB649F40 +klog /0x00000000BB64CD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBB76BF40 +klog /0x00000000BB76ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBBE27F40 +klog /0x00000000BBE27F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBBE27F40 +klog /0x00000000BBE27F80, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBBE29F40 +klog /0x00000000BBE29F80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDB65F40 +klog /0x00000000BDB6BE40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF17E40 +klog /0x00000000BDF17D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF18E40 +klog /0x00000000BDF18D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF19E40 +klog /0x00000000BDF19D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF19E40 +klog /0x00000000BDF19D40, using 32 (20101013/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF19E40 +klog /0x00000000BDF19D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBDF1AE40 +klog /0x00000000BDF1AD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBE97CF40 +klog /0x00000000BE996D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBEDB7F40 +klog /0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBEDB8F40 +klog /0x00000000BEDD1D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBEDB8F40 +klog /0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBEDB9F40 +klog /0x00000000BEDD3D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBF4D1F40 +klog /0x00000000BF4DFD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBF62CF40 +klog /0x00000000BF62CF80, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBF62DF40 +klog /0x00000000BF62DF80, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBF654F40 +klog /0x00000000BF662D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBF7E4E40 +klog /0x00000000BF7E4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBFA4CF40 +klog /0x00000000BFA51F40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBFA4CF40 +klog /0x00000000BFA51F40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBFE17E40 +klog /0x00000000BFE17D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xBFE21F40 +klog /0x00000000BFE21E40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xC9E58F40 +klog /0x00000000C9E6ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCAB39F40 +klog /0x00000000CAB3CD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCAFE4E40 +klog /0x00000000CAFE4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCAFE4E40 +klog /0x00000000CAFE4D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCAFE5E40 +klog /0x00000000CAFE5D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCB61DF40 +klog /0x00000000CB61DE40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCB61DF40 +klog /0x00000000CB61DE40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCBE4CF40 +klog /0x00000000CBE51F40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCBE4CF40 +klog /0x00000000CBE51F40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCBF6BF40 +klog /0x00000000CBF6ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF27F40 +klog /0x00000000CEF2AD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF27F40 +klog /0x00000000CEF2AD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF27F40 +klog /0x00000000CEF2AD40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF28F40 +klog /0x00000000CEF2BD40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF28F40 +klog /0x00000000CEF2BD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF2BF40 +klog /0x00000000CEF2ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCEF2BF40 +klog /0x00000000CEF2ED40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF36BF40 +klog /0x00000000CF36ED40, using 32 (20100702/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF36BF40 +klog /0x00000000CF36ED40, using 32 (20101013/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF76BF40 +klog /0x00000000CF76ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF76BF40 +klog /0x00000000CF76ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF7E4E40 +klog /0x00000000CF7E4D40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF7E4E40 +klog /0x00000000CF7E4D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCF7E4E40 +klog /0x00000000CF7E4D40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCFBFAF40 +klog /0x00000000CFBF6F40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCFD56F40 +klog /0x00000000CFD52F40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xCFD5FF40 +klog /0x00000000CFD65E40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xD2F2DF40 +klog /0x00000000D2F30D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDB36BF40 +klog /0x00000000DB36ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDB36BF40 +klog /0x00000000DB36ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDB76BF40 +klog /0x00000000DB76ED40, using 32 (20100428/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDB76BF40 +klog /0x00000000DB76ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDB76BF40 +klog /0x00000000DB76ED40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDEB39F40 +klog /0x00000000DEB3CD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDEB3AF40 +klog /0x00000000DEB3DD40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDEEBAF40 +klog /0x00000000DEEBDD40, using 32 (20110413/tbfadt-489) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDEF2DF40 +klog /0x00000000DEF30D40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 0xDF64BF40 +klog /0x00000000DF64ED40, using 32 (20110112/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 3762DF40 +klog /000000003762DF80, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 3F611E40 +klog /000000003F611D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 7776BF40 +klog /000000007776ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 7DB61F40 +klog /000000007DB66F40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 7F3ECF40 +klog /000000007F3E8F40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 7F611E40 +klog /000000007F611D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - 9DCC4F40 +klog /000000009DCC5E40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - AFB75F40 +klog /00000000AFB75F80, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - B7B1CE40 +klog /00000000B7B1CD40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - B7B1CE40 +klog /00000000B7B1CD40, using 32 (20100121/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BADABF40 +klog /00000000BADAED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BAF2DF40 +klog /00000000BAF30D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BB62DF40 +klog /00000000BB62DF80, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BB76BF40 +klog /00000000BB76ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BBE28E40 +klog /00000000BBE28D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BDB5BF40 +klog /00000000BDB60F40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BDB5FF40 +klog /00000000BDB64F40, using 32 20090521 tbfadt-487 +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BDF17E40 +klog /00000000BDF17D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BEDB7F40 +klog /00000000BEDD1D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BF62CF40 +klog /00000000BF62CF80, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - BF76BF40 +klog /00000000BF76ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - CBE4AF40 +klog /00000000CBE4FF40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - CBF6BF40 +klog /00000000CBF6ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - CEF28F40 +klog /00000000CEF2BD40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - CEF2CF40 +klog /00000000CEF2FD40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - D2F2DF40 +klog /00000000D2F30D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - DADC1F40 +klog /00000000DADD5D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - DB36BF40 +klog /00000000DB36ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - DB76BF40 +klog /00000000DB76ED40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - DEEBAF40 +klog /00000000DEEBDD40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X FACS address mismatch in FADT - DEF2DF40 +klog /00000000DEF30D40, using 32 (20090903/tbfadt-486) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 20090521 +klog tbfadt-527 +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 (20090903 +klog /tbfadt-526) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 (20100428 +klog /tbfadt-526) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 (20101013 +klog /tbfadt-526) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 (20110112 +klog /tbfadt-526) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpi32Bit64BitAddressMismatchInFadt: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: 32 +klog /64X length mismatch in Gpe1Block: 0/32 (20110413 +klog /tbfadt-529) +klog +klog ADVICE: The FADT table contains Generic Address Structure +klog that has a mismatch between the 32 bit and 64 bit versions +klog of an address. This should be fixed so there are no +klog mismatches. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 0.000000] ACPI Warning: BIOS XSDT has NULL +klog entry, using RSDT (20110112/tbutils-663) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x3E, should be 0x41 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x65, should be 0x68 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x69, should be 0x6C (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x69, should be 0x6C (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x9E, should be 0xA1 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0xDF, should be 0xE2 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0xE4, should be 0xE7 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect +klog checksum in table [XSDT] - 0x89, should be 0x7D (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm1aControlBlock: 32, using default 16 (20090903 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm1aControlBlock: 32, using default 16 (20100428 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm1aControlBlock: 32, using default 16 (20110112 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm1aControlBlock: 32, using default 16 (20110413 +klog /tbfadt-610) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm1bControlBlock: 32, using default 16 (20090903 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 0, using default 8 (20090903 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 0, using default 8 (20100428 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 0, using default 8 (20110112 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 16, using default 8 (20100428 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 16, using default 8 (20110112 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 16, using default 8 (20110413 +klog /tbfadt-610) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 32, using default 8 (20090903 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for Pm2ControlBlock: 32, using default 8 (20110112 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiFadtInvalidLength: Test 1, HIGH +klog Kernel message: [ 0.000000] ACPI Warning: Invalid length +klog for PmTimerBlock: 24, using default 32 (20100428 +klog /tbfadt-607) +klog +klog ADVICE: This item in the FADT is the incorrect length. +klog Should be corrected. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 000000000000102C/0 20090521 tbfadt-558 +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 000000000000102C/0 (20090903/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 000000000000802C/0 (20090903/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x0000000000000000/0x4 (20110413/tbfadt-560) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x000000000000102C/0x0 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x000000000000102C/0x0 (20101013/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x000000000000102C/0x0 (20110112/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x000000000000102C/0x0 (20110413/tbfadt-560) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Gpe1Block has zero address or length: +klog 0x00000000000044A0/0x0 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0000000000000000/1 20090521 tbfadt-558 +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0000000000000000/1 (20090903/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0000000000000050/0 (20090903/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000000/0x1 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000000/0x1 (20101013/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000000/0x1 (20110112/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000000/0x1 (20110413/tbfadt-560) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000450/0x0 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000450/0x0 (20110112/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000814/0x0 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000820/0x0 (20100428/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning: +klog Optional field Pm2ControlBlock has zero address or length: +klog 0x0000000000000820/0x0 (20110112/tbfadt-557) +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOptionalFieldZeroAddressOrLength: +klog Test 1, HIGH Kernel message: [ 0.000000] ACPI Warning +klog (tbfadt-0460): Optional field "Gpe1Block" has zero address +klog or length: 000000000000102C/0 [20080926] +klog +klog ADVICE: An ACPI table contains Generic Address Structure +klog that has an address that is incorrectly set to zero, or a +klog zero length. This needs to be fixed. +klog +klog FAILED [MEDIUM] KlogBiosMtrrIncorrectMask: Test 1, MEDIUM +klog Kernel message: [ 0.000000] mtrr: your BIOS has configured +klog an incorrect mask, fixing it. +klog +klog ADVICE: The Memory Type Range Registers (MTRRs) which +klog define memory caching policy are misconfigued by the BIOS. +klog In this case, the mask is incorrectly set and the kernel +klog has detected this and worked around the firmware bug. +klog +klog FAILED [CRITICAL] KlogBiosCpuMtrrMisconfigured: Test 1, +klog CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: +klog CPU MTRRs don't cover all of memory, losing 1408MB of RAM. +klog +klog ADVICE: The Memory Type Range Registers (MTRRs) which +klog define memory caching policy are misconfigued by the BIOS +klog and don't appear to cover all available physical memory. +klog The kernel has detected this and has reduced the amount of +klog memory available to be safe. Either check that the BIOS +klog memory caching options are set correctly or contact your +klog BIOS vendor to get this fixed. +klog +klog FAILED [CRITICAL] KlogBiosCpuMtrrMisconfigured: Test 1, +klog CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: +klog CPU MTRRs don't cover all of memory, losing 4MB of RAM. +klog +klog ADVICE: The Memory Type Range Registers (MTRRs) which +klog define memory caching policy are misconfigued by the BIOS +klog and don't appear to cover all available physical memory. +klog The kernel has detected this and has reduced the amount of +klog memory available to be safe. Either check that the BIOS +klog memory caching options are set correctly or contact your +klog BIOS vendor to get this fixed. +klog +klog FAILED [HIGH] KlogAcpiUnknownAmlOpcode: Test 1, HIGH +klog Kernel message: [ 0.022719] ACPI Error: Found unknown +klog opcode 0xFD at AML address f7ffe14c offset 0xE8, ignoring +klog (20110112/psloop-141) +klog +klog ADVICE: ACPI execution run time error: The ACPI +klog interpreter has reached an opcode that is unknown, this +klog normally is a bug in the underlying AML code either +klog because of badly written AML code or the compiler has +klog produced code that is incorrect or the ACPI interpreter +klog does not support this valid opcode. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.025446] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x007B] at table offset 0x00BE (20110112/psloop-526) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.025463] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x007B] at table offset 0x00C3 (20110112/psloop-526) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.034090] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ee025630), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.040119] [Firmware Bug]: the BIOS has +klog corrupted hw-PMU resources (MSR 186 is 400000) +klog +klog ADVICE: The kernel has detected a Firmware bug in the BIOS +klog or ACPI which needs investigating and fixing. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042222] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x2366 (20100121/psloop-526) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042240] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x006C (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042253] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x006F (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042265] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x0070 (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042279] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x0077 (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042291] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x007C (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042302] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x007B] at table offset 0x007D (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042311] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x007B] at table offset 0x007F (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.042322] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x007B] at table offset 0x0080 (20090903/psloop-522) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [CRITICAL] KlogAcpiDetectedUnsupportedOpCode: Test +klog 1, CRITICAL Kernel message: [ 0.044066] ACPI Warning: +klog Detected an unsupported executable opcode at module-level: +klog [0x0070] at table offset 0x678F (20100428/psloop-526) +klog +klog ADVICE: An illegal AML opcode has been found and is +klog ignored. This indicates either badly compiled code or +klog opcode corruption in the DSDT or SSDT tables or a bug in +klog the ACPI execution engine. Recommend disassembing using +klog iasl to find any offending code. +klog +klog FAILED [HIGH] KlogAcpiParameterCountMistmatch: Test 1, +klog HIGH Kernel message: [ 0.045570] ACPI Warning: For +klog _SB_.PCI0.LPCB.H_EC._GLK: Parameter count mismatch - ASL +klog declared 1, ACPI requires 0 (20110112/nspredef-352) +klog +klog ADVICE: The ACPI Method was executing with a different +klog number of parameters than the Method expected. This should +klog be fixed. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.050847] ACPI Warning: Package +klog List length (0x10) larger than NumElements count (0x8), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.053909] ACPI Warning: Package +klog List length (0x10) larger than NumElements count (0x6), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiDsdtCorruptOrReplaced: Test 1, HIGH +klog Kernel message: [ 0.074070] ACPI Error: The DSDT has been +klog corrupted or replaced - old, new headers below (20110413 +klog /tbutils-372) +klog +klog ADVICE: Some firmware corrupts the DSDT or installs a bad +klog new DSDT, so a workaround is to copy the DSDT. Booting +klog with kernel parameter acpi=copy_dsdt may fix this issue. +klog +klog FAILED [HIGH] KlogAcpiExecFailure: Test 1, HIGH Kernel +klog message: [ 0.074090] ACPI Error: Please send DMI info to +klog linux-acpi@vger.kernel.org +klog +klog ADVICE: The kernel has most probably detected an error +klog while executing ACPI AML. The error lists the ACPI driver +klog module and the line number where the bug has been caught +klog and the method that caused the error. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.076767] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xA6, should be 0x97 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.077157] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x4C, should be 0x21 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.077854] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.078226] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.APCT] (Node +klog f7033090), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.078254] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.GCAP] (Node +klog f7033078), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.078268] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 07, should be 06 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.078278] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f7033048), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.078686] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x38, should be 0x81 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.083817] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xF9, should be 0xF3 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.085590] ACPI Error: Could not map +klog memory at 0x000000007F5E3520, size 463 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.085606] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.APPT] (Node f403d228), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.085618] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.GCAP] (Node f403d1f8), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.085627] ACPI Error: Could not map +klog memory at 0x000000007D3E1520, size 463 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.085628] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1._PDC] (Node f403d1c8), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.085974] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x6B, should be 0x39 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.086054] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x96 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.086081] ACPI Error: Could not map +klog memory at 0x000000007F395420, size 141 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.086097] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.APCT] (Node f403d210), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.086108] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2.GCAP] (Node f403d270), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.086118] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2._PDC] (Node f403d240), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.086119] ACPI Error: Could not map +klog memory at 0x000000007D198120, size 141 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.088999] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xE8, should be 0xDB (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.089613] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xB3, should be 0xAE (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.089701] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x77, should be 0x6C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.091402] ACPI Warning: Package +klog List length (0x7) larger than NumElements count (0x3), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.091463] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.APPT] (Node +klog f701e228), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.091510] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.GCAP] (Node +klog f701e1f8), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.091541] ACPI Warning: Incorrect +klog checksum in table [OEMB] - F6, should be E7 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.091552] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f701e1c8), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.091778] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8E, should be 7F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.091911] ACPI Warning: Incorrect +klog checksum in table [APIC] - 0x8E, should be 0x91 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.092524] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.APCT] (Node +klog f701e210), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.092570] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2.GCAP] (Node +klog f701e270), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.092612] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._PDC] (Node +klog f701e240), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.093544] ACPI Error: Needed type +klog [Reference], found [Device] f7019f90 (20100428 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.094477] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x97, should be 0x90 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiMissingBqc: Test 1, HIGH Kernel +klog message: [ 0.094856] [Firmware Bug]: ACPI: No _BQC method, +klog cannot determine initial brightness +klog +klog ADVICE: _BQC (Brightness Query Current level) seems to be +klog missing. This method returns the current brightness level +klog of a built-in display output device. +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.095719] ACPI Error: Could not map +klog memory at 0x0000000087127520, size 463 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.095737] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.APPT] (Node f383e498), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.095749] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.GCAP] (Node f383e468), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.095760] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1._PDC] (Node f383e438), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiMissingBqc: Test 1, HIGH Kernel +klog message: [ 0.095817] [Firmware Bug]: ACPI: ACPI brightness +klog control misses _BQC function +klog +klog ADVICE: _BQC (Brightness Query Current level) seems to be +klog missing. This method returns the current brightness level +klog of a built-in display output device. +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.096257] ACPI Error: Could not map +klog memory at 0x0000000086DB1C20, size 141 (20110112 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.096273] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1.APCT] (Node f383e480), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.096285] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2.GCAP] (Node f383e4e0), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.096295] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2._PDC] (Node f383e4b0), +klog AE_NO_MEMORY (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.096447] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 66, should be 62 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.098113] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x2C, should be 0x28 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.099413] ACPI Warning: Incorrect +klog checksum in table [OEMB] - E2, should be D9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.101941] ACPI Error: Field [ASSM] at +klog 524320 exceeds Buffer [BUF0] size 880 (bits) (20110112 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.101946] ACPI Error: Method parse/execution +klog failed [_SB_.MEM_._CRS] (Node f442af60), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.101953] ACPI Error: Method execution failed +klog [_SB_.MEM_._CRS] (Node f442af60), AE_AML_BUFFER_LIMIT +klog (20110112/uteval-103) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.102803] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 6E, should be 40 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.104297] ACPI Error (psargs-0359): +klog [OSYS] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.104304] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ACEL._STA] (Node +klog f701c4e0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.105061] ACPI Warning: Package +klog List length (0xCA) larger than NumElements count (0x4), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.106912] ACPI Warning: Package +klog List length (0x5) larger than NumElements count (0x2), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.108470] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 3F, should be 3B (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.109343] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x29, should be 0x1C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.109618] ACPI Error: Needed type +klog [Reference], found [Device] f7012f90 (20090903 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.109635] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f701adc8), +klog AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.110905] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 32, should be 25 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.113709] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1._PDC] (Node f5822150), +klog AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.113864] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2._PDC] (Node f58221e0), +klog AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.114544] ACPI Error: Method parse +klog /execution failed [_PR_.CPU0._PDC] (Node f54211c8), +klog AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.115838] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 79, should be 6C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.118277] ACPI Error (psargs-0359): +klog [SUPP] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.118284] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7012780), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.118568] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 2F, should be 22 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.120765] ACPI Warning for +klog _SB_.PCI0.P2P_._PRT: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiOpRegionMemMapError: Test 1, HIGH +klog Kernel message: [ 0.122347] ACPI Error: Could not map +klog memory at 0x00000000000FFA32, size 0 (20100428 +klog /exregion-178) +klog +klog ADVICE: The ACPI interpreter was requested to read or +klog write to a memory region via a memory space handler but +klog the logical address could not be mapped from the given +klog physical address given. This memory region is not mappable +klog , so it could be an AML opregion bug or a bug in the +klog kernel (less likely). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.122369] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU0._PDC] (Node +klog f70191c8), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.128150] ACPI Warning for +klog _SB_.PCI0.P32_._PRT: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.132540] ACPI Warning: Incorrect +klog checksum in table [OEMB] - CB, should be C6 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.136585] ACPI Error: Field [ALB2] at +klog 120 exceeds Buffer [CRSA] size 104 (bits) (20090903 +klog /dsopcode-596) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.136600] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] +klog (Node dd8159d8), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.136637] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] (Node +klog dd8159d8), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.137394] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 29, should be 1A (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.140000] [Firmware Bug]: the BIOS has +klog corrupted hw-PMU resources (MSR 186 is 43003c) +klog +klog ADVICE: The kernel has detected a Firmware bug in the BIOS +klog or ACPI which needs investigating and fixing. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.141112] ACPI Warning: Incorrect +klog checksum in table [OEMB] - ED, should be E8 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.150000] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node +klog ffff880137e47618), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.150000] ACPI Error: No handler for +klog Region [ERAM] (ffff880137e58e10) [EmbeddedControl] +klog (20110112/evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.154764] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 7D, should be 6E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.159797] ACPI Error: Method parse/execution +klog failed [_SB_._OSC] (Node f4421648), AE_NOT_FOUND (20110413 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.160246] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880147830960), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.160246] ACPI Error: [_SB_.PHSR] +klog Namespace lookup failure, AE_NOT_FOUND (20110112 +klog /psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [MEDIUM] KlogBiosMtrrsInconsistentAcrossCPUs: Test +klog 1, MEDIUM Kernel message: [ 0.160449] mtrr: your CPUs had +klog inconsistent fixed MTRR settings +klog +klog ADVICE: The fixed Memory Type Range Registers (MTRRs) +klog which define memory caching policy are not consistent +klog across all CPUs which is a firmware bug. The kernel has +klog worked around this bug, but it may be worth getting the +klog BIOS vendor to fix this. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.163431] ACPI Warning: Package +klog List length (0x6) larger than NumElements count (0x3), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.163687] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xFC, should be 0xFB (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.164073] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xEE, should be 0xED (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.165683] ACPI Error: [CDW1] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.165689] ACPI Error: Method parse/execution +klog failed [_SB_._OSC] (Node f3821648), AE_NOT_FOUND (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.166264] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node f701a648), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.166294] ACPI Error: Method parse/execution +klog failed [_SB_._OSC] (Node f4021648), AE_NOT_FOUND (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.166323] ACPI Error: No handler for +klog Region [ERAM] (f7022168) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.166336] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] +klog (Node f7021bb8), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.166808] ACPI Error: No handler for +klog Region [ERAM] (f7023938) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.166808] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.HTEV] (Node f701be10), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.166808] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] +klog (Node f7024d08), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.169111] ACPI Error: [HPTF] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.169117] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.HPET._STA] (Node f402ae58), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.169362] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x18, should be 0x13 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.169398] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x15, should be 0xAC (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.170000] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a06440), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.170000] ACPI Warning: Package +klog List length (0x6) larger than NumElements count (0x2), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.170352] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0xEA, should be 0x42 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.171073] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x67, should be 0x92 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.171715] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0xAB (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.171916] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f700e3d8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.172406] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x22, should be 0x15 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.172679] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0xA5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.172776] ACPI Warning: Package +klog List length (1) larger than NumElements count (0), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.172868] ACPI Error: No handler for +klog Region [RAM_] (f7014618) [EmbeddedControl] 20090521 +klog evregion-319 +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 0.172873] ACPI Error: Region +klog EmbeddedControl(3) has no handler 20090521 exfldio-294 +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.172880] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] +klog (Node f70159f0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.173062] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0xAA, should be 0xED (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.173605] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f70215e8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.173745] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x83, should be 0x27 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.173917] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node c08d6804), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.173917] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c08d6804), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.175144] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 95, should be 8C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.175379] ACPI Error: No handler for +klog Region [ECXP] (f70218e8) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.175394] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU0._OSC] (Node +klog f7025558), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.175428] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU0._PDC] (Node +klog f7025540), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.175892] ACPI Warning: Package +klog List length (0x1) larger than NumElements count (0x0), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.175987] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D7, should be C8 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.176309] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xCF, should be 0xCE (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.176410] ACPI Error: [RAMB] Namespace +klog lookup failure, AE_NOT_FOUND (20110413/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.176680] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D6, should be C7 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.176840] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0xAC, should be 0x4D (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.177033] ACPI Warning: Incorrect +klog checksum in table [OEMB] - ED, should be EC 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.177048] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xe0000000-0xe03fffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.177377] ACPI Error: Needed type +klog [Reference], found [Device] f701af90 (20100428 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.177377] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7022dc8), +klog AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.177506] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0xA1, should be 0x30 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.177670] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 1C, should be 17 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.178040] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xF7, should be 0xE8 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.178420] ACPI Error: No handler for +klog Region [SACS] (f701b500) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178434] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog f7072000), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178458] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node f7072000), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178486] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog f70720a8), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178510] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node f70720a8), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178539] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog f7072210), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178563] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node f7072210), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178590] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog f70722b8), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.178614] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node f70722b8), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.179475] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0xAB (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.179688] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f74174c8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.181591] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7022db0), +klog AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.181679] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f740f438), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.181959] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x0A, should be 0x09 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.182122] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 7D, should be 70 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.182199] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f4c25228), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.182199] ACPI Error: [Z012] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.182639] ACPI Error (psargs-0359): +klog [ECEN] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.182645] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c090665c), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.183306] ACPI Error: Method parse +klog /execution failed [_PR_.CPU0._PDC] (Node f403a228), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.183518] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 10, should be 03 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.183725] ACPI Error: No handler for +klog Region [SACS] (f70c20f0) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183734] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog f70c4180), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183755] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node f70c4180), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183773] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog f70c4240), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183793] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node f70c4240), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183812] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog f70c43c0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183832] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node f70c43c0), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183850] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog f70c4480), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.183870] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node f70c4480), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.183948] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x8E (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.184086] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x69, should be 0x68 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.184314] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7015eb8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.185673] ACPI Error (dswload-0659): +klog [___P] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.185686] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f701a150), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.185688] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._INI] (Node f700f6c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.185862] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._PDC] (Node +klog f701a1e0), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.186281] ACPI Warning: Package +klog List length (C) larger than NumElements count (4), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.186529] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B9, should be AC (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.187574] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 77, should be 76 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.187800] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c0994f7c), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.187872] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B6, should be B3 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.187981] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8D, should be 8C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.187992] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 40, should be 3F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.188197] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 6A, should be 61 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.188232] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x07, should be 0x59 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.188487] ACPI Error (psargs-0359): q z +klog Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.188669] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x05, should be 0xE5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.189086] ACPI Error: Needed type +klog [Reference], found [Device] f700ff90 (20090903 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.189100] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7017dc8), +klog AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.189451] ACPI Error: Needed type +klog [Reference], found [Device] f700ef90 20090521 exresop-104 +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.189466] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7016dc8), +klog AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.189515] ACPI Error (psargs-0359): +klog [CVCL] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.189522] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.DIGI._STA] (Node +klog f702a390), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.191013] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x81, should be 0xE5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.191774] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 37, should be 28 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.191906] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c098ff6c), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.192037] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xD9, should be 0xCC (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.192146] ACPI Error (dswload-0781): +klog [_PSW] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.192182] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node c08ce7dc), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.192983] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C0, should be B3 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.193750] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c08ce7dc), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.194184] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C8, should be BF (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.194314] ACPI Warning: Incorrect +klog checksum in table [OEMB] - AA, should be 9D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.194554] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1._PDC] (Node f5821150), +klog AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.194701] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2._PDC] (Node f58211e0), +klog AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.194897] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xDD, should be 0xD6 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.195685] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 2A, should be 29 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.195754] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 88, should be 83 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.196934] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0B, should be 02 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.197082] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xC8, should be 0xE5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.197413] ACPI Error: No handler for +klog Region [EC__] (f701c5c8) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.197451] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.SBRG.EC__._REG] +klog (Node f701e2a0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.198490] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xB2, should be 0x47 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.198823] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 01, should be F4 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.199360] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be AB 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.199465] ACPI Error: [CDW1] Namespace +klog lookup failure, AE_NOT_FOUND (20110413/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.199471] ACPI Error: Method parse/execution +klog failed [_SB_._OSC] (Node ffff880138e2ea78), AE_NOT_FOUND +klog (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.200426] ACPI Warning: Incorrect +klog checksum in table [OEMB] - A3, should be 9E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.200744] ACPI Warning: Incorrect +klog checksum in table [ASF!] - 59, should be 08 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.201013] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8A, should be 7D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 0.201466] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f700e180), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.203079] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xE1, should be 0xDC (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.204335] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xC1, should be 0x11 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.204344] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 07, should be 59 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.205365] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5422e88), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.206075] ACPI Warning: Incorrect +klog checksum in table [ATKG] - BB, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.207023] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be AB (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.208479] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x77, should be 0x72 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.209105] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f701f270), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.210543] ACPI Warning: Incorrect +klog checksum in table [OEMB] - CD, should be CC (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.210667] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D3, should be C4 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.211069] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x99, should be 0x92 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.211113] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 7B, should be 76 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.211904] ACPI Error: No handler for +klog Region [ERAM] (ee422ed8) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.211928] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701fd08), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.211938] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] +klog (Node ee423708), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.212633] ACPI Warning: Incorrect +klog checksum in table [OEMB] - E1, should be D3 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.212815] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f7424eb8), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.213084] ACPI Error (dsfield-0143): +klog [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.213100] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7014ca8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.213771] ACPI Warning: Incorrect +klog checksum in table [OEMB] - EC, should be E7 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.213827] ACPI Warning: Package +klog List length (0xC) larger than NumElements count (0x3), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.214423] ACPI Warning: Incorrect +klog checksum in table [OEMB] - FD, should be EF (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.215632] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x0B, should be 0x5B (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.216249] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x27, should be 0xE5 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.217060] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog dec13ca8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.217763] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7013030), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.217957] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 69, should be 5F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.218957] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701be88), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.219691] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7013270), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.219959] ACPI Error: No handler for +klog Region [SACS] (f70c52a8) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 0.219968] ACPI Error: Region +klog PCI_Config(2) has no handler (20090903/exfldio-295) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.219977] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog f701ba38), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220034] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node f701ba38), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220068] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog f701baf8), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220107] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node f701baf8), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220142] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog f701bc78), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220180] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node f701bc78), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220213] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog f701bd38), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.220252] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node f701bd38), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.221153] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.HPET._CRS] (Node f402ae70), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.221220] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.RTC_._CRS] (Node f402aee8), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogBiosMtrrDefTypeIncosistent: Test 1, +klog MEDIUM Kernel message: [ 0.221945] mtrr: your CPUs had +klog inconsistent MTRRdefType settings +klog +klog ADVICE: The Memory Type Range Registers (MTRRs) which +klog define memory caching policy do not have a MTRRdefType +klog consistently set across all CPUs which is a firmware bug. +klog The kernel has worked around this bug, but it may be worth +klog getting the BIOS vendor to fix this. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.222211] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701beb8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.222869] ACPI Warning: Incorrect +klog checksum in table [ATKG] - B0, should be 4A (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.222980] ACPI Error: Field [I9MN] at +klog 544 exceeds Buffer [IORT] size 464 (bits) (20090903 +klog /dsopcode-596) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.222987] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node +klog f7015900), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.223020] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node +klog f7015900), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.223245] ACPI Warning: Incorrect +klog checksum in table [OEMB] - DB, should be DA (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.223485] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xf0000000-0xf3ffffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.224289] ACPI Warning for +klog _SB_.PCI0.P32_._PRT: Return Package has no elements +klog (empty) (20100428/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.224569] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701fca8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.224987] ACPI Error: Field [ASSM] at +klog 524320 exceeds Buffer [BUF0] size 688 (bits) (20100428 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.224994] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.MEM_._CRS] (Node f7021990), +klog AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.225018] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.MEM_._CRS] (Node f7021990), +klog AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.226224] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 53, should be 84 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.227129] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x11, should be 0xE5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.228032] ACPI Error (psargs-0359): +klog [_PR_.C002._PPC] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.228041] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node +klog f742a558), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.228469] [Firmware Bug]: the BIOS has +klog corrupted hw-PMU resources (MSR 38d is 30) +klog +klog ADVICE: The kernel has detected a Firmware bug in the BIOS +klog or ACPI which needs investigating and fixing. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.228535] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 77, should be 6F (20100121 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.228773] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f4025450), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.229334] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7020750), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.229639] ACPI Error (psargs-0359): +klog [CDW1] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.229644] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7413270), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.230075] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7014630), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.231134] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node f7012f00), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.232350] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 15, should be 73 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.232460] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8C, should be 87 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.232733] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701ebd0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.232830] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xC2, should be 0x84 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.233493] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 58, should be AA (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.233542] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 0x70, should be 0xD2 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.233946] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 1E, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.235518] ACPI Warning: Incorrect +klog checksum in table [ASF!] - D8, should be 6E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.236465] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 1D, should be 10 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.236739] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f3c24f00), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.241360] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xBD, should be 0x89 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.242473] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 0x28, should be 0x8A (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.244995] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 17, should be 67 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.245794] ACPI Warning for +klog _SB_.PCI0.PCIB._PRT: Return type mismatch - found Integer, +klog expected Package (20100428/nspredef-1053) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiExecFailure: Test 1, HIGH Kernel +klog message: [ 0.245810] ACPI Error (uteval-0307): Return +klog object type is incorrect [_SB_.PCI0.PCIB._PRT] (Node +klog f7022c48), AE_TYPE +klog +klog ADVICE: The kernel has most probably detected an error +klog while executing ACPI AML. The error lists the ACPI driver +klog module and the line number where the bug has been caught +klog and the method that caused the error. +klog +klog FAILED [HIGH] KlogAcpiIncorrectReturnType: Test 1, HIGH +klog Kernel message: [ 0.245830] ACPI Error: Type returned from +klog _PRT was incorrect: Integer, expected Btypes: 0x8 +klog (20100428/uteval-313) +klog +klog ADVICE: The ACPI interpreter was evaluating a namespace +klog object and discovered that the return type did not match +klog the expected return type. This is an ACPI AML bug in the +klog ACPI DSDT or SSDTs. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.246137] ACPI Warning: Incorrect +klog checksum in table [ATKG] - F1, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.249246] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 70, should be 6D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.249570] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._OSC] (Node +klog f7010198), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.249594] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f7010180), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.249860] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._OSC] (Node +klog f7010270), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.249882] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._PDC] (Node +klog f7010258), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.250005] ACPI Error: No handler for +klog Region [EC__] (f4424bd0) [EmbeddedControl] (20110112 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 0.250012] ACPI Error: Region +klog EmbeddedControl(0x3) has no handler (20110112/exfldio-292) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.250019] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.SBRG.EC__._REG] (Node +klog f4425bb8), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.250572] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7010e88), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.250864] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7013e58), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.250941] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4022e88), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.250986] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query honored via DMI +klog +klog ADVICE: ACPI driver has detected an ACPI bug. This +klog generally points to a bug in an ACPI table. Examine the +klog kernel log for more details. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.251711] ACPI Warning: Incorrect +klog checksum in table [ATKG] - B0, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.254947] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f3c22e88), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.255884] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f70142b8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.256141] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xAF, should be 0x59 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.257910] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 04, should be 54 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.261013] ACPI Warning: Incorrect +klog checksum in table [OEMB] - DF, should be 2F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.262586] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701f390), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.262663] pci 0000:00:1f.0: [Firmware Bug]: +klog TigerPoint LPC.BM_STS cleared +klog +klog ADVICE: The kernel has detected a Firmware bug in the BIOS +klog or ACPI which needs investigating and fixing. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.264838] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701f2a0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.265119] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c08d5804), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.265541] ACPI Warning: Incorrect +klog checksum in table [OEMB] - E0, should be 30 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.266577] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 3B, should be BF (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.267893] ACPI Warning for +klog _TZ_.TZ01._PSL: Return Package type mismatch at index 0 - +klog found Processor, expected Reference (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.268093] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c0927024), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.268171] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node c0927024), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.268458] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f70142a0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.269488] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.APCT] (Node +klog ffff88007af30560), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.269534] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1.GCAP] (Node +klog ffff88007af30540), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 0.269576] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog ffff88007af30500), AE_NO_MEMORY +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.272427] ACPI Error: No handler for +klog Region [SACS] (f71004d8) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272435] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog f7102150), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272452] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node f7102150), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272469] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog f71021f8), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272486] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node f71021f8), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272503] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog f7102360), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272519] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node f7102360), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272536] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog f7102408), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.272552] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node f7102408), +klog AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.279154] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B9, should be AE (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.284552] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node +klog f7014858), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.284566] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node +klog f7014798), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.285468] ACPI Error (psargs-0359): +klog [_PR_.CPU0._PPC] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.285476] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.ADP0.ADJP] (Node f7015b10), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.285546] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.ADP0._PSR] (Node f7015ae0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.288180] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x81, should be 0x59 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.288591] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701fd50), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.288966] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f34245b8), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [CRITICAL] KlogAcpiCrtInvalidThreshold: Test 1, +klog CRITICAL Kernel message: [ 0.296054] [Firmware Bug]: +klog Invalid critical threshold (0) +klog +klog ADVICE: ACPI _CRT (Critical Trip Point) is returning a +klog threshold lower than zero degrees Celsius which is clearly +klog incorrect. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.296149] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701eca8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.296644] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node ffff88012fc16660) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.302946] ACPI Error (psargs-0359): +klog [HPTF] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.302952] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.HPET._STA] (Node +klog ffff88007db32200), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.307009] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4c22e88), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.307757] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node +klog f74145a0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.307837] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node +klog f7414690), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.308095] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 1F, should be 7F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.308151] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node +klog f7414cd8), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.308213] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node +klog f7414dc8), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 0.310609] ACPI Warning for _PR_.CPU1._PSS: +klog SubPackage[8,9] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.310767] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x72, should be 0x6A (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.311025] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4c250d8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.311041] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f54250d8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 0.311335] ACPI Warning for _PR_.CPU2._PSS: +klog SubPackage[8,9] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 0.311729] ACPI Error: Could not enable +klog PowerButton event (20090903/evxfevnt-193) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 0.311932] ACPI Warning: Could not enable +klog fixed event 2 (20090903/evxface-146) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.314160] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 91, should be 90 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.314451] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node ffffffff81a2b040), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.314603] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8B, should be 8A (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogBiosMtrrsInconsistentAcrossCPUs: Test +klog 1, MEDIUM Kernel message: [ 0.314675] mtrr: your CPUs had +klog inconsistent variable MTRR settings +klog +klog ADVICE: The variable Memory Type Range Registers (MTRRs) +klog which define memory caching policy are not consistent +klog across all CPUs which is a firmware bug. The kernel has +klog worked around this bug, but it may be worth getting the +klog BIOS vendor to fix this. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.316718] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 27, should be 22 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.316734] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xF3, should be 0xF2 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.316816] ACPI Error: No handler for +klog Region [ERAM] (ffff88007a733d80) [EmbeddedControl] +klog (20110112/evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.316829] ACPI Error: Method parse +klog /execution failed [_SB_.HTEV] (Node ffff88007a730780), +klog AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.316839] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node +klog ffff88007a73a078), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.317152] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C1, should be B4 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.317427] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog ffff88007d735160), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.317685] ACPI Warning: Incorrect +klog checksum in table [ASF!] - 0xFC, should be 0x98 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.319223] ACPI Warning: Incorrect +klog checksum in table [OEMB] - E7, should be E2 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.321587] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a12040), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.321722] ACPI Error: Needed type +klog [Reference], found [Device] ffff88007552b900 (20100428 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.321740] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff880075532ba0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.322869] ACPI Error: No handler for +klog Region [RAM_] (f7425690) [EmbeddedControl] (20110112 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.322886] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node +klog f7435228), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.322899] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog f7428d98), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.323465] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x8D, should be 0x8C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.323777] ACPI Warning: Package +klog List length (0xC) larger than NumElements count (0x4), +klog truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.325321] ACPI Error: No handler for +klog Region [ERAM] (ffff88007d32bf78) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.325334] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.KBC0.SMWR] +klog (Node ffff88007d32c8c0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.325357] ACPI Error (psparse-0537): +klog Method parse/execution failed [_TZ_.THRM.SFAN] (Node +klog ffff88007d328ec0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.325376] ACPI Error (psparse-0537): +klog Method parse/execution failed [_TZ_.THRM.THCK] (Node +klog ffff88007d328f40), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.325396] ACPI Error (psparse-0537): +klog Method parse/execution failed [_GPE._L02] (Node +klog ffff88007d3289c0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 0.325630] ACPI Error: Could not enable +klog SleepButton event (20100428/evxfevnt-202) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 0.325636] ACPI Warning: Could not enable +klog fixed event 0x3 (20100428/evxface-146) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.328929] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x45, should be 0x40 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.328954] ACPI Warning: Incorrect +klog checksum in table [ASF!] - D9, should be 6D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.329218] ACPI Warning for +klog _SB_.PCI0._OSC: Return type mismatch - found Integer, +klog expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.329373] ACPI Error (dsfield-0143): +klog [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.329378] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88012b63d760), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.330000] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0xD1, should be 0x75 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.330140] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xE3, should be 0xDC (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.330280] ACPI Warning: Incorrect +klog checksum in table [OEMB] - DE, should be D9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.330488] ACPI Error: No handler for +klog Region [SACS] (ffff88011bf101f8) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330496] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog ffff88011bf0d360), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330513] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node +klog ffff88011bf0d360), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330528] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog ffff88011bf0d460), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330545] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node +klog ffff88011bf0d460), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330560] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog ffff88011bf0d660), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330576] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node +klog ffff88011bf0d660), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330590] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog ffff88011bf0d760), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.330606] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node +klog ffff88011bf0d760), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.330759] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88011763c000), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.330793] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x9A (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.331637] ACPI Error: Needed type +klog [Reference], found [Device] ffff88014b82d820 (20090903 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.331653] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88014b83cac0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.331820] ACPI Error: Needed type +klog [Reference], found [Device] ffff8800379aa900 (20100428 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.331838] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff8800379bbba0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.331948] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0C, should be 0B (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.332160] ACPI Error (dswload-0677): +klog [PCI0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.332167] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81cf5eb0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.333155] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 4A, should be D9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.333287] ACPI Error: No handler for +klog Region [ERAM] (ffff8800bc638d80) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.333300] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.HTEV] (Node +klog ffff8800bc62e600), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.333326] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] +klog (Node ffff8800bc63e9a0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.333559] ACPI Error: No handler for +klog Region [ERAM] (ffff88007db2ad80) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.333573] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.HTEV] (Node +klog ffff88007db28600), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.333591] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xF4, should be 0xF3 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.333601] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] +klog (Node ffff88007db309a0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiParameterCountMistmatch: Test 1, +klog HIGH Kernel message: [ 0.333734] ACPI Warning for +klog _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, +klog ACPI requires 4 (20090903/nspredef-336) +klog +klog ADVICE: The ACPI Method was executing with a different +klog number of parameters than the Method expected. This should +klog be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.333765] ACPI Error (psargs-0359): +klog [FZHD] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.333771] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node +klog f7014300), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.333853] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node +klog f70143f0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.334143] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node +klog f7014a38), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.334206] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node +klog f7014b28), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.335658] ACPI Error: No handler for +klog Region [ECOR] (ffff88007af355e8) [EmbeddedControl] +klog (20110413/evregion-373) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.335698] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node +klog ffff88007af36730), AE_NOT_EXIST (20110413/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.335745] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 80, should be 78 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.337368] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8B, should be 86 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.337513] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f54243f0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.337662] ACPI Error (psargs-0359): +klog [URES] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.337662] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PSW] (Node f701f0a8), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.338155] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88021302db60), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.338440] ACPI Error: No handler for +klog Region [SACS] (ffff88012bb0f1f8) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.338717] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D0._STA] (Node +klog ffff88012bb111a0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.338801] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8B, should be 7E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.338905] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D0._STA] (Node +klog ffff88012bb111a0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.339363] ACPI Error (psparse-0537): +klog Method parse/execution failed [PRID.P_D1._STA] (Node +klog ffff88012bb11280), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.339551] ACPI Error (uteval-0250): +klog Method execution failed [PRID.P_D1._STA] (Node +klog ffff88012bb11280), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.339584] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xE2, should be 0xD5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.339628] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 91, should be 88 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.339857] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 6D, should be 60 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.340003] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D0._STA] (Node +klog ffff88012bb11460), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.340121] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x1B, should be 0xE5 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.340193] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D0._STA] (Node +klog ffff88012bb11460), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.340651] ACPI Error (psparse-0537): +klog Method parse/execution failed [SECD.S_D1._STA] (Node +klog ffff88012bb11540), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.340838] ACPI Error (uteval-0250): +klog Method execution failed [SECD.S_D1._STA] (Node +klog ffff88012bb11540), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.341276] ACPI Warning: Incorrect +klog checksum in table [ASF!] - F2, should be 8D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.341759] ACPI Error: No handler for +klog Region [RAM_] (f74212f8) [EmbeddedControl] (20100428 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.341812] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._OSC] (Node +klog ffff88017bc14660), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.341843] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog ffff88017bc14640), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.342116] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] +klog (Node f742f228), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.342130] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._OSC] (Node +klog ffff88017bc14780), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.342160] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._PDC] (Node +klog ffff88017bc14760), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.342409] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] +klog (Node f7422d98), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.342985] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 18, should be 13 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.343577] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xD1, should be 0xCA (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.344373] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C5, should be B8 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.345244] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xA5, should be 0x9C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.346079] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 7A, should be 71 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.347557] ACPI Warning for +klog _TZ_.THRM._PSL: Return Package type mismatch at index 0 - +klog found [NULL Object Descriptor], expected Reference +klog (20100428/nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.347883] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 5C, should be 53 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.348936] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x56, should be 0x49 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.349163] ACPI Warning: Incorrect +klog checksum in table [OEMB] - E7, should be DA (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.350013] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D3, should be C6 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.350096] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 13, should be 53 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.350158] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x13, should be 0xC8 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.350335] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x83, should be 0x37 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.350784] ACPI Warning: Incorrect +klog checksum in table [iEIT] - 0x5C, should be 0x51 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.351065] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x04, should be 0xCA (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.353198] ACPI Error: No handler for +klog Region [ERAM] (ffff88013be53e10) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.353215] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] +klog (Node ffff88013be520e0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.353356] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x05, should be 0x36 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.353401] ACPI Warning for +klog _SB_.LATA._CRS: Return type mismatch - found Integer, +klog expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiExecFailure: Test 1, HIGH Kernel +klog message: [ 0.353406] ACPI Error (uteval-0307): Return +klog object type is incorrect [_SB_.LATA._CRS] (Node +klog ffff88006df2eb00), AE_TYPE +klog +klog ADVICE: The kernel has most probably detected an error +klog while executing ACPI AML. The error lists the ACPI driver +klog module and the line number where the bug has been caught +klog and the method that caused the error. +klog +klog FAILED [HIGH] KlogAcpiCheckObjectTypeFailed: Test 1, HIGH +klog Kernel message: [ 0.353652] ACPI Error: Needed type +klog [Reference], found [Device] ffff8800379a6800 (20090903 +klog /exresop-104) +klog +klog ADVICE: An ACPI object type did not match the expected +klog type. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 0.353652] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff8800379bba80), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.355135] ACPI Error: Method parse +klog /execution failed [_PR_.CPU0._PDC] (Node ffff88007a738ca8) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPathTooManyParentPrefixes: Test 1, +klog HIGH Kernel message: [ 0.355798] ACPI Error: ACPI path has +klog too many parent prefixes (^) - reached beyond root node +klog (20090903/nsaccess-429) +klog +klog ADVICE: An ACPI path has too many parent prefixes and has +klog fallen outside the root node. This is a bug in the +klog firmware. The Name Space lookup on the ACPI path cannot be +klog found. +klog +klog FAILED [HIGH] KlogBiosTimerNotConnectedtoIoApic: Test 1, +klog HIGH Kernel message: [ 0.356001] ..MP-BIOS bug: 8254 timer +klog not connected to IO-APIC +klog +klog ADVICE: The BIOS is reporting the ExtINTA I/O APIC input +klog from the cascaded 8259A as the timer interrupt input. The +klog kernel has detected just one pin, so it has to check the +klog timer directly and through the 8259A because of the broken +klog BIOS reporting. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.356108] ACPI Error: No handler for +klog Region [ECF2] (ffff88013ba313a8) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 0.356113] ACPI Error: Region +klog EmbeddedControl(3) has no handler (20090903/exfldio-295) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.356119] ACPI Error (psparse-0537): +klog Method parse/execution failed [P8XH] (Node +klog ffff88013ba28020), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.356143] ACPI Error (psparse-0537): +klog Method parse/execution failed [_GPE._L02] (Node +klog ffff88013ba32120), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.356280] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x33, should be 0xD7 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.356754] ACPI Warning: Incorrect +klog checksum in table [ASF!] - ED, should be 83 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.357018] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xA6, should be 0xA1 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.357902] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xE9, should be 0xFE (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.358086] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x11, should be 0x10 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.359183] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7021a68), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.359915] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x7D, should be 0x59 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.360335] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 0x28, should be 0xD4 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPathTooManyParentPrefixes: Test 1, +klog HIGH Kernel message: [ 0.361596] ACPI Error: ACPI path has +klog too many parent prefixes (^) - reached beyond root node +klog (20100428/nsaccess-429) +klog +klog ADVICE: An ACPI path has too many parent prefixes and has +klog fallen outside the root node. This is a bug in the +klog firmware. The Name Space lookup on the ACPI path cannot be +klog found. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.362481] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c091bffc), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.362557] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node c091bffc), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.362606] ACPI Error (dsfield-0487): +klog [SMIC] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.362751] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f40255d0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFirmwareError: Test 1, HIGH Kernel +klog message: [ 0.362859] [Firmware Bug]: ACPI: BIOS +klog _OSI(Linux) query honored via cmdline +klog +klog ADVICE: ACPI driver has detected an ACPI bug. This +klog generally points to a bug in an ACPI table. Examine the +klog kernel log for more details. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.362870] ACPI Error (dsfield-0140): +klog [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.362886] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7014a80), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.363488] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog ffff880227048f60), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.363621] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 3C, should be 3B 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.363728] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 75, should be 74 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.363981] ACPI Warning: Incorrect +klog checksum in table [OEMB] - BB, should be AE (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.364356] ACPI Warning: For +klog _SB_.PCI0.P2P_._PRT: Return Package has no elements +klog (empty) (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.364521] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f44285b8), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.366917] ACPI Warning: Incorrect +klog checksum in table [OEMB] - BD, should be B6 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.367185] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B2, should be A5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.367524] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xAA, should be 0x59 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.368838] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 23, should be 1E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.369986] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x61, should be 0x58 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.370263] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x73, should be 0xE5 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.371572] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xFB, should be 0xE5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.372475] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5426ca8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.372684] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node dd825ca8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.375383] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x90, should be 0x83 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.375585] ACPI Error (dswload-0677): +klog [USB0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.375609] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c09fb6c8), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.375966] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node c0992f7c), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.376047] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node dd825ca8), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.376092] ACPI Error: No handler for +klog Region [ECXP] (ffff88007cf31ab0) [EmbeddedControl] +klog (20100428/evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.376106] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU0._OSC] (Node +klog ffff88007cf3f440), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.376141] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU0._PDC] (Node +klog ffff88007cf3f420), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.376733] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5026ca8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.378931] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 33, should be 2C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.379815] ACPI Warning: Incorrect +klog checksum in table [SSDT] - D5, should be 3E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.380609] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 8C, should be DC (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.381039] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7016a38), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.381211] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8E, should be 89 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.381478] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xe0000000-0xe06fffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.382740] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node ffff88003f013ca0) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.383518] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x0F, should be 0xE7 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.384684] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x4E, should be 0x3F (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.384722] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.HPET._CRS] (Node +klog ffff88007db32220), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.384811] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.RTC_._CRS] (Node +klog ffff88007db322c0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.385777] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 89 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.388556] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 6A, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.388736] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8C, should be 83 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.390341] ACPI Error: [GUR_._BAS] +klog Namespace lookup failure, AE_NOT_FOUND (20110112 +klog /psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.390354] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.MBIO._CRS] (Node ffff880078f30aa0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.390975] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.393086] ACPI Warning: For +klog _TZ_.THRM._PSL: Return Package has no elements (empty) +klog (20110413/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.395834] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88013ba393a0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiInvalidPssFrequency: Test 1, +klog MEDIUM Kernel message: [ 0.396197] [Firmware Bug]: ACPI: +klog Invalid BIOS _PSS frequency: 0x0 MHz +klog +klog ADVICE: _PSS (Performance Supported States) package has an +klog incorrectly define core frequency (first DWORD entry in +klog the _PSS package). +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.396945] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 96 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.397644] ACPI Warning: Incorrect +klog checksum in table [ATKG] - F9, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.398231] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 12, should be 07 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.398290] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 01, should be 23 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.399990] ACPI Error: Field [ASSM] at +klog 524320 exceeds Buffer [BUF0] size 688 (bits) (20110112 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.399996] ACPI Error: Method parse/execution +klog failed [_SB_.MEM_._CRS] (Node ffff8800b8e38000), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.400012] ACPI Error: Method execution failed +klog [_SB_.MEM_._CRS] (Node ffff8800b8e38000), +klog AE_AML_BUFFER_LIMIT (20110112/uteval-103) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.400212] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x88 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.401117] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0F, should be E7 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.404616] ACPI Warning: Incorrect +klog checksum in table [OEMB] - A5, should be A0 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.406016] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.ADP0.ADJP] (Node +klog ffff88013ba3c5a0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.406038] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.ADP0._PSR] (Node +klog ffff88013ba3c560), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.407719] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 72, should be 69 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.408529] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4c285b8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.414781] ACPI Warning: Incorrect +klog checksum in table [OEMB] - CD, should be C8 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.415975] ACPI Warning for +klog _TZ_.THRM._PSL: Return Package type mismatch at index 0 - +klog found [NULL Object Descriptor], expected Reference +klog (20090903/nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.418105] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 76, should be FE (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.420210] ACPI Error: [CAPD] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.420218] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88022b749b18) +klog , AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.420241] ACPI Error: Field [I9MN] at +klog 544 exceeds Buffer [IORT] size 464 (bits) (20100428 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.420248] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node +klog ffff88013142fac0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.420284] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node +klog ffff88013142fac0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.420323] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xC3, should be 0x59 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageListLargerThanExpected: Test +klog 1, HIGH Kernel message: [ 0.422032] ACPI Warning +klog (dsobject-0501): Package List length (6) larger than +klog NumElements count (3), truncated +klog +klog ADVICE: A Method has returned a Package List that was +klog larger than expected. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.424909] ACPI Warning for +klog _SB_.PCI0.P2P_._PRT: Return Package has no elements +klog (empty) (20100428/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.426823] ACPI Error (psargs-0359): +klog [_PR_.CPU0._PSS] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.426833] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.AC__.ADJP] (Node +klog ffff88007b32ee00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.426872] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.AC__._PSR] (Node +klog ffff88007b32edc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 0.429245] ACPI Warning for _PR_.CPU0._TSD: +klog Incorrectly formed Package, attempting repair (20090903 +klog /nsrepair-200) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 0.430887] ACPI Warning for _PR_.CPU1._TSD: +klog Incorrectly formed Package, attempting repair (20090903 +klog /nsrepair-200) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.434593] ACPI Warning: Incorrect +klog checksum in table [GSCI] - D2, should be A5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.436921] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88013b62ccc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.438019] ACPI Warning: Incorrect +klog checksum in table [ATKG] - C8, should be E5 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiParameterCountMistmatch: Test 1, +klog HIGH Kernel message: [ 0.440405] ACPI Warning for +klog _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, +klog ACPI requires 4 (20100428/nspredef-352) +klog +klog ADVICE: The ACPI Method was executing with a different +klog number of parameters than the Method expected. This should +klog be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.441805] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B2, should be B1 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.444897] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4c252a0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.450562] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node ffff8800b8e33ca8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.451517] ACPI Error (psargs-0359): +klog [GUR_._BAS] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.451682] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.MBIO._CRS] (Node +klog ffff88007bb2a880), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.453111] ACPI Warning for +klog _SB_.BAT1._BIF: Return Package type mismatch at index 12 - +klog found Integer, expected String/Buffer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.454555] ACPI Warning for +klog _PR_.CPU0._PSS: Return Package type mismatch at index 3 - +klog found Integer, expected Package (20100428/nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.454838] ACPI Warning for +klog _PR_.CPU1._PSS: Return Package type mismatch at index 3 - +klog found Integer, expected Package (20100428/nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.455674] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 83, should be 7F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.459126] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 4C, should be 12 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.460622] ACPI Warning: For +klog _SB_.PCI0.P32_._PRT: Return Package has no elements +klog (empty) (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.461767] ACPI Error: [CAPB] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.461793] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88003cdb0f00) +klog , AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.462573] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 95, should be 5E 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.468216] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._CST] (Node +klog ffff88007c5cc380), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.468859] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88003f1afdc0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.475076] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node +klog f701eb28), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.475159] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node +klog f701ec18), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.475441] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node +klog f70202a0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.475506] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node +klog f7020390), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.479385] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x88 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.479821] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f3c28a68), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.481067] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4028a68), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.482955] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0f00) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.484974] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f3c28a68), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.485955] ACPI Warning: For +klog _TZ_.THRM._PSL: Return Package type mismatch at index 0 - +klog found [NULL Object Descriptor], expected Reference +klog (20110112/nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.487180] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x33, should be 0x32 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.487365] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x99, should be 0x98 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.490256] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x22, should be 0x53 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiParameterCountMistmatch: Test 1, +klog HIGH Kernel message: [ 0.490491] ACPI Warning: For +klog _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, +klog ACPI requires 4 (20110413/nspredef-352) +klog +klog ADVICE: The ACPI Method was executing with a different +klog number of parameters than the Method expected. This should +klog be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.491491] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x4A, should be 0xD9 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.492569] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a08440), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.492648] ACPI Error (dswload-0781): +klog [PRID] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.492655] ACPI Error (psparse-0537): +klog Method parse/execution failed [] (Node ffffffff81a08440), +klog AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.492811] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5428a68), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.494198] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x37, should be 0xC7 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.496094] ACPI Warning: Incorrect +klog checksum in table [TCPA] - F8, should be 9C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.497662] ACPI Warning +klog (nspredef-0357): _SB_.PCI0.P2P_._PRT: Return Package has +klog no elements (empty) [20080926] +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.497913] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xFA, should be 0xF9 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.498775] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xB2, should be 0xB1 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.498976] ACPI Warning: Incorrect +klog checksum in table [GSCI] - 7B, should be 04 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.500043] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node +klog ffff8800ac22d040), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.501138] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f3c28a38), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.505041] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4028a38), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.513609] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5428a38), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.516158] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f74296c0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.526190] ACPI Warning +klog (tbutils-0217): Incorrect checksum in table [OEMB] - F3, +klog should be EE [20080926] +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.527455] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5422df8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.533028] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0bb8) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.534826] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x7F (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.538081] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C1, should be BC (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.539131] ACPI Error: No handler for +klog Region [RAM_] (ffff88012fa36a20) [EmbeddedControl] +klog (20110112/evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.539149] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node +klog ffff88012fa4f398), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.539161] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog ffff88012fa396b8), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.540036] ACPI Error: [_PR_.C002._PPC] +klog Namespace lookup failure, AE_NOT_FOUND (20110112 +klog /psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.540046] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880107e623c0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.541238] ACPI Error: Method parse/execution +klog failed [_TZ_.C2E8] (Node f482d108), AE_AML_PACKAGE_LIMIT +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.541258] ACPI Error: Method parse/execution +klog failed [_TZ_.C2E7] (Node f482d0f0), AE_AML_PACKAGE_LIMIT +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.541277] ACPI Error: Method parse/execution +klog failed [_TZ_.TZ2_._TMP] (Node f482d7c8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.548650] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 87 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.550271] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0xDC, should be 0x0E (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.563415] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88003d9af848) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.566332] ACPI Warning: For +klog _TZ_.THRM._AL0: Return Package has no elements (empty) +klog (20110413/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.568235] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 7F 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.581397] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x24, should be 0x16 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.583718] ACPI Warning: +klog _SB_.PCI0.PCI2._PRT: Return Package has no elements +klog (empty) 20090521 nspredef-434 +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.591409] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x1E, should be 0x16 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.591722] ACPI Error: Field [ASSM] at +klog 524320 exceeds Buffer [BUF0] size 880 (bits) (20100428 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.591729] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.MEM_._CRS] (Node +klog ffff8800b4040f60), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.591760] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.MEM_._CRS] (Node ffff8800b4040f60), +klog AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.593045] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node f702c7b0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.593072] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node f7019648), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.593095] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node f702ea08), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.593119] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node f702e9c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.593142] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog f702e678), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.597675] ACPI Warning for +klog _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to +klog expected String at index 9 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.597680] ACPI Warning for +klog _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to +klog expected String at index 10 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.597685] ACPI Warning for +klog _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to +klog expected String at index 11 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.597689] ACPI Warning for +klog _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to +klog expected String at index 12 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.600451] ACPI Error (psargs-0359): +klog [_SB_.PCI0.EGBA] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.600456] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC_.MBRD._CRS] (Node +klog f7416318), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.612305] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 6C, should be FB (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.612793] ACPI Error: [CAPB] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.612820] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88003d9ae190) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.614155] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 37, should be C7 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.620955] ACPI Warning for +klog _TZ_.THRM._PSL: Return Package type mismatch at index 0 - +klog found Processor, expected Reference (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.621415] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node f702c828), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.621443] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node f7019ed0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.621468] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node f702ea98), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.621493] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node f702ea50), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.621518] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog f702e708), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.625680] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.627242] ACPI Error (psargs-0359): +klog [_SB_.PCI0.EC__.HOTT] Namespace lookup failure, +klog AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.627255] ACPI Error (psparse-0537): Method +klog parse/execution failed [_TZ_.TZ01._HOT] (Node +klog ffff88013ba3ae60), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.628646] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xFA, should be 0x1E (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiErstInvalid: Test 1, HIGH Kernel +klog message: [ 0.628687] [Firmware Bug]: ERST: ERST table is +klog invalid +klog +klog ADVICE: The Error Record Serialization Table (ERST) seems +klog to be invalid. This normally indicates that the ERST table +klog header size is too small, or the table size (excluding +klog header) is not a multiple of the ERST entries. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.630258] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88007af370a0) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.641157] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C4, should be C1 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiMmconfigNotReserved: Test 1, +klog MEDIUM Kernel message: [ 0.644838] [Firmware Bug]: PCI: +klog MMCONFIG at [mem 0xe0000000-0xe09fffff] not reserved in +klog ACPI motherboard resources +klog +klog ADVICE: It appears that PCI config space has been +klog configured for a specific device but does not appear to be +klog reserved by the ACPI motherboard resources. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.646493] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x5F, should be 0x5A (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.651383] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node ffff88007f416680) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.652133] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a2e040), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.652695] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a0f040), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.653163] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff88007ab2f460) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.653985] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x4A, should be 0x49 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.654642] ACPI Error: Method parse +klog /execution failed [_PR_.CPU1._PDC] (Node ffff88020f44deb0) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.654994] ACPI Error: Method parse +klog /execution failed [_PR_.CPU2._PDC] (Node ffff88020f44df50) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.655350] ACPI Error: Method parse +klog /execution failed [_PR_.CPU3._PDC] (Node ffff88020f454000) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.655369] ACPI Error (psargs-0359): +klog [_SB_.PCI0.PSKB] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.655376] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.SIO_.KBC0._STA] +klog (Node ffff880236c47260), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.655576] ACPI Error (psargs-0359): +klog [_SB_.PCI0.PSMS] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.655581] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.SIO_.MSE0._STA] +klog (Node ffff880236c47340), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.656750] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 06, should be 05 20090521 +klog tbutils-246 +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.658002] ACPI Warning for +klog _SB_.PCI0.SATA.PRT0._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.658697] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88023fc14aa0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.662008] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a0c440), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiCrsSecondaryBusRangeMissing: Test +klog 1, MEDIUM Kernel message: [ 0.663194] [Firmware Bug]: ACPI +klog : no secondary bus range in _CRS +klog +klog ADVICE: _CRS Method should return a secondary bus address +klog for the status/command port. The kernel is having to guess +klog this based on the _BBN or assume it's 0x00-0xff. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.664875] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x45, should be 0x44 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.666686] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x9E, should be 0x9D (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.670109] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 5B, should be 4E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.670182] ACPI Warning: Incorrect +klog checksum in table [TAMG] - C3, should be C2 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.670980] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x7F (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.673104] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 8C, should be 7D (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.674282] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x15, should be 0x14 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.674920] ACPI Error: [SERN] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.674938] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node +klog f3829120), AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.674963] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node +klog f3829330), AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.675162] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x05, should be 0x04 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.677370] ACPI Warning for +klog _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String +klog at index 9 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [HIGH] KlogAcpiConvertedBufferToString: Test 1, +klog HIGH Kernel message: [ 0.677375] ACPI Warning for +klog _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String +klog at index 12 (20090903/nsrepair-132) +klog +klog ADVICE: Method returned a Buffer type instead of a String +klog type and ACPI driver automatically converted it to a +klog String. It is worth fixing this in the DSDT or SSDT even +klog if the kernel fixes it at run time. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.677386] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 94, should be 93 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.678233] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x55, should be 0x50 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.678877] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 88, should be 7F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.681297] ACPI Warning: Incorrect +klog checksum in table [OEMB] - DA, should be D9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.688066] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 60, should be 5F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.695029] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a0e440), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.695887] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C1, should be C0 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.696587] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xEE, should be 0xE6 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.697769] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xFC, should be 0xF7 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiAmdK8ExpectedPssObjects: Test 1, +klog MEDIUM Kernel message: [ 0.700202] [Firmware Bug]: +klog powernow-k8: No PSB or ACPI _PSS objects +klog +klog ADVICE: The _PSS object (Performance Supported States) is +klog an optional object that indicates the number of supported +klog processor performance states. The powernow-k8 driver +klog source states: If you see this message, complain to BIOS +klog manufacturer. If he tells you "we do not support Linux" or +klog some similar nonsense, remember that Windows 2000 uses the +klog same legacy mechanism that the old Linux PSB driver uses. +klog Tell them it is broken with Windows 2000. The reference to +klog the AMD documentation is chapter 9 in the BIOS and Kernel +klog Developer's Guide, which is available on www.amd.com. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.702121] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x84, should be 0x7B (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.705041] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xF3, should be 0xF2 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.710267] ACPI Error: Method parse/execution +klog failed [_TZ_.PSWT] (Node f7424bb8), AE_AML_PACKAGE_LIMIT +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.710275] ACPI Error: Method parse/execution +klog failed [_TZ_.GTTP] (Node f7424b88), AE_AML_PACKAGE_LIMIT +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.710281] ACPI Error: Method parse/execution +klog failed [_TZ_.GFXZ._TMP] (Node f74249a8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.710890] ACPI Warning: Incorrect +klog checksum in table [OEMB] - DF, should be D2 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.712727] ACPI Error: Method parse/execution +klog failed [_TZ_.DTSZ._TMP] (Node f7424ca8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.715065] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 67, should be 64 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.715951] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x9B, should be 0x93 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.717350] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x5C, should be 0x55 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.719490] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x3A, should be 0x39 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.721822] ACPI Error (dswload-0659): +klog [USB0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.722199] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a4d180), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.725417] ACPI Warning for +klog _SB_.PCI0.LPC_.SYSR._CRS: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiExecFailure: Test 1, HIGH Kernel +klog message: [ 0.725429] ACPI Error (uteval-0307): Return +klog object type is incorrect [_SB_.PCI0.LPC_.SYSR._CRS] (Node +klog ffff88013ba46cc0), AE_TYPE +klog +klog ADVICE: The kernel has most probably detected an error +klog while executing ACPI AML. The error lists the ACPI driver +klog module and the line number where the bug has been caught +klog and the method that caused the error. +klog +klog FAILED [HIGH] KlogAcpiExecFailure: Test 1, HIGH Kernel +klog message: [ 0.725450] ACPI Error: Type returned from _CRS +klog was incorrect: Integer, expected Btypes: 4 (20090903 +klog /uteval-313) +klog +klog ADVICE: The kernel has most probably detected an error +klog while executing ACPI AML. The error lists the ACPI driver +klog module and the line number where the bug has been caught +klog and the method that caused the error. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.725974] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x7E, should be 0x75 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.736425] ACPI Warning: For +klog _SB_.PCI0.PT02._PRT: Return Package has no elements +klog (empty) (20110413/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.743273] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f701f0d8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.743525] ACPI Error: [CAPD] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.743530] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f50273d8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiParameterCountMistmatch: Test 1, +klog HIGH Kernel message: [ 0.743538] ACPI Warning: For +klog _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, +klog ACPI requires 4 (20110112/nspredef-352) +klog +klog ADVICE: The ACPI Method was executing with a different +klog number of parameters than the Method expected. This should +klog be fixed. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 0.744106] ACPI Error: Field [ASSM] at +klog 524320 exceeds Buffer [BUF0] size 880 (bits) (20090903 +klog /dsopcode-596) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.744114] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.MEM_._CRS] (Node +klog ffff88013ba44cc0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 0.744142] ACPI Error (uteval-0250): Method +klog execution failed [_SB_.MEM_._CRS] (Node ffff88013ba44cc0), +klog AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.755111] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 2F, should be 2A (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.772223] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f4c250d8), +klog AE_ALREADY_EXISTS (20101013/psparse-537) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.775831] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x87 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.777581] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xF9, should be 0xF8 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.779737] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x83, should be 0x82 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.780967] ACPI Warning: Incorrect +klog checksum in table [TAMG] - FA, should be F9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.781225] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x10, should be 0x0F (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.781345] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xB2, should be 0xB1 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.782613] ACPI Error (psargs-0359): +klog [RAMB] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.783246] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x7D, should be 0x7C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.786539] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x2D, should be 0x2C (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.787253] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x10, should be 0x0F (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.788032] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x04, should be 0x03 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [CRITICAL] KlogAcpiSbOscAeAmlBufferLimit: Test 1, +klog CRITICAL Kernel message: [ 0.788418] ACPI Error +klog (psparse-0537): Method parse/execution failed [_SB_._OSC] +klog (Node ffff88030a048b40), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Section 6.2.10.2 of V4.0a of the ACPI +klog specification states that the _OSC Method should be passed +klog an 8 byte buffer of 2 x 32 DWORDs, however it appears that +klog the method is possibly trying to access data outside this +klog buffer. This is a bug in the _OSC method. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.788607] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xA2, should be 0xA1 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.790513] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node +klog ffff880079f39f78), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.790526] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.BAT0._BIF] (Node +klog ffff880079f37118), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.791560] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x3F, should be 0x1F (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.794367] ACPI Warning for +klog _PR_.P002._PSD: Return type mismatch - found Integer, +klog expected Package (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.795423] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x3F, should be 0x1F (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.805111] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 7E (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 0.810246] [Firmware Bug]: ACPI(Z01I) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.810687] ACPI Error (dswload-0659): +klog [DD02] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.810756] ACPI Error (dswload-0659): +klog [EHC1] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.820565] ACPI Error: [FZHD] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.820571] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff880127632b40), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.820632] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff880127632cd0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.821065] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff880127634758), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.821112] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff8801276348e8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.822836] ACPI Warning: For +klog _SB_.PCI0.PCI2._PRT: Return Package has no elements +klog (empty) (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.831199] ACPI Warning: Incorrect +klog checksum in table [OEMB] - B7, should be B6 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.860349] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff88023704ea40) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.860380] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff8802370590e0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.860410] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff8802370522a0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.860439] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff880237052240), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.860468] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880237050de0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.870147] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0._OSC] (Node +klog ffff88013ba29e80), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.872036] ACPI Warning: Incorrect +klog checksum in table [OEMB] - EC, should be E3 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.873454] ACPI Warning for +klog _SB_.PCI0.PCIB._PRT: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.875591] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 14, should be 13 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.877093] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x89, should be 0x80 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 0.879606] ACPI Error (psargs-0359): +klog [MPEN] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.879794] ACPI Error (psparse-0537): Method +klog parse/execution failed [_TZ_.TZ00._PSL] (Node +klog ffff88015ba4de00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 0.888177] ACPI Warning for +klog _SB_.BAT1._BST: Return Package type mismatch at index 2 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 0.890080] ACPI Error: No handler for +klog Region [RAM_] (ffff880133a35a20) [EmbeddedControl] +klog (20100428/evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 0.890253] ACPI Error: Region +klog EmbeddedControl(0x3) has no handler (20100428/exfldio-293) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.890421] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] +klog (Node ffff880133a49620), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 0.890696] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] +klog (Node ffff880133a385e0), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.892097] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff88021704e920) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.892124] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff880217056700), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.892147] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff880217052180), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.892171] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff880217052120), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.892195] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880217050cc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.892915] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xCE, should be 0xCD (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.899338] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0xDD, should be 0xD4 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.900692] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff88021704e960) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.900729] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff880217059000), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.900753] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff8802170521c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.900776] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff880217052160), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.900801] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880217050d00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.905032] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff88021304e940) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.905061] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff8802130576a0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.905085] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff8802130521a0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.905110] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff880213052140), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.905135] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880213050ce0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.905920] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.C000.C264] (Node f7024e58), +klog AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 0.905985] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.C000._PSS] (Node f7024f30), +klog AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiMissingPssPct: Test 1, HIGH Kernel +klog message: [ 0.906063] [Firmware Bug]: BIOS needs update for +klog CPU frequency support +klog +klog ADVICE: Having _PPC but missing frequencies (_PSS, _PCT) +klog is a good hint that the BIOS is older than the CPU and +klog does not know the CPU frequencies. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.940265] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x14, should be 0x13 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 0.940948] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f7421fc0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.941821] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x3F, should be 0x91 (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.943511] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x7E (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.944156] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node +klog ffff88013384d720), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 0.967528] ACPI Warning for +klog _TZ_.THRM._AL0: Return Package has no elements (empty) +klog (20100428/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 0.972652] ACPI Warning: Incorrect +klog checksum in table [OEMB] - FA, should be F7 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.990917] ACPI Warning for +klog _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 0.991675] ACPI Warning for +klog _SB_.PCI0.FNC2.PRT1._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 0.992685] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81cf6eb0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.004972] ACPI Error (psparse-0537): Method +klog parse/execution failed [CPUT] (Node f701c150), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.005015] ACPI Error (psparse-0537): Method +klog parse/execution failed [PSSC] (Node f701c168), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.005055] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog f702f3c0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.005834] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x1D, should be 0x1C (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.009421] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node +klog f701aa98), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.020525] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xE8, should be 0xE7 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.020868] ACPI Warning for _PR_.CPU0._PSD: +klog Incorrectly formed Package, attempting repair (20090903 +klog /nsrepair-200) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.021557] ACPI Warning for _PR_.CPU1._PSD: +klog Incorrectly formed Package, attempting repair (20090903 +klog /nsrepair-200) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.023813] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x82, should be 0x81 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidThrottlingState: Test 1, HIGH +klog Kernel message: [ 1.026272] ACPI Warning +klog (processor_throttling-0843): Invalid throttling state, +klog reset +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 1.027573] ACPI Error: No handler for +klog Region [ERAM] (ffff880133e3e798) [EmbeddedControl] +klog (20090903/evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.027587] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.DOCK._STA] (Node +klog ffff880133e48620), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.027653] ACPI Error (uteval-0250): +klog Method execution failed [_SB_.PCI0.DOCK._STA] (Node +klog ffff880133e48620), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [CRITICAL] KlogAcpiNoValidCrt: Test 1, CRITICAL +klog Kernel message: [ 1.125427] [Firmware Bug]: No valid trip +klog found +klog +klog ADVICE: No valid ACPI _CRT (Critical Trip Point) was +klog found. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.158298] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node f701b648), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.167050] ACPI Error: [CDW1] Namespace +klog lookup failure, AE_NOT_FOUND (20110316/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.167226] ACPI Error: Method parse/execution +klog failed [_SB_._OSC] (Node f4422648), AE_NOT_FOUND (20110316 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.168945] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x04, should be 0xFD (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.174038] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0x00, should be 0x9B (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiAmdK8ExpectedPssObjects: Test 1, +klog MEDIUM Kernel message: [ 1.176461] [Firmware Bug]: +klog powernow-k8: No compatible ACPI _PSS objects found. +klog +klog ADVICE: The _PSS object (Performance Supported States) is +klog an optional object that indicates the number of supported +klog processor performance states. The powernow-k8 driver +klog source states: If you see this message, complain to BIOS +klog manufacturer. If he tells you "we do not support Linux" or +klog some similar nonsense, remember that Windows 2000 uses the +klog same legacy mechanism that the old Linux PSB driver uses. +klog Tell them it is broken with Windows 2000. The reference to +klog the AMD documentation is chapter 9 in the BIOS and Kernel +klog Developer's Guide, which is available on www.amd.com. +klog +klog FAILED [MEDIUM] KlogAcpiTryNewAmdFirmware: Test 1, MEDIUM +klog Kernel message: [ 1.176462] [Firmware Bug]: powernow-k8: +klog Try again with latest BIOS. +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.179893] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x81, should be 0x59 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 1.183989] [Firmware Bug]: ACPI(PEGD) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.184923] ACPI Warning: For +klog _SB_.PCI0.P0P1._PRT: Return Package has no elements +klog (empty) (20110413/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.186079] ACPI Error: [BRTW] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.186087] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f4c2a588), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.187842] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0.PPC_] (Node f7450168), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.187891] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0._PPC] (Node f74500c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.188370] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._PPC] (Node f7450150), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.188776] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU2._PPC] (Node f74502b8), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.189190] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU3._PPC] (Node f7450258), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.196055] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0._OSC] (Node f3824270), AE_NOT_FOUND +klog (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.210593] ACPI Warning: For +klog _SB_.PCI0.PCIB._PRT: Return Package has no elements +klog (empty) (20101013/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.212692] ACPI Warning: For +klog _TZ_.THRM._AL0: Return Package has no elements (empty) +klog (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.214748] ACPI Error: [_T_1] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.214761] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node +klog f3023438), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.214775] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node +klog f3023420), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.222641] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node +klog f30235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.222655] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node +klog f30235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 1.224060] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.BAT1._STA] (Node f7023b10), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.228128] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node +klog f702a570), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.229185] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0._OSC] (Node +klog f70140d8), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.230869] ACPI Warning for _PR_.CPU0._PSS: +klog SubPackage[15,16] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.231049] ACPI Warning for _PR_.CPU1._PSS: +klog SubPackage[15,16] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.231224] ACPI Warning for _PR_.CPU2._PSS: +klog SubPackage[15,16] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.231399] ACPI Warning for _PR_.CPU3._PSS: +klog SubPackage[15,16] - suspicious power dissipation values +klog (20100428/nsrepair2-403) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 1.246159] ACPI Error: No handler for +klog Region [ECRM] (f6cedba0) [EmbeddedControl] (20110413 +klog /evregion-373) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiKlogRegionNoHandler: Test 1, HIGH +klog Kernel message: [ 1.246164] ACPI Error: Region +klog EmbeddedControl (ID=3) has no handler (20110413 +klog /exfldio-292) +klog +klog ADVICE: An access (read or write) to an operation region +klog has been attempted and a region handler for this has not +klog been implemented, this may need to be implemented to +klog provide the expected behaviour. See +klog acpi_ex_access_region(). +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.246169] ACPI Error: Method parse +klog /execution failed [_TZ_.RDEC] (Node f442fc60), +klog AE_NOT_EXIST (20110413/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.246176] ACPI Error: Method parse +klog /execution failed [_TZ_.TZS0._TMP] (Node f442fca8), +klog AE_NOT_EXIST (20110413/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.270260] ACPI Error (psparse-0537): Method +klog parse/execution failed [CPUT] (Node ffff880137a4e840), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.270297] ACPI Error (psparse-0537): Method +klog parse/execution failed [PSSC] (Node ffff880137a4e860), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.270332] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog ffff880137a3fd00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 1.272398] ACPI Error: No handler for +klog Region [ECRM] (f76d0c60) [EmbeddedControl] (20110112 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.272407] ACPI Error: Method parse +klog /execution failed [_TZ_.RDEC] (Node f742fc60), +klog AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.272415] ACPI Error: Method parse +klog /execution failed [_TZ_.TZS0._TMP] (Node f742fca8), +klog AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 1.280955] ACPI Error: No handler for +klog Region [PCFG] (ffff880137a733f0) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.280965] ACPI Error (psparse-0537): +klog Method parse/execution failed [J380._STA] (Node +klog ffff88013712b380), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.314561] ACPI Error: [ECPU] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.314567] ACPI Error: Method parse/execution +klog failed [_TZ_.TZ00._TMP] (Node ffff88011763ca28), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.320114] ACPI Warning: Incorrect +klog checksum in table [ATKG] - 0x9D, should be 0xE5 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [CRITICAL] KlogAcpiSbOscAeAmlBufferLimit: Test 1, +klog CRITICAL Kernel message: [ 1.336148] ACPI Error +klog (psparse-0537): Method parse/execution failed [_SB_._OSC] +klog (Node ffff88012b647200), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Section 6.2.10.2 of V4.0a of the ACPI +klog specification states that the _OSC Method should be passed +klog an 8 byte buffer of 2 x 32 DWORDs, however it appears that +klog the method is possibly trying to access data outside this +klog buffer. This is a bug in the _OSC method. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.337975] ACPI Error (uteval-0250): +klog Method execution failed [J380._STA] (Node +klog ffff88013712b380), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 1.371174] ACPI Error: Field [CDW3] at 96 +klog exceeds Buffer [NULL] size 64 (bits) (20090903 +klog /dsopcode-596) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [CRITICAL] KlogAcpiSbOscAeAmlBufferLimit: Test 1, +klog CRITICAL Kernel message: [ 1.371180] ACPI Error +klog (psparse-0537): Method parse/execution failed [_SB_._OSC] +klog (Node ffff88044b85e4a0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Section 6.2.10.2 of V4.0a of the ACPI +klog specification states that the _OSC Method should be passed +klog an 8 byte buffer of 2 x 32 DWORDs, however it appears that +klog the method is possibly trying to access data outside this +klog buffer. This is a bug in the _OSC method. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.381411] ACPI Error (psparse-0537): Method +klog parse/execution failed [] (Node ffffffff81a2b040), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.381481] ACPI Error (dswload-0659): +klog [PCI0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 1.384655] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff8801393f91f8 +klog (20090903/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 1.384672] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node +klog ffff88013ba4c020), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 1.384743] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node +klog ffff88013ba4d9c0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 1.398000] [Firmware Bug]: ACPI(Z00P) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.398053] ACPI: acpi_idle yielding +klog to intel_idleACPI Warning for _TZ_.TZ01._PSL: Return +klog Package type mismatch at index 0 - found Processor, +klog expected Reference (20100428/nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.399160] ACPI Warning for +klog _SB_.PCI0.PT02._PRT: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.400736] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node +klog f7018e58), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.436671] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node +klog f7024e58), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.462866] ACPI Warning: +klog _SB_.PCI0.VID2._DOD: Return Package has no elements +klog (empty) 20090521 nspredef-434 +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 1.480960] ACPI Warning: +klog _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found +klog Integer, expected Buffer 20090521 nspredef-940 +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.488986] ACPI Error (psargs-0359): +klog [GTF0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.488991] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node +klog f702b708), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.489034] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node +klog f702b720), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.505441] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 7C, should be 7B (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.507734] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 2D, should be 2C (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.509153] ACPI Warning: Incorrect +klog checksum in table [TAMG] - C0, should be BF (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.512057] ACPI Warning: Incorrect +klog checksum in table [OEMB] - CA, should be C9 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.515657] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xC5, should be 0xC4 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 1.518091] ACPI Warning for +klog _SB_.PCI0.IDE1.PRT0._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.528248] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x98, should be 0x97 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.529653] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0x7C, should be 0x7B (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.535278] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 88 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.545790] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D0, should be CF (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.555599] ACPI Error (psparse-0537): Method +klog parse/execution failed [CPUT] (Node ffff8801b90590c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.555652] ACPI Error (psparse-0537): Method +klog parse/execution failed [PSSC] (Node ffff8801b90590e0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.555703] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog ffff8801b903b6e0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.559068] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C5, should be C4 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 1.570612] ACPI Error: No handler for +klog Region [PCFG] (ffff8801b9074240) [PCI_Config] (20090903 +klog /evregion-319) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.570624] ACPI Error (psparse-0537): +klog Method parse/execution failed [J380._STA] (Node +klog ffff8801b916ea40), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.586563] ACPI Warning: Incorrect +klog checksum in table [OEMB] - D7, should be D3 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.590337] ACPI Warning: For +klog _TZ_.THRM._PSL: Return Package has no elements (empty) +klog (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.601784] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 5D, should be 55 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiInvalidBrightness: Test 1, HIGH +klog Kernel message: [ 1.605121] ACPI Error: Current brightness +klog invalid (20110112/video-377) +klog +klog ADVICE: The ACPI video driver set the brightness level +klog using the ACPI control _BCM, however the level used was +klog not a known level (as returned by _BCL). +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.605465] ACPI Error: [RAMB] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.616034] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0.PPC_] (Node +klog ffff88015334da00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.616243] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0._PPC] (Node +klog ffff88015334d920), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.618281] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._PPC] (Node +klog ffff88015334d9e0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.620164] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU2._PPC] (Node +klog ffff88015334dbc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.621081] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU3._PPC] (Node +klog ffff88015334db40), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.648580] ACPI Error: [SMS_] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.648589] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3429e58), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 1.662849] ACPI Error (uteval-0250): +klog Method execution failed [J380._STA] (Node +klog ffff8801b916ea40), AE_NOT_EXIST +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 1.678325] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88022f7bb5e8 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 1.678342] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.VGA_._DSM] (Node ffff88022f460190), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 1.678390] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88022f7bb8b8 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 1.678412] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88022f464230), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.701482] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff88022704e960) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.701521] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff880227059000), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.701557] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff8802270521c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.701592] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff880227052160), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.701628] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880227050d00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 1.739479] ACPI Warning: Incorrect +klog checksum in table [SSDT] - 0x3F, should be 0x91 (20110112 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.761428] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node +klog ffff8800bc234d60), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.782803] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0.PPC_] (Node +klog ffff8801d4d0ac60), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.783001] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0._PPC] (Node +klog ffff8801d4d0ab80), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.784831] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._PPC] (Node +klog ffff8801d4d0ac40), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.786497] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU2._PPC] (Node +klog ffff8801d4d0ae20), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.787299] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU3._PPC] (Node +klog ffff8801d4d0ada0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.849787] ACPI Warning for +klog _PR_.CPU3._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer +klog [] tick_dev_program_event+0x68/0xd0 +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.861558] ACPI Error: [SERN] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.861576] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node +klog ffff880232c509b0), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 1.861601] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node +klog ffff880232c50d20), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 1.864413] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node f3025828), +klog AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.893953] ACPI Error (psparse-0537): Method +klog parse/execution failed [CPUT] (Node ffff8800b3c50000), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.894002] ACPI Error (psparse-0537): Method +klog parse/execution failed [PSSC] (Node ffff8800b3c50020), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.894047] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog ffff8800b3c49380), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.900224] ACPI Error: [NPSS] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.900238] ACPI Error: Method parse/execution +klog failed [_PR_.CPU0.PPC_] (Node ffff88014f9a5140), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.900254] ACPI Error: Method parse/execution +klog failed [_PR_.CPU0._PPC] (Node ffff88014f9a5028), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.900769] ACPI Error: Method parse/execution +klog failed [_PR_.CPU1._PPC] (Node ffff88014f9a5118), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.901001] ACPI Error: Method parse/execution +klog failed [_PR_.CPU2._PPC] (Node ffff88014f9a5370), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.901211] ACPI Error: Method parse/execution +klog failed [_PR_.CPU3._PPC] (Node ffff88014f9a52d0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.905440] ACPI Warning: For +klog _SB_.PCI0.PCIB._PRT: Return Package has no elements +klog (empty) (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 1.907422] ACPI Error: [GTF0] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.907427] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3431a50), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.907445] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3431a68), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 1.911273] ACPI Warning for +klog _SB_.PCI0.P0P1._PRT: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 1.929855] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node +klog f7414858), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 1.929872] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node +klog f7414798), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 1.958776] ACPI Warning for _PR_.CPU0._PSD: +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.958968] ACPI Warning for +klog _PR_.CPU1._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959113] ACPI Warning for +klog _PR_.CPU2._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959252] ACPI Warning for +klog _PR_.CPU3._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959427] ACPI Warning for +klog _PR_.CPU4._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959602] ACPI Warning for +klog _PR_.CPU5._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959776] ACPI Warning for +klog _PR_.CPU6._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 1.959951] ACPI Warning for +klog _PR_.CPU7._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.962612] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0.PPC_] (Node +klog ffff8801534e5dc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.962811] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0._PPC] (Node +klog ffff8801534e5ce0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.964620] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._PPC] (Node +klog ffff8801534e5da0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.966282] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU2._PPC] (Node +klog ffff8801534e5f80), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.967081] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU3._PPC] (Node +klog ffff8801534e5f00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.974827] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831a50), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 1.974846] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831a68), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.001829] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PATA.GTM_] (Node f5423ba0), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.001850] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PATA.CHN0._GTM] (Node f54239c0), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.002809] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PATA.CHN1._GTM] (Node f5423ac8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.006621] ACPI Error (psparse-0537): Method +klog parse/execution failed [CPUT] (Node ffff8801b90570c0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.006671] ACPI Error (psparse-0537): Method +klog parse/execution failed [PSSC] (Node ffff8801b90570e0), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.006718] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node +klog ffff8801b903fa80), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 2.022076] ACPI Error: Could not enable +klog SleepButton event (20110112/evxfevnt-198) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 2.022090] ACPI Warning: Could not enable +klog fixed event 0x3 (20110112/evxface-197) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.033653] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f6031468), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.033670] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f6031480), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiInvalidPssFrequency: Test 1, +klog MEDIUM Kernel message: [ 2.039517] [Firmware Bug]: ACPI: +klog Invalid BIOS _PSS frequency: 0x80000000 MHz +klog +klog ADVICE: _PSS (Performance Supported States) package has an +klog incorrectly define core frequency (first DWORD entry in +klog the _PSS package). +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 2.045931] ACPI Warning for +klog _SB_.PCI0.P0P1._PRT: Return Package has no elements +klog (empty) (20100428/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 2.049441] ACPI Warning for +klog _PR_.CPU0._PSD: Return Package type mismatch at index 4 - +klog found [NULL Object Descriptor], expected Integer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.068617] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3c29e58), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.081502] ACPI Error (psargs-0359): +klog [NPSS] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.081508] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0.PPC_] (Node +klog ffff8801534e5c20), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.081585] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU0._PPC] (Node +klog ffff8801534e5b40), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.083171] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._PPC] (Node +klog ffff8801534e5c00), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.084838] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU2._PPC] (Node +klog ffff8801534e5de0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.085644] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU3._PPC] (Node +klog ffff8801534e5d60), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.106307] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dca8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.106326] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcd0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.113330] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f74317b0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.113367] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f74317c8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 2.132386] ACPI Error: Could not enable +klog SleepButton event (20090903/evxfevnt-193) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 2.132392] ACPI Warning: Could not enable +klog fixed event 3 (20090903/evxface-146) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.149905] ACPI Error: Method parse/execution +klog failed [_SB_.C003.C099._DOD] (Node f30275a0), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 2.173036] ACPI Warning for _SB_._OSC: +klog Return type mismatch - found Integer, expected Buffer +klog (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 2.173935] ACPI Warning: Incorrect +klog checksum in table [OEMB] - C3, should be C2 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.200371] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f602bf30), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.200380] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f602d2d0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.206433] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f742d018), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.206443] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f742d3a8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.222353] ACPI Error: [EABF] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.222362] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f602d018), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.222372] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f602d3a8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.227407] ACPI Error (psargs-0359): +klog [GTF1] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.227411] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node +klog f702b7b0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.227454] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node +klog f702b7c8), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 2.229498] ACPI Warning: Incorrect +klog checksum in table [TAMG] - 0xC6, should be 0xC5 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.231431] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f602bf60), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.231442] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f602d300), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.250291] ACPI Error: Method parse +klog /execution failed [_SB_.BAT1.UBIF] (Node ffff88013762f550) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.250306] ACPI Error: Method parse +klog /execution failed [_SB_.BAT1._BIF] (Node ffff88013762f500) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.270835] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ffff880125e2c708) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.280398] ACPI Error (dswload-0781): +klog [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.280410] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.BAT1.UBIF] (Node +klog ffff8800b3c2e100), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.280443] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.BAT1._BIF] (Node +klog ffff8800b3c2e0c0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.283579] ACPI Error (psargs-0359): +klog [_T_0] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.283585] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.BAT1.UBIF] (Node +klog ffff8800b3c2e100), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.283615] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q09] (Node +klog ffff8800b3c410e0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.288649] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dcd0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.288685] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcf8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.294251] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f742bf30), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.294262] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f742d2d0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.324547] ACPI Error: [EABF] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.324556] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f742d018), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.324566] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f742d3a8), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiZeroLengthCreateField: Test 1, HIGH +klog Kernel message: [ 2.334361] ACPI Error: Attempt to +klog CreateField of length zero (20110112/dsopcode-529) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, +klog CreateField used with a zero field length which is +klog illegal. This is a firmware bug. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 2.334370] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.IDE0.RATA] (Node +klog ffff8801376322a8), AE_AML_OPERAND_VALUE (20110112 +klog /psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 2.334384] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.IDE0.PRT1._GTF] (Node +klog ffff880137632438), AE_AML_OPERAND_VALUE (20110112 +klog /psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.336604] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node +klog ffff88013b63c460), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.384172] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff8801c305dcd0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.384189] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff8801c305dcf8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.440684] ACPI Error (psargs-0359): +klog [SMS_] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.440692] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node +klog ffff88007db30c60), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.462687] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff880147646cd0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.462711] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff880147646cf8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 2.468708] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU1._PDC] (Node +klog f700f180), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [HIGH] KlogAcpiInvalidTableLength: Test 1, HIGH +klog Kernel message: [ 2.468963] ACPI Error (psparse-0537): +klog Method parse/execution failed [_PR_.CPU2._PDC] (Node +klog f700f240), AE_INVALID_TABLE_LENGTH +klog +klog ADVICE: The ACPI Method returned a table of the incorrect +klog length. This can lead to unexepected results. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 2.478380] [Firmware Bug]: ACPI(NGFX) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.592359] ACPI Error: Method parse/execution +klog failed [_PR_.CPU0.PPC_] (Node ffff88014f9a4140), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.592381] ACPI Error: Method parse/execution +klog failed [_PR_.CPU0._PPC] (Node ffff88014f9a4028), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.593071] ACPI Error: Method parse/execution +klog failed [_PR_.CPU1._PPC] (Node ffff88014f9a4118), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.593648] ACPI Error: Method parse/execution +klog failed [_PR_.CPU2._PPC] (Node ffff88014f9a4370), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.593935] ACPI Error: Method parse/execution +klog failed [_PR_.CPU3._PPC] (Node ffff88014f9a42d0), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.634350] ACPI Error: [GTF1] Namespace +klog lookup failure, AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.634355] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3431af8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.634373] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3431b10), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.671117] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f2c2d018), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.671128] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f2c2d3a8), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.701908] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831af8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.701933] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831b10), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.771747] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node f402bf60), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 2.771758] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node f402d300), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 2.787172] ACPI Warning: For +klog _SB_.PCI0.P0P1._PRT: Return Package has no elements +klog (empty) (20110112/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 2.823916] ACPI Warning: _BQC +klog returned an invalid level 20090521 video-629 +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.837958] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f7431858), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.837994] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f7431870), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 2.838171] ACPI Warning for +klog _SB_.BAT0._BIF: Return Package type mismatch at index 9 - +klog found [NULL Object Descriptor], expected String/Buffer +klog (20090903/nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 2.851027] ACPI Warning: _BQC +klog returned an invalid level (20110316/video-473) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.860339] ACPI Error: Method parse/execution +klog failed [_SB_.C003.C098._DOD] (Node f4427588), +klog AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 2.861808] ACPI Error: +klog [_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, +klog AE_NOT_FOUND (20110112/psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 2.861812] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node +klog ffff88015746e168), AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 2.870589] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node ffff880137632c80), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 2.906610] ACPI Warning: For +klog _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found +klog Integer, expected Package (20110413/nspredef-1053) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 2.949708] ACPI Error: Field [CDW3] at 96 +klog exceeds Buffer [NULL] size 64 (bits) (20110112 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [CRITICAL] KlogAcpiSbOscAeAmlBufferLimit: Test 1, +klog CRITICAL Kernel message: [ 2.949716] ACPI Error: Method +klog parse/execution failed [_SB_._OSC] (Node ffff880297016ca8) +klog , AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Section 6.2.10.2 of V4.0a of the ACPI +klog specification states that the _OSC Method should be passed +klog an 8 byte buffer of 2 x 32 DWORDs, however it appears that +klog the method is possibly trying to access data outside this +klog buffer. This is a bug in the _OSC method. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.005123] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_._OSC] (Node ffff88122fc1ea00) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 3.033154] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 0x87, should be 0x84 (20100428 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.112435] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node f74257c8), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.112465] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node f742c210), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.112494] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node f7427a20), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.112522] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node f74279d8), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.112549] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog f7427690), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 3.139648] [Firmware Bug]: ACPI(XVS0) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 3.208822] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.C003.C098._DOD] (Node +klog ffff88007cf30b60), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 3.223518] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node +klog ffff880236c469a0), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 3.382436] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 00, should be 7F (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 3.382442] ACPI Warning: Incorrect +klog checksum in table [_RAT] - 00, should be 63 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 3.420672] ACPI Warning for +klog _TZ_.THRM._PSL: Return Package type mismatch at index 0 - +klog found Processor, expected Reference (20100428 +klog /nspredef-1059) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 3.480092] ACPI Warning for +klog _SB_.PCI0.SAT0.PRT0._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 3.490098] ACPI Warning for +klog _SB_.PCI0.SAT0.PRT1._GTF: Return type mismatch - found +klog Integer, expected Buffer (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 3.490832] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PMI0._GHL] (Node +klog ffff88013bc2bdc0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 3.490852] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PMI0._PMC] (Node +klog ffff88013bc2bd40), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiEventEnableFailed: Test 1, HIGH +klog Kernel message: [ 3.502273] ACPI Error: Could not enable +klog SleepButton event (20100428/evxfevnt-205) +klog +klog ADVICE: An ACPI fixed event could not be enabled. This can +klog affect fixed events such as the power management timer, +klog power button, sleep button, RTC alarm, wake status, system +klog bus master request or the global release lock status. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 3.601126] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node +klog f7420690), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 3.644168] ACPI Warning: Incorrect +klog checksum in table [TCPA] - 0xF8, should be 0x9C (20110413 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 3.663829] [Firmware Bug]: ACPI(GFX0) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiBcmFailed: Test 1, HIGH Kernel +klog message: [ 3.675814] ACPI Error: Evaluating _BCM failed +klog (20100428/video-532) +klog +klog ADVICE: Could not set the brightness level, the ACPI +klog control _BCM failed to execute correctly. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.868794] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831b58), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 3.868812] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831b70), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 3.983031] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node ffff88021d459028), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 3.983040] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node ffff88021d459618) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 4.002664] [Firmware Bug]: ACPI(EVGA) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [MEDIUM] KlogAcpiIncorrectTableChecksum: Test 1, +klog MEDIUM Kernel message: [ 4.046031] ACPI Warning: Incorrect +klog checksum in table [OEMB] - 4A, should be 47 (20090903 +klog /tbutils-314) +klog +klog ADVICE: The ACPI table listed above has an incorrect +klog checksum, this could be a BIOS bug or due to table +klog corruption. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.115197] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node ffff88021d458eb0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.115206] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node ffff88021d4594b0) +klog , AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 4.190434] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342f8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 4.198699] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831c00), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 4.198716] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831c18), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiTimeOutReturnedByHandler: Test 1, +klog HIGH Kernel message: [ 4.230508] ACPI Exception: AE_TIME, +klog Returned by Handler for [EmbeddedControl] (20090903 +klog /evregion-424) +klog +klog ADVICE: This is most probably caused by when a read or +klog write operation to the EC memory has failed because of a +klog timeout waiting for the Embedded Controller to complete +klog the transaction. Normally, the kernel waits for 500ms for +klog the Embedded Controller status port to indicate that a +klog transaction is complete, but in this case it has not and a +klog AE_TIME error has been returned. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 4.230527] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR1] (Node +klog f7018ed0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 4.230612] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR2] (Node +klog f7018ee8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 4.230643] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRW] (Node f7018fa8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 4.230672] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG1] (Node f7018fd8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 4.230701] ACPI Error (psparse-0537): Method parse +klog /execution failed [NEVT] (Node f70186f0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 4.230730] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.ISAB.ECDV._Q66] (Node +klog f7018eb8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 4.576415] ACPI Error: No handler for +klog Region [ERAM] (f4830d50) [EmbeddedControl] (20110112 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 4.576437] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node +klog f48326d8), AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.638115] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node ffff880220c5b028), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.638127] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node ffff880220c5b618) +klog , AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 4.838935] ACPI Error (psparse-0537): Method +klog parse/execution failed [_TZ_.C2E8] (Node f701b108), +klog AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 4.838984] ACPI Error (psparse-0537): Method +klog parse/execution failed [_TZ_.C2E7] (Node f701b0f0), +klog AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 4.839033] ACPI Error (psparse-0537): Method +klog parse/execution failed [_TZ_.TZ2_._TMP] (Node f701b7c8), +klog AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.890970] ACPI Error: Method parse +klog /execution failed [_SB_.EEAC] (Node ffff880126e43f50), +klog AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 4.890980] ACPI Error: Method parse +klog /execution failed [_SB_.BAT2._STA] (Node ffff880126e44550) +klog , AE_ALREADY_EXISTS (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 4.983204] [Firmware Bug]: ACPI(MXM3) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 5.150560] ACPI Warning for +klog _SB_.BAT0._BIF: Return Package type mismatch at index 12 - +klog found Integer, expected String/Buffer (20090903 +klog /nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 5.332663] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node f4425450), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.224974] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node +klog f3423438), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.224987] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node +klog f3423420), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.227917] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node +klog f34235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.227930] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node +klog f34235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 6.732287] ACPI Error: [_T_0] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.732310] ACPI Error: Method parse +klog /execution failed [_SB_.BAT1.UBIF] (Node dd028fc0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.732334] ACPI Error: Method parse +klog /execution failed [_SB_.BAT1._BIF] (Node dd028f90), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 6.773266] ACPI Error: [CAPB] Namespace +klog lookup failure, AE_ALREADY_EXISTS (20101013/dsfield-143) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 6.773285] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node ddc25ca8), +klog AE_ALREADY_EXISTS (20101013/psparse-537) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiNoHandlerForRegion: Test 1, HIGH +klog Kernel message: [ 7.365139] ACPI Error: No handler for +klog Region [IPMI] (ffff8805ffa37240) [IPMI] (20110112 +klog /evregion-369) +klog +klog ADVICE: ACPI attempted to read or write to a region +klog however the ACPI driver does not have a handler +klog implemented for this particular region space. The read +klog /write will fail and undefined behaviour will occur. +klog +klog FAILED [HIGH] KlogAcpiRegionHasNoHandler: Test 1, HIGH +klog Kernel message: [ 7.365150] ACPI Error: Region IPMI(0x7) +klog has no handler (20110112/exfldio-292) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 7.365161] ACPI Error: Method parse +klog /execution failed [_SB_.PMI0._GHL] (Node ffff8805ffa36b18) +klog , AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiObjectDoesNotExist: Test 1, HIGH +klog Kernel message: [ 7.365181] ACPI Error: Method parse +klog /execution failed [_SB_.PMI0._PMC] (Node ffff8805ffa36a78) +klog , AE_NOT_EXIST (20110112/psparse-536) +klog +klog ADVICE: The ACPI interpreter failed to execute or parse +klog some AML because a object or control did not exist. This +klog normally occurs because of buggy firmware and may lead to +klog unexpected behaviour or loss of functionality. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 8.137284] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog f702e720), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 8.137317] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node f702e7f8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 8.137344] ACPI Error (psparse-0537): Method +klog parse/execution failed [EC0A] (Node f702ea08), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 8.137370] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AMW0._WED] (Node f7019ca8), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 8.227953] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.C003.C098._DOD] (Node +klog f7021588), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 8.316300] [Firmware Bug]: ACPI(VGA0) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 8.794633] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0._OSC] (Node f5824ab0), +klog AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 9.141980] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog f702e690), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 9.142017] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node f702e768), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 9.142046] ACPI Error (psparse-0537): Method +klog parse/execution failed [EC0A] (Node f702e978), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 9.142076] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AMW0._WED] (Node f7019420), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageTypeMismatch: Test 1, +klog HIGH Kernel message: [ 9.267040] ACPI Warning for +klog _SB_.SPM_._PMD: Return Package type mismatch at index 0 - +klog found String, expected Reference (20090903/nspredef-1012) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with incorrectly typed data. The +klog offending method needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 9.391036] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.IBCM] (Node f3828738), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 9.391049] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f3824b28), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBcmFailed: Test 1, HIGH Kernel +klog message: [ 9.391061] ACPI Error: Evaluating _BCM failed +klog (20110112/video-365) +klog +klog ADVICE: Could not set the brightness level, the ACPI +klog control _BCM failed to execute correctly. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 9.393479] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012d8cfee8 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 9.393498] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88012f83e6b8), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 9.393510] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88012f83e690), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 9.394098] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012d8cfd38 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 9.394109] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88012f83e6e0), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 9.394118] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88012f83e668), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 9.957372] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff88007af33780), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 9.957372] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff88007af33910), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 9.957372] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff88007af32b68), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 9.957372] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff88007af32cf8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 10.080352] [Firmware Bug]: ACPI(VGA) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 10.120967] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88023bcba438 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 10.120977] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023f45edc0), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 10.121007] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88023bcba1b0 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 10.121018] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG0.GFX0._DSM] (Node ffff88023f474370), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 10.194089] ACPI Warning for +klog _SB_.PCI0.PCIB._PRT: Return Package has no elements +klog (empty) (20100428/nspredef-456) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 10.289821] ACPI Error (psargs-0359): +klog [_PR_.CPU0._CST] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 10.289828] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.CPU1._CST] (Node f70c3288), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiIncorrectWriteBufferSize: Test 1, +klog HIGH Kernel message: [ 10.344782] ACPI Error: SMBus or +klog IPMI write requires Buffer of length 42, found length 20 +klog (20090903/exfield-286) +klog +klog ADVICE: An incorrect SMBus or IPMI write buffer size was +klog used. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 10.344788] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PMI0._GHL] (Node +klog ffff88122fc1ece0), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 10.344812] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PMI0._PMC] (Node +klog ffff88122fc1ec60), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 10.380244] ACPI Warning +klog (nspredef-0357): _SB_.PCI0.VID2._DOD: Return Package has +klog no elements (empty) [20080926] +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 10.680422] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node +klog ffff880117642ed8), AE_AML_INFINITE_LOOP (20110112 +klog /psparse-536) +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.692650] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node +klog f702e738), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.692684] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRW] (Node f702e810), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.692710] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG1] (Node f702e840), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 10.692735] ACPI Error (psparse-0537): Method parse +klog /execution failed [NEVT] (Node f702ea50), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.692761] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog f702e708), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.708822] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog f7427738), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.708876] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node f7427810), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.708908] ACPI Error (psparse-0537): Method +klog parse/execution failed [EC0A] (Node f7427a20), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 10.708939] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AMW0._WED] (Node f742c078), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.724353] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog ffff880213050d00), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.724416] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node ffff880213050e20), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 10.724449] ACPI Error (psparse-0537): Method +klog parse/execution failed [EC0A] (Node ffff8802130520e0), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 10.724482] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AMW0._WED] (Node ffff8802130573c0) +klog , AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 11.195653] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node f702e8a0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 11.195680] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node f702ec90), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 11.383565] ACPI Error: Method parse/execution +klog failed [_SB_.C003.C098._DOD] (Node ffff880137636938), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 11.660551] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node +klog f702e6a8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 11.660591] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRW] (Node f702e780), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 11.660615] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG1] (Node f702e7b0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 11.660638] ACPI Error (psparse-0537): Method parse +klog /execution failed [NEVT] (Node f702e9c0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 11.660661] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog f702e678), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 11.800514] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342a8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 11.880473] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012125f558 +klog (20110413/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 11.880998] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012125f3a8 +klog (20110413/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 11.915871] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.SWFS] (Node +klog ffff880226c49320), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 11.915905] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.RBYT] (Node +klog ffff880226c493c0), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 11.915932] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.ASOC.SECV] (Node +klog ffff880226c4a0e0), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 11.915960] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.ASOC.RVLT] (Node +klog ffff880226c49b00), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 12.160904] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node f702e810), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 12.160929] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node f702ec00), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 12.167076] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff8800b1753048 +klog (20090903/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.167089] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node +klog ffff8800b3c44ca0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.167143] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node +klog ffff8800b3c44c80), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEvaluationFailed: Test 1, HIGH +klog Kernel message: [ 12.167205] ACPI Warning: Evaluating _BQC +klog failed (20090903/video-641) +klog +klog ADVICE: Executing the ACPI Method leaded in an execution +klog failure. This needs investigating. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 12.242368] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012ea6e6c0 +klog (20110413/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.242387] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88013113f6b8), +klog AE_AML_OPERAND_TYPE (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.242397] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88013113f690), +klog AE_AML_OPERAND_TYPE (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEvaluationFailed: Test 1, HIGH +klog Kernel message: [ 12.242409] ACPI Warning: Evaluating _BQC +klog failed (20110413/video-484) +klog +klog ADVICE: Executing the ACPI Method leaded in an execution +klog failure. This needs investigating. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 12.242974] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88012ea6e5e8 +klog (20110413/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.242986] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88013113f6e0), +klog AE_AML_OPERAND_TYPE (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 12.242994] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88013113f668), +klog AE_AML_OPERAND_TYPE (20110413/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBcmFailed: Test 1, HIGH Kernel +klog message: [ 12.243002] ACPI Error: Evaluating _BCM failed +klog (20110413/video-365) +klog +klog ADVICE: Could not set the brightness level, the ACPI +klog control _BCM failed to execute correctly. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 12.361137] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.C003.C09D._DOD] (Node +klog ffff88013b630c00), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 12.390421] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node ffff880213050f00), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 12.390446] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node ffff880213052440) +klog , AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 12.553637] ACPI Warning: For +klog _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found +klog Integer, expected Package (20110112/nspredef-1053) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiTimeOutReturnedByHandler: Test 1, +klog HIGH Kernel message: [ 12.838979] cfg80211: Ignoring +klog regulatory request Set by core since the driver uses its +klog own custom regulatory domain ACPI Exception: AE_TIME, +klog Returned by Handler for [EmbeddedControl] (20110112 +klog /evregion-474) +klog +klog ADVICE: This is most probably caused by when a read or +klog write operation to the EC memory has failed because of a +klog timeout waiting for the Embedded Controller to complete +klog the transaction. Normally, the kernel waits for 500ms for +klog the Embedded Controller status port to indicate that a +klog transaction is complete, but in this case it has not and a +klog AE_TIME error has been returned. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 12.841008] cfg80211: Ignoring +klog regulatory request Set by core since the driver uses its +klog own custom regulatory domain ACPI Warning: _BQC returned +klog an invalid level (20110112/video-473) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 13.024512] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node f7425450), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 13.396787] ACPI Error: Method parse/execution failed +klog [_SB_.ADP1._PSR] (Node ffff88011763ba00), AE_TIME +klog (20110112/psparse-536) +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiFieldExceedsBuffer: Test 1, HIGH +klog Kernel message: [ 13.445954] ACPI Error: Field [D128] at +klog 1040 exceeds Buffer [NULL] size 160 (bits) (20110112 +klog /dsopcode-597) +klog +klog ADVICE: Failed to initialise an ACPI buffer field, the +klog field exceeded the buffer size provided. This is a +klog firmware bug. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 13.445980] ACPI Error: Method parse/execution +klog failed [_SB_.WMID.HWMC] (Node f742a8b8), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 13.446019] ACPI Error: Method parse/execution +klog failed [_SB_.WMID.WMAD] (Node f742aac8), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 13.452167] ACPI Error (psargs-0359): +klog [_PR_.C001] Namespace lookup failure, AE_NOT_FOUND +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 13.452177] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_.TPAF] (Node +klog f702bde0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 13.452213] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_.TBOM] (Node +klog f702bdf8), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 13.452247] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPC0.EC0_._Q1D] (Node +klog f702ba98), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 14.013275] ACPI Warning: _BQC +klog returned an invalid level (20110112/video-473) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 14.175645] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.OVGA.DD03.GBQC] (Node +klog f44247e0), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 14.175656] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.OVGA.DD03._BQC] (Node +klog f44247c8), AE_ALREADY_EXISTS (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEvaluationFailed: Test 1, HIGH +klog Kernel message: [ 14.175667] ACPI Warning: Evaluating _BQC +klog failed (20110112/video-484) +klog +klog ADVICE: Executing the ACPI Method leaded in an execution +klog failure. This needs investigating. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 14.885219] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88013c6b58b8 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 14.885234] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DSM] (Node ffff88013f849eb0), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 14.885277] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88013c6b5828 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 14.885289] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88013f86f668), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 15.027464] ACPI Error (psparse-0537): Method +klog parse/execution failed [_PR_.PPCE] (Node ffff880075137920) +klog , AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 15.027505] ACPI Error (psparse-0537): Method +klog parse/execution failed [EV4_] (Node ffff880075140660), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 15.027542] ACPI Error (psparse-0537): Method +klog parse/execution failed [SMIE] (Node ffff88007513b180), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 15.027579] ACPI Error (psparse-0537): Method +klog parse/execution failed [NEVT] (Node ffff88007513b120), +klog AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 15.027616] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node +klog ffff880075139cc0), AE_NOT_FOUND +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 15.287082] ACPI Warning: _BQC +klog returned an invalid level (20100428/video-640) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 15.395484] [Firmware Bug]: ACPI(PEGP) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 15.846531] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node +klog ffff8800b3840360), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 16.336080] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q33] (Node +klog f70244b0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 16.592600] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.ASOC.SEFA] (Node +klog ffff880226c4a120), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiParseExecAmlFailed: Test 1, HIGH +klog Kernel message: [ 16.592628] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.ASOC.RFAN] (Node +klog ffff880226c49bc0), AE_AML_INFINITE_LOOP +klog +klog ADVICE: The ACPI driver encountered a parse or execution +klog error on some ACPI AML code. This is unexepcted and +klog normally indicates that there is a bug in the compiled AML +klog code. It could be a programming fault or an AML compiler +klog issue. See acpi_ps_parse_aml(). +klog +klog FAILED [HIGH] KlogAcpiReturnPackageZeroElements: Test 1, +klog HIGH Kernel message: [ 16.719798] ACPI Warning for +klog _SB_.PCI0.VID2._DOD: Return Package has no elements +klog (empty) (20090903/nspredef-433) +klog +klog ADVICE: ACPI AML interpreter executed a Method that +klog returned a package with no elements inside it. This is +klog most probably a bug in the Method and needs to be fixed. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 16.942589] ACPI Error (dswload-0802): +klog [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 16.942606] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.OVGA.DD03.GBQC] +klog (Node ffff8800b7e3c6e0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 16.942654] ACPI Error (psparse-0537): +klog Method parse/execution failed [_SB_.PCI0.OVGA.DD03._BQC] +klog (Node ffff8800b7e3c6c0), AE_ALREADY_EXISTS +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 17.125601] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] eee27810 (20110112 +klog /exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 17.125618] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DSM] (Node f7431fa8), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 17.125669] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] eee27780 (20110112 +klog /exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 17.125690] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node f7445c78), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 17.802564] ACPI Error: Method parse/execution +klog failed [_SB_.WMID.HWMC] (Node ffff8801ffc5c078), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 17.802574] ACPI Error: Method parse/execution +klog failed [_SB_.WMID.WMAD] (Node ffff8801ffc5c258), +klog AE_AML_BUFFER_LIMIT (20110112/psparse-536) +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 17.847665] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node f444ebe8), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 17.985672] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.IBCM] (Node +klog ffff8800b3832600), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiBufferLimit: Test 1, HIGH Kernel +klog message: [ 17.985723] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node +klog ffff8800b382b840), AE_AML_BUFFER_LIMIT +klog +klog ADVICE: Generally this error occurs because of access +klog outside of a buffer. This occurs for several reasons: a) A +klog field does not fit within the current length of a buffer, +klog b) an ACPI table load did not fit into a buffer, c) An +klog attempt to convert a buffer into an integer failed because +klog the buffer was zero sized, d) a SMBus/IPMI +klog /GenericSerialBus write failed because the buffer was too +klog small, e) An index into a buffer was too long and fell +klog outside the buffer. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 18.054842] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff880133a777e0 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 18.054860] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.VGA_._DSM] (Node ffff880137659190), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 18.054909] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff880133a776c0 +klog (20110112/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 18.054932] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013765d230), +klog AE_AML_OPERAND_TYPE (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 18.353938] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node +klog ffff88013762f708), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 18.353954] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node +klog ffff88013762f6e0), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 18.367485] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node +klog ffff88013762f988), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiObjectAlreadyExists: Test 1, HIGH +klog Kernel message: [ 18.367501] ACPI Error: Method parse +klog /execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node +klog ffff88013762f960), AE_ALREADY_EXISTS (20110112 +klog /psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 18.720899] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node +klog f70206d8), AE_AML_PACKAGE_LIMIT +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 19.086127] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog f702e6a8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 19.086176] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node f702e780), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 19.086202] ACPI Error (psparse-0537): Method +klog parse/execution failed [EC0A] (Node f702e990), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 19.086228] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AMW0._WED] (Node f7019fd8), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 19.408610] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node f74256a8), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 20.135790] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88023b491318 +klog (20110316/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 20.135804] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023ec61eb0), +klog AE_AML_OPERAND_TYPE (20110316/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 20.135849] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff88023b491708 +klog (20110316/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 20.135864] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88023ec77668), +klog AE_AML_OPERAND_TYPE (20110316/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 20.149010] ACPI Error: Needed [Integer +klog /String/Buffer], found [Package] f741ed48 (20100428 +klog /exresop-422) +klog +klog ADVICE: An error occurred in resolving operands, required +klog an Integer, String or Buffer type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 20.149032] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.P0P2.PEGP.LCD_._BQC] +klog (Node f741f978), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEvaluationFailed: Test 1, HIGH +klog Kernel message: [ 20.149063] ACPI Warning: Evaluating _BQC +klog failed (20100428/video-651) +klog +klog ADVICE: Executing the ACPI Method leaded in an execution +klog failure. This needs investigating. +klog +klog FAILED [HIGH] KlogAcpiBcqInsteadOfBqc: Test 1, HIGH Kernel +klog message: [ 20.298134] [Firmware Bug]: _BCQ is used instead +klog of _BQC +klog +klog ADVICE: ACPI Method _BCQ was defined (typo) instead of +klog _BQC - this should be fixed.however the kernel has +klog detected this and is working around this typo. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 20.342464] ACPI Warning: _BQC +klog returned an invalid level (20110413/video-473) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [LOW] KlogDuplicateACPIVideoBus: Test 1, LOW Kernel +klog message: [ 20.435766] [Firmware Bug]: Duplicate ACPI video +klog bus devices for the same VGA controller, please try module +klog parameter "video.allow_duplicates=1"if the current driver +klog doesn't work. +klog +klog ADVICE: The ACPI video driver has found a duplicate ACPI +klog video bus device for the same VGA controller. If the +klog current driver does not work, one can try to work around +klog this using the video.allow_duplicates=1 kernel parameter. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 20.634744] ACPI Warning for +klog _SB_.PCI0.GFX0.DD02._BQC: Return type mismatch - found +klog Reference, expected Integer (20100428/nspredef-1053) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiPackageLimit: Test 1, HIGH Kernel +klog message: [ 21.460488] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.GFX0._DOD] (Node ffff880133632c80), +klog AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 21.562484] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] f7260370 (20090903 +klog /exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 21.562496] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node +klog f7017a68), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 21.562544] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node +klog f7017a50), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 22.154348] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog f74276a8), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 22.154443] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node f7427780), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 22.154516] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node f7427828), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 22.154587] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node f7427c18), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [LOW] KlogAcpiDodWithNoDos: Test 1, LOW Kernel +klog message: [ 24.824888] [Firmware Bug]: ACPI(IGPU) defines +klog _DOD but not _DOS +klog +klog ADVICE: ACPI Method _DOD (Enumerate all devices attached +klog to display adapter) is defined but we should also have +klog _DOS (Enable/Disable output switching) defined but it's +klog been omitted. +klog +klog FAILED [HIGH] KlogAcpiResolveOpBadType: Test 1, HIGH +klog Kernel message: [ 25.859931] ACPI Error: Needed [Buffer +klog /String/Package], found [Integer] ffff880139af5240 +klog (20090903/exresop-590) +klog +klog ADVICE: An error occurred in resolving operands, required +klog a Buffer, String or Package type, got a different type +klog instead. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 25.859949] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node +klog ffff88013ba4c0e0), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiOperandType: Test 1, HIGH Kernel +klog message: [ 25.860025] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node +klog ffff88013ba4da80), AE_AML_OPERAND_TYPE +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiTimeOutReturnedByHandler: Test 1, +klog HIGH Kernel message: [ 26.653079] ACPI Exception: AE_TIME, +klog Returned by Handler for [EmbeddedControl] (20100428 +klog /evregion-474) +klog +klog ADVICE: This is most probably caused by when a read or +klog write operation to the EC memory has failed because of a +klog timeout waiting for the Embedded Controller to complete +klog the transaction. Normally, the kernel waits for 500ms for +klog the Embedded Controller status port to indicate that a +klog transaction is complete, but in this case it has not and a +klog AE_TIME error has been returned. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 26.653190] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog ffff880226c54ce0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 26.653252] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node ffff880226c54e00), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 26.653283] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node ffff880226c54ee0), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 26.653307] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node ffff880226c56420) +klog , AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiBqcReturnedInvalidLevel: Test 1, +klog HIGH Kernel message: [ 26.874386] ACPI Warning: _BQC +klog returned an invalid level (20090903/video-631) +klog +klog ADVICE: Method _BQC (Brightness Query Current) returned an +klog invalid display brightness level. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 29.470614] ACPI Warning for +klog _SB_.PCI0.GFX0.DD03._BQC: Return type mismatch - found +klog Reference, expected Integer (20100428/nspredef-1053) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 30.140339] ACPI Error (psparse-0537): Method +klog parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node +klog ffff880217050ce0), AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 30.140421] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECRB] (Node ffff880217050e00), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiEcTimeout: Test 1, HIGH Kernel +klog message: [ 30.140448] ACPI Error (psparse-0537): Method +klog parse/execution failed [ECG5] (Node ffff880217050ee0), +klog AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from the Embedded +klog Controller (EC) timing out while waiting for a transaction +klog to complete. This could indicate that either EC interrupts +klog are being disabled or that the EC has temporarily gone +klog offline or locked up, so this could be a kernel error or +klog more probably a bug in the EC firmware. See the kernel +klog driver drivers/acpi/ec.c. One can increase EC timeouts +klog using the kernel parameter ec_delay to specify the timeout +klog in milliseconds, the default is 500. +klog +klog FAILED [HIGH] KlogAcpiTimeout: Test 1, HIGH Kernel message +klog : [ 30.140475] ACPI Error (psparse-0537): Method parse +klog /execution failed [_SB_.AC__._PSR] (Node ffff880217052420) +klog , AE_TIME +klog +klog ADVICE: The ACPI driver encountered an error executing +klog some ACPI AML code which originated from a device timing +klog out. +klog +klog FAILED [HIGH] KlogAcpiNamespaceLookupFailure: Test 1, HIGH +klog Kernel message: [ 42.490181] ACPI Error: [_SB_.VDRV] +klog Namespace lookup failure, AE_NOT_FOUND (20110112 +klog /psargs-359) +klog +klog ADVICE: The kernel has detected an error trying to execute +klog an Method and it cannot find an object. This is indicates +klog a bug in the DSDT or SSDT AML code. +klog +klog FAILED [HIGH] KlogAcpiObjectNotFound: Test 1, HIGH Kernel +klog message: [ 42.490202] ACPI Error: Method parse/execution +klog failed [_SB_.PCI0.LPC0.H_EC._Q51] (Node ffff88003d9b1e60), +klog AE_NOT_FOUND (20110112/psparse-536) +klog +klog ADVICE: This is a bug picked up by the kernel, but as yet, +klog the firmware test suite has no diagnostic advice for this +klog particular problem. +klog +klog FAILED [HIGH] KlogAcpiReturnTypeMismatch: Test 1, HIGH +klog Kernel message: [ 44.661543] ACPI Warning for +klog _SB_.PCI0.GFX0.DD01._BCL: Return type mismatch - found +klog Integer, expected Package (20090903/nspredef-1006) +klog +klog ADVICE: The ACPI Method returned an incorrect type, this +klog should be fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 50.737630] ACPI Warning for +klog _SB_.PCI0.AGP_.VID_.MXMI: Excess arguments - needs 1, +klog found 2 (20090903/nspredef-303) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog FAILED [HIGH] KlogAcpiBadAmlCode: Test 1, HIGH Kernel +klog message: [ 50.737686] ACPI Warning for +klog _SB_.PCI0.AGP_.VID_.MXMS: Excess arguments - needs 1, +klog found 2 (20090903/nspredef-303) +klog +klog ADVICE: ACPI AML intepreter has found some non-conforming +klog AML code. This should be investigated and fixed. +klog +klog Found 1589 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 1589 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/klog-0001/klog-0002.log fwts-14.03.00/fwts-test/klog-0001/klog-0002.log --- fwts-14.02.00/fwts-test/klog-0001/klog-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/klog-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1612 @@ +summary +summary 0 passed, 1589 failed, 0 warning, 0 aborted, 0 skipped, 0 +summary info only. +summary +summary Test Failure Summary +summary ========================================================== +summary +summary Critical failures: 23 +summary klog: CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid RSDP was not found (20090903/tbxfroot-219) +summary klog: CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid RSDP was not found (20100428/tbxfroot-219) +summary klog: CRITICAL Kernel message: [ 0.000000] ACPI Error: A valid RSDP was not found (20110112/tbxfroot-219) +summary klog: CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 1408MB of RAM. +summary klog: CRITICAL Kernel message: [ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 4MB of RAM. +summary klog: CRITICAL Kernel message: [ 0.025446] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x00BE (20110112/psloop-526) +summary klog: CRITICAL Kernel message: [ 0.025463] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x00C3 (20110112/psloop-526) +summary klog: CRITICAL Kernel message: [ 0.042222] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x2366 (20100121/psloop-526) +summary klog: CRITICAL Kernel message: [ 0.042240] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x006C (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042253] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x006F (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042265] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x0070 (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042279] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x0077 (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042291] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x007C (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042302] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x007D (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042311] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x007F (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.042322] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x0080 (20090903/psloop-522) +summary klog: CRITICAL Kernel message: [ 0.044066] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x678F (20100428/psloop-526) +summary klog: CRITICAL Kernel message: [ 0.296054] [Firmware Bug]: Invalid critical threshold (0) +summary klog: CRITICAL Kernel message: [ 0.788418] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88030a048b40), AE_AML_BUFFER_LIMIT +summary klog: CRITICAL Kernel message: [ 1.125427] [Firmware Bug]: No valid trip found +summary klog: CRITICAL Kernel message: [ 1.336148] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88012b647200), AE_AML_BUFFER_LIMIT +summary klog: CRITICAL Kernel message: [ 1.371180] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88044b85e4a0), AE_AML_BUFFER_LIMIT +summary klog: CRITICAL Kernel message: [ 2.949716] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node ffff880297016ca8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary +summary High failures: 1222 +summary klog: HIGH Kernel message: [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008018/0000000000008028, using 32 (20090903/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008020/0000000000008028, using 32 (20090903/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 0x00008020/0x0000000000008028, using 32 (20110112/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 00008030/0000000000008020, using 32 (20090903/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 00008800/0000000000008100, using 32 (20090903/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00000900/0x0000000000000800, using 32 (20110112/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00001218/0x0000000000001214, using 32 (20100428/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00001218/0x0000000000001214, using 32 (20110413/tbfadt-430) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00008800/0x0000000000008100, using 32 (20110112/tbfadt-427) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! 20090521 tbfadt-370 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20090903/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100121/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100428/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100702/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20101013/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110112/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110316/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110413/tbfadt-369) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3776BF40/0x000000003776ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x38FE4E40/0x0000000038FE4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x38FE4E40/0x0000000038FE4D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F465F40/0x000000003F465F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F473F40/0x000000003F473F80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F509F40/0x000000003F509F80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F509F40/0x000000003F509F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x6FB75F40/0x000000006FB75F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77603F40/0x0000000077603F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77603F40/0x0000000077603F80, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7762DF40/0x000000007762DF80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77630F40/0x0000000077630F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7776BF40/0x000000007776ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7776BF40/0x000000007776ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x78FE4E40/0x0000000078FE4D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7A7E4E40/0x000000007A7E4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7BE20F40/0x000000007BE20F80, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7D7E4E40/0x000000007D7E4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7D8C4F40/0x000000007D8C5E40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7F611E40/0x000000007F611D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7FCEBF40/0x000000007FCE7F40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7FD5AF40/0x000000007FD5FF40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110316/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB7F40/0x00000000AADD1D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB7F40/0x00000000AADD1D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB9F40/0x00000000AADD3D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAF2AF40/0x00000000AAF2DD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAFE4E40/0x00000000AAFE4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAB62DF40/0x00000000AB62DF80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAB62DF40/0x00000000AB62DF80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAFB77F40/0x00000000AFB77F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB5F17E40/0x00000000B5F17D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB5F1BE40/0x00000000B5F1BD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB6D5AF40/0x00000000B6D61D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB6DB9F40/0x00000000B6DD3D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB762CF40/0x00000000B762CF80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110316/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB8FE4E40/0x00000000B8FE4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAD17F40/0x00000000BAD31D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAD87F40/0x00000000BADA1D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBADABF40/0x00000000BADAED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBADABF40/0x00000000BADAED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAF1CF40/0x00000000BAF1FD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAFE4E40/0x00000000BAFE4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAFE5E40/0x00000000BAFE5D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB4D1F40/0x00000000BB4DFD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB583F40/0x00000000BB59DD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB583F40/0x00000000BB59DD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB62CF40/0x00000000BB62CF80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB62DF40/0x00000000BB62DF80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB648F40/0x00000000BB64BD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB649F40/0x00000000BB64CD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB76BF40/0x00000000BB76ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE27F40/0x00000000BBE27F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE27F40/0x00000000BBE27F80, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE29F40/0x00000000BBE29F80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDB65F40/0x00000000BDB6BE40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF17E40/0x00000000BDF17D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF18E40/0x00000000BDF18D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20101013/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF1AE40/0x00000000BDF1AD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBE97CF40/0x00000000BE996D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB7F40/0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB8F40/0x00000000BEDD1D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB8F40/0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB9F40/0x00000000BEDD3D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF4D1F40/0x00000000BF4DFD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF62CF40/0x00000000BF62CF80, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF62DF40/0x00000000BF62DF80, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF654F40/0x00000000BF662D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF7E4E40/0x00000000BF7E4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFA4CF40/0x00000000BFA51F40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFA4CF40/0x00000000BFA51F40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFE17E40/0x00000000BFE17D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFE21F40/0x00000000BFE21E40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xC9E58F40/0x00000000C9E6ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAB39F40/0x00000000CAB3CD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE4E40/0x00000000CAFE4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE4E40/0x00000000CAFE4D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE5E40/0x00000000CAFE5D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCB61DF40/0x00000000CB61DE40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCB61DF40/0x00000000CB61DE40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBE4CF40/0x00000000CBE51F40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBE4CF40/0x00000000CBE51F40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBF6BF40/0x00000000CBF6ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF28F40/0x00000000CEF2BD40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF28F40/0x00000000CEF2BD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF2BF40/0x00000000CEF2ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF2BF40/0x00000000CEF2ED40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF36BF40/0x00000000CF36ED40, using 32 (20100702/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF36BF40/0x00000000CF36ED40, using 32 (20101013/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF76BF40/0x00000000CF76ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF76BF40/0x00000000CF76ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFBFAF40/0x00000000CFBF6F40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFD56F40/0x00000000CFD52F40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFD5FF40/0x00000000CFD65E40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xD2F2DF40/0x00000000D2F30D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB36BF40/0x00000000DB36ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB36BF40/0x00000000DB36ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20100428/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEB39F40/0x00000000DEB3CD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEB3AF40/0x00000000DEB3DD40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEEBAF40/0x00000000DEEBDD40, using 32 (20110413/tbfadt-489) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEF2DF40/0x00000000DEF30D40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDF64BF40/0x00000000DF64ED40, using 32 (20110112/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 3762DF40/000000003762DF80, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 3F611E40/000000003F611D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7776BF40/000000007776ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7DB61F40/000000007DB66F40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7F3ECF40/000000007F3E8F40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7F611E40/000000007F611D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 9DCC4F40/000000009DCC5E40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - AFB75F40/00000000AFB75F80, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - B7B1CE40/00000000B7B1CD40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - B7B1CE40/00000000B7B1CD40, using 32 (20100121/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BADABF40/00000000BADAED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BAF2DF40/00000000BAF30D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BB62DF40/00000000BB62DF80, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BB76BF40/00000000BB76ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BBE28E40/00000000BBE28D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDB5BF40/00000000BDB60F40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDB5FF40/00000000BDB64F40, using 32 20090521 tbfadt-487 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDF17E40/00000000BDF17D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BEDB7F40/00000000BEDD1D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BF62CF40/00000000BF62CF80, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BF76BF40/00000000BF76ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CBE4AF40/00000000CBE4FF40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CBF6BF40/00000000CBF6ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CEF28F40/00000000CEF2BD40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CEF2CF40/00000000CEF2FD40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - D2F2DF40/00000000D2F30D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DADC1F40/00000000DADD5D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DB36BF40/00000000DB36ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DB76BF40/00000000DB76ED40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DEEBAF40/00000000DEEBDD40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DEF2DF40/00000000DEF30D40, using 32 (20090903/tbfadt-486) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 20090521 tbfadt-527 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20090903/tbfadt-526) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20100428/tbfadt-526) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20110112/tbfadt-526) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20110413/tbfadt-529) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: BIOS XSDT has NULL entry, using RSDT (20110112/tbutils-663) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20090903/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20100428/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20110112/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20110413/tbfadt-610) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm1bControlBlock: 32, using default 16 (20090903/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20090903/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20100428/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20110112/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20100428/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20110112/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20110413/tbfadt-610) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 32, using default 8 (20090903/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 32, using default 8 (20110112/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Invalid length for PmTimerBlock: 24, using default 32 (20100428/tbfadt-607) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 20090521 tbfadt-558 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 (20090903/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000802C/0 (20090903/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x0000000000000000/0x4 (20110413/tbfadt-560) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20110112/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20110413/tbfadt-560) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x00000000000044A0/0x0 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 20090521 tbfadt-558 +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 (20090903/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000050/0 (20090903/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20101013/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110112/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110413/tbfadt-560) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000450/0x0 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000450/0x0 (20110112/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000814/0x0 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000820/0x0 (20100428/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000820/0x0 (20110112/tbfadt-557) +summary klog: HIGH Kernel message: [ 0.000000] ACPI Warning (tbfadt-0460): Optional field "Gpe1Block" has zero address or length: 000000000000102C/0 [20080926] +summary klog: HIGH Kernel message: [ 0.022719] ACPI Error: Found unknown opcode 0xFD at AML address f7ffe14c offset 0xE8, ignoring (20110112/psloop-141) +summary klog: HIGH Kernel message: [ 0.034090] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ee025630), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.040119] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 400000) +summary klog: HIGH Kernel message: [ 0.045570] ACPI Warning: For _SB_.PCI0.LPCB.H_EC._GLK: Parameter count mismatch - ASL declared 1, ACPI requires 0 (20110112/nspredef-352) +summary klog: HIGH Kernel message: [ 0.050847] ACPI Warning: Package List length (0x10) larger than NumElements count (0x8), truncated +summary klog: HIGH Kernel message: [ 0.053909] ACPI Warning: Package List length (0x10) larger than NumElements count (0x6), truncated +summary klog: HIGH Kernel message: [ 0.074070] ACPI Error: The DSDT has been corrupted or replaced - old, new headers below (20110413/tbutils-372) +summary klog: HIGH Kernel message: [ 0.074090] ACPI Error: Please send DMI info to linux-acpi@vger.kernel.org +summary klog: HIGH Kernel message: [ 0.077854] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.078226] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node f7033090), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.078254] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node f7033078), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.078278] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f7033048), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.085590] ACPI Error: Could not map memory at 0x000000007F5E3520, size 463 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.085606] ACPI Error: Method parse/execution failed [_PR_.CPU1.APPT] (Node f403d228), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.085618] ACPI Error: Method parse/execution failed [_PR_.CPU1.GCAP] (Node f403d1f8), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.085627] ACPI Error: Could not map memory at 0x000000007D3E1520, size 463 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.085628] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f403d1c8), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.086081] ACPI Error: Could not map memory at 0x000000007F395420, size 141 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.086097] ACPI Error: Method parse/execution failed [_PR_.CPU1.APCT] (Node f403d210), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.086108] ACPI Error: Method parse/execution failed [_PR_.CPU2.GCAP] (Node f403d270), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.086118] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f403d240), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.086119] ACPI Error: Could not map memory at 0x000000007D198120, size 141 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.091402] ACPI Warning: Package List length (0x7) larger than NumElements count (0x3), truncated +summary klog: HIGH Kernel message: [ 0.091463] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APPT] (Node f701e228), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.091510] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node f701e1f8), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.091552] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f701e1c8), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.092524] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node f701e210), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.092570] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2.GCAP] (Node f701e270), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.092612] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f701e240), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.093544] ACPI Error: Needed type [Reference], found [Device] f7019f90 (20100428/exresop-104) +summary klog: HIGH Kernel message: [ 0.094856] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness +summary klog: HIGH Kernel message: [ 0.095719] ACPI Error: Could not map memory at 0x0000000087127520, size 463 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.095737] ACPI Error: Method parse/execution failed [_PR_.CPU1.APPT] (Node f383e498), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.095749] ACPI Error: Method parse/execution failed [_PR_.CPU1.GCAP] (Node f383e468), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.095760] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f383e438), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.095817] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +summary klog: HIGH Kernel message: [ 0.096257] ACPI Error: Could not map memory at 0x0000000086DB1C20, size 141 (20110112/exregion-178) +summary klog: HIGH Kernel message: [ 0.096273] ACPI Error: Method parse/execution failed [_PR_.CPU1.APCT] (Node f383e480), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.096285] ACPI Error: Method parse/execution failed [_PR_.CPU2.GCAP] (Node f383e4e0), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.096295] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f383e4b0), AE_NO_MEMORY (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.101941] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20110112/dsopcode-597) +summary klog: HIGH Kernel message: [ 0.101946] ACPI Error: Method parse/execution failed [_SB_.MEM_._CRS] (Node f442af60), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.101953] ACPI Error: Method execution failed [_SB_.MEM_._CRS] (Node f442af60), AE_AML_BUFFER_LIMIT (20110112/uteval-103) +summary klog: HIGH Kernel message: [ 0.104297] ACPI Error (psargs-0359): [OSYS] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.104304] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACEL._STA] (Node f701c4e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.105061] ACPI Warning: Package List length (0xCA) larger than NumElements count (0x4), truncated +summary klog: HIGH Kernel message: [ 0.106912] ACPI Warning: Package List length (0x5) larger than NumElements count (0x2), truncated +summary klog: HIGH Kernel message: [ 0.109618] ACPI Error: Needed type [Reference], found [Device] f7012f90 (20090903/exresop-104) +summary klog: HIGH Kernel message: [ 0.109635] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701adc8), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.113709] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f5822150), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.113864] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f58221e0), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.114544] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node f54211c8), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.118277] ACPI Error (psargs-0359): [SUPP] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.118284] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7012780), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.120765] ACPI Warning for _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 0.122347] ACPI Error: Could not map memory at 0x00000000000FFA32, size 0 (20100428/exregion-178) +summary klog: HIGH Kernel message: [ 0.122369] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node f70191c8), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.128150] ACPI Warning for _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 0.136585] ACPI Error: Field [ALB2] at 120 exceeds Buffer [CRSA] size 104 (bits) (20090903/dsopcode-596) +summary klog: HIGH Kernel message: [ 0.136600] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] (Node dd8159d8), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.136637] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] (Node dd8159d8), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.140000] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 43003c) +summary klog: HIGH Kernel message: [ 0.150000] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff880137e47618), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.150000] ACPI Error: No handler for Region [ERAM] (ffff880137e58e10) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 0.159797] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4421648), AE_NOT_FOUND (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.160246] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880147830960), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.160246] ACPI Error: [_SB_.PHSR] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.163431] ACPI Warning: Package List length (0x6) larger than NumElements count (0x3), truncated +summary klog: HIGH Kernel message: [ 0.165683] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.165689] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f3821648), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.166264] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node f701a648), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.166294] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4021648), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.166323] ACPI Error: No handler for Region [ERAM] (f7022168) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.166336] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7021bb8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.166808] ACPI Error: No handler for Region [ERAM] (f7023938) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.166808] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node f701be10), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.166808] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f7024d08), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.169111] ACPI Error: [HPTF] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.169117] ACPI Error: Method parse/execution failed [_SB_.PCI0.HPET._STA] (Node f402ae58), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.170000] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a06440), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.170000] ACPI Warning: Package List length (0x6) larger than NumElements count (0x2), truncated +summary klog: HIGH Kernel message: [ 0.171916] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f700e3d8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.172776] ACPI Warning: Package List length (1) larger than NumElements count (0), truncated +summary klog: HIGH Kernel message: [ 0.172868] ACPI Error: No handler for Region [RAM_] (f7014618) [EmbeddedControl] 20090521 evregion-319 +summary klog: HIGH Kernel message: [ 0.172873] ACPI Error: Region EmbeddedControl(3) has no handler 20090521 exfldio-294 +summary klog: HIGH Kernel message: [ 0.172880] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f70159f0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.173605] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70215e8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.173917] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d6804), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.173917] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d6804), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.175379] ACPI Error: No handler for Region [ECXP] (f70218e8) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.175394] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._OSC] (Node f7025558), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.175428] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node f7025540), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.175892] ACPI Warning: Package List length (0x1) larger than NumElements count (0x0), truncated +summary klog: HIGH Kernel message: [ 0.176410] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359) +summary klog: HIGH Kernel message: [ 0.177377] ACPI Error: Needed type [Reference], found [Device] f701af90 (20100428/exresop-104) +summary klog: HIGH Kernel message: [ 0.177377] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7022dc8), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.178420] ACPI Error: No handler for Region [SACS] (f701b500) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.178434] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f7072000), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178458] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f7072000), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178486] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f70720a8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178510] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f70720a8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178539] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f7072210), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178563] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f7072210), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178590] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f70722b8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.178614] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f70722b8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.179688] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f74174c8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.181591] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7022db0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.181679] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f740f438), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.182199] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c25228), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.182199] ACPI Error: [Z012] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.182639] ACPI Error (psargs-0359): [ECEN] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.182645] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c090665c), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.183306] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node f403a228), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.183725] ACPI Error: No handler for Region [SACS] (f70c20f0) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.183734] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f70c4180), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183755] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f70c4180), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183773] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f70c4240), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183793] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f70c4240), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183812] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f70c43c0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183832] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f70c43c0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183850] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f70c4480), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.183870] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f70c4480), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.184314] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7015eb8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.185673] ACPI Error (dswload-0659): [___P] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.185686] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f701a150), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.185688] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._INI] (Node f700f6c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.185862] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f701a1e0), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.186281] ACPI Warning: Package List length (C) larger than NumElements count (4), truncated +summary klog: HIGH Kernel message: [ 0.187800] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0994f7c), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.188487] ACPI Error (psargs-0359): q z Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.189086] ACPI Error: Needed type [Reference], found [Device] f700ff90 (20090903/exresop-104) +summary klog: HIGH Kernel message: [ 0.189100] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7017dc8), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.189451] ACPI Error: Needed type [Reference], found [Device] f700ef90 20090521 exresop-104 +summary klog: HIGH Kernel message: [ 0.189466] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7016dc8), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.189515] ACPI Error (psargs-0359): [CVCL] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.189522] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.DIGI._STA] (Node f702a390), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.191906] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c098ff6c), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.192146] ACPI Error (dswload-0781): [_PSW] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.192182] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08ce7dc), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.193750] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08ce7dc), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.194554] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f5821150), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.194701] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f58211e0), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.197413] ACPI Error: No handler for Region [EC__] (f701c5c8) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.197451] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC__._REG] (Node f701e2a0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.199465] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359) +summary klog: HIGH Kernel message: [ 0.199471] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node ffff880138e2ea78), AE_NOT_FOUND (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.201466] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f700e180), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 0.205365] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5422e88), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.209105] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f270), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.211904] ACPI Error: No handler for Region [ERAM] (ee422ed8) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.211928] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fd08), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.211938] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ee423708), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.212815] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f7424eb8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.213084] ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.213100] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014ca8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.213827] ACPI Warning: Package List length (0xC) larger than NumElements count (0x3), truncated +summary klog: HIGH Kernel message: [ 0.217060] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node dec13ca8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.217763] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013030), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.218957] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701be88), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.219691] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013270), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.219959] ACPI Error: No handler for Region [SACS] (f70c52a8) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.219968] ACPI Error: Region PCI_Config(2) has no handler (20090903/exfldio-295) +summary klog: HIGH Kernel message: [ 0.219977] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f701ba38), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220034] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f701ba38), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220068] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f701baf8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220107] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f701baf8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220142] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f701bc78), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220180] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f701bc78), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220213] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f701bd38), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.220252] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f701bd38), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.221153] ACPI Error: Method parse/execution failed [_SB_.PCI0.HPET._CRS] (Node f402ae70), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.221220] ACPI Error: Method parse/execution failed [_SB_.PCI0.RTC_._CRS] (Node f402aee8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.222211] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701beb8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.222980] ACPI Error: Field [I9MN] at 544 exceeds Buffer [IORT] size 464 (bits) (20090903/dsopcode-596) +summary klog: HIGH Kernel message: [ 0.222987] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node f7015900), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.223020] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node f7015900), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.224289] ACPI Warning for _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +summary klog: HIGH Kernel message: [ 0.224569] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fca8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.224987] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 688 (bits) (20100428/dsopcode-597) +summary klog: HIGH Kernel message: [ 0.224994] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node f7021990), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.225018] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node f7021990), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.228032] ACPI Error (psargs-0359): [_PR_.C002._PPC] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.228041] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f742a558), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.228469] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 30) +summary klog: HIGH Kernel message: [ 0.228773] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4025450), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.229334] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7020750), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.229639] ACPI Error (psargs-0359): [CDW1] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.229644] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7413270), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.230075] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014630), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.231134] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7012f00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.232733] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701ebd0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.236739] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c24f00), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.245794] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return type mismatch - found Integer, expected Package (20100428/nspredef-1053) +summary klog: HIGH Kernel message: [ 0.245810] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.PCI0.PCIB._PRT] (Node f7022c48), AE_TYPE +summary klog: HIGH Kernel message: [ 0.245830] ACPI Error: Type returned from _PRT was incorrect: Integer, expected Btypes: 0x8 (20100428/uteval-313) +summary klog: HIGH Kernel message: [ 0.249570] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._OSC] (Node f7010198), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.249594] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f7010180), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.249860] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._OSC] (Node f7010270), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.249882] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f7010258), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.250005] ACPI Error: No handler for Region [EC__] (f4424bd0) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 0.250012] ACPI Error: Region EmbeddedControl(0x3) has no handler (20110112/exfldio-292) +summary klog: HIGH Kernel message: [ 0.250019] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC__._REG] (Node f4425bb8), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.250572] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7010e88), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.250864] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013e58), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.250941] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4022e88), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.250986] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI +summary klog: HIGH Kernel message: [ 0.254947] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c22e88), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.255884] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70142b8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.262586] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.262663] pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared +summary klog: HIGH Kernel message: [ 0.264838] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f2a0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.265119] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d5804), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.267893] ACPI Warning for _TZ_.TZ01._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 0.268093] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0927024), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.268171] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0927024), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.268458] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70142a0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.269488] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node ffff88007af30560), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.269534] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node ffff88007af30540), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.269576] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88007af30500), AE_NO_MEMORY +summary klog: HIGH Kernel message: [ 0.272427] ACPI Error: No handler for Region [SACS] (f71004d8) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.272435] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f7102150), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272452] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f7102150), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272469] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f71021f8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272486] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f71021f8), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272503] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f7102360), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272519] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f7102360), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272536] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f7102408), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.272552] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f7102408), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.284552] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node f7014858), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 0.284566] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node f7014798), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 0.285468] ACPI Error (psargs-0359): [_PR_.CPU0._PPC] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.285476] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0.ADJP] (Node f7015b10), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.285546] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0._PSR] (Node f7015ae0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.288591] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fd50), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.288966] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f34245b8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.296149] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701eca8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.296644] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88012fc16660), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.302946] ACPI Error (psargs-0359): [HPTF] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.302952] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.HPET._STA] (Node ffff88007db32200), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.307009] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c22e88), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.307757] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f74145a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.307837] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f7414690), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.308151] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f7414cd8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.308213] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7414dc8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.310609] ACPI Warning for _PR_.CPU1._PSS: SubPackage[8,9] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 0.311025] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.311041] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f54250d8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.311335] ACPI Warning for _PR_.CPU2._PSS: SubPackage[8,9] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 0.311729] ACPI Error: Could not enable PowerButton event (20090903/evxfevnt-193) +summary klog: HIGH Kernel message: [ 0.311932] ACPI Warning: Could not enable fixed event 2 (20090903/evxface-146) +summary klog: HIGH Kernel message: [ 0.314451] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2b040), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.316816] ACPI Error: No handler for Region [ERAM] (ffff88007a733d80) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 0.316829] ACPI Error: Method parse/execution failed [_SB_.HTEV] (Node ffff88007a730780), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.316839] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff88007a73a078), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.317427] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88007d735160), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.321587] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a12040), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.321722] ACPI Error: Needed type [Reference], found [Device] ffff88007552b900 (20100428/exresop-104) +summary klog: HIGH Kernel message: [ 0.321740] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff880075532ba0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.322869] ACPI Error: No handler for Region [RAM_] (f7425690) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 0.322886] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node f7435228), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.322899] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7428d98), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.323777] ACPI Warning: Package List length (0xC) larger than NumElements count (0x4), truncated +summary klog: HIGH Kernel message: [ 0.325321] ACPI Error: No handler for Region [ERAM] (ffff88007d32bf78) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.325334] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.KBC0.SMWR] (Node ffff88007d32c8c0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.325357] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.THRM.SFAN] (Node ffff88007d328ec0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.325376] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.THRM.THCK] (Node ffff88007d328f40), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.325396] ACPI Error (psparse-0537): Method parse/execution failed [_GPE._L02] (Node ffff88007d3289c0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.325630] ACPI Error: Could not enable SleepButton event (20100428/evxfevnt-202) +summary klog: HIGH Kernel message: [ 0.325636] ACPI Warning: Could not enable fixed event 0x3 (20100428/evxface-146) +summary klog: HIGH Kernel message: [ 0.329218] ACPI Warning for _SB_.PCI0._OSC: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.329373] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.329378] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88012b63d760), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.330488] ACPI Error: No handler for Region [SACS] (ffff88011bf101f8) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.330496] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node ffff88011bf0d360), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330513] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node ffff88011bf0d360), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330528] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node ffff88011bf0d460), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330545] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node ffff88011bf0d460), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330560] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node ffff88011bf0d660), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330576] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node ffff88011bf0d660), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330590] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node ffff88011bf0d760), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330606] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node ffff88011bf0d760), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.330759] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88011763c000), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.331637] ACPI Error: Needed type [Reference], found [Device] ffff88014b82d820 (20090903/exresop-104) +summary klog: HIGH Kernel message: [ 0.331653] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88014b83cac0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.331820] ACPI Error: Needed type [Reference], found [Device] ffff8800379aa900 (20100428/exresop-104) +summary klog: HIGH Kernel message: [ 0.331838] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800379bbba0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.332160] ACPI Error (dswload-0677): [PCI0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.332167] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81cf5eb0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.333287] ACPI Error: No handler for Region [ERAM] (ffff8800bc638d80) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.333300] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node ffff8800bc62e600), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.333326] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff8800bc63e9a0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.333559] ACPI Error: No handler for Region [ERAM] (ffff88007db2ad80) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.333573] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node ffff88007db28600), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.333601] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff88007db309a0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.333734] ACPI Warning for _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +summary klog: HIGH Kernel message: [ 0.333765] ACPI Error (psargs-0359): [FZHD] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.333771] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f7014300), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.333853] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f70143f0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.334143] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f7014a38), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.334206] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7014b28), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.335658] ACPI Error: No handler for Region [ECOR] (ffff88007af355e8) [EmbeddedControl] (20110413/evregion-373) +summary klog: HIGH Kernel message: [ 0.335698] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff88007af36730), AE_NOT_EXIST (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.337513] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f54243f0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.337662] ACPI Error (psargs-0359): [URES] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.337662] ACPI Error (psparse-0537): Method parse/execution failed [_PSW] (Node f701f0a8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.338155] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88021302db60), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.338440] ACPI Error: No handler for Region [SACS] (ffff88012bb0f1f8) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.338717] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node ffff88012bb111a0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.338905] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node ffff88012bb111a0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.339363] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node ffff88012bb11280), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.339551] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node ffff88012bb11280), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.340003] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node ffff88012bb11460), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.340193] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node ffff88012bb11460), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.340651] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node ffff88012bb11540), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.340838] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node ffff88012bb11540), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.341759] ACPI Error: No handler for Region [RAM_] (f74212f8) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.341812] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._OSC] (Node ffff88017bc14660), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.341843] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88017bc14640), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.342116] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node f742f228), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.342130] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._OSC] (Node ffff88017bc14780), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.342160] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node ffff88017bc14760), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.342409] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7422d98), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.347557] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20100428/nspredef-1059) +summary klog: HIGH Kernel message: [ 0.353198] ACPI Error: No handler for Region [ERAM] (ffff88013be53e10) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.353215] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff88013be520e0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.353401] ACPI Warning for _SB_.LATA._CRS: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.353406] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.LATA._CRS] (Node ffff88006df2eb00), AE_TYPE +summary klog: HIGH Kernel message: [ 0.353652] ACPI Error: Needed type [Reference], found [Device] ffff8800379a6800 (20090903/exresop-104) +summary klog: HIGH Kernel message: [ 0.353652] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800379bba80), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 0.355135] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node ffff88007a738ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.355798] ACPI Error: ACPI path has too many parent prefixes (^) - reached beyond root node (20090903/nsaccess-429) +summary klog: HIGH Kernel message: [ 0.356001] ..MP-BIOS bug: 8254 timer not connected to IO-APIC +summary klog: HIGH Kernel message: [ 0.356108] ACPI Error: No handler for Region [ECF2] (ffff88013ba313a8) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 0.356113] ACPI Error: Region EmbeddedControl(3) has no handler (20090903/exfldio-295) +summary klog: HIGH Kernel message: [ 0.356119] ACPI Error (psparse-0537): Method parse/execution failed [P8XH] (Node ffff88013ba28020), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.356143] ACPI Error (psparse-0537): Method parse/execution failed [_GPE._L02] (Node ffff88013ba32120), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.359183] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7021a68), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.361596] ACPI Error: ACPI path has too many parent prefixes (^) - reached beyond root node (20100428/nsaccess-429) +summary klog: HIGH Kernel message: [ 0.362481] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c091bffc), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.362557] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c091bffc), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.362606] ACPI Error (dsfield-0487): [SMIC] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.362751] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f40255d0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.362859] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via cmdline +summary klog: HIGH Kernel message: [ 0.362870] ACPI Error (dsfield-0140): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.362886] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014a80), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.363488] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff880227048f60), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.364356] ACPI Warning: For _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 0.364521] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f44285b8), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.372475] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5426ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.372684] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node dd825ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.375585] ACPI Error (dswload-0677): [USB0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.375609] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c09fb6c8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.375966] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0992f7c), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.376047] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node dd825ca8), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.376092] ACPI Error: No handler for Region [ECXP] (ffff88007cf31ab0) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.376106] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._OSC] (Node ffff88007cf3f440), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.376141] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node ffff88007cf3f420), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.376733] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5026ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.381039] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7016a38), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.382740] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88003f013ca0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.384722] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.HPET._CRS] (Node ffff88007db32220), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.384811] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.RTC_._CRS] (Node ffff88007db322c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.390341] ACPI Error: [GUR_._BAS] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.390354] ACPI Error: Method parse/execution failed [_SB_.PCI0.MBIO._CRS] (Node ffff880078f30aa0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.393086] ACPI Warning: For _TZ_.THRM._PSL: Return Package has no elements (empty) (20110413/nspredef-456) +summary klog: HIGH Kernel message: [ 0.395834] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013ba393a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.399990] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 688 (bits) (20110112/dsopcode-597) +summary klog: HIGH Kernel message: [ 0.399996] ACPI Error: Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff8800b8e38000), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.400012] ACPI Error: Method execution failed [_SB_.MEM_._CRS] (Node ffff8800b8e38000), AE_AML_BUFFER_LIMIT (20110112/uteval-103) +summary klog: HIGH Kernel message: [ 0.406016] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0.ADJP] (Node ffff88013ba3c5a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.406038] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0._PSR] (Node ffff88013ba3c560), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.408529] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c285b8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.415975] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 0.420210] ACPI Error: [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +summary klog: HIGH Kernel message: [ 0.420218] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88022b749b18), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.420241] ACPI Error: Field [I9MN] at 544 exceeds Buffer [IORT] size 464 (bits) (20100428/dsopcode-597) +summary klog: HIGH Kernel message: [ 0.420248] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node ffff88013142fac0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.420284] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node ffff88013142fac0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.422032] ACPI Warning (dsobject-0501): Package List length (6) larger than NumElements count (3), truncated +summary klog: HIGH Kernel message: [ 0.424909] ACPI Warning for _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +summary klog: HIGH Kernel message: [ 0.426823] ACPI Error (psargs-0359): [_PR_.CPU0._PSS] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.426833] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__.ADJP] (Node ffff88007b32ee00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.426872] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff88007b32edc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.429245] ACPI Warning for _PR_.CPU0._TSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +summary klog: HIGH Kernel message: [ 0.430887] ACPI Warning for _PR_.CPU1._TSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +summary klog: HIGH Kernel message: [ 0.436921] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013b62ccc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.440405] ACPI Warning for _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +summary klog: HIGH Kernel message: [ 0.444897] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c252a0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.450562] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800b8e33ca8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.451517] ACPI Error (psargs-0359): [GUR_._BAS] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.451682] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.MBIO._CRS] (Node ffff88007bb2a880), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.453111] ACPI Warning for _SB_.BAT1._BIF: Return Package type mismatch at index 12 - found Integer, expected String/Buffer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 0.454555] ACPI Warning for _PR_.CPU0._PSS: Return Package type mismatch at index 3 - found Integer, expected Package (20100428/nspredef-1059) +summary klog: HIGH Kernel message: [ 0.454838] ACPI Warning for _PR_.CPU1._PSS: Return Package type mismatch at index 3 - found Integer, expected Package (20100428/nspredef-1059) +summary klog: HIGH Kernel message: [ 0.460622] ACPI Warning: For _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 0.461767] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +summary klog: HIGH Kernel message: [ 0.461793] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003cdb0f00), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.468216] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._CST] (Node ffff88007c5cc380), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.468859] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003f1afdc0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.475076] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f701eb28), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.475159] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f701ec18), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.475441] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f70202a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.475506] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7020390), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.479821] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a68), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.481067] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4028a68), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.482955] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0f00), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.484974] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a68), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.485955] ACPI Warning: For _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20110112/nspredef-1059) +summary klog: HIGH Kernel message: [ 0.490491] ACPI Warning: For _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20110413/nspredef-352) +summary klog: HIGH Kernel message: [ 0.492569] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a08440), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.492648] ACPI Error (dswload-0781): [PRID] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.492655] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a08440), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.492811] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5428a68), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.497662] ACPI Warning (nspredef-0357): _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) [20080926] +summary klog: HIGH Kernel message: [ 0.500043] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff8800ac22d040), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.501138] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a38), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.505041] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4028a38), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.513609] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5428a38), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.516158] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f74296c0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.527455] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5422df8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.533028] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0bb8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.539131] ACPI Error: No handler for Region [RAM_] (ffff88012fa36a20) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 0.539149] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node ffff88012fa4f398), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.539161] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff88012fa396b8), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.540036] ACPI Error: [_PR_.C002._PPC] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.540046] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880107e623c0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.541238] ACPI Error: Method parse/execution failed [_TZ_.C2E8] (Node f482d108), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.541258] ACPI Error: Method parse/execution failed [_TZ_.C2E7] (Node f482d0f0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.541277] ACPI Error: Method parse/execution failed [_TZ_.TZ2_._TMP] (Node f482d7c8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.563415] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9af848), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.566332] ACPI Warning: For _TZ_.THRM._AL0: Return Package has no elements (empty) (20110413/nspredef-456) +summary klog: HIGH Kernel message: [ 0.583718] ACPI Warning: _SB_.PCI0.PCI2._PRT: Return Package has no elements (empty) 20090521 nspredef-434 +summary klog: HIGH Kernel message: [ 0.591722] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20100428/dsopcode-597) +summary klog: HIGH Kernel message: [ 0.591729] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff8800b4040f60), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.591760] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node ffff8800b4040f60), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.593045] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f702c7b0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.593072] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f7019648), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.593095] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f702ea08), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.593119] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702e9c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.593142] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e678), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.597675] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.597680] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 10 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.597685] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 11 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.597689] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.600451] ACPI Error (psargs-0359): [_SB_.PCI0.EGBA] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.600456] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC_.MBRD._CRS] (Node f7416318), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.612793] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +summary klog: HIGH Kernel message: [ 0.612820] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9ae190), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.620955] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 0.621415] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f702c828), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.621443] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f7019ed0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.621468] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f702ea98), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.621493] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702ea50), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.621518] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e708), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.627242] ACPI Error (psargs-0359): [_SB_.PCI0.EC__.HOTT] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.627255] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ01._HOT] (Node ffff88013ba3ae60), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.628687] [Firmware Bug]: ERST: ERST table is invalid +summary klog: HIGH Kernel message: [ 0.630258] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88007af370a0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.651383] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88007f416680), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.652133] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2e040), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.652695] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0f040), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.653163] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88007ab2f460), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.654642] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88020f44deb0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.654994] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node ffff88020f44df50), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.655350] ACPI Error: Method parse/execution failed [_PR_.CPU3._PDC] (Node ffff88020f454000), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.655369] ACPI Error (psargs-0359): [_SB_.PCI0.PSKB] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.655376] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.SIO_.KBC0._STA] (Node ffff880236c47260), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.655576] ACPI Error (psargs-0359): [_SB_.PCI0.PSMS] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.655581] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.SIO_.MSE0._STA] (Node ffff880236c47340), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.658002] ACPI Warning for _SB_.PCI0.SATA.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.658697] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88023fc14aa0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.662008] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0c440), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.674920] ACPI Error: [SERN] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +summary klog: HIGH Kernel message: [ 0.674938] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node f3829120), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.674963] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node f3829330), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 0.677370] ACPI Warning for _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.677375] ACPI Warning for _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132) +summary klog: HIGH Kernel message: [ 0.695029] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0e440), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.710267] ACPI Error: Method parse/execution failed [_TZ_.PSWT] (Node f7424bb8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.710275] ACPI Error: Method parse/execution failed [_TZ_.GTTP] (Node f7424b88), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.710281] ACPI Error: Method parse/execution failed [_TZ_.GFXZ._TMP] (Node f74249a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.712727] ACPI Error: Method parse/execution failed [_TZ_.DTSZ._TMP] (Node f7424ca8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.721822] ACPI Error (dswload-0659): [USB0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.722199] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a4d180), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.725417] ACPI Warning for _SB_.PCI0.LPC_.SYSR._CRS: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.725429] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.PCI0.LPC_.SYSR._CRS] (Node ffff88013ba46cc0), AE_TYPE +summary klog: HIGH Kernel message: [ 0.725450] ACPI Error: Type returned from _CRS was incorrect: Integer, expected Btypes: 4 (20090903/uteval-313) +summary klog: HIGH Kernel message: [ 0.736425] ACPI Warning: For _SB_.PCI0.PT02._PRT: Return Package has no elements (empty) (20110413/nspredef-456) +summary klog: HIGH Kernel message: [ 0.743273] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f0d8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.743525] ACPI Error: [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +summary klog: HIGH Kernel message: [ 0.743530] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f50273d8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.743538] ACPI Warning: For _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20110112/nspredef-352) +summary klog: HIGH Kernel message: [ 0.744106] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20090903/dsopcode-596) +summary klog: HIGH Kernel message: [ 0.744114] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff88013ba44cc0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.744142] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node ffff88013ba44cc0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 0.772223] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_ALREADY_EXISTS (20101013/psparse-537) +summary klog: HIGH Kernel message: [ 0.782613] ACPI Error (psargs-0359): [RAMB] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.790513] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node ffff880079f39f78), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.790526] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT0._BIF] (Node ffff880079f37118), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.794367] ACPI Warning for _PR_.P002._PSD: Return type mismatch - found Integer, expected Package (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.810687] ACPI Error (dswload-0659): [DD02] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.810756] ACPI Error (dswload-0659): [EHC1] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.820565] ACPI Error: [FZHD] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 0.820571] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff880127632b40), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.820632] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff880127632cd0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.821065] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff880127634758), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.821112] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff8801276348e8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 0.822836] ACPI Warning: For _SB_.PCI0.PCI2._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 0.860349] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88023704ea40), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.860380] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff8802370590e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.860410] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802370522a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.860439] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880237052240), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.860468] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880237050de0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.870147] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013ba29e80), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.873454] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 0.879606] ACPI Error (psargs-0359): [MPEN] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.879794] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ00._PSL] (Node ffff88015ba4de00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.888177] ACPI Warning for _SB_.BAT1._BST: Return Package type mismatch at index 2 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 0.890080] ACPI Error: No handler for Region [RAM_] (ffff880133a35a20) [EmbeddedControl] (20100428/evregion-369) +summary klog: HIGH Kernel message: [ 0.890253] ACPI Error: Region EmbeddedControl(0x3) has no handler (20100428/exfldio-293) +summary klog: HIGH Kernel message: [ 0.890421] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node ffff880133a49620), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.890696] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff880133a385e0), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 0.892097] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021704e920), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.892124] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880217056700), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.892147] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff880217052180), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.892171] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880217052120), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.892195] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880217050cc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.900692] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021704e960), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.900729] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880217059000), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.900753] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802170521c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.900776] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880217052160), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.900801] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880217050d00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905032] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021304e940), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905061] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff8802130576a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905085] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802130521a0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905110] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880213052140), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905135] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880213050ce0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.905920] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.C000.C264] (Node f7024e58), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 0.905985] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.C000._PSS] (Node f7024f30), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 0.906063] [Firmware Bug]: BIOS needs update for CPU frequency support +summary klog: HIGH Kernel message: [ 0.940948] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7421fc0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 0.944156] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node ffff88013384d720), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 0.967528] ACPI Warning for _TZ_.THRM._AL0: Return Package has no elements (empty) (20100428/nspredef-456) +summary klog: HIGH Kernel message: [ 0.990917] ACPI Warning for _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.991675] ACPI Warning for _SB_.PCI0.FNC2.PRT1._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 0.992685] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81cf6eb0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.004972] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node f701c150), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.005015] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node f701c168), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.005055] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f702f3c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.009421] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node f701aa98), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.020868] ACPI Warning for _PR_.CPU0._PSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +summary klog: HIGH Kernel message: [ 1.021557] ACPI Warning for _PR_.CPU1._PSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +summary klog: HIGH Kernel message: [ 1.026272] ACPI Warning (processor_throttling-0843): Invalid throttling state, reset +summary klog: HIGH Kernel message: [ 1.027573] ACPI Error: No handler for Region [ERAM] (ffff880133e3e798) [EmbeddedControl] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 1.027587] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.DOCK._STA] (Node ffff880133e48620), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.027653] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.DOCK._STA] (Node ffff880133e48620), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.158298] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node f701b648), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.167050] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110316/psargs-359) +summary klog: HIGH Kernel message: [ 1.167226] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4422648), AE_NOT_FOUND (20110316/psparse-536) +summary klog: HIGH Kernel message: [ 1.184923] ACPI Warning: For _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20110413/nspredef-456) +summary klog: HIGH Kernel message: [ 1.186079] ACPI Error: [BRTW] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.186087] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f4c2a588), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.187842] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node f7450168), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.187891] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node f74500c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.188370] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node f7450150), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.188776] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node f74502b8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.189190] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node f7450258), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.196055] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3824270), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.210593] ACPI Warning: For _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20101013/nspredef-456) +summary klog: HIGH Kernel message: [ 1.212692] ACPI Warning: For _TZ_.THRM._AL0: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 1.214748] ACPI Error: [_T_1] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +summary klog: HIGH Kernel message: [ 1.214761] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node f3023438), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.214775] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node f3023420), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.222641] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node f30235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.222655] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node f30235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.224060] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1._STA] (Node f7023b10), AE_TIME +summary klog: HIGH Kernel message: [ 1.228128] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f702a570), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.229185] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70140d8), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 1.230869] ACPI Warning for _PR_.CPU0._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 1.231049] ACPI Warning for _PR_.CPU1._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 1.231224] ACPI Warning for _PR_.CPU2._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 1.231399] ACPI Warning for _PR_.CPU3._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +summary klog: HIGH Kernel message: [ 1.246159] ACPI Error: No handler for Region [ECRM] (f6cedba0) [EmbeddedControl] (20110413/evregion-373) +summary klog: HIGH Kernel message: [ 1.246164] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20110413/exfldio-292) +summary klog: HIGH Kernel message: [ 1.246169] ACPI Error: Method parse/execution failed [_TZ_.RDEC] (Node f442fc60), AE_NOT_EXIST (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 1.246176] ACPI Error: Method parse/execution failed [_TZ_.TZS0._TMP] (Node f442fca8), AE_NOT_EXIST (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 1.270260] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff880137a4e840), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.270297] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff880137a4e860), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.270332] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff880137a3fd00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.272398] ACPI Error: No handler for Region [ECRM] (f76d0c60) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 1.272407] ACPI Error: Method parse/execution failed [_TZ_.RDEC] (Node f742fc60), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.272415] ACPI Error: Method parse/execution failed [_TZ_.TZS0._TMP] (Node f742fca8), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.280955] ACPI Error: No handler for Region [PCFG] (ffff880137a733f0) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 1.280965] ACPI Error (psparse-0537): Method parse/execution failed [J380._STA] (Node ffff88013712b380), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.314561] ACPI Error: [ECPU] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.314567] ACPI Error: Method parse/execution failed [_TZ_.TZ00._TMP] (Node ffff88011763ca28), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.337975] ACPI Error (uteval-0250): Method execution failed [J380._STA] (Node ffff88013712b380), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.371174] ACPI Error: Field [CDW3] at 96 exceeds Buffer [NULL] size 64 (bits) (20090903/dsopcode-596) +summary klog: HIGH Kernel message: [ 1.381411] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2b040), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.381481] ACPI Error (dswload-0659): [PCI0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.384655] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff8801393f91f8 (20090903/exresop-590) +summary klog: HIGH Kernel message: [ 1.384672] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88013ba4c020), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 1.384743] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013ba4d9c0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 1.398053] ACPI: acpi_idle yielding to intel_idleACPI Warning for _TZ_.TZ01._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20100428/nspredef-1059) +summary klog: HIGH Kernel message: [ 1.399160] ACPI Warning for _SB_.PCI0.PT02._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 1.400736] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f7018e58), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.436671] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f7024e58), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.462866] ACPI Warning: _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) 20090521 nspredef-434 +summary klog: HIGH Kernel message: [ 1.480960] ACPI Warning: _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found Integer, expected Buffer 20090521 nspredef-940 +summary klog: HIGH Kernel message: [ 1.488986] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.488991] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f702b708), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.489034] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f702b720), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.518091] ACPI Warning for _SB_.PCI0.IDE1.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 1.555599] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8801b90590c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.555652] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8801b90590e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.555703] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8801b903b6e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.570612] ACPI Error: No handler for Region [PCFG] (ffff8801b9074240) [PCI_Config] (20090903/evregion-319) +summary klog: HIGH Kernel message: [ 1.570624] ACPI Error (psparse-0537): Method parse/execution failed [J380._STA] (Node ffff8801b916ea40), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.590337] ACPI Warning: For _TZ_.THRM._PSL: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 1.605121] ACPI Error: Current brightness invalid (20110112/video-377) +summary klog: HIGH Kernel message: [ 1.605465] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.616034] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.616243] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.618281] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88015334d9e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.620164] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88015334dbc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.621081] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88015334db40), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.648580] ACPI Error: [SMS_] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.648589] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3429e58), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.662849] ACPI Error (uteval-0250): Method execution failed [J380._STA] (Node ffff8801b916ea40), AE_NOT_EXIST +summary klog: HIGH Kernel message: [ 1.678325] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88022f7bb5e8 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 1.678342] ACPI Error: Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88022f460190), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.678390] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88022f7bb8b8 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 1.678412] ACPI Error: Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88022f464230), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.701482] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88022704e960), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.701521] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880227059000), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.701557] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802270521c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.701592] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880227052160), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.701628] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880227050d00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.761428] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node ffff8800bc234d60), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.782803] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801d4d0ac60), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.783001] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801d4d0ab80), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.784831] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801d4d0ac40), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.786497] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801d4d0ae20), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.787299] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801d4d0ada0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.849787] ACPI Warning for _PR_.CPU3._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer [] tick_dev_program_event+0x68/0xd0 +summary klog: HIGH Kernel message: [ 1.861558] ACPI Error: [SERN] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +summary klog: HIGH Kernel message: [ 1.861576] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node ffff880232c509b0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.861601] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node ffff880232c50d20), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.864413] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f3025828), AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 1.893953] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8800b3c50000), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.894002] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8800b3c50020), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.894047] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8800b3c49380), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.900224] ACPI Error: [NPSS] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.900238] ACPI Error: Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88014f9a5140), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.900254] ACPI Error: Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88014f9a5028), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.900769] ACPI Error: Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88014f9a5118), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.901001] ACPI Error: Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88014f9a5370), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.901211] ACPI Error: Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88014f9a52d0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.905440] ACPI Warning: For _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 1.907422] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 1.907427] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3431a50), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.907445] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3431a68), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.911273] ACPI Warning for _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 1.929855] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node f7414858), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 1.929872] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node f7414798), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 1.958776] ACPI Warning for _PR_.CPU0._PSD: +summary klog: HIGH Kernel message: [ 1.958968] ACPI Warning for _PR_.CPU1._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959113] ACPI Warning for _PR_.CPU2._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959252] ACPI Warning for _PR_.CPU3._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959427] ACPI Warning for _PR_.CPU4._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959602] ACPI Warning for _PR_.CPU5._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959776] ACPI Warning for _PR_.CPU6._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.959951] ACPI Warning for _PR_.CPU7._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 1.962612] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801534e5dc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.962811] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801534e5ce0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.964620] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801534e5da0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.966282] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801534e5f80), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.967081] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801534e5f00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 1.974827] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831a50), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 1.974846] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831a68), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.001829] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.GTM_] (Node f5423ba0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.001850] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.CHN0._GTM] (Node f54239c0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.002809] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.CHN1._GTM] (Node f5423ac8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.006621] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8801b90570c0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.006671] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8801b90570e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.006718] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8801b903fa80), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.022076] ACPI Error: Could not enable SleepButton event (20110112/evxfevnt-198) +summary klog: HIGH Kernel message: [ 2.022090] ACPI Warning: Could not enable fixed event 0x3 (20110112/evxface-197) +summary klog: HIGH Kernel message: [ 2.033653] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f6031468), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.033670] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f6031480), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.045931] ACPI Warning for _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +summary klog: HIGH Kernel message: [ 2.049441] ACPI Warning for _PR_.CPU0._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 2.068617] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3c29e58), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.081502] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.081508] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801534e5c20), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.081585] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801534e5b40), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.083171] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801534e5c00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.084838] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801534e5de0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.085644] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801534e5d60), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.106307] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dca8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.106326] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcd0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.113330] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f74317b0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.113367] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f74317c8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.132386] ACPI Error: Could not enable SleepButton event (20090903/evxfevnt-193) +summary klog: HIGH Kernel message: [ 2.132392] ACPI Warning: Could not enable fixed event 3 (20090903/evxface-146) +summary klog: HIGH Kernel message: [ 2.149905] ACPI Error: Method parse/execution failed [_SB_.C003.C099._DOD] (Node f30275a0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.173036] ACPI Warning for _SB_._OSC: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 2.200371] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602bf30), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.200380] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d2d0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.206433] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742d018), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.206443] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.222353] ACPI Error: [EABF] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +summary klog: HIGH Kernel message: [ 2.222362] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602d018), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.222372] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.227407] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.227411] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f702b7b0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.227454] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f702b7c8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.231431] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602bf60), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.231442] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d300), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.250291] ACPI Error: Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff88013762f550), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.250306] ACPI Error: Method parse/execution failed [_SB_.BAT1._BIF] (Node ffff88013762f500), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.270835] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff880125e2c708), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.280398] ACPI Error (dswload-0781): [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 2.280410] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff8800b3c2e100), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 2.280443] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1._BIF] (Node ffff8800b3c2e0c0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 2.283579] ACPI Error (psargs-0359): [_T_0] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.283585] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff8800b3c2e100), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.283615] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q09] (Node ffff8800b3c410e0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.288649] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dcd0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.288685] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcf8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.294251] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742bf30), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.294262] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d2d0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.324547] ACPI Error: [EABF] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +summary klog: HIGH Kernel message: [ 2.324556] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742d018), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 2.324566] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d3a8), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 2.334361] ACPI Error: Attempt to CreateField of length zero (20110112/dsopcode-529) +summary klog: HIGH Kernel message: [ 2.334370] ACPI Error: Method parse/execution failed [_SB_.PCI0.IDE0.RATA] (Node ffff8801376322a8), AE_AML_OPERAND_VALUE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.334384] ACPI Error: Method parse/execution failed [_SB_.PCI0.IDE0.PRT1._GTF] (Node ffff880137632438), AE_AML_OPERAND_VALUE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.336604] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff88013b63c460), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 2.384172] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff8801c305dcd0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.384189] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff8801c305dcf8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.440684] ACPI Error (psargs-0359): [SMS_] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.440692] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node ffff88007db30c60), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 2.462687] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff880147646cd0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.462711] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff880147646cf8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.468708] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f700f180), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 2.468963] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f700f240), AE_INVALID_TABLE_LENGTH +summary klog: HIGH Kernel message: [ 2.592359] ACPI Error: Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88014f9a4140), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.592381] ACPI Error: Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88014f9a4028), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.593071] ACPI Error: Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88014f9a4118), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.593648] ACPI Error: Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88014f9a4370), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.593935] ACPI Error: Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88014f9a42d0), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.634350] ACPI Error: [GTF1] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 2.634355] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3431af8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.634373] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3431b10), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.671117] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f2c2d018), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.671128] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f2c2d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.701908] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831af8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.701933] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831b10), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.771747] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f402bf60), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.771758] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f402d300), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.787172] ACPI Warning: For _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +summary klog: HIGH Kernel message: [ 2.823916] ACPI Warning: _BQC returned an invalid level 20090521 video-629 +summary klog: HIGH Kernel message: [ 2.837958] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f7431858), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.837994] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f7431870), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.838171] ACPI Warning for _SB_.BAT0._BIF: Return Package type mismatch at index 9 - found [NULL Object Descriptor], expected String/Buffer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 2.851027] ACPI Warning: _BQC returned an invalid level (20110316/video-473) +summary klog: HIGH Kernel message: [ 2.860339] ACPI Error: Method parse/execution failed [_SB_.C003.C098._DOD] (Node f4427588), AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 2.861808] ACPI Error: [_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 2.861812] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node ffff88015746e168), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.870589] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880137632c80), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 2.906610] ACPI Warning: For _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found Integer, expected Package (20110413/nspredef-1053) +summary klog: HIGH Kernel message: [ 2.949708] ACPI Error: Field [CDW3] at 96 exceeds Buffer [NULL] size 64 (bits) (20110112/dsopcode-597) +summary klog: HIGH Kernel message: [ 3.005123] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88122fc1ea00), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.112435] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f74257c8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.112465] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f742c210), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.112494] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f7427a20), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.112522] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f74279d8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.112549] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f7427690), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 3.208822] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C098._DOD] (Node ffff88007cf30b60), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 3.223518] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880236c469a0), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 3.420672] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20100428/nspredef-1059) +summary klog: HIGH Kernel message: [ 3.480092] ACPI Warning for _SB_.PCI0.SAT0.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 3.490098] ACPI Warning for _SB_.PCI0.SAT0.PRT1._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 3.490832] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff88013bc2bdc0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 3.490852] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff88013bc2bd40), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 3.502273] ACPI Error: Could not enable SleepButton event (20100428/evxfevnt-205) +summary klog: HIGH Kernel message: [ 3.601126] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f7420690), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 3.675814] ACPI Error: Evaluating _BCM failed (20100428/video-532) +summary klog: HIGH Kernel message: [ 3.868794] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831b58), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 3.868812] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831b70), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 3.983031] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff88021d459028), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 3.983040] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff88021d459618), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.115197] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff88021d458eb0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.115206] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff88021d4594b0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.190434] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342f8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.198699] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831c00), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.198716] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831c18), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.230508] ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20090903/evregion-424) +summary klog: HIGH Kernel message: [ 4.230527] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR1] (Node f7018ed0), AE_TIME +summary klog: HIGH Kernel message: [ 4.230612] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR2] (Node f7018ee8), AE_TIME +summary klog: HIGH Kernel message: [ 4.230643] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f7018fa8), AE_TIME +summary klog: HIGH Kernel message: [ 4.230672] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f7018fd8), AE_TIME +summary klog: HIGH Kernel message: [ 4.230701] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f70186f0), AE_TIME +summary klog: HIGH Kernel message: [ 4.230730] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV._Q66] (Node f7018eb8), AE_TIME +summary klog: HIGH Kernel message: [ 4.576415] ACPI Error: No handler for Region [ERAM] (f4830d50) [EmbeddedControl] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 4.576437] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node f48326d8), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 4.638115] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff880220c5b028), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 4.638127] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff880220c5b618), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 4.838935] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.C2E8] (Node f701b108), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 4.838984] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.C2E7] (Node f701b0f0), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 4.839033] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ2_._TMP] (Node f701b7c8), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 4.890970] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff880126e43f50), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 4.890980] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff880126e44550), AE_ALREADY_EXISTS (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 5.150560] ACPI Warning for _SB_.BAT0._BIF: Return Package type mismatch at index 12 - found Integer, expected String/Buffer (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 5.332663] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f4425450), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.224974] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node f3423438), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.224987] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node f3423420), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.227917] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node f34235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.227930] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node f34235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.732287] ACPI Error: [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +summary klog: HIGH Kernel message: [ 6.732310] ACPI Error: Method parse/execution failed [_SB_.BAT1.UBIF] (Node dd028fc0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.732334] ACPI Error: Method parse/execution failed [_SB_.BAT1._BIF] (Node dd028f90), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 6.773266] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20101013/dsfield-143) +summary klog: HIGH Kernel message: [ 6.773285] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ddc25ca8), AE_ALREADY_EXISTS (20101013/psparse-537) +summary klog: HIGH Kernel message: [ 7.365139] ACPI Error: No handler for Region [IPMI] (ffff8805ffa37240) [IPMI] (20110112/evregion-369) +summary klog: HIGH Kernel message: [ 7.365150] ACPI Error: Region IPMI(0x7) has no handler (20110112/exfldio-292) +summary klog: HIGH Kernel message: [ 7.365161] ACPI Error: Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff8805ffa36b18), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 7.365181] ACPI Error: Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff8805ffa36a78), AE_NOT_EXIST (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 8.137284] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e720), AE_TIME +summary klog: HIGH Kernel message: [ 8.137317] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e7f8), AE_TIME +summary klog: HIGH Kernel message: [ 8.137344] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702ea08), AE_TIME +summary klog: HIGH Kernel message: [ 8.137370] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019ca8), AE_TIME +summary klog: HIGH Kernel message: [ 8.227953] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C098._DOD] (Node f7021588), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 8.794633] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5824ab0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.141980] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e690), AE_TIME +summary klog: HIGH Kernel message: [ 9.142017] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e768), AE_TIME +summary klog: HIGH Kernel message: [ 9.142046] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702e978), AE_TIME +summary klog: HIGH Kernel message: [ 9.142076] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019420), AE_TIME +summary klog: HIGH Kernel message: [ 9.267040] ACPI Warning for _SB_.SPM_._PMD: Return Package type mismatch at index 0 - found String, expected Reference (20090903/nspredef-1012) +summary klog: HIGH Kernel message: [ 9.391036] ACPI Error: Method parse/execution failed [_SB_.PCI0.IBCM] (Node f3828738), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.391049] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f3824b28), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.391061] ACPI Error: Evaluating _BCM failed (20110112/video-365) +summary klog: HIGH Kernel message: [ 9.393479] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012d8cfee8 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 9.393498] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88012f83e6b8), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.393510] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88012f83e690), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.394098] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012d8cfd38 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 9.394109] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88012f83e6e0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.394118] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88012f83e668), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff88007af33780), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff88007af33910), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff88007af32b68), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff88007af32cf8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 10.120967] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023bcba438 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 10.120977] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023f45edc0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 10.121007] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023bcba1b0 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 10.121018] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.GFX0._DSM] (Node ffff88023f474370), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 10.194089] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +summary klog: HIGH Kernel message: [ 10.289821] ACPI Error (psargs-0359): [_PR_.CPU0._CST] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 10.289828] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._CST] (Node f70c3288), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 10.344782] ACPI Error: SMBus or IPMI write requires Buffer of length 42, found length 20 (20090903/exfield-286) +summary klog: HIGH Kernel message: [ 10.344788] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff88122fc1ece0), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 10.344812] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff88122fc1ec60), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 10.380244] ACPI Warning (nspredef-0357): _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) [20080926] +summary klog: HIGH Kernel message: [ 10.680422] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff880117642ed8), AE_AML_INFINITE_LOOP (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 10.692650] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node f702e738), AE_TIME +summary klog: HIGH Kernel message: [ 10.692684] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f702e810), AE_TIME +summary klog: HIGH Kernel message: [ 10.692710] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f702e840), AE_TIME +summary klog: HIGH Kernel message: [ 10.692735] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702ea50), AE_TIME +summary klog: HIGH Kernel message: [ 10.692761] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e708), AE_TIME +summary klog: HIGH Kernel message: [ 10.708822] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f7427738), AE_TIME +summary klog: HIGH Kernel message: [ 10.708876] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f7427810), AE_TIME +summary klog: HIGH Kernel message: [ 10.708908] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f7427a20), AE_TIME +summary klog: HIGH Kernel message: [ 10.708939] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f742c078), AE_TIME +summary klog: HIGH Kernel message: [ 10.724353] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880213050d00), AE_TIME +summary klog: HIGH Kernel message: [ 10.724416] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880213050e20), AE_TIME +summary klog: HIGH Kernel message: [ 10.724449] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node ffff8802130520e0), AE_TIME +summary klog: HIGH Kernel message: [ 10.724482] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node ffff8802130573c0), AE_TIME +summary klog: HIGH Kernel message: [ 11.195653] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f702e8a0), AE_TIME +summary klog: HIGH Kernel message: [ 11.195680] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f702ec90), AE_TIME +summary klog: HIGH Kernel message: [ 11.383565] ACPI Error: Method parse/execution failed [_SB_.C003.C098._DOD] (Node ffff880137636938), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 11.660551] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node f702e6a8), AE_TIME +summary klog: HIGH Kernel message: [ 11.660591] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f702e780), AE_TIME +summary klog: HIGH Kernel message: [ 11.660615] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f702e7b0), AE_TIME +summary klog: HIGH Kernel message: [ 11.660638] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702e9c0), AE_TIME +summary klog: HIGH Kernel message: [ 11.660661] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e678), AE_TIME +summary klog: HIGH Kernel message: [ 11.800514] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 11.880473] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012125f558 (20110413/exresop-590) +summary klog: HIGH Kernel message: [ 11.880998] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012125f3a8 (20110413/exresop-590) +summary klog: HIGH Kernel message: [ 11.915871] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SWFS] (Node ffff880226c49320), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 11.915905] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.RBYT] (Node ffff880226c493c0), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 11.915932] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.SECV] (Node ffff880226c4a0e0), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 11.915960] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.RVLT] (Node ffff880226c49b00), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 12.160904] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f702e810), AE_TIME +summary klog: HIGH Kernel message: [ 12.160929] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f702ec00), AE_TIME +summary klog: HIGH Kernel message: [ 12.167076] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff8800b1753048 (20090903/exresop-590) +summary klog: HIGH Kernel message: [ 12.167089] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff8800b3c44ca0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 12.167143] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff8800b3c44c80), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 12.167205] ACPI Warning: Evaluating _BQC failed (20090903/video-641) +summary klog: HIGH Kernel message: [ 12.242368] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012ea6e6c0 (20110413/exresop-590) +summary klog: HIGH Kernel message: [ 12.242387] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88013113f6b8), AE_AML_OPERAND_TYPE (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 12.242397] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88013113f690), AE_AML_OPERAND_TYPE (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 12.242409] ACPI Warning: Evaluating _BQC failed (20110413/video-484) +summary klog: HIGH Kernel message: [ 12.242974] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012ea6e5e8 (20110413/exresop-590) +summary klog: HIGH Kernel message: [ 12.242986] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88013113f6e0), AE_AML_OPERAND_TYPE (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 12.242994] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88013113f668), AE_AML_OPERAND_TYPE (20110413/psparse-536) +summary klog: HIGH Kernel message: [ 12.243002] ACPI Error: Evaluating _BCM failed (20110413/video-365) +summary klog: HIGH Kernel message: [ 12.361137] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C09D._DOD] (Node ffff88013b630c00), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 12.390421] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880213050f00), AE_TIME +summary klog: HIGH Kernel message: [ 12.390446] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880213052440), AE_TIME +summary klog: HIGH Kernel message: [ 12.553637] ACPI Warning: For _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found Integer, expected Package (20110112/nspredef-1053) +summary klog: HIGH Kernel message: [ 12.838979] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20110112/evregion-474) +summary klog: HIGH Kernel message: [ 12.841008] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain ACPI Warning: _BQC returned an invalid level (20110112/video-473) +summary klog: HIGH Kernel message: [ 13.024512] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f7425450), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 13.396787] ACPI Error: Method parse/execution failed [_SB_.ADP1._PSR] (Node ffff88011763ba00), AE_TIME (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 13.445954] ACPI Error: Field [D128] at 1040 exceeds Buffer [NULL] size 160 (bits) (20110112/dsopcode-597) +summary klog: HIGH Kernel message: [ 13.445980] ACPI Error: Method parse/execution failed [_SB_.WMID.HWMC] (Node f742a8b8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 13.446019] ACPI Error: Method parse/execution failed [_SB_.WMID.WMAD] (Node f742aac8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 13.452167] ACPI Error (psargs-0359): [_PR_.C001] Namespace lookup failure, AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 13.452177] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_.TPAF] (Node f702bde0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 13.452213] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_.TBOM] (Node f702bdf8), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 13.452247] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._Q1D] (Node f702ba98), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 14.013275] ACPI Warning: _BQC returned an invalid level (20110112/video-473) +summary klog: HIGH Kernel message: [ 14.175645] ACPI Error: Method parse/execution failed [_SB_.PCI0.OVGA.DD03.GBQC] (Node f44247e0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 14.175656] ACPI Error: Method parse/execution failed [_SB_.PCI0.OVGA.DD03._BQC] (Node f44247c8), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 14.175667] ACPI Warning: Evaluating _BQC failed (20110112/video-484) +summary klog: HIGH Kernel message: [ 14.885219] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88013c6b58b8 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 14.885234] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88013f849eb0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 14.885277] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88013c6b5828 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 14.885289] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88013f86f668), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 15.027464] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff880075137920), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 15.027505] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880075140660), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 15.027542] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff88007513b180), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 15.027579] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff88007513b120), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 15.027616] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880075139cc0), AE_NOT_FOUND +summary klog: HIGH Kernel message: [ 15.287082] ACPI Warning: _BQC returned an invalid level (20100428/video-640) +summary klog: HIGH Kernel message: [ 15.846531] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8800b3840360), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 16.336080] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q33] (Node f70244b0), AE_TIME +summary klog: HIGH Kernel message: [ 16.592600] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.SEFA] (Node ffff880226c4a120), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 16.592628] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.RFAN] (Node ffff880226c49bc0), AE_AML_INFINITE_LOOP +summary klog: HIGH Kernel message: [ 16.719798] ACPI Warning for _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) (20090903/nspredef-433) +summary klog: HIGH Kernel message: [ 16.942589] ACPI Error (dswload-0802): [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 16.942606] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.OVGA.DD03.GBQC] (Node ffff8800b7e3c6e0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 16.942654] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.OVGA.DD03._BQC] (Node ffff8800b7e3c6c0), AE_ALREADY_EXISTS +summary klog: HIGH Kernel message: [ 17.125601] ACPI Error: Needed [Buffer/String/Package], found [Integer] eee27810 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 17.125618] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node f7431fa8), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 17.125669] ACPI Error: Needed [Buffer/String/Package], found [Integer] eee27780 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 17.125690] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node f7445c78), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 17.802564] ACPI Error: Method parse/execution failed [_SB_.WMID.HWMC] (Node ffff8801ffc5c078), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 17.802574] ACPI Error: Method parse/execution failed [_SB_.WMID.WMAD] (Node ffff8801ffc5c258), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 17.847665] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node f444ebe8), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 17.985672] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IBCM] (Node ffff8800b3832600), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 17.985723] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node ffff8800b382b840), AE_AML_BUFFER_LIMIT +summary klog: HIGH Kernel message: [ 18.054842] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880133a777e0 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 18.054860] ACPI Error: Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff880137659190), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.054909] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880133a776c0 (20110112/exresop-590) +summary klog: HIGH Kernel message: [ 18.054932] ACPI Error: Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013765d230), AE_AML_OPERAND_TYPE (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.353938] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node ffff88013762f708), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.353954] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node ffff88013762f6e0), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.367485] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node ffff88013762f988), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.367501] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node ffff88013762f960), AE_ALREADY_EXISTS (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 18.720899] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f70206d8), AE_AML_PACKAGE_LIMIT +summary klog: HIGH Kernel message: [ 19.086127] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e6a8), AE_TIME +summary klog: HIGH Kernel message: [ 19.086176] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e780), AE_TIME +summary klog: HIGH Kernel message: [ 19.086202] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702e990), AE_TIME +summary klog: HIGH Kernel message: [ 19.086228] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019fd8), AE_TIME +summary klog: HIGH Kernel message: [ 19.408610] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f74256a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 20.135790] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023b491318 (20110316/exresop-590) +summary klog: HIGH Kernel message: [ 20.135804] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023ec61eb0), AE_AML_OPERAND_TYPE (20110316/psparse-536) +summary klog: HIGH Kernel message: [ 20.135849] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023b491708 (20110316/exresop-590) +summary klog: HIGH Kernel message: [ 20.135864] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88023ec77668), AE_AML_OPERAND_TYPE (20110316/psparse-536) +summary klog: HIGH Kernel message: [ 20.149010] ACPI Error: Needed [Integer/String/Buffer], found [Package] f741ed48 (20100428/exresop-422) +summary klog: HIGH Kernel message: [ 20.149032] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P2.PEGP.LCD_._BQC] (Node f741f978), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 20.149063] ACPI Warning: Evaluating _BQC failed (20100428/video-651) +summary klog: HIGH Kernel message: [ 20.298134] [Firmware Bug]: _BCQ is used instead of _BQC +summary klog: HIGH Kernel message: [ 20.342464] ACPI Warning: _BQC returned an invalid level (20110413/video-473) +summary klog: HIGH Kernel message: [ 20.634744] ACPI Warning for _SB_.PCI0.GFX0.DD02._BQC: Return type mismatch - found Reference, expected Integer (20100428/nspredef-1053) +summary klog: HIGH Kernel message: [ 21.460488] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880133632c80), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 21.562484] ACPI Error: Needed [Buffer/String/Package], found [Integer] f7260370 (20090903/exresop-590) +summary klog: HIGH Kernel message: [ 21.562496] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node f7017a68), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 21.562544] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node f7017a50), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 22.154348] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f74276a8), AE_TIME +summary klog: HIGH Kernel message: [ 22.154443] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f7427780), AE_TIME +summary klog: HIGH Kernel message: [ 22.154516] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f7427828), AE_TIME +summary klog: HIGH Kernel message: [ 22.154587] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f7427c18), AE_TIME +summary klog: HIGH Kernel message: [ 25.859931] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880139af5240 (20090903/exresop-590) +summary klog: HIGH Kernel message: [ 25.859949] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88013ba4c0e0), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 25.860025] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013ba4da80), AE_AML_OPERAND_TYPE +summary klog: HIGH Kernel message: [ 26.653079] ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474) +summary klog: HIGH Kernel message: [ 26.653190] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880226c54ce0), AE_TIME +summary klog: HIGH Kernel message: [ 26.653252] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880226c54e00), AE_TIME +summary klog: HIGH Kernel message: [ 26.653283] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880226c54ee0), AE_TIME +summary klog: HIGH Kernel message: [ 26.653307] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880226c56420), AE_TIME +summary klog: HIGH Kernel message: [ 26.874386] ACPI Warning: _BQC returned an invalid level (20090903/video-631) +summary klog: HIGH Kernel message: [ 29.470614] ACPI Warning for _SB_.PCI0.GFX0.DD03._BQC: Return type mismatch - found Reference, expected Integer (20100428/nspredef-1053) +summary klog: HIGH Kernel message: [ 30.140339] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880217050ce0), AE_TIME +summary klog: HIGH Kernel message: [ 30.140421] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880217050e00), AE_TIME +summary klog: HIGH Kernel message: [ 30.140448] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880217050ee0), AE_TIME +summary klog: HIGH Kernel message: [ 30.140475] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880217052420), AE_TIME +summary klog: HIGH Kernel message: [ 42.490181] ACPI Error: [_SB_.VDRV] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +summary klog: HIGH Kernel message: [ 42.490202] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.H_EC._Q51] (Node ffff88003d9b1e60), AE_NOT_FOUND (20110112/psparse-536) +summary klog: HIGH Kernel message: [ 44.661543] ACPI Warning for _SB_.PCI0.GFX0.DD01._BCL: Return type mismatch - found Integer, expected Package (20090903/nspredef-1006) +summary klog: HIGH Kernel message: [ 50.737630] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMI: Excess arguments - needs 1, found 2 (20090903/nspredef-303) +summary klog: HIGH Kernel message: [ 50.737686] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMS: Excess arguments - needs 1, found 2 (20090903/nspredef-303) +summary +summary Medium failures: 331 +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x3E, should be 0x41 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x65, should be 0x68 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x69, should be 0x6C (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x69, should be 0x6C (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x9E, should be 0xA1 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0xDF, should be 0xE2 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0xE4, should be 0xE7 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] ACPI Warning: Incorrect checksum in table [XSDT] - 0x89, should be 0x7D (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it. +summary klog: MEDIUM Kernel message: [ 0.076767] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA6, should be 0x97 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.077157] ACPI Warning: Incorrect checksum in table [OEMB] - 0x4C, should be 0x21 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.078268] ACPI Warning: Incorrect checksum in table [OEMB] - 07, should be 06 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.078686] ACPI Warning: Incorrect checksum in table [OEMB] - 0x38, should be 0x81 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.083817] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF9, should be 0xF3 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.085974] ACPI Warning: Incorrect checksum in table [OEMB] - 0x6B, should be 0x39 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.086054] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x96 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.088999] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE8, should be 0xDB (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.089613] ACPI Warning: Incorrect checksum in table [OEMB] - 0xB3, should be 0xAE (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.089701] ACPI Warning: Incorrect checksum in table [OEMB] - 0x77, should be 0x6C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.091541] ACPI Warning: Incorrect checksum in table [OEMB] - F6, should be E7 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.091778] ACPI Warning: Incorrect checksum in table [OEMB] - 8E, should be 7F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.091911] ACPI Warning: Incorrect checksum in table [APIC] - 0x8E, should be 0x91 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.094477] ACPI Warning: Incorrect checksum in table [OEMB] - 0x97, should be 0x90 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.096447] ACPI Warning: Incorrect checksum in table [OEMB] - 66, should be 62 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.098113] ACPI Warning: Incorrect checksum in table [OEMB] - 0x2C, should be 0x28 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.099413] ACPI Warning: Incorrect checksum in table [OEMB] - E2, should be D9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.102803] ACPI Warning: Incorrect checksum in table [OEMB] - 6E, should be 40 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.108470] ACPI Warning: Incorrect checksum in table [OEMB] - 3F, should be 3B (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.109343] ACPI Warning: Incorrect checksum in table [OEMB] - 0x29, should be 0x1C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.110905] ACPI Warning: Incorrect checksum in table [OEMB] - 32, should be 25 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.115838] ACPI Warning: Incorrect checksum in table [OEMB] - 79, should be 6C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.118568] ACPI Warning: Incorrect checksum in table [OEMB] - 2F, should be 22 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.132540] ACPI Warning: Incorrect checksum in table [OEMB] - CB, should be C6 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.137394] ACPI Warning: Incorrect checksum in table [OEMB] - 29, should be 1A (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.141112] ACPI Warning: Incorrect checksum in table [OEMB] - ED, should be E8 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.154764] ACPI Warning: Incorrect checksum in table [OEMB] - 7D, should be 6E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.160449] mtrr: your CPUs had inconsistent fixed MTRR settings +summary klog: MEDIUM Kernel message: [ 0.163687] ACPI Warning: Incorrect checksum in table [TAMG] - 0xFC, should be 0xFB (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.164073] ACPI Warning: Incorrect checksum in table [TAMG] - 0xEE, should be 0xED (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.169362] ACPI Warning: Incorrect checksum in table [OEMB] - 0x18, should be 0x13 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.169398] ACPI Warning: Incorrect checksum in table [OEMB] - 0x15, should be 0xAC (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.170352] ACPI Warning: Incorrect checksum in table [SSDT] - 0xEA, should be 0x42 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.171073] ACPI Warning: Incorrect checksum in table [OEMB] - 0x67, should be 0x92 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.171715] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xAB (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.172406] ACPI Warning: Incorrect checksum in table [OEMB] - 0x22, should be 0x15 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.172679] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xA5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.173062] ACPI Warning: Incorrect checksum in table [SSDT] - 0xAA, should be 0xED (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.173745] ACPI Warning: Incorrect checksum in table [TCPA] - 0x83, should be 0x27 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.175144] ACPI Warning: Incorrect checksum in table [OEMB] - 95, should be 8C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.175987] ACPI Warning: Incorrect checksum in table [OEMB] - D7, should be C8 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.176309] ACPI Warning: Incorrect checksum in table [OEMB] - 0xCF, should be 0xCE (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.176680] ACPI Warning: Incorrect checksum in table [OEMB] - D6, should be C7 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.176840] ACPI Warning: Incorrect checksum in table [SSDT] - 0xAC, should be 0x4D (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.177033] ACPI Warning: Incorrect checksum in table [OEMB] - ED, should be EC 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.177048] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe03fffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.177506] ACPI Warning: Incorrect checksum in table [SSDT] - 0xA1, should be 0x30 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.177670] ACPI Warning: Incorrect checksum in table [OEMB] - 1C, should be 17 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.178040] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF7, should be 0xE8 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.179475] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xAB (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.181959] ACPI Warning: Incorrect checksum in table [OEMB] - 0x0A, should be 0x09 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.182122] ACPI Warning: Incorrect checksum in table [OEMB] - 7D, should be 70 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.183518] ACPI Warning: Incorrect checksum in table [OEMB] - 10, should be 03 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.183948] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x8E (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.184086] ACPI Warning: Incorrect checksum in table [OEMB] - 0x69, should be 0x68 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.186529] ACPI Warning: Incorrect checksum in table [OEMB] - B9, should be AC (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.187574] ACPI Warning: Incorrect checksum in table [OEMB] - 77, should be 76 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.187872] ACPI Warning: Incorrect checksum in table [OEMB] - B6, should be B3 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.187981] ACPI Warning: Incorrect checksum in table [OEMB] - 8D, should be 8C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.187992] ACPI Warning: Incorrect checksum in table [OEMB] - 40, should be 3F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.188197] ACPI Warning: Incorrect checksum in table [OEMB] - 6A, should be 61 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.188232] ACPI Warning: Incorrect checksum in table [ATKG] - 0x07, should be 0x59 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.188669] ACPI Warning: Incorrect checksum in table [ATKG] - 0x05, should be 0xE5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.191013] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0xE5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.191774] ACPI Warning: Incorrect checksum in table [OEMB] - 37, should be 28 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.192037] ACPI Warning: Incorrect checksum in table [OEMB] - 0xD9, should be 0xCC (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.192983] ACPI Warning: Incorrect checksum in table [OEMB] - C0, should be B3 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.194184] ACPI Warning: Incorrect checksum in table [OEMB] - C8, should be BF (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.194314] ACPI Warning: Incorrect checksum in table [OEMB] - AA, should be 9D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.194897] ACPI Warning: Incorrect checksum in table [OEMB] - 0xDD, should be 0xD6 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.195685] ACPI Warning: Incorrect checksum in table [OEMB] - 2A, should be 29 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.195754] ACPI Warning: Incorrect checksum in table [OEMB] - 88, should be 83 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.196934] ACPI Warning: Incorrect checksum in table [OEMB] - 0B, should be 02 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.197082] ACPI Warning: Incorrect checksum in table [ATKG] - 0xC8, should be 0xE5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.198490] ACPI Warning: Incorrect checksum in table [OEMB] - 0xB2, should be 0x47 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.198823] ACPI Warning: Incorrect checksum in table [OEMB] - 01, should be F4 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.199360] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be AB 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.200426] ACPI Warning: Incorrect checksum in table [OEMB] - A3, should be 9E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.200744] ACPI Warning: Incorrect checksum in table [ASF!] - 59, should be 08 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.201013] ACPI Warning: Incorrect checksum in table [OEMB] - 8A, should be 7D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.203079] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE1, should be 0xDC (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.204335] ACPI Warning: Incorrect checksum in table [OEMB] - 0xC1, should be 0x11 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.204344] ACPI Warning: Incorrect checksum in table [ATKG] - 07, should be 59 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.206075] ACPI Warning: Incorrect checksum in table [ATKG] - BB, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.207023] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be AB (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.208479] ACPI Warning: Incorrect checksum in table [OEMB] - 0x77, should be 0x72 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.210543] ACPI Warning: Incorrect checksum in table [OEMB] - CD, should be CC (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.210667] ACPI Warning: Incorrect checksum in table [OEMB] - D3, should be C4 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.211069] ACPI Warning: Incorrect checksum in table [OEMB] - 0x99, should be 0x92 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.211113] ACPI Warning: Incorrect checksum in table [OEMB] - 7B, should be 76 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.212633] ACPI Warning: Incorrect checksum in table [OEMB] - E1, should be D3 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.213771] ACPI Warning: Incorrect checksum in table [OEMB] - EC, should be E7 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.214423] ACPI Warning: Incorrect checksum in table [OEMB] - FD, should be EF (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.215632] ACPI Warning: Incorrect checksum in table [OEMB] - 0x0B, should be 0x5B (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.216249] ACPI Warning: Incorrect checksum in table [ATKG] - 0x27, should be 0xE5 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.217957] ACPI Warning: Incorrect checksum in table [OEMB] - 69, should be 5F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.221945] mtrr: your CPUs had inconsistent MTRRdefType settings +summary klog: MEDIUM Kernel message: [ 0.222869] ACPI Warning: Incorrect checksum in table [ATKG] - B0, should be 4A (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.223245] ACPI Warning: Incorrect checksum in table [OEMB] - DB, should be DA (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.223485] [Firmware Bug]: PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.226224] ACPI Warning: Incorrect checksum in table [ATKG] - 53, should be 84 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.227129] ACPI Warning: Incorrect checksum in table [ATKG] - 0x11, should be 0xE5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.228535] ACPI Warning: Incorrect checksum in table [OEMB] - 77, should be 6F (20100121/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.232350] ACPI Warning: Incorrect checksum in table [ATKG] - 15, should be 73 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.232460] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 87 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.232830] ACPI Warning: Incorrect checksum in table [OEMB] - 0xC2, should be 0x84 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.233493] ACPI Warning: Incorrect checksum in table [GSCI] - 58, should be AA (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.233542] ACPI Warning: Incorrect checksum in table [GSCI] - 0x70, should be 0xD2 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.233946] ACPI Warning: Incorrect checksum in table [ATKG] - 1E, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.235518] ACPI Warning: Incorrect checksum in table [ASF!] - D8, should be 6E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.236465] ACPI Warning: Incorrect checksum in table [OEMB] - 1D, should be 10 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.241360] ACPI Warning: Incorrect checksum in table [OEMB] - 0xBD, should be 0x89 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.242473] ACPI Warning: Incorrect checksum in table [GSCI] - 0x28, should be 0x8A (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.244995] ACPI Warning: Incorrect checksum in table [OEMB] - 17, should be 67 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.246137] ACPI Warning: Incorrect checksum in table [ATKG] - F1, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.249246] ACPI Warning: Incorrect checksum in table [OEMB] - 70, should be 6D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.251711] ACPI Warning: Incorrect checksum in table [ATKG] - B0, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.256141] ACPI Warning: Incorrect checksum in table [ATKG] - 0xAF, should be 0x59 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.257910] ACPI Warning: Incorrect checksum in table [OEMB] - 04, should be 54 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.261013] ACPI Warning: Incorrect checksum in table [OEMB] - DF, should be 2F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.265541] ACPI Warning: Incorrect checksum in table [OEMB] - E0, should be 30 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.266577] ACPI Warning: Incorrect checksum in table [GSCI] - 3B, should be BF (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.279154] ACPI Warning: Incorrect checksum in table [OEMB] - B9, should be AE (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.288180] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0x59 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.308095] ACPI Warning: Incorrect checksum in table [SSDT] - 1F, should be 7F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.310767] ACPI Warning: Incorrect checksum in table [OEMB] - 0x72, should be 0x6A (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.314160] ACPI Warning: Incorrect checksum in table [OEMB] - 91, should be 90 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.314603] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 8A (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.314675] mtrr: your CPUs had inconsistent variable MTRR settings +summary klog: MEDIUM Kernel message: [ 0.316718] ACPI Warning: Incorrect checksum in table [OEMB] - 27, should be 22 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.316734] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF3, should be 0xF2 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.317152] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be B4 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.317685] ACPI Warning: Incorrect checksum in table [ASF!] - 0xFC, should be 0x98 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.319223] ACPI Warning: Incorrect checksum in table [OEMB] - E7, should be E2 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.323465] ACPI Warning: Incorrect checksum in table [OEMB] - 0x8D, should be 0x8C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.328929] ACPI Warning: Incorrect checksum in table [OEMB] - 0x45, should be 0x40 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.328954] ACPI Warning: Incorrect checksum in table [ASF!] - D9, should be 6D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.330000] ACPI Warning: Incorrect checksum in table [TCPA] - 0xD1, should be 0x75 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.330140] ACPI Warning: Incorrect checksum in table [ATKG] - 0xE3, should be 0xDC (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.330280] ACPI Warning: Incorrect checksum in table [OEMB] - DE, should be D9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.330793] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x9A (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.331948] ACPI Warning: Incorrect checksum in table [OEMB] - 0C, should be 0B (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.333155] ACPI Warning: Incorrect checksum in table [SSDT] - 4A, should be D9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.333591] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF4, should be 0xF3 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.335745] ACPI Warning: Incorrect checksum in table [OEMB] - 80, should be 78 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.337368] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 86 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.338801] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 7E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.339584] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE2, should be 0xD5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.339628] ACPI Warning: Incorrect checksum in table [OEMB] - 91, should be 88 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.339857] ACPI Warning: Incorrect checksum in table [OEMB] - 6D, should be 60 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.340121] ACPI Warning: Incorrect checksum in table [ATKG] - 0x1B, should be 0xE5 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.341276] ACPI Warning: Incorrect checksum in table [ASF!] - F2, should be 8D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.342985] ACPI Warning: Incorrect checksum in table [OEMB] - 18, should be 13 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.343577] ACPI Warning: Incorrect checksum in table [OEMB] - 0xD1, should be 0xCA (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.344373] ACPI Warning: Incorrect checksum in table [OEMB] - C5, should be B8 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.345244] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA5, should be 0x9C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.346079] ACPI Warning: Incorrect checksum in table [OEMB] - 7A, should be 71 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.347883] ACPI Warning: Incorrect checksum in table [OEMB] - 5C, should be 53 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.348936] ACPI Warning: Incorrect checksum in table [OEMB] - 0x56, should be 0x49 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.349163] ACPI Warning: Incorrect checksum in table [OEMB] - E7, should be DA (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.350013] ACPI Warning: Incorrect checksum in table [OEMB] - D3, should be C6 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.350096] ACPI Warning: Incorrect checksum in table [ATKG] - 13, should be 53 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.350158] ACPI Warning: Incorrect checksum in table [ATKG] - 0x13, should be 0xC8 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.350335] ACPI Warning: Incorrect checksum in table [SSDT] - 0x83, should be 0x37 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.350784] ACPI Warning: Incorrect checksum in table [iEIT] - 0x5C, should be 0x51 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.351065] ACPI Warning: Incorrect checksum in table [SSDT] - 0x04, should be 0xCA (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.353356] ACPI Warning: Incorrect checksum in table [ATKG] - 0x05, should be 0x36 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.356280] ACPI Warning: Incorrect checksum in table [TCPA] - 0x33, should be 0xD7 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.356754] ACPI Warning: Incorrect checksum in table [ASF!] - ED, should be 83 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.357018] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA6, should be 0xA1 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.357902] ACPI Warning: Incorrect checksum in table [ATKG] - 0xE9, should be 0xFE (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.358086] ACPI Warning: Incorrect checksum in table [OEMB] - 0x11, should be 0x10 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.359915] ACPI Warning: Incorrect checksum in table [ATKG] - 0x7D, should be 0x59 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.360335] ACPI Warning: Incorrect checksum in table [GSCI] - 0x28, should be 0xD4 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.363621] ACPI Warning: Incorrect checksum in table [OEMB] - 3C, should be 3B 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.363728] ACPI Warning: Incorrect checksum in table [OEMB] - 75, should be 74 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.363981] ACPI Warning: Incorrect checksum in table [OEMB] - BB, should be AE (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.366917] ACPI Warning: Incorrect checksum in table [OEMB] - BD, should be B6 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.367185] ACPI Warning: Incorrect checksum in table [OEMB] - B2, should be A5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.367524] ACPI Warning: Incorrect checksum in table [ATKG] - 0xAA, should be 0x59 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.368838] ACPI Warning: Incorrect checksum in table [OEMB] - 23, should be 1E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.369986] ACPI Warning: Incorrect checksum in table [OEMB] - 0x61, should be 0x58 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.370263] ACPI Warning: Incorrect checksum in table [ATKG] - 0x73, should be 0xE5 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.371572] ACPI Warning: Incorrect checksum in table [ATKG] - 0xFB, should be 0xE5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.375383] ACPI Warning: Incorrect checksum in table [OEMB] - 0x90, should be 0x83 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.378931] ACPI Warning: Incorrect checksum in table [OEMB] - 33, should be 2C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.379815] ACPI Warning: Incorrect checksum in table [SSDT] - D5, should be 3E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.380609] ACPI Warning: Incorrect checksum in table [SSDT] - 8C, should be DC (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.381211] ACPI Warning: Incorrect checksum in table [OEMB] - 8E, should be 89 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.381478] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe06fffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.383518] ACPI Warning: Incorrect checksum in table [ATKG] - 0x0F, should be 0xE7 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.384684] ACPI Warning: Incorrect checksum in table [OEMB] - 0x4E, should be 0x3F (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.385777] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 89 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.388556] ACPI Warning: Incorrect checksum in table [ATKG] - 6A, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.388736] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 83 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.390975] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.396197] [Firmware Bug]: ACPI: Invalid BIOS _PSS frequency: 0x0 MHz +summary klog: MEDIUM Kernel message: [ 0.396945] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 96 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.397644] ACPI Warning: Incorrect checksum in table [ATKG] - F9, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.398231] ACPI Warning: Incorrect checksum in table [ATKG] - 12, should be 07 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.398290] ACPI Warning: Incorrect checksum in table [ATKG] - 01, should be 23 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.400212] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x88 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.401117] ACPI Warning: Incorrect checksum in table [ATKG] - 0F, should be E7 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.404616] ACPI Warning: Incorrect checksum in table [OEMB] - A5, should be A0 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.407719] ACPI Warning: Incorrect checksum in table [OEMB] - 72, should be 69 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.414781] ACPI Warning: Incorrect checksum in table [OEMB] - CD, should be C8 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.418105] ACPI Warning: Incorrect checksum in table [ATKG] - 76, should be FE (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.420323] ACPI Warning: Incorrect checksum in table [ATKG] - 0xC3, should be 0x59 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.434593] ACPI Warning: Incorrect checksum in table [GSCI] - D2, should be A5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.438019] ACPI Warning: Incorrect checksum in table [ATKG] - C8, should be E5 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.441805] ACPI Warning: Incorrect checksum in table [OEMB] - B2, should be B1 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.455674] ACPI Warning: Incorrect checksum in table [SSDT] - 83, should be 7F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.459126] ACPI Warning: Incorrect checksum in table [SSDT] - 4C, should be 12 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.462573] ACPI Warning: Incorrect checksum in table [OEMB] - 95, should be 5E 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.479385] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x88 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.487180] ACPI Warning: Incorrect checksum in table [TAMG] - 0x33, should be 0x32 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.487365] ACPI Warning: Incorrect checksum in table [TAMG] - 0x99, should be 0x98 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.490256] ACPI Warning: Incorrect checksum in table [ATKG] - 0x22, should be 0x53 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.491491] ACPI Warning: Incorrect checksum in table [SSDT] - 0x4A, should be 0xD9 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.494198] ACPI Warning: Incorrect checksum in table [SSDT] - 0x37, should be 0xC7 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.496094] ACPI Warning: Incorrect checksum in table [TCPA] - F8, should be 9C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.497913] ACPI Warning: Incorrect checksum in table [TAMG] - 0xFA, should be 0xF9 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.498775] ACPI Warning: Incorrect checksum in table [TAMG] - 0xB2, should be 0xB1 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.498976] ACPI Warning: Incorrect checksum in table [GSCI] - 7B, should be 04 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.526190] ACPI Warning (tbutils-0217): Incorrect checksum in table [OEMB] - F3, should be EE [20080926] +summary klog: MEDIUM Kernel message: [ 0.534826] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7F (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.538081] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be BC (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.548650] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 87 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.550271] ACPI Warning: Incorrect checksum in table [ATKG] - 0xDC, should be 0x0E (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.568235] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7F 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.581397] ACPI Warning: Incorrect checksum in table [ATKG] - 0x24, should be 0x16 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.591409] ACPI Warning: Incorrect checksum in table [ATKG] - 0x1E, should be 0x16 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.612305] ACPI Warning: Incorrect checksum in table [SSDT] - 6C, should be FB (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.614155] ACPI Warning: Incorrect checksum in table [SSDT] - 37, should be C7 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.625680] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.628646] ACPI Warning: Incorrect checksum in table [OEMB] - 0xFA, should be 0x1E (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.641157] ACPI Warning: Incorrect checksum in table [OEMB] - C4, should be C1 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.644838] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe09fffff] not reserved in ACPI motherboard resources +summary klog: MEDIUM Kernel message: [ 0.646493] ACPI Warning: Incorrect checksum in table [OEMB] - 0x5F, should be 0x5A (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.653985] ACPI Warning: Incorrect checksum in table [TAMG] - 0x4A, should be 0x49 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.656750] ACPI Warning: Incorrect checksum in table [OEMB] - 06, should be 05 20090521 tbutils-246 +summary klog: MEDIUM Kernel message: [ 0.663194] [Firmware Bug]: ACPI: no secondary bus range in _CRS +summary klog: MEDIUM Kernel message: [ 0.664875] ACPI Warning: Incorrect checksum in table [TAMG] - 0x45, should be 0x44 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.666686] ACPI Warning: Incorrect checksum in table [TAMG] - 0x9E, should be 0x9D (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.670109] ACPI Warning: Incorrect checksum in table [OEMB] - 5B, should be 4E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.670182] ACPI Warning: Incorrect checksum in table [TAMG] - C3, should be C2 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.670980] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7F (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.673104] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 7D (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.674282] ACPI Warning: Incorrect checksum in table [TAMG] - 0x15, should be 0x14 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.675162] ACPI Warning: Incorrect checksum in table [TAMG] - 0x05, should be 0x04 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.677386] ACPI Warning: Incorrect checksum in table [OEMB] - 94, should be 93 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.678233] ACPI Warning: Incorrect checksum in table [OEMB] - 0x55, should be 0x50 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.678877] ACPI Warning: Incorrect checksum in table [OEMB] - 88, should be 7F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.681297] ACPI Warning: Incorrect checksum in table [OEMB] - DA, should be D9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.688066] ACPI Warning: Incorrect checksum in table [OEMB] - 60, should be 5F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.695887] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be C0 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.696587] ACPI Warning: Incorrect checksum in table [OEMB] - 0xEE, should be 0xE6 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.697769] ACPI Warning: Incorrect checksum in table [OEMB] - 0xFC, should be 0xF7 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.700202] [Firmware Bug]: powernow-k8: No PSB or ACPI _PSS objects +summary klog: MEDIUM Kernel message: [ 0.702121] ACPI Warning: Incorrect checksum in table [OEMB] - 0x84, should be 0x7B (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.705041] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF3, should be 0xF2 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.710890] ACPI Warning: Incorrect checksum in table [OEMB] - DF, should be D2 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.715065] ACPI Warning: Incorrect checksum in table [OEMB] - 67, should be 64 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.715951] ACPI Warning: Incorrect checksum in table [OEMB] - 0x9B, should be 0x93 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.717350] ACPI Warning: Incorrect checksum in table [OEMB] - 0x5C, should be 0x55 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.719490] ACPI Warning: Incorrect checksum in table [OEMB] - 0x3A, should be 0x39 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.725974] ACPI Warning: Incorrect checksum in table [OEMB] - 0x7E, should be 0x75 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.755111] ACPI Warning: Incorrect checksum in table [OEMB] - 2F, should be 2A (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.775831] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x87 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.777581] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF9, should be 0xF8 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.779737] ACPI Warning: Incorrect checksum in table [TAMG] - 0x83, should be 0x82 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.780967] ACPI Warning: Incorrect checksum in table [TAMG] - FA, should be F9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.781225] ACPI Warning: Incorrect checksum in table [TAMG] - 0x10, should be 0x0F (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.781345] ACPI Warning: Incorrect checksum in table [TAMG] - 0xB2, should be 0xB1 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.783246] ACPI Warning: Incorrect checksum in table [TAMG] - 0x7D, should be 0x7C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.786539] ACPI Warning: Incorrect checksum in table [TAMG] - 0x2D, should be 0x2C (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.787253] ACPI Warning: Incorrect checksum in table [TAMG] - 0x10, should be 0x0F (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.788032] ACPI Warning: Incorrect checksum in table [TAMG] - 0x04, should be 0x03 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.788607] ACPI Warning: Incorrect checksum in table [TAMG] - 0xA2, should be 0xA1 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.791560] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x1F (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.795423] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x1F (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.805111] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7E (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.831199] ACPI Warning: Incorrect checksum in table [OEMB] - B7, should be B6 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.872036] ACPI Warning: Incorrect checksum in table [OEMB] - EC, should be E3 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.875591] ACPI Warning: Incorrect checksum in table [OEMB] - 14, should be 13 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.877093] ACPI Warning: Incorrect checksum in table [OEMB] - 0x89, should be 0x80 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.892915] ACPI Warning: Incorrect checksum in table [OEMB] - 0xCE, should be 0xCD (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.899338] ACPI Warning: Incorrect checksum in table [OEMB] - 0xDD, should be 0xD4 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.940265] ACPI Warning: Incorrect checksum in table [TAMG] - 0x14, should be 0x13 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.941821] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x91 (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.943511] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7E (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 0.972652] ACPI Warning: Incorrect checksum in table [OEMB] - FA, should be F7 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.005834] ACPI Warning: Incorrect checksum in table [OEMB] - 0x1D, should be 0x1C (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.020525] ACPI Warning: Incorrect checksum in table [TAMG] - 0xE8, should be 0xE7 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.023813] ACPI Warning: Incorrect checksum in table [OEMB] - 0x82, should be 0x81 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.168945] ACPI Warning: Incorrect checksum in table [OEMB] - 0x04, should be 0xFD (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.174038] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x9B (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.176461] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found. +summary klog: MEDIUM Kernel message: [ 1.176462] [Firmware Bug]: powernow-k8: Try again with latest BIOS. +summary klog: MEDIUM Kernel message: [ 1.179893] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0x59 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.320114] ACPI Warning: Incorrect checksum in table [ATKG] - 0x9D, should be 0xE5 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.505441] ACPI Warning: Incorrect checksum in table [TAMG] - 7C, should be 7B (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.507734] ACPI Warning: Incorrect checksum in table [TAMG] - 2D, should be 2C (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.509153] ACPI Warning: Incorrect checksum in table [TAMG] - C0, should be BF (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.512057] ACPI Warning: Incorrect checksum in table [OEMB] - CA, should be C9 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.515657] ACPI Warning: Incorrect checksum in table [TAMG] - 0xC5, should be 0xC4 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.528248] ACPI Warning: Incorrect checksum in table [TAMG] - 0x98, should be 0x97 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.529653] ACPI Warning: Incorrect checksum in table [TAMG] - 0x7C, should be 0x7B (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.535278] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 88 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.545790] ACPI Warning: Incorrect checksum in table [OEMB] - D0, should be CF (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.559068] ACPI Warning: Incorrect checksum in table [OEMB] - C5, should be C4 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.586563] ACPI Warning: Incorrect checksum in table [OEMB] - D7, should be D3 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.601784] ACPI Warning: Incorrect checksum in table [OEMB] - 5D, should be 55 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 1.739479] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x91 (20110112/tbutils-314) +summary klog: MEDIUM Kernel message: [ 2.039517] [Firmware Bug]: ACPI: Invalid BIOS _PSS frequency: 0x80000000 MHz +summary klog: MEDIUM Kernel message: [ 2.173935] ACPI Warning: Incorrect checksum in table [OEMB] - C3, should be C2 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 2.229498] ACPI Warning: Incorrect checksum in table [TAMG] - 0xC6, should be 0xC5 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 3.033154] ACPI Warning: Incorrect checksum in table [OEMB] - 0x87, should be 0x84 (20100428/tbutils-314) +summary klog: MEDIUM Kernel message: [ 3.382436] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7F (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 3.382442] ACPI Warning: Incorrect checksum in table [_RAT] - 00, should be 63 (20090903/tbutils-314) +summary klog: MEDIUM Kernel message: [ 3.644168] ACPI Warning: Incorrect checksum in table [TCPA] - 0xF8, should be 0x9C (20110413/tbutils-314) +summary klog: MEDIUM Kernel message: [ 4.046031] ACPI Warning: Incorrect checksum in table [OEMB] - 4A, should be 47 (20090903/tbutils-314) +summary +summary Low failures: 13 +summary klog: LOW Kernel message: [ 0.810246] [Firmware Bug]: ACPI(Z01I) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 1.183989] [Firmware Bug]: ACPI(PEGD) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 1.398000] [Firmware Bug]: ACPI(Z00P) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 2.478380] [Firmware Bug]: ACPI(NGFX) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 3.139648] [Firmware Bug]: ACPI(XVS0) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 3.663829] [Firmware Bug]: ACPI(GFX0) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 4.002664] [Firmware Bug]: ACPI(EVGA) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 4.983204] [Firmware Bug]: ACPI(MXM3) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 8.316300] [Firmware Bug]: ACPI(VGA0) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 10.080352] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 15.395484] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS +summary klog: LOW Kernel message: [ 20.435766] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work. +summary klog: LOW Kernel message: [ 24.824888] [Firmware Bug]: ACPI(IGPU) defines _DOD but not _DOS +summary +summary Other failures: NONE +summary +summary Test |Pass |Fail |Abort|Warn |Skip |Info | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary klog | | 1589| | | | | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary Total: | 0| 1589| 0| 0| 0| 0| +summary ---------------+-----+-----+-----+-----+-----+-----+ diff -Nru fwts-14.02.00/fwts-test/klog-0001/klog-0003.log fwts-14.03.00/fwts-test/klog-0001/klog-0003.log --- fwts-14.02.00/fwts-test/klog-0001/klog-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/klog-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +klog Found 1589 unique errors in kernel log. diff -Nru fwts-14.02.00/fwts-test/klog-0001/klog.txt fwts-14.03.00/fwts-test/klog-0001/klog.txt --- fwts-14.02.00/fwts-test/klog-0001/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1589 @@ +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008018/0000000000008028, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 00008020/0000000000008028, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Gpe0Block: 0x00008020/0x0000000000008028, using 32 (20110112/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 00008030/0000000000008020, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 00008800/0000000000008100, using 32 (20090903/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00000900/0x0000000000000800, using 32 (20110112/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00001218/0x0000000000001214, using 32 (20100428/tbfadt-427) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00001218/0x0000000000001214, using 32 (20110413/tbfadt-430) +[ 0.000000] ACPI Error: 32/64X address mismatch in Pm2ControlBlock: 0x00008800/0x0000000000008100, using 32 (20110112/tbfadt-427) +[ 0.000000] ACPI Error: A valid RSDP was not found (20090903/tbxfroot-219) +[ 0.000000] ACPI Error: A valid RSDP was not found (20100428/tbxfroot-219) +[ 0.000000] ACPI Error: A valid RSDP was not found (20110112/tbxfroot-219) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! 20090521 tbfadt-370 +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20090903/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100121/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100428/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20100702/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20101013/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110112/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110316/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110413/tbfadt-369) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3776BF40/0x000000003776ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x38FE4E40/0x0000000038FE4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x38FE4E40/0x0000000038FE4D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F465F40/0x000000003F465F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F473F40/0x000000003F473F80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F509F40/0x000000003F509F80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F509F40/0x000000003F509F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x6FB75F40/0x000000006FB75F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77603F40/0x0000000077603F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77603F40/0x0000000077603F80, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7762DF40/0x000000007762DF80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x77630F40/0x0000000077630F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7776BF40/0x000000007776ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7776BF40/0x000000007776ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x78FE4E40/0x0000000078FE4D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7A7E4E40/0x000000007A7E4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7BE20F40/0x000000007BE20F80, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7D7E4E40/0x000000007D7E4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7D8C4F40/0x000000007D8C5E40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7F611E40/0x000000007F611D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7FCEBF40/0x000000007FCE7F40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x7FD5AF40/0x000000007FD5FF40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110316/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAD87F40/0x00000000AADA1D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB7F40/0x00000000AADD1D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB7F40/0x00000000AADD1D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAADB9F40/0x00000000AADD3D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAF2AF40/0x00000000AAF2DD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAAFE4E40/0x00000000AAFE4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAB62DF40/0x00000000AB62DF80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAB62DF40/0x00000000AB62DF80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xAFB77F40/0x00000000AFB77F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB5F17E40/0x00000000B5F17D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB5F1BE40/0x00000000B5F1BD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB6D5AF40/0x00000000B6D61D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB6DB9F40/0x00000000B6DD3D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB762CF40/0x00000000B762CF80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110316/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB7B1CE40/0x00000000B7B1CD40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xB8FE4E40/0x00000000B8FE4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAD17F40/0x00000000BAD31D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAD87F40/0x00000000BADA1D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBADABF40/0x00000000BADAED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBADABF40/0x00000000BADAED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAF1CF40/0x00000000BAF1FD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAFE4E40/0x00000000BAFE4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBAFE5E40/0x00000000BAFE5D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB4D1F40/0x00000000BB4DFD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB583F40/0x00000000BB59DD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB583F40/0x00000000BB59DD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB5B3F40/0x00000000BB5CDD40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB62CF40/0x00000000BB62CF80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB62DF40/0x00000000BB62DF80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB648F40/0x00000000BB64BD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB649F40/0x00000000BB64CD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBB76BF40/0x00000000BB76ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE27F40/0x00000000BBE27F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE27F40/0x00000000BBE27F80, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBBE29F40/0x00000000BBE29F80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDB65F40/0x00000000BDB6BE40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF17E40/0x00000000BDF17D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF18E40/0x00000000BDF18D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20101013/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF19E40/0x00000000BDF19D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBDF1AE40/0x00000000BDF1AD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBE97CF40/0x00000000BE996D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB7F40/0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB8F40/0x00000000BEDD1D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB8F40/0x00000000BEDD1D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBEDB9F40/0x00000000BEDD3D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF4D1F40/0x00000000BF4DFD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF62CF40/0x00000000BF62CF80, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF62DF40/0x00000000BF62DF80, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF654F40/0x00000000BF662D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBF7E4E40/0x00000000BF7E4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFA4CF40/0x00000000BFA51F40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFA4CF40/0x00000000BFA51F40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFE17E40/0x00000000BFE17D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xBFE21F40/0x00000000BFE21E40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xC9E58F40/0x00000000C9E6ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAB39F40/0x00000000CAB3CD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE4E40/0x00000000CAFE4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE4E40/0x00000000CAFE4D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCAFE5E40/0x00000000CAFE5D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCB61DF40/0x00000000CB61DE40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCB61DF40/0x00000000CB61DE40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBE4CF40/0x00000000CBE51F40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBE4CF40/0x00000000CBE51F40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCBF6BF40/0x00000000CBF6ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF27F40/0x00000000CEF2AD40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF28F40/0x00000000CEF2BD40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF28F40/0x00000000CEF2BD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF2BF40/0x00000000CEF2ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCEF2BF40/0x00000000CEF2ED40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF36BF40/0x00000000CF36ED40, using 32 (20100702/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF36BF40/0x00000000CF36ED40, using 32 (20101013/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF76BF40/0x00000000CF76ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF76BF40/0x00000000CF76ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCF7E4E40/0x00000000CF7E4D40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFBFAF40/0x00000000CFBF6F40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFD56F40/0x00000000CFD52F40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xCFD5FF40/0x00000000CFD65E40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xD2F2DF40/0x00000000D2F30D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB36BF40/0x00000000DB36ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB36BF40/0x00000000DB36ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20100428/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDB76BF40/0x00000000DB76ED40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEB39F40/0x00000000DEB3CD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEB3AF40/0x00000000DEB3DD40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEEBAF40/0x00000000DEEBDD40, using 32 (20110413/tbfadt-489) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDEF2DF40/0x00000000DEF30D40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDF64BF40/0x00000000DF64ED40, using 32 (20110112/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 3762DF40/000000003762DF80, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 3F611E40/000000003F611D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7776BF40/000000007776ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7DB61F40/000000007DB66F40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7F3ECF40/000000007F3E8F40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 7F611E40/000000007F611D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 9DCC4F40/000000009DCC5E40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - AFB75F40/00000000AFB75F80, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - B7B1CE40/00000000B7B1CD40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - B7B1CE40/00000000B7B1CD40, using 32 (20100121/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BADABF40/00000000BADAED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BAF2DF40/00000000BAF30D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BB62DF40/00000000BB62DF80, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BB76BF40/00000000BB76ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BBE28E40/00000000BBE28D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDB5BF40/00000000BDB60F40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDB5FF40/00000000BDB64F40, using 32 20090521 tbfadt-487 +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BDF17E40/00000000BDF17D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BEDB7F40/00000000BEDD1D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BF62CF40/00000000BF62CF80, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - BF76BF40/00000000BF76ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CBE4AF40/00000000CBE4FF40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CBF6BF40/00000000CBF6ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CEF28F40/00000000CEF2BD40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - CEF2CF40/00000000CEF2FD40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - D2F2DF40/00000000D2F30D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DADC1F40/00000000DADD5D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DB36BF40/00000000DB36ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DB76BF40/00000000DB76ED40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DEEBAF40/00000000DEEBDD40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - DEF2DF40/00000000DEF30D40, using 32 (20090903/tbfadt-486) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 20090521 tbfadt-527 +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20090903/tbfadt-526) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20100428/tbfadt-526) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20110112/tbfadt-526) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20110413/tbfadt-529) +[ 0.000000] ACPI Warning: BIOS XSDT has NULL entry, using RSDT (20110112/tbutils-663) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x3E, should be 0x41 (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x65, should be 0x68 (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x69, should be 0x6C (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x69, should be 0x6C (20110413/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0x9E, should be 0xA1 (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0xDF, should be 0xE2 (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [APIC] - 0xE4, should be 0xE7 (20110112/tbutils-314) +[ 0.000000] ACPI Warning: Incorrect checksum in table [XSDT] - 0x89, should be 0x7D (20110413/tbutils-314) +[ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20090903/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20100428/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20110112/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20110413/tbfadt-610) +[ 0.000000] ACPI Warning: Invalid length for Pm1bControlBlock: 32, using default 16 (20090903/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20090903/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20100428/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 0, using default 8 (20110112/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20100428/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20110112/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 16, using default 8 (20110413/tbfadt-610) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 32, using default 8 (20090903/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 32, using default 8 (20110112/tbfadt-607) +[ 0.000000] ACPI Warning: Invalid length for PmTimerBlock: 24, using default 32 (20100428/tbfadt-607) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 20090521 tbfadt-558 +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000102C/0 (20090903/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 000000000000802C/0 (20090903/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x0000000000000000/0x4 (20110413/tbfadt-560) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20110112/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20110413/tbfadt-560) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x00000000000044A0/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 20090521 tbfadt-558 +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 (20090903/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000050/0 (20090903/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20101013/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110112/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110413/tbfadt-560) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000450/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000450/0x0 (20110112/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000814/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000820/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000820/0x0 (20110112/tbfadt-557) +[ 0.000000] ACPI Warning (tbfadt-0460): Optional field "Gpe1Block" has zero address or length: 000000000000102C/0 [20080926] +[ 0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it. +[ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 1408MB of RAM. +[ 0.000000] WARNING: BIOS bug: CPU MTRRs don't cover all of memory, losing 4MB of RAM. +[ 0.022719] ACPI Error: Found unknown opcode 0xFD at AML address f7ffe14c offset 0xE8, ignoring (20110112/psloop-141) +[ 0.025446] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x00BE (20110112/psloop-526) +[ 0.025463] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x00C3 (20110112/psloop-526) +[ 0.034090] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ee025630), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.040119] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 400000) +[ 0.042222] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x2366 (20100121/psloop-526) +[ 0.042240] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x006C (20090903/psloop-522) +[ 0.042253] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x006F (20090903/psloop-522) +[ 0.042265] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x0070 (20090903/psloop-522) +[ 0.042279] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x0077 (20090903/psloop-522) +[ 0.042291] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x007C (20090903/psloop-522) +[ 0.042302] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x007D (20090903/psloop-522) +[ 0.042311] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x007F (20090903/psloop-522) +[ 0.042322] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x007B] at table offset 0x0080 (20090903/psloop-522) +[ 0.044066] ACPI Warning: Detected an unsupported executable opcode at module-level: [0x0070] at table offset 0x678F (20100428/psloop-526) +[ 0.045570] ACPI Warning: For _SB_.PCI0.LPCB.H_EC._GLK: Parameter count mismatch - ASL declared 1, ACPI requires 0 (20110112/nspredef-352) +[ 0.050847] ACPI Warning: Package List length (0x10) larger than NumElements count (0x8), truncated +[ 0.053909] ACPI Warning: Package List length (0x10) larger than NumElements count (0x6), truncated +[ 0.074070] ACPI Error: The DSDT has been corrupted or replaced - old, new headers below (20110413/tbutils-372) +[ 0.074090] ACPI Error: Please send DMI info to linux-acpi@vger.kernel.org +[ 0.076767] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA6, should be 0x97 (20100428/tbutils-314) +[ 0.077157] ACPI Warning: Incorrect checksum in table [OEMB] - 0x4C, should be 0x21 (20100428/tbutils-314) +[ 0.077854] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.078226] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node f7033090), AE_NO_MEMORY +[ 0.078254] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node f7033078), AE_NO_MEMORY +[ 0.078268] ACPI Warning: Incorrect checksum in table [OEMB] - 07, should be 06 (20090903/tbutils-314) +[ 0.078278] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f7033048), AE_NO_MEMORY +[ 0.078686] ACPI Warning: Incorrect checksum in table [OEMB] - 0x38, should be 0x81 (20110413/tbutils-314) +[ 0.083817] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF9, should be 0xF3 (20100428/tbutils-314) +[ 0.085590] ACPI Error: Could not map memory at 0x000000007F5E3520, size 463 (20110112/exregion-178) +[ 0.085606] ACPI Error: Method parse/execution failed [_PR_.CPU1.APPT] (Node f403d228), AE_NO_MEMORY (20110112/psparse-536) +[ 0.085618] ACPI Error: Method parse/execution failed [_PR_.CPU1.GCAP] (Node f403d1f8), AE_NO_MEMORY (20110112/psparse-536) +[ 0.085627] ACPI Error: Could not map memory at 0x000000007D3E1520, size 463 (20110112/exregion-178) +[ 0.085628] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f403d1c8), AE_NO_MEMORY (20110112/psparse-536) +[ 0.085974] ACPI Warning: Incorrect checksum in table [OEMB] - 0x6B, should be 0x39 (20110112/tbutils-314) +[ 0.086054] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x96 (20110112/tbutils-314) +[ 0.086081] ACPI Error: Could not map memory at 0x000000007F395420, size 141 (20110112/exregion-178) +[ 0.086097] ACPI Error: Method parse/execution failed [_PR_.CPU1.APCT] (Node f403d210), AE_NO_MEMORY (20110112/psparse-536) +[ 0.086108] ACPI Error: Method parse/execution failed [_PR_.CPU2.GCAP] (Node f403d270), AE_NO_MEMORY (20110112/psparse-536) +[ 0.086118] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f403d240), AE_NO_MEMORY (20110112/psparse-536) +[ 0.086119] ACPI Error: Could not map memory at 0x000000007D198120, size 141 (20110112/exregion-178) +[ 0.088999] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE8, should be 0xDB (20100428/tbutils-314) +[ 0.089613] ACPI Warning: Incorrect checksum in table [OEMB] - 0xB3, should be 0xAE (20100428/tbutils-314) +[ 0.089701] ACPI Warning: Incorrect checksum in table [OEMB] - 0x77, should be 0x6C (20100428/tbutils-314) +[ 0.091402] ACPI Warning: Package List length (0x7) larger than NumElements count (0x3), truncated +[ 0.091463] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APPT] (Node f701e228), AE_INVALID_TABLE_LENGTH +[ 0.091510] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node f701e1f8), AE_INVALID_TABLE_LENGTH +[ 0.091541] ACPI Warning: Incorrect checksum in table [OEMB] - F6, should be E7 (20090903/tbutils-314) +[ 0.091552] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f701e1c8), AE_INVALID_TABLE_LENGTH +[ 0.091778] ACPI Warning: Incorrect checksum in table [OEMB] - 8E, should be 7F (20090903/tbutils-314) +[ 0.091911] ACPI Warning: Incorrect checksum in table [APIC] - 0x8E, should be 0x91 (20110112/tbutils-314) +[ 0.092524] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node f701e210), AE_NO_MEMORY +[ 0.092570] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2.GCAP] (Node f701e270), AE_NO_MEMORY +[ 0.092612] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f701e240), AE_NO_MEMORY +[ 0.093544] ACPI Error: Needed type [Reference], found [Device] f7019f90 (20100428/exresop-104) +[ 0.094477] ACPI Warning: Incorrect checksum in table [OEMB] - 0x97, should be 0x90 (20100428/tbutils-314) +[ 0.094856] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness +[ 0.095719] ACPI Error: Could not map memory at 0x0000000087127520, size 463 (20110112/exregion-178) +[ 0.095737] ACPI Error: Method parse/execution failed [_PR_.CPU1.APPT] (Node f383e498), AE_NO_MEMORY (20110112/psparse-536) +[ 0.095749] ACPI Error: Method parse/execution failed [_PR_.CPU1.GCAP] (Node f383e468), AE_NO_MEMORY (20110112/psparse-536) +[ 0.095760] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f383e438), AE_NO_MEMORY (20110112/psparse-536) +[ 0.095817] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 0.096257] ACPI Error: Could not map memory at 0x0000000086DB1C20, size 141 (20110112/exregion-178) +[ 0.096273] ACPI Error: Method parse/execution failed [_PR_.CPU1.APCT] (Node f383e480), AE_NO_MEMORY (20110112/psparse-536) +[ 0.096285] ACPI Error: Method parse/execution failed [_PR_.CPU2.GCAP] (Node f383e4e0), AE_NO_MEMORY (20110112/psparse-536) +[ 0.096295] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f383e4b0), AE_NO_MEMORY (20110112/psparse-536) +[ 0.096447] ACPI Warning: Incorrect checksum in table [OEMB] - 66, should be 62 (20090903/tbutils-314) +[ 0.098113] ACPI Warning: Incorrect checksum in table [OEMB] - 0x2C, should be 0x28 (20100428/tbutils-314) +[ 0.099413] ACPI Warning: Incorrect checksum in table [OEMB] - E2, should be D9 (20090903/tbutils-314) +[ 0.101941] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20110112/dsopcode-597) +[ 0.101946] ACPI Error: Method parse/execution failed [_SB_.MEM_._CRS] (Node f442af60), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 0.101953] ACPI Error: Method execution failed [_SB_.MEM_._CRS] (Node f442af60), AE_AML_BUFFER_LIMIT (20110112/uteval-103) +[ 0.102803] ACPI Warning: Incorrect checksum in table [OEMB] - 6E, should be 40 (20090903/tbutils-314) +[ 0.104297] ACPI Error (psargs-0359): [OSYS] Namespace lookup failure, AE_NOT_FOUND +[ 0.104304] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACEL._STA] (Node f701c4e0), AE_NOT_FOUND +[ 0.105061] ACPI Warning: Package List length (0xCA) larger than NumElements count (0x4), truncated +[ 0.106912] ACPI Warning: Package List length (0x5) larger than NumElements count (0x2), truncated +[ 0.108470] ACPI Warning: Incorrect checksum in table [OEMB] - 3F, should be 3B (20090903/tbutils-314) +[ 0.109343] ACPI Warning: Incorrect checksum in table [OEMB] - 0x29, should be 0x1C (20100428/tbutils-314) +[ 0.109618] ACPI Error: Needed type [Reference], found [Device] f7012f90 (20090903/exresop-104) +[ 0.109635] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701adc8), AE_AML_OPERAND_TYPE +[ 0.110905] ACPI Warning: Incorrect checksum in table [OEMB] - 32, should be 25 (20090903/tbutils-314) +[ 0.113709] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f5822150), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +[ 0.113864] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f58221e0), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +[ 0.114544] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node f54211c8), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +[ 0.115838] ACPI Warning: Incorrect checksum in table [OEMB] - 79, should be 6C (20090903/tbutils-314) +[ 0.118277] ACPI Error (psargs-0359): [SUPP] Namespace lookup failure, AE_NOT_FOUND +[ 0.118284] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7012780), AE_NOT_FOUND +[ 0.118568] ACPI Warning: Incorrect checksum in table [OEMB] - 2F, should be 22 (20090903/tbutils-314) +[ 0.120765] ACPI Warning for _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +[ 0.122347] ACPI Error: Could not map memory at 0x00000000000FFA32, size 0 (20100428/exregion-178) +[ 0.122369] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node f70191c8), AE_NO_MEMORY +[ 0.128150] ACPI Warning for _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +[ 0.132540] ACPI Warning: Incorrect checksum in table [OEMB] - CB, should be C6 (20090903/tbutils-314) +[ 0.136585] ACPI Error: Field [ALB2] at 120 exceeds Buffer [CRSA] size 104 (bits) (20090903/dsopcode-596) +[ 0.136600] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] (Node dd8159d8), AE_AML_BUFFER_LIMIT +[ 0.136637] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.PIB_.SIO0.LPT_._CRS] (Node dd8159d8), AE_AML_BUFFER_LIMIT +[ 0.137394] ACPI Warning: Incorrect checksum in table [OEMB] - 29, should be 1A (20090903/tbutils-314) +[ 0.140000] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 186 is 43003c) +[ 0.141112] ACPI Warning: Incorrect checksum in table [OEMB] - ED, should be E8 20090521 tbutils-246 +[ 0.150000] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff880137e47618), AE_NOT_EXIST (20110112/psparse-536) +[ 0.150000] ACPI Error: No handler for Region [ERAM] (ffff880137e58e10) [EmbeddedControl] (20110112/evregion-369) +[ 0.154764] ACPI Warning: Incorrect checksum in table [OEMB] - 7D, should be 6E (20090903/tbutils-314) +[ 0.159797] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4421648), AE_NOT_FOUND (20110413/psparse-536) +[ 0.160246] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880147830960), AE_NOT_FOUND (20110112/psparse-536) +[ 0.160246] ACPI Error: [_SB_.PHSR] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.160449] mtrr: your CPUs had inconsistent fixed MTRR settings +[ 0.163431] ACPI Warning: Package List length (0x6) larger than NumElements count (0x3), truncated +[ 0.163687] ACPI Warning: Incorrect checksum in table [TAMG] - 0xFC, should be 0xFB (20110112/tbutils-314) +[ 0.164073] ACPI Warning: Incorrect checksum in table [TAMG] - 0xEE, should be 0xED (20110112/tbutils-314) +[ 0.165683] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.165689] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f3821648), AE_NOT_FOUND (20110112/psparse-536) +[ 0.166264] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node f701a648), AE_NOT_FOUND +[ 0.166294] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4021648), AE_NOT_FOUND (20110112/psparse-536) +[ 0.166323] ACPI Error: No handler for Region [ERAM] (f7022168) [EmbeddedControl] (20100428/evregion-369) +[ 0.166336] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7021bb8), AE_NOT_EXIST +[ 0.166808] ACPI Error: No handler for Region [ERAM] (f7023938) [EmbeddedControl] (20100428/evregion-369) +[ 0.166808] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node f701be10), AE_NOT_EXIST +[ 0.166808] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f7024d08), AE_NOT_EXIST +[ 0.169111] ACPI Error: [HPTF] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.169117] ACPI Error: Method parse/execution failed [_SB_.PCI0.HPET._STA] (Node f402ae58), AE_NOT_FOUND (20110112/psparse-536) +[ 0.169362] ACPI Warning: Incorrect checksum in table [OEMB] - 0x18, should be 0x13 (20100428/tbutils-314) +[ 0.169398] ACPI Warning: Incorrect checksum in table [OEMB] - 0x15, should be 0xAC (20100428/tbutils-314) +[ 0.170000] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a06440), AE_NOT_FOUND +[ 0.170000] ACPI Warning: Package List length (0x6) larger than NumElements count (0x2), truncated +[ 0.170352] ACPI Warning: Incorrect checksum in table [SSDT] - 0xEA, should be 0x42 (20100428/tbutils-314) +[ 0.171073] ACPI Warning: Incorrect checksum in table [OEMB] - 0x67, should be 0x92 (20100428/tbutils-314) +[ 0.171715] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xAB (20110112/tbutils-314) +[ 0.171916] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f700e3d8), AE_ALREADY_EXISTS +[ 0.172406] ACPI Warning: Incorrect checksum in table [OEMB] - 0x22, should be 0x15 (20100428/tbutils-314) +[ 0.172679] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xA5 (20100428/tbutils-314) +[ 0.172776] ACPI Warning: Package List length (1) larger than NumElements count (0), truncated +[ 0.172868] ACPI Error: No handler for Region [RAM_] (f7014618) [EmbeddedControl] 20090521 evregion-319 +[ 0.172873] ACPI Error: Region EmbeddedControl(3) has no handler 20090521 exfldio-294 +[ 0.172880] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f70159f0), AE_NOT_EXIST +[ 0.173062] ACPI Warning: Incorrect checksum in table [SSDT] - 0xAA, should be 0xED (20110112/tbutils-314) +[ 0.173605] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70215e8), AE_ALREADY_EXISTS +[ 0.173745] ACPI Warning: Incorrect checksum in table [TCPA] - 0x83, should be 0x27 (20110413/tbutils-314) +[ 0.173917] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d6804), AE_ALREADY_EXISTS +[ 0.173917] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d6804), AE_NOT_FOUND +[ 0.175144] ACPI Warning: Incorrect checksum in table [OEMB] - 95, should be 8C (20090903/tbutils-314) +[ 0.175379] ACPI Error: No handler for Region [ECXP] (f70218e8) [EmbeddedControl] (20100428/evregion-369) +[ 0.175394] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._OSC] (Node f7025558), AE_NOT_EXIST +[ 0.175428] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node f7025540), AE_NOT_EXIST +[ 0.175892] ACPI Warning: Package List length (0x1) larger than NumElements count (0x0), truncated +[ 0.175987] ACPI Warning: Incorrect checksum in table [OEMB] - D7, should be C8 20090521 tbutils-246 +[ 0.176309] ACPI Warning: Incorrect checksum in table [OEMB] - 0xCF, should be 0xCE (20100428/tbutils-314) +[ 0.176410] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359) +[ 0.176680] ACPI Warning: Incorrect checksum in table [OEMB] - D6, should be C7 20090521 tbutils-246 +[ 0.176840] ACPI Warning: Incorrect checksum in table [SSDT] - 0xAC, should be 0x4D (20100428/tbutils-314) +[ 0.177033] ACPI Warning: Incorrect checksum in table [OEMB] - ED, should be EC 20090521 tbutils-246 +[ 0.177048] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe03fffff] not reserved in ACPI motherboard resources +[ 0.177377] ACPI Error: Needed type [Reference], found [Device] f701af90 (20100428/exresop-104) +[ 0.177377] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7022dc8), AE_AML_OPERAND_TYPE +[ 0.177506] ACPI Warning: Incorrect checksum in table [SSDT] - 0xA1, should be 0x30 (20100428/tbutils-314) +[ 0.177670] ACPI Warning: Incorrect checksum in table [OEMB] - 1C, should be 17 (20090903/tbutils-314) +[ 0.178040] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF7, should be 0xE8 (20100428/tbutils-314) +[ 0.178420] ACPI Error: No handler for Region [SACS] (f701b500) [PCI_Config] (20090903/evregion-319) +[ 0.178434] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f7072000), AE_NOT_EXIST +[ 0.178458] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f7072000), AE_NOT_EXIST +[ 0.178486] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f70720a8), AE_NOT_EXIST +[ 0.178510] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f70720a8), AE_NOT_EXIST +[ 0.178539] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f7072210), AE_NOT_EXIST +[ 0.178563] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f7072210), AE_NOT_EXIST +[ 0.178590] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f70722b8), AE_NOT_EXIST +[ 0.178614] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f70722b8), AE_NOT_EXIST +[ 0.179475] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0xAB (20100428/tbutils-314) +[ 0.179688] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f74174c8), AE_ALREADY_EXISTS +[ 0.181591] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7022db0), AE_AML_OPERAND_TYPE +[ 0.181679] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f740f438), AE_ALREADY_EXISTS +[ 0.181959] ACPI Warning: Incorrect checksum in table [OEMB] - 0x0A, should be 0x09 (20100428/tbutils-314) +[ 0.182122] ACPI Warning: Incorrect checksum in table [OEMB] - 7D, should be 70 (20090903/tbutils-314) +[ 0.182199] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c25228), AE_NOT_FOUND (20110112/psparse-536) +[ 0.182199] ACPI Error: [Z012] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.182639] ACPI Error (psargs-0359): [ECEN] Namespace lookup failure, AE_NOT_FOUND +[ 0.182645] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c090665c), AE_NOT_FOUND +[ 0.183306] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node f403a228), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.183518] ACPI Warning: Incorrect checksum in table [OEMB] - 10, should be 03 (20090903/tbutils-314) +[ 0.183725] ACPI Error: No handler for Region [SACS] (f70c20f0) [PCI_Config] (20090903/evregion-319) +[ 0.183734] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f70c4180), AE_NOT_EXIST +[ 0.183755] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f70c4180), AE_NOT_EXIST +[ 0.183773] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f70c4240), AE_NOT_EXIST +[ 0.183793] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f70c4240), AE_NOT_EXIST +[ 0.183812] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f70c43c0), AE_NOT_EXIST +[ 0.183832] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f70c43c0), AE_NOT_EXIST +[ 0.183850] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f70c4480), AE_NOT_EXIST +[ 0.183870] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f70c4480), AE_NOT_EXIST +[ 0.183948] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x8E (20110112/tbutils-314) +[ 0.184086] ACPI Warning: Incorrect checksum in table [OEMB] - 0x69, should be 0x68 (20110112/tbutils-314) +[ 0.184314] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7015eb8), AE_ALREADY_EXISTS +[ 0.185673] ACPI Error (dswload-0659): [___P] Namespace lookup failure, AE_NOT_FOUND +[ 0.185686] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f701a150), AE_INVALID_TABLE_LENGTH +[ 0.185688] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._INI] (Node f700f6c0), AE_NOT_FOUND +[ 0.185862] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f701a1e0), AE_INVALID_TABLE_LENGTH +[ 0.186281] ACPI Warning: Package List length (C) larger than NumElements count (4), truncated +[ 0.186529] ACPI Warning: Incorrect checksum in table [OEMB] - B9, should be AC (20090903/tbutils-314) +[ 0.187574] ACPI Warning: Incorrect checksum in table [OEMB] - 77, should be 76 (20090903/tbutils-314) +[ 0.187800] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0994f7c), AE_NOT_FOUND +[ 0.187872] ACPI Warning: Incorrect checksum in table [OEMB] - B6, should be B3 (20090903/tbutils-314) +[ 0.187981] ACPI Warning: Incorrect checksum in table [OEMB] - 8D, should be 8C (20090903/tbutils-314) +[ 0.187992] ACPI Warning: Incorrect checksum in table [OEMB] - 40, should be 3F (20090903/tbutils-314) +[ 0.188197] ACPI Warning: Incorrect checksum in table [OEMB] - 6A, should be 61 (20090903/tbutils-314) +[ 0.188232] ACPI Warning: Incorrect checksum in table [ATKG] - 0x07, should be 0x59 (20100428/tbutils-314) +[ 0.188487] ACPI Error (psargs-0359): q z Namespace lookup failure, AE_NOT_FOUND +[ 0.188669] ACPI Warning: Incorrect checksum in table [ATKG] - 0x05, should be 0xE5 (20100428/tbutils-314) +[ 0.189086] ACPI Error: Needed type [Reference], found [Device] f700ff90 (20090903/exresop-104) +[ 0.189100] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7017dc8), AE_AML_OPERAND_TYPE +[ 0.189451] ACPI Error: Needed type [Reference], found [Device] f700ef90 20090521 exresop-104 +[ 0.189466] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7016dc8), AE_AML_OPERAND_TYPE +[ 0.189515] ACPI Error (psargs-0359): [CVCL] Namespace lookup failure, AE_NOT_FOUND +[ 0.189522] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.DIGI._STA] (Node f702a390), AE_NOT_FOUND +[ 0.191013] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0xE5 (20100428/tbutils-314) +[ 0.191774] ACPI Warning: Incorrect checksum in table [OEMB] - 37, should be 28 (20090903/tbutils-314) +[ 0.191906] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c098ff6c), AE_NOT_FOUND +[ 0.192037] ACPI Warning: Incorrect checksum in table [OEMB] - 0xD9, should be 0xCC (20100428/tbutils-314) +[ 0.192146] ACPI Error (dswload-0781): [_PSW] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.192182] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08ce7dc), AE_ALREADY_EXISTS +[ 0.192983] ACPI Warning: Incorrect checksum in table [OEMB] - C0, should be B3 (20090903/tbutils-314) +[ 0.193750] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08ce7dc), AE_NOT_FOUND +[ 0.194184] ACPI Warning: Incorrect checksum in table [OEMB] - C8, should be BF (20090903/tbutils-314) +[ 0.194314] ACPI Warning: Incorrect checksum in table [OEMB] - AA, should be 9D (20090903/tbutils-314) +[ 0.194554] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node f5821150), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +[ 0.194701] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node f58211e0), AE_INVALID_TABLE_LENGTH (20110112/psparse-536) +[ 0.194897] ACPI Warning: Incorrect checksum in table [OEMB] - 0xDD, should be 0xD6 (20100428/tbutils-314) +[ 0.195685] ACPI Warning: Incorrect checksum in table [OEMB] - 2A, should be 29 (20090903/tbutils-314) +[ 0.195754] ACPI Warning: Incorrect checksum in table [OEMB] - 88, should be 83 (20090903/tbutils-314) +[ 0.196934] ACPI Warning: Incorrect checksum in table [OEMB] - 0B, should be 02 (20090903/tbutils-314) +[ 0.197082] ACPI Warning: Incorrect checksum in table [ATKG] - 0xC8, should be 0xE5 (20100428/tbutils-314) +[ 0.197413] ACPI Error: No handler for Region [EC__] (f701c5c8) [EmbeddedControl] (20100428/evregion-369) +[ 0.197451] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC__._REG] (Node f701e2a0), AE_NOT_EXIST +[ 0.198490] ACPI Warning: Incorrect checksum in table [OEMB] - 0xB2, should be 0x47 (20100428/tbutils-314) +[ 0.198823] ACPI Warning: Incorrect checksum in table [OEMB] - 01, should be F4 (20090903/tbutils-314) +[ 0.199360] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be AB 20090521 tbutils-246 +[ 0.199465] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110413/psargs-359) +[ 0.199471] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node ffff880138e2ea78), AE_NOT_FOUND (20110413/psparse-536) +[ 0.200426] ACPI Warning: Incorrect checksum in table [OEMB] - A3, should be 9E (20090903/tbutils-314) +[ 0.200744] ACPI Warning: Incorrect checksum in table [ASF!] - 59, should be 08 20090521 tbutils-246 +[ 0.201013] ACPI Warning: Incorrect checksum in table [OEMB] - 8A, should be 7D (20090903/tbutils-314) +[ 0.201466] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f700e180), AE_INVALID_TABLE_LENGTH +[ 0.203079] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE1, should be 0xDC (20100428/tbutils-314) +[ 0.204335] ACPI Warning: Incorrect checksum in table [OEMB] - 0xC1, should be 0x11 (20110413/tbutils-314) +[ 0.204344] ACPI Warning: Incorrect checksum in table [ATKG] - 07, should be 59 (20090903/tbutils-314) +[ 0.205365] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5422e88), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.206075] ACPI Warning: Incorrect checksum in table [ATKG] - BB, should be E5 (20090903/tbutils-314) +[ 0.207023] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be AB (20090903/tbutils-314) +[ 0.208479] ACPI Warning: Incorrect checksum in table [OEMB] - 0x77, should be 0x72 (20100428/tbutils-314) +[ 0.209105] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f270), AE_NOT_FOUND +[ 0.210543] ACPI Warning: Incorrect checksum in table [OEMB] - CD, should be CC (20090903/tbutils-314) +[ 0.210667] ACPI Warning: Incorrect checksum in table [OEMB] - D3, should be C4 (20090903/tbutils-314) +[ 0.211069] ACPI Warning: Incorrect checksum in table [OEMB] - 0x99, should be 0x92 (20100428/tbutils-314) +[ 0.211113] ACPI Warning: Incorrect checksum in table [OEMB] - 7B, should be 76 (20090903/tbutils-314) +[ 0.211904] ACPI Error: No handler for Region [ERAM] (ee422ed8) [EmbeddedControl] (20100428/evregion-369) +[ 0.211928] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fd08), AE_ALREADY_EXISTS +[ 0.211938] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ee423708), AE_NOT_EXIST +[ 0.212633] ACPI Warning: Incorrect checksum in table [OEMB] - E1, should be D3 (20090903/tbutils-314) +[ 0.212815] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f7424eb8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.213084] ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.213100] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014ca8), AE_ALREADY_EXISTS +[ 0.213771] ACPI Warning: Incorrect checksum in table [OEMB] - EC, should be E7 (20090903/tbutils-314) +[ 0.213827] ACPI Warning: Package List length (0xC) larger than NumElements count (0x3), truncated +[ 0.214423] ACPI Warning: Incorrect checksum in table [OEMB] - FD, should be EF (20090903/tbutils-314) +[ 0.215632] ACPI Warning: Incorrect checksum in table [OEMB] - 0x0B, should be 0x5B (20100428/tbutils-314) +[ 0.216249] ACPI Warning: Incorrect checksum in table [ATKG] - 0x27, should be 0xE5 (20110112/tbutils-314) +[ 0.217060] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node dec13ca8), AE_ALREADY_EXISTS +[ 0.217763] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013030), AE_ALREADY_EXISTS +[ 0.217957] ACPI Warning: Incorrect checksum in table [OEMB] - 69, should be 5F (20090903/tbutils-314) +[ 0.218957] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701be88), AE_ALREADY_EXISTS +[ 0.219691] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013270), AE_NOT_FOUND +[ 0.219959] ACPI Error: No handler for Region [SACS] (f70c52a8) [PCI_Config] (20090903/evregion-319) +[ 0.219968] ACPI Error: Region PCI_Config(2) has no handler (20090903/exfldio-295) +[ 0.219977] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f701ba38), AE_NOT_EXIST +[ 0.220034] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f701ba38), AE_NOT_EXIST +[ 0.220068] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f701baf8), AE_NOT_EXIST +[ 0.220107] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f701baf8), AE_NOT_EXIST +[ 0.220142] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f701bc78), AE_NOT_EXIST +[ 0.220180] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f701bc78), AE_NOT_EXIST +[ 0.220213] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f701bd38), AE_NOT_EXIST +[ 0.220252] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f701bd38), AE_NOT_EXIST +[ 0.221153] ACPI Error: Method parse/execution failed [_SB_.PCI0.HPET._CRS] (Node f402ae70), AE_NOT_FOUND (20110112/psparse-536) +[ 0.221220] ACPI Error: Method parse/execution failed [_SB_.PCI0.RTC_._CRS] (Node f402aee8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.221945] mtrr: your CPUs had inconsistent MTRRdefType settings +[ 0.222211] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701beb8), AE_ALREADY_EXISTS +[ 0.222869] ACPI Warning: Incorrect checksum in table [ATKG] - B0, should be 4A (20090903/tbutils-314) +[ 0.222980] ACPI Error: Field [I9MN] at 544 exceeds Buffer [IORT] size 464 (bits) (20090903/dsopcode-596) +[ 0.222987] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node f7015900), AE_AML_BUFFER_LIMIT +[ 0.223020] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node f7015900), AE_AML_BUFFER_LIMIT +[ 0.223245] ACPI Warning: Incorrect checksum in table [OEMB] - DB, should be DA (20090903/tbutils-314) +[ 0.223485] [Firmware Bug]: PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] not reserved in ACPI motherboard resources +[ 0.224289] ACPI Warning for _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +[ 0.224569] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fca8), AE_ALREADY_EXISTS +[ 0.224987] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 688 (bits) (20100428/dsopcode-597) +[ 0.224994] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node f7021990), AE_AML_BUFFER_LIMIT +[ 0.225018] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node f7021990), AE_AML_BUFFER_LIMIT +[ 0.226224] ACPI Warning: Incorrect checksum in table [ATKG] - 53, should be 84 (20090903/tbutils-314) +[ 0.227129] ACPI Warning: Incorrect checksum in table [ATKG] - 0x11, should be 0xE5 (20100428/tbutils-314) +[ 0.228032] ACPI Error (psargs-0359): [_PR_.C002._PPC] Namespace lookup failure, AE_NOT_FOUND +[ 0.228041] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f742a558), AE_NOT_FOUND +[ 0.228469] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 30) +[ 0.228535] ACPI Warning: Incorrect checksum in table [OEMB] - 77, should be 6F (20100121/tbutils-314) +[ 0.228773] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4025450), AE_NOT_FOUND (20110112/psparse-536) +[ 0.229334] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7020750), AE_ALREADY_EXISTS +[ 0.229639] ACPI Error (psargs-0359): [CDW1] Namespace lookup failure, AE_NOT_FOUND +[ 0.229644] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7413270), AE_NOT_FOUND +[ 0.230075] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014630), AE_ALREADY_EXISTS +[ 0.231134] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7012f00), AE_NOT_FOUND +[ 0.232350] ACPI Warning: Incorrect checksum in table [ATKG] - 15, should be 73 (20090903/tbutils-314) +[ 0.232460] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 87 (20090903/tbutils-314) +[ 0.232733] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701ebd0), AE_ALREADY_EXISTS +[ 0.232830] ACPI Warning: Incorrect checksum in table [OEMB] - 0xC2, should be 0x84 (20100428/tbutils-314) +[ 0.233493] ACPI Warning: Incorrect checksum in table [GSCI] - 58, should be AA (20090903/tbutils-314) +[ 0.233542] ACPI Warning: Incorrect checksum in table [GSCI] - 0x70, should be 0xD2 (20100428/tbutils-314) +[ 0.233946] ACPI Warning: Incorrect checksum in table [ATKG] - 1E, should be E5 (20090903/tbutils-314) +[ 0.235518] ACPI Warning: Incorrect checksum in table [ASF!] - D8, should be 6E (20090903/tbutils-314) +[ 0.236465] ACPI Warning: Incorrect checksum in table [OEMB] - 1D, should be 10 (20090903/tbutils-314) +[ 0.236739] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c24f00), AE_NOT_FOUND (20110112/psparse-536) +[ 0.241360] ACPI Warning: Incorrect checksum in table [OEMB] - 0xBD, should be 0x89 (20100428/tbutils-314) +[ 0.242473] ACPI Warning: Incorrect checksum in table [GSCI] - 0x28, should be 0x8A (20100428/tbutils-314) +[ 0.244995] ACPI Warning: Incorrect checksum in table [OEMB] - 17, should be 67 (20090903/tbutils-314) +[ 0.245794] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return type mismatch - found Integer, expected Package (20100428/nspredef-1053) +[ 0.245810] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.PCI0.PCIB._PRT] (Node f7022c48), AE_TYPE +[ 0.245830] ACPI Error: Type returned from _PRT was incorrect: Integer, expected Btypes: 0x8 (20100428/uteval-313) +[ 0.246137] ACPI Warning: Incorrect checksum in table [ATKG] - F1, should be E5 (20090903/tbutils-314) +[ 0.249246] ACPI Warning: Incorrect checksum in table [OEMB] - 70, should be 6D (20090903/tbutils-314) +[ 0.249570] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._OSC] (Node f7010198), AE_ALREADY_EXISTS +[ 0.249594] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f7010180), AE_ALREADY_EXISTS +[ 0.249860] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._OSC] (Node f7010270), AE_ALREADY_EXISTS +[ 0.249882] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f7010258), AE_ALREADY_EXISTS +[ 0.250005] ACPI Error: No handler for Region [EC__] (f4424bd0) [EmbeddedControl] (20110112/evregion-369) +[ 0.250012] ACPI Error: Region EmbeddedControl(0x3) has no handler (20110112/exfldio-292) +[ 0.250019] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC__._REG] (Node f4425bb8), AE_NOT_EXIST (20110112/psparse-536) +[ 0.250572] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7010e88), AE_ALREADY_EXISTS +[ 0.250864] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7013e58), AE_ALREADY_EXISTS +[ 0.250941] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4022e88), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.250986] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI +[ 0.251711] ACPI Warning: Incorrect checksum in table [ATKG] - B0, should be E5 (20090903/tbutils-314) +[ 0.254947] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c22e88), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.255884] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70142b8), AE_ALREADY_EXISTS +[ 0.256141] ACPI Warning: Incorrect checksum in table [ATKG] - 0xAF, should be 0x59 (20110413/tbutils-314) +[ 0.257910] ACPI Warning: Incorrect checksum in table [OEMB] - 04, should be 54 (20090903/tbutils-314) +[ 0.261013] ACPI Warning: Incorrect checksum in table [OEMB] - DF, should be 2F (20090903/tbutils-314) +[ 0.262586] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS +[ 0.262663] pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared +[ 0.264838] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f2a0), AE_ALREADY_EXISTS +[ 0.265119] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c08d5804), AE_NOT_FOUND +[ 0.265541] ACPI Warning: Incorrect checksum in table [OEMB] - E0, should be 30 (20090903/tbutils-314) +[ 0.266577] ACPI Warning: Incorrect checksum in table [GSCI] - 3B, should be BF (20090903/tbutils-314) +[ 0.267893] ACPI Warning for _TZ_.TZ01._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20090903/nspredef-1012) +[ 0.268093] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0927024), AE_NOT_FOUND +[ 0.268171] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0927024), AE_ALREADY_EXISTS +[ 0.268458] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70142a0), AE_ALREADY_EXISTS +[ 0.269488] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.APCT] (Node ffff88007af30560), AE_NO_MEMORY +[ 0.269534] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1.GCAP] (Node ffff88007af30540), AE_NO_MEMORY +[ 0.269576] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88007af30500), AE_NO_MEMORY +[ 0.272427] ACPI Error: No handler for Region [SACS] (f71004d8) [PCI_Config] (20090903/evregion-319) +[ 0.272435] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node f7102150), AE_NOT_EXIST +[ 0.272452] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node f7102150), AE_NOT_EXIST +[ 0.272469] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node f71021f8), AE_NOT_EXIST +[ 0.272486] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node f71021f8), AE_NOT_EXIST +[ 0.272503] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node f7102360), AE_NOT_EXIST +[ 0.272519] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node f7102360), AE_NOT_EXIST +[ 0.272536] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node f7102408), AE_NOT_EXIST +[ 0.272552] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node f7102408), AE_NOT_EXIST +[ 0.279154] ACPI Warning: Incorrect checksum in table [OEMB] - B9, should be AE (20090903/tbutils-314) +[ 0.284552] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node f7014858), AE_AML_PACKAGE_LIMIT +[ 0.284566] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node f7014798), AE_AML_PACKAGE_LIMIT +[ 0.285468] ACPI Error (psargs-0359): [_PR_.CPU0._PPC] Namespace lookup failure, AE_NOT_FOUND +[ 0.285476] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0.ADJP] (Node f7015b10), AE_NOT_FOUND +[ 0.285546] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0._PSR] (Node f7015ae0), AE_NOT_FOUND +[ 0.288180] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0x59 (20110112/tbutils-314) +[ 0.288591] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701fd50), AE_ALREADY_EXISTS +[ 0.288966] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f34245b8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.296054] [Firmware Bug]: Invalid critical threshold (0) +[ 0.296149] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701eca8), AE_ALREADY_EXISTS +[ 0.296644] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88012fc16660), AE_NOT_FOUND +[ 0.302946] ACPI Error (psargs-0359): [HPTF] Namespace lookup failure, AE_NOT_FOUND +[ 0.302952] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.HPET._STA] (Node ffff88007db32200), AE_NOT_FOUND +[ 0.307009] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c22e88), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.307757] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f74145a0), AE_NOT_FOUND +[ 0.307837] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f7414690), AE_NOT_FOUND +[ 0.308095] ACPI Warning: Incorrect checksum in table [SSDT] - 1F, should be 7F (20090903/tbutils-314) +[ 0.308151] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f7414cd8), AE_NOT_FOUND +[ 0.308213] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7414dc8), AE_NOT_FOUND +[ 0.310609] ACPI Warning for _PR_.CPU1._PSS: SubPackage[8,9] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 0.310767] ACPI Warning: Incorrect checksum in table [OEMB] - 0x72, should be 0x6A (20100428/tbutils-314) +[ 0.311025] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.311041] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f54250d8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.311335] ACPI Warning for _PR_.CPU2._PSS: SubPackage[8,9] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 0.311729] ACPI Error: Could not enable PowerButton event (20090903/evxfevnt-193) +[ 0.311932] ACPI Warning: Could not enable fixed event 2 (20090903/evxface-146) +[ 0.314160] ACPI Warning: Incorrect checksum in table [OEMB] - 91, should be 90 (20090903/tbutils-314) +[ 0.314451] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2b040), AE_ALREADY_EXISTS +[ 0.314603] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 8A (20090903/tbutils-314) +[ 0.314675] mtrr: your CPUs had inconsistent variable MTRR settings +[ 0.316718] ACPI Warning: Incorrect checksum in table [OEMB] - 27, should be 22 (20090903/tbutils-314) +[ 0.316734] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF3, should be 0xF2 (20100428/tbutils-314) +[ 0.316816] ACPI Error: No handler for Region [ERAM] (ffff88007a733d80) [EmbeddedControl] (20110112/evregion-369) +[ 0.316829] ACPI Error: Method parse/execution failed [_SB_.HTEV] (Node ffff88007a730780), AE_NOT_EXIST (20110112/psparse-536) +[ 0.316839] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff88007a73a078), AE_NOT_EXIST (20110112/psparse-536) +[ 0.317152] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be B4 (20090903/tbutils-314) +[ 0.317427] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88007d735160), AE_ALREADY_EXISTS +[ 0.317685] ACPI Warning: Incorrect checksum in table [ASF!] - 0xFC, should be 0x98 (20100428/tbutils-314) +[ 0.319223] ACPI Warning: Incorrect checksum in table [OEMB] - E7, should be E2 (20090903/tbutils-314) +[ 0.321587] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a12040), AE_NOT_FOUND +[ 0.321722] ACPI Error: Needed type [Reference], found [Device] ffff88007552b900 (20100428/exresop-104) +[ 0.321740] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff880075532ba0), AE_AML_OPERAND_TYPE +[ 0.322869] ACPI Error: No handler for Region [RAM_] (f7425690) [EmbeddedControl] (20110112/evregion-369) +[ 0.322886] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node f7435228), AE_NOT_EXIST (20110112/psparse-536) +[ 0.322899] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7428d98), AE_NOT_EXIST (20110112/psparse-536) +[ 0.323465] ACPI Warning: Incorrect checksum in table [OEMB] - 0x8D, should be 0x8C (20100428/tbutils-314) +[ 0.323777] ACPI Warning: Package List length (0xC) larger than NumElements count (0x4), truncated +[ 0.325321] ACPI Error: No handler for Region [ERAM] (ffff88007d32bf78) [EmbeddedControl] (20090903/evregion-319) +[ 0.325334] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.KBC0.SMWR] (Node ffff88007d32c8c0), AE_NOT_EXIST +[ 0.325357] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.THRM.SFAN] (Node ffff88007d328ec0), AE_NOT_EXIST +[ 0.325376] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.THRM.THCK] (Node ffff88007d328f40), AE_NOT_EXIST +[ 0.325396] ACPI Error (psparse-0537): Method parse/execution failed [_GPE._L02] (Node ffff88007d3289c0), AE_NOT_EXIST +[ 0.325630] ACPI Error: Could not enable SleepButton event (20100428/evxfevnt-202) +[ 0.325636] ACPI Warning: Could not enable fixed event 0x3 (20100428/evxface-146) +[ 0.328929] ACPI Warning: Incorrect checksum in table [OEMB] - 0x45, should be 0x40 (20100428/tbutils-314) +[ 0.328954] ACPI Warning: Incorrect checksum in table [ASF!] - D9, should be 6D (20090903/tbutils-314) +[ 0.329218] ACPI Warning for _SB_.PCI0._OSC: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.329373] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.329378] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88012b63d760), AE_ALREADY_EXISTS +[ 0.330000] ACPI Warning: Incorrect checksum in table [TCPA] - 0xD1, should be 0x75 (20100428/tbutils-314) +[ 0.330140] ACPI Warning: Incorrect checksum in table [ATKG] - 0xE3, should be 0xDC (20110112/tbutils-314) +[ 0.330280] ACPI Warning: Incorrect checksum in table [OEMB] - DE, should be D9 (20090903/tbutils-314) +[ 0.330488] ACPI Error: No handler for Region [SACS] (ffff88011bf101f8) [PCI_Config] (20090903/evregion-319) +[ 0.330496] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node ffff88011bf0d360), AE_NOT_EXIST +[ 0.330513] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node ffff88011bf0d360), AE_NOT_EXIST +[ 0.330528] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node ffff88011bf0d460), AE_NOT_EXIST +[ 0.330545] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node ffff88011bf0d460), AE_NOT_EXIST +[ 0.330560] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node ffff88011bf0d660), AE_NOT_EXIST +[ 0.330576] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node ffff88011bf0d660), AE_NOT_EXIST +[ 0.330590] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node ffff88011bf0d760), AE_NOT_EXIST +[ 0.330606] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node ffff88011bf0d760), AE_NOT_EXIST +[ 0.330759] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88011763c000), AE_ALREADY_EXISTS +[ 0.330793] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x9A (20110112/tbutils-314) +[ 0.331637] ACPI Error: Needed type [Reference], found [Device] ffff88014b82d820 (20090903/exresop-104) +[ 0.331653] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88014b83cac0), AE_AML_OPERAND_TYPE +[ 0.331820] ACPI Error: Needed type [Reference], found [Device] ffff8800379aa900 (20100428/exresop-104) +[ 0.331838] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800379bbba0), AE_AML_OPERAND_TYPE +[ 0.331948] ACPI Warning: Incorrect checksum in table [OEMB] - 0C, should be 0B (20090903/tbutils-314) +[ 0.332160] ACPI Error (dswload-0677): [PCI0] Namespace lookup failure, AE_NOT_FOUND +[ 0.332167] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81cf5eb0), AE_NOT_FOUND +[ 0.333155] ACPI Warning: Incorrect checksum in table [SSDT] - 4A, should be D9 (20090903/tbutils-314) +[ 0.333287] ACPI Error: No handler for Region [ERAM] (ffff8800bc638d80) [EmbeddedControl] (20090903/evregion-319) +[ 0.333300] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node ffff8800bc62e600), AE_NOT_EXIST +[ 0.333326] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff8800bc63e9a0), AE_NOT_EXIST +[ 0.333559] ACPI Error: No handler for Region [ERAM] (ffff88007db2ad80) [EmbeddedControl] (20090903/evregion-319) +[ 0.333573] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.HTEV] (Node ffff88007db28600), AE_NOT_EXIST +[ 0.333591] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF4, should be 0xF3 (20110112/tbutils-314) +[ 0.333601] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff88007db309a0), AE_NOT_EXIST +[ 0.333734] ACPI Warning for _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +[ 0.333765] ACPI Error (psargs-0359): [FZHD] Namespace lookup failure, AE_NOT_FOUND +[ 0.333771] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f7014300), AE_NOT_FOUND +[ 0.333853] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f70143f0), AE_NOT_FOUND +[ 0.334143] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f7014a38), AE_NOT_FOUND +[ 0.334206] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7014b28), AE_NOT_FOUND +[ 0.335658] ACPI Error: No handler for Region [ECOR] (ffff88007af355e8) [EmbeddedControl] (20110413/evregion-373) +[ 0.335698] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff88007af36730), AE_NOT_EXIST (20110413/psparse-536) +[ 0.335745] ACPI Warning: Incorrect checksum in table [OEMB] - 80, should be 78 (20090903/tbutils-314) +[ 0.337368] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 86 (20090903/tbutils-314) +[ 0.337513] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f54243f0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.337662] ACPI Error (psargs-0359): [URES] Namespace lookup failure, AE_NOT_FOUND +[ 0.337662] ACPI Error (psparse-0537): Method parse/execution failed [_PSW] (Node f701f0a8), AE_NOT_FOUND +[ 0.338155] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88021302db60), AE_ALREADY_EXISTS +[ 0.338440] ACPI Error: No handler for Region [SACS] (ffff88012bb0f1f8) [PCI_Config] (20090903/evregion-319) +[ 0.338717] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D0._STA] (Node ffff88012bb111a0), AE_NOT_EXIST +[ 0.338801] ACPI Warning: Incorrect checksum in table [OEMB] - 8B, should be 7E (20090903/tbutils-314) +[ 0.338905] ACPI Error (uteval-0250): Method execution failed [PRID.P_D0._STA] (Node ffff88012bb111a0), AE_NOT_EXIST +[ 0.339363] ACPI Error (psparse-0537): Method parse/execution failed [PRID.P_D1._STA] (Node ffff88012bb11280), AE_NOT_EXIST +[ 0.339551] ACPI Error (uteval-0250): Method execution failed [PRID.P_D1._STA] (Node ffff88012bb11280), AE_NOT_EXIST +[ 0.339584] ACPI Warning: Incorrect checksum in table [OEMB] - 0xE2, should be 0xD5 (20100428/tbutils-314) +[ 0.339628] ACPI Warning: Incorrect checksum in table [OEMB] - 91, should be 88 (20090903/tbutils-314) +[ 0.339857] ACPI Warning: Incorrect checksum in table [OEMB] - 6D, should be 60 (20090903/tbutils-314) +[ 0.340003] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D0._STA] (Node ffff88012bb11460), AE_NOT_EXIST +[ 0.340121] ACPI Warning: Incorrect checksum in table [ATKG] - 0x1B, should be 0xE5 (20110112/tbutils-314) +[ 0.340193] ACPI Error (uteval-0250): Method execution failed [SECD.S_D0._STA] (Node ffff88012bb11460), AE_NOT_EXIST +[ 0.340651] ACPI Error (psparse-0537): Method parse/execution failed [SECD.S_D1._STA] (Node ffff88012bb11540), AE_NOT_EXIST +[ 0.340838] ACPI Error (uteval-0250): Method execution failed [SECD.S_D1._STA] (Node ffff88012bb11540), AE_NOT_EXIST +[ 0.341276] ACPI Warning: Incorrect checksum in table [ASF!] - F2, should be 8D (20090903/tbutils-314) +[ 0.341759] ACPI Error: No handler for Region [RAM_] (f74212f8) [EmbeddedControl] (20100428/evregion-369) +[ 0.341812] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._OSC] (Node ffff88017bc14660), AE_ALREADY_EXISTS +[ 0.341843] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88017bc14640), AE_ALREADY_EXISTS +[ 0.342116] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node f742f228), AE_NOT_EXIST +[ 0.342130] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._OSC] (Node ffff88017bc14780), AE_ALREADY_EXISTS +[ 0.342160] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node ffff88017bc14760), AE_ALREADY_EXISTS +[ 0.342409] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f7422d98), AE_NOT_EXIST +[ 0.342985] ACPI Warning: Incorrect checksum in table [OEMB] - 18, should be 13 (20090903/tbutils-314) +[ 0.343577] ACPI Warning: Incorrect checksum in table [OEMB] - 0xD1, should be 0xCA (20100428/tbutils-314) +[ 0.344373] ACPI Warning: Incorrect checksum in table [OEMB] - C5, should be B8 (20090903/tbutils-314) +[ 0.345244] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA5, should be 0x9C (20100428/tbutils-314) +[ 0.346079] ACPI Warning: Incorrect checksum in table [OEMB] - 7A, should be 71 (20090903/tbutils-314) +[ 0.347557] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20100428/nspredef-1059) +[ 0.347883] ACPI Warning: Incorrect checksum in table [OEMB] - 5C, should be 53 (20090903/tbutils-314) +[ 0.348936] ACPI Warning: Incorrect checksum in table [OEMB] - 0x56, should be 0x49 (20100428/tbutils-314) +[ 0.349163] ACPI Warning: Incorrect checksum in table [OEMB] - E7, should be DA (20090903/tbutils-314) +[ 0.350013] ACPI Warning: Incorrect checksum in table [OEMB] - D3, should be C6 (20090903/tbutils-314) +[ 0.350096] ACPI Warning: Incorrect checksum in table [ATKG] - 13, should be 53 (20090903/tbutils-314) +[ 0.350158] ACPI Warning: Incorrect checksum in table [ATKG] - 0x13, should be 0xC8 (20110112/tbutils-314) +[ 0.350335] ACPI Warning: Incorrect checksum in table [SSDT] - 0x83, should be 0x37 (20110112/tbutils-314) +[ 0.350784] ACPI Warning: Incorrect checksum in table [iEIT] - 0x5C, should be 0x51 (20100428/tbutils-314) +[ 0.351065] ACPI Warning: Incorrect checksum in table [SSDT] - 0x04, should be 0xCA (20110112/tbutils-314) +[ 0.353198] ACPI Error: No handler for Region [ERAM] (ffff88013be53e10) [EmbeddedControl] (20090903/evregion-319) +[ 0.353215] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node ffff88013be520e0), AE_NOT_EXIST +[ 0.353356] ACPI Warning: Incorrect checksum in table [ATKG] - 0x05, should be 0x36 (20100428/tbutils-314) +[ 0.353401] ACPI Warning for _SB_.LATA._CRS: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.353406] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.LATA._CRS] (Node ffff88006df2eb00), AE_TYPE +[ 0.353652] ACPI Error: Needed type [Reference], found [Device] ffff8800379a6800 (20090903/exresop-104) +[ 0.353652] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800379bba80), AE_AML_OPERAND_TYPE +[ 0.355135] ACPI Error: Method parse/execution failed [_PR_.CPU0._PDC] (Node ffff88007a738ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.355798] ACPI Error: ACPI path has too many parent prefixes (^) - reached beyond root node (20090903/nsaccess-429) +[ 0.356001] ..MP-BIOS bug: 8254 timer not connected to IO-APIC +[ 0.356108] ACPI Error: No handler for Region [ECF2] (ffff88013ba313a8) [EmbeddedControl] (20090903/evregion-319) +[ 0.356113] ACPI Error: Region EmbeddedControl(3) has no handler (20090903/exfldio-295) +[ 0.356119] ACPI Error (psparse-0537): Method parse/execution failed [P8XH] (Node ffff88013ba28020), AE_NOT_EXIST +[ 0.356143] ACPI Error (psparse-0537): Method parse/execution failed [_GPE._L02] (Node ffff88013ba32120), AE_NOT_EXIST +[ 0.356280] ACPI Warning: Incorrect checksum in table [TCPA] - 0x33, should be 0xD7 (20100428/tbutils-314) +[ 0.356754] ACPI Warning: Incorrect checksum in table [ASF!] - ED, should be 83 (20090903/tbutils-314) +[ 0.357018] ACPI Warning: Incorrect checksum in table [OEMB] - 0xA6, should be 0xA1 (20100428/tbutils-314) +[ 0.357902] ACPI Warning: Incorrect checksum in table [ATKG] - 0xE9, should be 0xFE (20110112/tbutils-314) +[ 0.358086] ACPI Warning: Incorrect checksum in table [OEMB] - 0x11, should be 0x10 (20100428/tbutils-314) +[ 0.359183] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7021a68), AE_ALREADY_EXISTS +[ 0.359915] ACPI Warning: Incorrect checksum in table [ATKG] - 0x7D, should be 0x59 (20110112/tbutils-314) +[ 0.360335] ACPI Warning: Incorrect checksum in table [GSCI] - 0x28, should be 0xD4 (20110112/tbutils-314) +[ 0.361596] ACPI Error: ACPI path has too many parent prefixes (^) - reached beyond root node (20100428/nsaccess-429) +[ 0.362481] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c091bffc), AE_NOT_FOUND +[ 0.362557] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c091bffc), AE_ALREADY_EXISTS +[ 0.362606] ACPI Error (dsfield-0487): [SMIC] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.362751] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f40255d0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.362859] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via cmdline +[ 0.362870] ACPI Error (dsfield-0140): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.362886] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7014a80), AE_ALREADY_EXISTS +[ 0.363488] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff880227048f60), AE_ALREADY_EXISTS +[ 0.363621] ACPI Warning: Incorrect checksum in table [OEMB] - 3C, should be 3B 20090521 tbutils-246 +[ 0.363728] ACPI Warning: Incorrect checksum in table [OEMB] - 75, should be 74 (20090903/tbutils-314) +[ 0.363981] ACPI Warning: Incorrect checksum in table [OEMB] - BB, should be AE (20090903/tbutils-314) +[ 0.364356] ACPI Warning: For _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 0.364521] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f44285b8), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.366917] ACPI Warning: Incorrect checksum in table [OEMB] - BD, should be B6 (20090903/tbutils-314) +[ 0.367185] ACPI Warning: Incorrect checksum in table [OEMB] - B2, should be A5 (20090903/tbutils-314) +[ 0.367524] ACPI Warning: Incorrect checksum in table [ATKG] - 0xAA, should be 0x59 (20100428/tbutils-314) +[ 0.368838] ACPI Warning: Incorrect checksum in table [OEMB] - 23, should be 1E (20090903/tbutils-314) +[ 0.369986] ACPI Warning: Incorrect checksum in table [OEMB] - 0x61, should be 0x58 (20100428/tbutils-314) +[ 0.370263] ACPI Warning: Incorrect checksum in table [ATKG] - 0x73, should be 0xE5 (20110112/tbutils-314) +[ 0.371572] ACPI Warning: Incorrect checksum in table [ATKG] - 0xFB, should be 0xE5 (20100428/tbutils-314) +[ 0.372475] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5426ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.372684] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node dd825ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.375383] ACPI Warning: Incorrect checksum in table [OEMB] - 0x90, should be 0x83 (20100428/tbutils-314) +[ 0.375585] ACPI Error (dswload-0677): [USB0] Namespace lookup failure, AE_NOT_FOUND +[ 0.375609] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c09fb6c8), AE_NOT_FOUND +[ 0.375966] ACPI Error (psparse-0537): Method parse/execution failed [] (Node c0992f7c), AE_NOT_FOUND +[ 0.376047] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node dd825ca8), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.376092] ACPI Error: No handler for Region [ECXP] (ffff88007cf31ab0) [EmbeddedControl] (20100428/evregion-369) +[ 0.376106] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._OSC] (Node ffff88007cf3f440), AE_NOT_EXIST +[ 0.376141] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PDC] (Node ffff88007cf3f420), AE_NOT_EXIST +[ 0.376733] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5026ca8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.378931] ACPI Warning: Incorrect checksum in table [OEMB] - 33, should be 2C (20090903/tbutils-314) +[ 0.379815] ACPI Warning: Incorrect checksum in table [SSDT] - D5, should be 3E (20090903/tbutils-314) +[ 0.380609] ACPI Warning: Incorrect checksum in table [SSDT] - 8C, should be DC (20090903/tbutils-314) +[ 0.381039] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7016a38), AE_ALREADY_EXISTS +[ 0.381211] ACPI Warning: Incorrect checksum in table [OEMB] - 8E, should be 89 (20090903/tbutils-314) +[ 0.381478] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe06fffff] not reserved in ACPI motherboard resources +[ 0.382740] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88003f013ca0), AE_NOT_FOUND +[ 0.383518] ACPI Warning: Incorrect checksum in table [ATKG] - 0x0F, should be 0xE7 (20100428/tbutils-314) +[ 0.384684] ACPI Warning: Incorrect checksum in table [OEMB] - 0x4E, should be 0x3F (20100428/tbutils-314) +[ 0.384722] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.HPET._CRS] (Node ffff88007db32220), AE_NOT_FOUND +[ 0.384811] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.RTC_._CRS] (Node ffff88007db322c0), AE_NOT_FOUND +[ 0.385777] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 89 (20090903/tbutils-314) +[ 0.388556] ACPI Warning: Incorrect checksum in table [ATKG] - 6A, should be E5 (20090903/tbutils-314) +[ 0.388736] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 83 (20090903/tbutils-314) +[ 0.390341] ACPI Error: [GUR_._BAS] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.390354] ACPI Error: Method parse/execution failed [_SB_.PCI0.MBIO._CRS] (Node ffff880078f30aa0), AE_NOT_FOUND (20110112/psparse-536) +[ 0.390975] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources +[ 0.393086] ACPI Warning: For _TZ_.THRM._PSL: Return Package has no elements (empty) (20110413/nspredef-456) +[ 0.395834] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013ba393a0), AE_NOT_FOUND +[ 0.396197] [Firmware Bug]: ACPI: Invalid BIOS _PSS frequency: 0x0 MHz +[ 0.396945] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 96 (20090903/tbutils-314) +[ 0.397644] ACPI Warning: Incorrect checksum in table [ATKG] - F9, should be E5 (20090903/tbutils-314) +[ 0.398231] ACPI Warning: Incorrect checksum in table [ATKG] - 12, should be 07 (20090903/tbutils-314) +[ 0.398290] ACPI Warning: Incorrect checksum in table [ATKG] - 01, should be 23 (20090903/tbutils-314) +[ 0.399990] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 688 (bits) (20110112/dsopcode-597) +[ 0.399996] ACPI Error: Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff8800b8e38000), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 0.400012] ACPI Error: Method execution failed [_SB_.MEM_._CRS] (Node ffff8800b8e38000), AE_AML_BUFFER_LIMIT (20110112/uteval-103) +[ 0.400212] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x88 (20110112/tbutils-314) +[ 0.401117] ACPI Warning: Incorrect checksum in table [ATKG] - 0F, should be E7 (20090903/tbutils-314) +[ 0.404616] ACPI Warning: Incorrect checksum in table [OEMB] - A5, should be A0 (20090903/tbutils-314) +[ 0.406016] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0.ADJP] (Node ffff88013ba3c5a0), AE_NOT_FOUND +[ 0.406038] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.ADP0._PSR] (Node ffff88013ba3c560), AE_NOT_FOUND +[ 0.407719] ACPI Warning: Incorrect checksum in table [OEMB] - 72, should be 69 (20090903/tbutils-314) +[ 0.408529] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c285b8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.414781] ACPI Warning: Incorrect checksum in table [OEMB] - CD, should be C8 (20090903/tbutils-314) +[ 0.415975] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20090903/nspredef-1012) +[ 0.418105] ACPI Warning: Incorrect checksum in table [ATKG] - 76, should be FE (20090903/tbutils-314) +[ 0.420210] ACPI Error: [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +[ 0.420218] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88022b749b18), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.420241] ACPI Error: Field [I9MN] at 544 exceeds Buffer [IORT] size 464 (bits) (20100428/dsopcode-597) +[ 0.420248] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node ffff88013142fac0), AE_AML_BUFFER_LIMIT +[ 0.420284] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.LPC0.PMIO._CRS] (Node ffff88013142fac0), AE_AML_BUFFER_LIMIT +[ 0.420323] ACPI Warning: Incorrect checksum in table [ATKG] - 0xC3, should be 0x59 (20110112/tbutils-314) +[ 0.422032] ACPI Warning (dsobject-0501): Package List length (6) larger than NumElements count (3), truncated +[ 0.424909] ACPI Warning for _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +[ 0.426823] ACPI Error (psargs-0359): [_PR_.CPU0._PSS] Namespace lookup failure, AE_NOT_FOUND +[ 0.426833] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__.ADJP] (Node ffff88007b32ee00), AE_NOT_FOUND +[ 0.426872] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff88007b32edc0), AE_NOT_FOUND +[ 0.429245] ACPI Warning for _PR_.CPU0._TSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +[ 0.430887] ACPI Warning for _PR_.CPU1._TSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +[ 0.434593] ACPI Warning: Incorrect checksum in table [GSCI] - D2, should be A5 (20090903/tbutils-314) +[ 0.436921] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013b62ccc0), AE_NOT_FOUND +[ 0.438019] ACPI Warning: Incorrect checksum in table [ATKG] - C8, should be E5 (20090903/tbutils-314) +[ 0.440405] ACPI Warning for _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.441805] ACPI Warning: Incorrect checksum in table [OEMB] - B2, should be B1 (20090903/tbutils-314) +[ 0.444897] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c252a0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.450562] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff8800b8e33ca8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.451517] ACPI Error (psargs-0359): [GUR_._BAS] Namespace lookup failure, AE_NOT_FOUND +[ 0.451682] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.MBIO._CRS] (Node ffff88007bb2a880), AE_NOT_FOUND +[ 0.453111] ACPI Warning for _SB_.BAT1._BIF: Return Package type mismatch at index 12 - found Integer, expected String/Buffer (20090903/nspredef-1012) +[ 0.454555] ACPI Warning for _PR_.CPU0._PSS: Return Package type mismatch at index 3 - found Integer, expected Package (20100428/nspredef-1059) +[ 0.454838] ACPI Warning for _PR_.CPU1._PSS: Return Package type mismatch at index 3 - found Integer, expected Package (20100428/nspredef-1059) +[ 0.455674] ACPI Warning: Incorrect checksum in table [SSDT] - 83, should be 7F (20090903/tbutils-314) +[ 0.459126] ACPI Warning: Incorrect checksum in table [SSDT] - 4C, should be 12 (20090903/tbutils-314) +[ 0.460622] ACPI Warning: For _SB_.PCI0.P32_._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 0.461767] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dsfield-143) +[ 0.461793] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003cdb0f00), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.462573] ACPI Warning: Incorrect checksum in table [OEMB] - 95, should be 5E 20090521 tbutils-246 +[ 0.468216] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._CST] (Node ffff88007c5cc380), AE_NOT_FOUND +[ 0.468859] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003f1afdc0), AE_ALREADY_EXISTS +[ 0.475076] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node f701eb28), AE_NOT_FOUND +[ 0.475159] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node f701ec18), AE_NOT_FOUND +[ 0.475441] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node f70202a0), AE_NOT_FOUND +[ 0.475506] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node f7020390), AE_NOT_FOUND +[ 0.479385] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x88 (20100428/tbutils-314) +[ 0.479821] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a68), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.481067] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4028a68), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.482955] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0f00), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.484974] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a68), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.485955] ACPI Warning: For _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20110112/nspredef-1059) +[ 0.487180] ACPI Warning: Incorrect checksum in table [TAMG] - 0x33, should be 0x32 (20110112/tbutils-314) +[ 0.487365] ACPI Warning: Incorrect checksum in table [TAMG] - 0x99, should be 0x98 (20110112/tbutils-314) +[ 0.490256] ACPI Warning: Incorrect checksum in table [ATKG] - 0x22, should be 0x53 (20110112/tbutils-314) +[ 0.490491] ACPI Warning: For _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20110413/nspredef-352) +[ 0.491491] ACPI Warning: Incorrect checksum in table [SSDT] - 0x4A, should be 0xD9 (20110112/tbutils-314) +[ 0.492569] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a08440), AE_NOT_FOUND +[ 0.492648] ACPI Error (dswload-0781): [PRID] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.492655] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a08440), AE_ALREADY_EXISTS +[ 0.492811] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5428a68), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.494198] ACPI Warning: Incorrect checksum in table [SSDT] - 0x37, should be 0xC7 (20110112/tbutils-314) +[ 0.496094] ACPI Warning: Incorrect checksum in table [TCPA] - F8, should be 9C (20090903/tbutils-314) +[ 0.497662] ACPI Warning (nspredef-0357): _SB_.PCI0.P2P_._PRT: Return Package has no elements (empty) [20080926] +[ 0.497913] ACPI Warning: Incorrect checksum in table [TAMG] - 0xFA, should be 0xF9 (20100428/tbutils-314) +[ 0.498775] ACPI Warning: Incorrect checksum in table [TAMG] - 0xB2, should be 0xB1 (20100428/tbutils-314) +[ 0.498976] ACPI Warning: Incorrect checksum in table [GSCI] - 7B, should be 04 (20090903/tbutils-314) +[ 0.500043] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff8800ac22d040), AE_NOT_FOUND +[ 0.501138] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3c28a38), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.505041] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4028a38), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.513609] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5428a38), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.516158] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f74296c0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.526190] ACPI Warning (tbutils-0217): Incorrect checksum in table [OEMB] - F3, should be EE [20080926] +[ 0.527455] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5422df8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.533028] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9b0bb8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.534826] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7F (20110112/tbutils-314) +[ 0.538081] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be BC (20090903/tbutils-314) +[ 0.539131] ACPI Error: No handler for Region [RAM_] (ffff88012fa36a20) [EmbeddedControl] (20110112/evregion-369) +[ 0.539149] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node ffff88012fa4f398), AE_NOT_EXIST (20110112/psparse-536) +[ 0.539161] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff88012fa396b8), AE_NOT_EXIST (20110112/psparse-536) +[ 0.540036] ACPI Error: [_PR_.C002._PPC] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.540046] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node ffff880107e623c0), AE_NOT_FOUND (20110112/psparse-536) +[ 0.541238] ACPI Error: Method parse/execution failed [_TZ_.C2E8] (Node f482d108), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.541258] ACPI Error: Method parse/execution failed [_TZ_.C2E7] (Node f482d0f0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.541277] ACPI Error: Method parse/execution failed [_TZ_.TZ2_._TMP] (Node f482d7c8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.548650] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 87 (20090903/tbutils-314) +[ 0.550271] ACPI Warning: Incorrect checksum in table [ATKG] - 0xDC, should be 0x0E (20110112/tbutils-314) +[ 0.563415] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9af848), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.566332] ACPI Warning: For _TZ_.THRM._AL0: Return Package has no elements (empty) (20110413/nspredef-456) +[ 0.568235] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7F 20090521 tbutils-246 +[ 0.581397] ACPI Warning: Incorrect checksum in table [ATKG] - 0x24, should be 0x16 (20110112/tbutils-314) +[ 0.583718] ACPI Warning: _SB_.PCI0.PCI2._PRT: Return Package has no elements (empty) 20090521 nspredef-434 +[ 0.591409] ACPI Warning: Incorrect checksum in table [ATKG] - 0x1E, should be 0x16 (20110112/tbutils-314) +[ 0.591722] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20100428/dsopcode-597) +[ 0.591729] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff8800b4040f60), AE_AML_BUFFER_LIMIT +[ 0.591760] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node ffff8800b4040f60), AE_AML_BUFFER_LIMIT +[ 0.593045] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f702c7b0), AE_NOT_FOUND +[ 0.593072] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f7019648), AE_NOT_FOUND +[ 0.593095] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f702ea08), AE_NOT_FOUND +[ 0.593119] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702e9c0), AE_NOT_FOUND +[ 0.593142] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e678), AE_NOT_FOUND +[ 0.597675] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132) +[ 0.597680] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 10 (20090903/nsrepair-132) +[ 0.597685] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 11 (20090903/nsrepair-132) +[ 0.597689] ACPI Warning for _SB_.PCI0.LPC_.EC__.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132) +[ 0.600451] ACPI Error (psargs-0359): [_SB_.PCI0.EGBA] Namespace lookup failure, AE_NOT_FOUND +[ 0.600456] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC_.MBRD._CRS] (Node f7416318), AE_NOT_FOUND +[ 0.612305] ACPI Warning: Incorrect checksum in table [SSDT] - 6C, should be FB (20090903/tbutils-314) +[ 0.612793] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +[ 0.612820] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88003d9ae190), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.614155] ACPI Warning: Incorrect checksum in table [SSDT] - 37, should be C7 (20090903/tbutils-314) +[ 0.620955] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20090903/nspredef-1012) +[ 0.621415] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f702c828), AE_NOT_FOUND +[ 0.621443] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f7019ed0), AE_NOT_FOUND +[ 0.621468] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f702ea98), AE_NOT_FOUND +[ 0.621493] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702ea50), AE_NOT_FOUND +[ 0.621518] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e708), AE_NOT_FOUND +[ 0.625680] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources +[ 0.627242] ACPI Error (psargs-0359): [_SB_.PCI0.EC__.HOTT] Namespace lookup failure, AE_NOT_FOUND +[ 0.627255] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ01._HOT] (Node ffff88013ba3ae60), AE_NOT_FOUND +[ 0.628646] ACPI Warning: Incorrect checksum in table [OEMB] - 0xFA, should be 0x1E (20100428/tbutils-314) +[ 0.628687] [Firmware Bug]: ERST: ERST table is invalid +[ 0.630258] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88007af370a0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.641157] ACPI Warning: Incorrect checksum in table [OEMB] - C4, should be C1 (20090903/tbutils-314) +[ 0.644838] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe09fffff] not reserved in ACPI motherboard resources +[ 0.646493] ACPI Warning: Incorrect checksum in table [OEMB] - 0x5F, should be 0x5A (20100428/tbutils-314) +[ 0.651383] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88007f416680), AE_NOT_FOUND +[ 0.652133] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2e040), AE_NOT_FOUND +[ 0.652695] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0f040), AE_NOT_FOUND +[ 0.653163] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88007ab2f460), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.653985] ACPI Warning: Incorrect checksum in table [TAMG] - 0x4A, should be 0x49 (20110112/tbutils-314) +[ 0.654642] ACPI Error: Method parse/execution failed [_PR_.CPU1._PDC] (Node ffff88020f44deb0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.654994] ACPI Error: Method parse/execution failed [_PR_.CPU2._PDC] (Node ffff88020f44df50), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.655350] ACPI Error: Method parse/execution failed [_PR_.CPU3._PDC] (Node ffff88020f454000), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.655369] ACPI Error (psargs-0359): [_SB_.PCI0.PSKB] Namespace lookup failure, AE_NOT_FOUND +[ 0.655376] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.SIO_.KBC0._STA] (Node ffff880236c47260), AE_NOT_FOUND +[ 0.655576] ACPI Error (psargs-0359): [_SB_.PCI0.PSMS] Namespace lookup failure, AE_NOT_FOUND +[ 0.655581] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.SIO_.MSE0._STA] (Node ffff880236c47340), AE_NOT_FOUND +[ 0.656750] ACPI Warning: Incorrect checksum in table [OEMB] - 06, should be 05 20090521 tbutils-246 +[ 0.658002] ACPI Warning for _SB_.PCI0.SATA.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.658697] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88023fc14aa0), AE_ALREADY_EXISTS +[ 0.662008] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0c440), AE_NOT_FOUND +[ 0.663194] [Firmware Bug]: ACPI: no secondary bus range in _CRS +[ 0.664875] ACPI Warning: Incorrect checksum in table [TAMG] - 0x45, should be 0x44 (20110112/tbutils-314) +[ 0.666686] ACPI Warning: Incorrect checksum in table [TAMG] - 0x9E, should be 0x9D (20100428/tbutils-314) +[ 0.670109] ACPI Warning: Incorrect checksum in table [OEMB] - 5B, should be 4E (20090903/tbutils-314) +[ 0.670182] ACPI Warning: Incorrect checksum in table [TAMG] - C3, should be C2 (20090903/tbutils-314) +[ 0.670980] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7F (20100428/tbutils-314) +[ 0.673104] ACPI Warning: Incorrect checksum in table [OEMB] - 8C, should be 7D (20090903/tbutils-314) +[ 0.674282] ACPI Warning: Incorrect checksum in table [TAMG] - 0x15, should be 0x14 (20110112/tbutils-314) +[ 0.674920] ACPI Error: [SERN] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +[ 0.674938] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node f3829120), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.674963] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node f3829330), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 0.675162] ACPI Warning: Incorrect checksum in table [TAMG] - 0x05, should be 0x04 (20110413/tbutils-314) +[ 0.677370] ACPI Warning for _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132) +[ 0.677375] ACPI Warning for _SB_.PCI0.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132) +[ 0.677386] ACPI Warning: Incorrect checksum in table [OEMB] - 94, should be 93 (20090903/tbutils-314) +[ 0.678233] ACPI Warning: Incorrect checksum in table [OEMB] - 0x55, should be 0x50 (20100428/tbutils-314) +[ 0.678877] ACPI Warning: Incorrect checksum in table [OEMB] - 88, should be 7F (20090903/tbutils-314) +[ 0.681297] ACPI Warning: Incorrect checksum in table [OEMB] - DA, should be D9 (20090903/tbutils-314) +[ 0.688066] ACPI Warning: Incorrect checksum in table [OEMB] - 60, should be 5F (20090903/tbutils-314) +[ 0.695029] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a0e440), AE_NOT_FOUND +[ 0.695887] ACPI Warning: Incorrect checksum in table [OEMB] - C1, should be C0 (20090903/tbutils-314) +[ 0.696587] ACPI Warning: Incorrect checksum in table [OEMB] - 0xEE, should be 0xE6 (20100428/tbutils-314) +[ 0.697769] ACPI Warning: Incorrect checksum in table [OEMB] - 0xFC, should be 0xF7 (20100428/tbutils-314) +[ 0.700202] [Firmware Bug]: powernow-k8: No PSB or ACPI _PSS objects +[ 0.702121] ACPI Warning: Incorrect checksum in table [OEMB] - 0x84, should be 0x7B (20100428/tbutils-314) +[ 0.705041] ACPI Warning: Incorrect checksum in table [OEMB] - 0xF3, should be 0xF2 (20100428/tbutils-314) +[ 0.710267] ACPI Error: Method parse/execution failed [_TZ_.PSWT] (Node f7424bb8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.710275] ACPI Error: Method parse/execution failed [_TZ_.GTTP] (Node f7424b88), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.710281] ACPI Error: Method parse/execution failed [_TZ_.GFXZ._TMP] (Node f74249a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.710890] ACPI Warning: Incorrect checksum in table [OEMB] - DF, should be D2 (20090903/tbutils-314) +[ 0.712727] ACPI Error: Method parse/execution failed [_TZ_.DTSZ._TMP] (Node f7424ca8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 0.715065] ACPI Warning: Incorrect checksum in table [OEMB] - 67, should be 64 (20090903/tbutils-314) +[ 0.715951] ACPI Warning: Incorrect checksum in table [OEMB] - 0x9B, should be 0x93 (20100428/tbutils-314) +[ 0.717350] ACPI Warning: Incorrect checksum in table [OEMB] - 0x5C, should be 0x55 (20100428/tbutils-314) +[ 0.719490] ACPI Warning: Incorrect checksum in table [OEMB] - 0x3A, should be 0x39 (20100428/tbutils-314) +[ 0.721822] ACPI Error (dswload-0659): [USB0] Namespace lookup failure, AE_NOT_FOUND +[ 0.722199] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a4d180), AE_NOT_FOUND +[ 0.725417] ACPI Warning for _SB_.PCI0.LPC_.SYSR._CRS: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.725429] ACPI Error (uteval-0307): Return object type is incorrect [_SB_.PCI0.LPC_.SYSR._CRS] (Node ffff88013ba46cc0), AE_TYPE +[ 0.725450] ACPI Error: Type returned from _CRS was incorrect: Integer, expected Btypes: 4 (20090903/uteval-313) +[ 0.725974] ACPI Warning: Incorrect checksum in table [OEMB] - 0x7E, should be 0x75 (20100428/tbutils-314) +[ 0.736425] ACPI Warning: For _SB_.PCI0.PT02._PRT: Return Package has no elements (empty) (20110413/nspredef-456) +[ 0.743273] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f701f0d8), AE_ALREADY_EXISTS +[ 0.743525] ACPI Error: [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143) +[ 0.743530] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f50273d8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.743538] ACPI Warning: For _SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20110112/nspredef-352) +[ 0.744106] ACPI Error: Field [ASSM] at 524320 exceeds Buffer [BUF0] size 880 (bits) (20090903/dsopcode-596) +[ 0.744114] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.MEM_._CRS] (Node ffff88013ba44cc0), AE_AML_BUFFER_LIMIT +[ 0.744142] ACPI Error (uteval-0250): Method execution failed [_SB_.MEM_._CRS] (Node ffff88013ba44cc0), AE_AML_BUFFER_LIMIT +[ 0.755111] ACPI Warning: Incorrect checksum in table [OEMB] - 2F, should be 2A (20090903/tbutils-314) +[ 0.772223] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f4c250d8), AE_ALREADY_EXISTS (20101013/psparse-537) +[ 0.775831] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x87 (20110112/tbutils-314) +[ 0.777581] ACPI Warning: Incorrect checksum in table [TAMG] - 0xF9, should be 0xF8 (20110112/tbutils-314) +[ 0.779737] ACPI Warning: Incorrect checksum in table [TAMG] - 0x83, should be 0x82 (20110112/tbutils-314) +[ 0.780967] ACPI Warning: Incorrect checksum in table [TAMG] - FA, should be F9 (20090903/tbutils-314) +[ 0.781225] ACPI Warning: Incorrect checksum in table [TAMG] - 0x10, should be 0x0F (20110112/tbutils-314) +[ 0.781345] ACPI Warning: Incorrect checksum in table [TAMG] - 0xB2, should be 0xB1 (20110112/tbutils-314) +[ 0.782613] ACPI Error (psargs-0359): [RAMB] Namespace lookup failure, AE_NOT_FOUND +[ 0.783246] ACPI Warning: Incorrect checksum in table [TAMG] - 0x7D, should be 0x7C (20100428/tbutils-314) +[ 0.786539] ACPI Warning: Incorrect checksum in table [TAMG] - 0x2D, should be 0x2C (20110112/tbutils-314) +[ 0.787253] ACPI Warning: Incorrect checksum in table [TAMG] - 0x10, should be 0x0F (20100428/tbutils-314) +[ 0.788032] ACPI Warning: Incorrect checksum in table [TAMG] - 0x04, should be 0x03 (20110413/tbutils-314) +[ 0.788418] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88030a048b40), AE_AML_BUFFER_LIMIT +[ 0.788607] ACPI Warning: Incorrect checksum in table [TAMG] - 0xA2, should be 0xA1 (20110112/tbutils-314) +[ 0.790513] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node ffff880079f39f78), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.790526] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT0._BIF] (Node ffff880079f37118), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 0.791560] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x1F (20110112/tbutils-314) +[ 0.794367] ACPI Warning for _PR_.P002._PSD: Return type mismatch - found Integer, expected Package (20090903/nspredef-1006) +[ 0.795423] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x1F (20100428/tbutils-314) +[ 0.805111] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7E (20090903/tbutils-314) +[ 0.810246] [Firmware Bug]: ACPI(Z01I) defines _DOD but not _DOS +[ 0.810687] ACPI Error (dswload-0659): [DD02] Namespace lookup failure, AE_NOT_FOUND +[ 0.810756] ACPI Error (dswload-0659): [EHC1] Namespace lookup failure, AE_NOT_FOUND +[ 0.820565] ACPI Error: [FZHD] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 0.820571] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff880127632b40), AE_NOT_FOUND (20110112/psparse-536) +[ 0.820632] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff880127632cd0), AE_NOT_FOUND (20110112/psparse-536) +[ 0.821065] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff880127634758), AE_NOT_FOUND (20110112/psparse-536) +[ 0.821112] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff8801276348e8), AE_NOT_FOUND (20110112/psparse-536) +[ 0.822836] ACPI Warning: For _SB_.PCI0.PCI2._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 0.831199] ACPI Warning: Incorrect checksum in table [OEMB] - B7, should be B6 (20090903/tbutils-314) +[ 0.860349] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88023704ea40), AE_NOT_FOUND +[ 0.860380] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff8802370590e0), AE_NOT_FOUND +[ 0.860410] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802370522a0), AE_NOT_FOUND +[ 0.860439] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880237052240), AE_NOT_FOUND +[ 0.860468] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880237050de0), AE_NOT_FOUND +[ 0.870147] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff88013ba29e80), AE_NOT_FOUND +[ 0.872036] ACPI Warning: Incorrect checksum in table [OEMB] - EC, should be E3 (20090903/tbutils-314) +[ 0.873454] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +[ 0.875591] ACPI Warning: Incorrect checksum in table [OEMB] - 14, should be 13 (20090903/tbutils-314) +[ 0.877093] ACPI Warning: Incorrect checksum in table [OEMB] - 0x89, should be 0x80 (20100428/tbutils-314) +[ 0.879606] ACPI Error (psargs-0359): [MPEN] Namespace lookup failure, AE_NOT_FOUND +[ 0.879794] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ00._PSL] (Node ffff88015ba4de00), AE_NOT_FOUND +[ 0.888177] ACPI Warning for _SB_.BAT1._BST: Return Package type mismatch at index 2 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 0.890080] ACPI Error: No handler for Region [RAM_] (ffff880133a35a20) [EmbeddedControl] (20100428/evregion-369) +[ 0.890253] ACPI Error: Region EmbeddedControl(0x3) has no handler (20100428/exfldio-293) +[ 0.890421] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.SNC_.SBRT] (Node ffff880133a49620), AE_NOT_EXIST +[ 0.890696] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff880133a385e0), AE_NOT_EXIST +[ 0.892097] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021704e920), AE_NOT_FOUND +[ 0.892124] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880217056700), AE_NOT_FOUND +[ 0.892147] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff880217052180), AE_NOT_FOUND +[ 0.892171] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880217052120), AE_NOT_FOUND +[ 0.892195] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880217050cc0), AE_NOT_FOUND +[ 0.892915] ACPI Warning: Incorrect checksum in table [OEMB] - 0xCE, should be 0xCD (20100428/tbutils-314) +[ 0.899338] ACPI Warning: Incorrect checksum in table [OEMB] - 0xDD, should be 0xD4 (20100428/tbutils-314) +[ 0.900692] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021704e960), AE_NOT_FOUND +[ 0.900729] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880217059000), AE_NOT_FOUND +[ 0.900753] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802170521c0), AE_NOT_FOUND +[ 0.900776] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880217052160), AE_NOT_FOUND +[ 0.900801] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880217050d00), AE_NOT_FOUND +[ 0.905032] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88021304e940), AE_NOT_FOUND +[ 0.905061] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff8802130576a0), AE_NOT_FOUND +[ 0.905085] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802130521a0), AE_NOT_FOUND +[ 0.905110] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880213052140), AE_NOT_FOUND +[ 0.905135] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880213050ce0), AE_NOT_FOUND +[ 0.905920] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.C000.C264] (Node f7024e58), AE_AML_PACKAGE_LIMIT +[ 0.905985] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.C000._PSS] (Node f7024f30), AE_AML_PACKAGE_LIMIT +[ 0.906063] [Firmware Bug]: BIOS needs update for CPU frequency support +[ 0.940265] ACPI Warning: Incorrect checksum in table [TAMG] - 0x14, should be 0x13 (20110112/tbutils-314) +[ 0.940948] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f7421fc0), AE_ALREADY_EXISTS +[ 0.941821] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x91 (20110413/tbutils-314) +[ 0.943511] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x7E (20110413/tbutils-314) +[ 0.944156] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node ffff88013384d720), AE_NOT_FOUND +[ 0.967528] ACPI Warning for _TZ_.THRM._AL0: Return Package has no elements (empty) (20100428/nspredef-456) +[ 0.972652] ACPI Warning: Incorrect checksum in table [OEMB] - FA, should be F7 (20090903/tbutils-314) +[ 0.990917] ACPI Warning for _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.991675] ACPI Warning for _SB_.PCI0.FNC2.PRT1._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 0.992685] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81cf6eb0), AE_NOT_FOUND +[ 1.004972] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node f701c150), AE_NOT_FOUND +[ 1.005015] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node f701c168), AE_NOT_FOUND +[ 1.005055] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node f702f3c0), AE_NOT_FOUND +[ 1.005834] ACPI Warning: Incorrect checksum in table [OEMB] - 0x1D, should be 0x1C (20100428/tbutils-314) +[ 1.009421] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ACAD._PSR] (Node f701aa98), AE_NOT_FOUND +[ 1.020525] ACPI Warning: Incorrect checksum in table [TAMG] - 0xE8, should be 0xE7 (20100428/tbutils-314) +[ 1.020868] ACPI Warning for _PR_.CPU0._PSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +[ 1.021557] ACPI Warning for _PR_.CPU1._PSD: Incorrectly formed Package, attempting repair (20090903/nsrepair-200) +[ 1.023813] ACPI Warning: Incorrect checksum in table [OEMB] - 0x82, should be 0x81 (20100428/tbutils-314) +[ 1.026272] ACPI Warning (processor_throttling-0843): Invalid throttling state, reset +[ 1.027573] ACPI Error: No handler for Region [ERAM] (ffff880133e3e798) [EmbeddedControl] (20090903/evregion-319) +[ 1.027587] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.DOCK._STA] (Node ffff880133e48620), AE_NOT_EXIST +[ 1.027653] ACPI Error (uteval-0250): Method execution failed [_SB_.PCI0.DOCK._STA] (Node ffff880133e48620), AE_NOT_EXIST +[ 1.125427] [Firmware Bug]: No valid trip found +[ 1.158298] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node f701b648), AE_NOT_FOUND +[ 1.167050] ACPI Error: [CDW1] Namespace lookup failure, AE_NOT_FOUND (20110316/psargs-359) +[ 1.167226] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node f4422648), AE_NOT_FOUND (20110316/psparse-536) +[ 1.168945] ACPI Warning: Incorrect checksum in table [OEMB] - 0x04, should be 0xFD (20100428/tbutils-314) +[ 1.174038] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x9B (20100428/tbutils-314) +[ 1.176461] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found. +[ 1.176462] [Firmware Bug]: powernow-k8: Try again with latest BIOS. +[ 1.179893] ACPI Warning: Incorrect checksum in table [ATKG] - 0x81, should be 0x59 (20100428/tbutils-314) +[ 1.183989] [Firmware Bug]: ACPI(PEGD) defines _DOD but not _DOS +[ 1.184923] ACPI Warning: For _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20110413/nspredef-456) +[ 1.186079] ACPI Error: [BRTW] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.186087] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f4c2a588), AE_NOT_FOUND (20110112/psparse-536) +[ 1.187842] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node f7450168), AE_NOT_FOUND +[ 1.187891] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node f74500c0), AE_NOT_FOUND +[ 1.188370] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node f7450150), AE_NOT_FOUND +[ 1.188776] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node f74502b8), AE_NOT_FOUND +[ 1.189190] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node f7450258), AE_NOT_FOUND +[ 1.196055] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f3824270), AE_NOT_FOUND (20110112/psparse-536) +[ 1.210593] ACPI Warning: For _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20101013/nspredef-456) +[ 1.212692] ACPI Warning: For _TZ_.THRM._AL0: Return Package has no elements (empty) (20110112/nspredef-456) +[ 1.214748] ACPI Error: [_T_1] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +[ 1.214761] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node f3023438), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.214775] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node f3023420), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.222641] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node f30235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.222655] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node f30235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.224060] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1._STA] (Node f7023b10), AE_TIME +[ 1.228128] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._REG] (Node f702a570), AE_NOT_FOUND +[ 1.229185] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0._OSC] (Node f70140d8), AE_ALREADY_EXISTS +[ 1.230869] ACPI Warning for _PR_.CPU0._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 1.231049] ACPI Warning for _PR_.CPU1._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 1.231224] ACPI Warning for _PR_.CPU2._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 1.231399] ACPI Warning for _PR_.CPU3._PSS: SubPackage[15,16] - suspicious power dissipation values (20100428/nsrepair2-403) +[ 1.246159] ACPI Error: No handler for Region [ECRM] (f6cedba0) [EmbeddedControl] (20110413/evregion-373) +[ 1.246164] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20110413/exfldio-292) +[ 1.246169] ACPI Error: Method parse/execution failed [_TZ_.RDEC] (Node f442fc60), AE_NOT_EXIST (20110413/psparse-536) +[ 1.246176] ACPI Error: Method parse/execution failed [_TZ_.TZS0._TMP] (Node f442fca8), AE_NOT_EXIST (20110413/psparse-536) +[ 1.270260] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff880137a4e840), AE_NOT_FOUND +[ 1.270297] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff880137a4e860), AE_NOT_FOUND +[ 1.270332] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff880137a3fd00), AE_NOT_FOUND +[ 1.272398] ACPI Error: No handler for Region [ECRM] (f76d0c60) [EmbeddedControl] (20110112/evregion-369) +[ 1.272407] ACPI Error: Method parse/execution failed [_TZ_.RDEC] (Node f742fc60), AE_NOT_EXIST (20110112/psparse-536) +[ 1.272415] ACPI Error: Method parse/execution failed [_TZ_.TZS0._TMP] (Node f742fca8), AE_NOT_EXIST (20110112/psparse-536) +[ 1.280955] ACPI Error: No handler for Region [PCFG] (ffff880137a733f0) [PCI_Config] (20090903/evregion-319) +[ 1.280965] ACPI Error (psparse-0537): Method parse/execution failed [J380._STA] (Node ffff88013712b380), AE_NOT_EXIST +[ 1.314561] ACPI Error: [ECPU] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.314567] ACPI Error: Method parse/execution failed [_TZ_.TZ00._TMP] (Node ffff88011763ca28), AE_NOT_FOUND (20110112/psparse-536) +[ 1.320114] ACPI Warning: Incorrect checksum in table [ATKG] - 0x9D, should be 0xE5 (20110112/tbutils-314) +[ 1.336148] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88012b647200), AE_AML_BUFFER_LIMIT +[ 1.337975] ACPI Error (uteval-0250): Method execution failed [J380._STA] (Node ffff88013712b380), AE_NOT_EXIST +[ 1.371174] ACPI Error: Field [CDW3] at 96 exceeds Buffer [NULL] size 64 (bits) (20090903/dsopcode-596) +[ 1.371180] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88044b85e4a0), AE_AML_BUFFER_LIMIT +[ 1.381411] ACPI Error (psparse-0537): Method parse/execution failed [] (Node ffffffff81a2b040), AE_NOT_FOUND +[ 1.381481] ACPI Error (dswload-0659): [PCI0] Namespace lookup failure, AE_NOT_FOUND +[ 1.384655] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff8801393f91f8 (20090903/exresop-590) +[ 1.384672] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88013ba4c020), AE_AML_OPERAND_TYPE +[ 1.384743] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013ba4d9c0), AE_AML_OPERAND_TYPE +[ 1.398000] [Firmware Bug]: ACPI(Z00P) defines _DOD but not _DOS +[ 1.398053] ACPI: acpi_idle yielding to intel_idleACPI Warning for _TZ_.TZ01._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20100428/nspredef-1059) +[ 1.399160] ACPI Warning for _SB_.PCI0.PT02._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +[ 1.400736] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f7018e58), AE_NOT_FOUND +[ 1.436671] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f7024e58), AE_NOT_FOUND +[ 1.462866] ACPI Warning: _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) 20090521 nspredef-434 +[ 1.480960] ACPI Warning: _SB_.PCI0.FNC2.PRT0._GTF: Return type mismatch - found Integer, expected Buffer 20090521 nspredef-940 +[ 1.488986] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +[ 1.488991] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f702b708), AE_NOT_FOUND +[ 1.489034] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f702b720), AE_NOT_FOUND +[ 1.505441] ACPI Warning: Incorrect checksum in table [TAMG] - 7C, should be 7B (20090903/tbutils-314) +[ 1.507734] ACPI Warning: Incorrect checksum in table [TAMG] - 2D, should be 2C (20090903/tbutils-314) +[ 1.509153] ACPI Warning: Incorrect checksum in table [TAMG] - C0, should be BF (20090903/tbutils-314) +[ 1.512057] ACPI Warning: Incorrect checksum in table [OEMB] - CA, should be C9 (20090903/tbutils-314) +[ 1.515657] ACPI Warning: Incorrect checksum in table [TAMG] - 0xC5, should be 0xC4 (20110112/tbutils-314) +[ 1.518091] ACPI Warning for _SB_.PCI0.IDE1.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 1.528248] ACPI Warning: Incorrect checksum in table [TAMG] - 0x98, should be 0x97 (20100428/tbutils-314) +[ 1.529653] ACPI Warning: Incorrect checksum in table [TAMG] - 0x7C, should be 0x7B (20100428/tbutils-314) +[ 1.535278] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 88 (20090903/tbutils-314) +[ 1.545790] ACPI Warning: Incorrect checksum in table [OEMB] - D0, should be CF (20090903/tbutils-314) +[ 1.555599] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8801b90590c0), AE_NOT_FOUND +[ 1.555652] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8801b90590e0), AE_NOT_FOUND +[ 1.555703] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8801b903b6e0), AE_NOT_FOUND +[ 1.559068] ACPI Warning: Incorrect checksum in table [OEMB] - C5, should be C4 (20090903/tbutils-314) +[ 1.570612] ACPI Error: No handler for Region [PCFG] (ffff8801b9074240) [PCI_Config] (20090903/evregion-319) +[ 1.570624] ACPI Error (psparse-0537): Method parse/execution failed [J380._STA] (Node ffff8801b916ea40), AE_NOT_EXIST +[ 1.586563] ACPI Warning: Incorrect checksum in table [OEMB] - D7, should be D3 (20090903/tbutils-314) +[ 1.590337] ACPI Warning: For _TZ_.THRM._PSL: Return Package has no elements (empty) (20110112/nspredef-456) +[ 1.601784] ACPI Warning: Incorrect checksum in table [OEMB] - 5D, should be 55 (20090903/tbutils-314) +[ 1.605121] ACPI Error: Current brightness invalid (20110112/video-377) +[ 1.605465] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.616034] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +[ 1.616243] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +[ 1.618281] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88015334d9e0), AE_NOT_FOUND +[ 1.620164] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88015334dbc0), AE_NOT_FOUND +[ 1.621081] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88015334db40), AE_NOT_FOUND +[ 1.648580] ACPI Error: [SMS_] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.648589] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3429e58), AE_NOT_FOUND (20110112/psparse-536) +[ 1.662849] ACPI Error (uteval-0250): Method execution failed [J380._STA] (Node ffff8801b916ea40), AE_NOT_EXIST +[ 1.678325] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88022f7bb5e8 (20110112/exresop-590) +[ 1.678342] ACPI Error: Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88022f460190), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 1.678390] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88022f7bb8b8 (20110112/exresop-590) +[ 1.678412] ACPI Error: Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88022f464230), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 1.701482] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff88022704e960), AE_NOT_FOUND +[ 1.701521] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880227059000), AE_NOT_FOUND +[ 1.701557] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff8802270521c0), AE_NOT_FOUND +[ 1.701592] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff880227052160), AE_NOT_FOUND +[ 1.701628] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880227050d00), AE_NOT_FOUND +[ 1.739479] ACPI Warning: Incorrect checksum in table [SSDT] - 0x3F, should be 0x91 (20110112/tbutils-314) +[ 1.761428] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node ffff8800bc234d60), AE_NOT_FOUND +[ 1.782803] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801d4d0ac60), AE_NOT_FOUND +[ 1.783001] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801d4d0ab80), AE_NOT_FOUND +[ 1.784831] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801d4d0ac40), AE_NOT_FOUND +[ 1.786497] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801d4d0ae20), AE_NOT_FOUND +[ 1.787299] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801d4d0ada0), AE_NOT_FOUND +[ 1.849787] ACPI Warning for _PR_.CPU3._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer [] tick_dev_program_event+0x68/0xd0 +[ 1.861558] ACPI Error: [SERN] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +[ 1.861576] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.GBIF] (Node ffff880232c509b0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.861601] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC_.EC__.BAT1._BIF] (Node ffff880232c50d20), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 1.864413] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f3025828), AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +[ 1.893953] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8800b3c50000), AE_NOT_FOUND +[ 1.894002] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8800b3c50020), AE_NOT_FOUND +[ 1.894047] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8800b3c49380), AE_NOT_FOUND +[ 1.900224] ACPI Error: [NPSS] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.900238] ACPI Error: Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88014f9a5140), AE_NOT_FOUND (20110112/psparse-536) +[ 1.900254] ACPI Error: Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88014f9a5028), AE_NOT_FOUND (20110112/psparse-536) +[ 1.900769] ACPI Error: Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88014f9a5118), AE_NOT_FOUND (20110112/psparse-536) +[ 1.901001] ACPI Error: Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88014f9a5370), AE_NOT_FOUND (20110112/psparse-536) +[ 1.901211] ACPI Error: Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88014f9a52d0), AE_NOT_FOUND (20110112/psparse-536) +[ 1.905440] ACPI Warning: For _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 1.907422] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 1.907427] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3431a50), AE_NOT_FOUND (20110112/psparse-536) +[ 1.907445] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3431a68), AE_NOT_FOUND (20110112/psparse-536) +[ 1.911273] ACPI Warning for _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20090903/nspredef-433) +[ 1.929855] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.GTM_] (Node f7414858), AE_AML_PACKAGE_LIMIT +[ 1.929872] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IDE1.CHN1._GTM] (Node f7414798), AE_AML_PACKAGE_LIMIT +[ 1.958776] ACPI Warning for _PR_.CPU0._PSD: +[ 1.958968] ACPI Warning for _PR_.CPU1._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959113] ACPI Warning for _PR_.CPU2._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959252] ACPI Warning for _PR_.CPU3._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959427] ACPI Warning for _PR_.CPU4._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959602] ACPI Warning for _PR_.CPU5._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959776] ACPI Warning for _PR_.CPU6._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.959951] ACPI Warning for _PR_.CPU7._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 1.962612] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801534e5dc0), AE_NOT_FOUND +[ 1.962811] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801534e5ce0), AE_NOT_FOUND +[ 1.964620] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801534e5da0), AE_NOT_FOUND +[ 1.966282] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801534e5f80), AE_NOT_FOUND +[ 1.967081] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801534e5f00), AE_NOT_FOUND +[ 1.974827] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831a50), AE_NOT_FOUND (20110112/psparse-536) +[ 1.974846] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831a68), AE_NOT_FOUND (20110112/psparse-536) +[ 2.001829] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.GTM_] (Node f5423ba0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 2.001850] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.CHN0._GTM] (Node f54239c0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 2.002809] ACPI Error: Method parse/execution failed [_SB_.PCI0.PATA.CHN1._GTM] (Node f5423ac8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 2.006621] ACPI Error (psparse-0537): Method parse/execution failed [CPUT] (Node ffff8801b90570c0), AE_NOT_FOUND +[ 2.006671] ACPI Error (psparse-0537): Method parse/execution failed [PSSC] (Node ffff8801b90570e0), AE_NOT_FOUND +[ 2.006718] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._REG] (Node ffff8801b903fa80), AE_NOT_FOUND +[ 2.022076] ACPI Error: Could not enable SleepButton event (20110112/evxfevnt-198) +[ 2.022090] ACPI Warning: Could not enable fixed event 0x3 (20110112/evxface-197) +[ 2.033653] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f6031468), AE_NOT_FOUND (20110112/psparse-536) +[ 2.033670] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f6031480), AE_NOT_FOUND (20110112/psparse-536) +[ 2.039517] [Firmware Bug]: ACPI: Invalid BIOS _PSS frequency: 0x80000000 MHz +[ 2.045931] ACPI Warning for _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +[ 2.049441] ACPI Warning for _PR_.CPU0._PSD: Return Package type mismatch at index 4 - found [NULL Object Descriptor], expected Integer (20090903/nspredef-1012) +[ 2.068617] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node f3c29e58), AE_NOT_FOUND (20110112/psparse-536) +[ 2.081502] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +[ 2.081508] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff8801534e5c20), AE_NOT_FOUND +[ 2.081585] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff8801534e5b40), AE_NOT_FOUND +[ 2.083171] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff8801534e5c00), AE_NOT_FOUND +[ 2.084838] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff8801534e5de0), AE_NOT_FOUND +[ 2.085644] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff8801534e5d60), AE_NOT_FOUND +[ 2.106307] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dca8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.106326] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcd0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.113330] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f74317b0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.113367] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f74317c8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.132386] ACPI Error: Could not enable SleepButton event (20090903/evxfevnt-193) +[ 2.132392] ACPI Warning: Could not enable fixed event 3 (20090903/evxface-146) +[ 2.149905] ACPI Error: Method parse/execution failed [_SB_.C003.C099._DOD] (Node f30275a0), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 2.173036] ACPI Warning for _SB_._OSC: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 2.173935] ACPI Warning: Incorrect checksum in table [OEMB] - C3, should be C2 (20090903/tbutils-314) +[ 2.200371] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602bf30), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.200380] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d2d0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.206433] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742d018), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.206443] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.222353] ACPI Error: [EABF] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +[ 2.222362] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602d018), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.222372] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.227407] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +[ 2.227411] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f702b7b0), AE_NOT_FOUND +[ 2.227454] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f702b7c8), AE_NOT_FOUND +[ 2.229498] ACPI Warning: Incorrect checksum in table [TAMG] - 0xC6, should be 0xC5 (20100428/tbutils-314) +[ 2.231431] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f602bf60), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.231442] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f602d300), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.250291] ACPI Error: Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff88013762f550), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.250306] ACPI Error: Method parse/execution failed [_SB_.BAT1._BIF] (Node ffff88013762f500), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.270835] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ffff880125e2c708), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.280398] ACPI Error (dswload-0781): [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +[ 2.280410] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff8800b3c2e100), AE_ALREADY_EXISTS +[ 2.280443] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1._BIF] (Node ffff8800b3c2e0c0), AE_ALREADY_EXISTS +[ 2.283579] ACPI Error (psargs-0359): [_T_0] Namespace lookup failure, AE_NOT_FOUND +[ 2.283585] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.BAT1.UBIF] (Node ffff8800b3c2e100), AE_NOT_FOUND +[ 2.283615] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q09] (Node ffff8800b3c410e0), AE_NOT_FOUND +[ 2.288649] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff88023f45dcd0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.288685] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff88023f45dcf8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.294251] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742bf30), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.294262] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d2d0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.324547] ACPI Error: [EABF] Namespace lookup failure, AE_ALREADY_EXISTS (20110413/dswload2-316) +[ 2.324556] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f742d018), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 2.324566] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f742d3a8), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 2.334361] ACPI Error: Attempt to CreateField of length zero (20110112/dsopcode-529) +[ 2.334370] ACPI Error: Method parse/execution failed [_SB_.PCI0.IDE0.RATA] (Node ffff8801376322a8), AE_AML_OPERAND_VALUE (20110112/psparse-536) +[ 2.334384] ACPI Error: Method parse/execution failed [_SB_.PCI0.IDE0.PRT1._GTF] (Node ffff880137632438), AE_AML_OPERAND_VALUE (20110112/psparse-536) +[ 2.336604] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff88013b63c460), AE_AML_PACKAGE_LIMIT +[ 2.384172] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff8801c305dcd0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.384189] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff8801c305dcf8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.440684] ACPI Error (psargs-0359): [SMS_] Namespace lookup failure, AE_NOT_FOUND +[ 2.440692] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SATA.PRT0._SDD] (Node ffff88007db30c60), AE_NOT_FOUND +[ 2.462687] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff880147646cd0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.462711] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff880147646cf8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.468708] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._PDC] (Node f700f180), AE_INVALID_TABLE_LENGTH +[ 2.468963] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU2._PDC] (Node f700f240), AE_INVALID_TABLE_LENGTH +[ 2.478380] [Firmware Bug]: ACPI(NGFX) defines _DOD but not _DOS +[ 2.592359] ACPI Error: Method parse/execution failed [_PR_.CPU0.PPC_] (Node ffff88014f9a4140), AE_NOT_FOUND (20110112/psparse-536) +[ 2.592381] ACPI Error: Method parse/execution failed [_PR_.CPU0._PPC] (Node ffff88014f9a4028), AE_NOT_FOUND (20110112/psparse-536) +[ 2.593071] ACPI Error: Method parse/execution failed [_PR_.CPU1._PPC] (Node ffff88014f9a4118), AE_NOT_FOUND (20110112/psparse-536) +[ 2.593648] ACPI Error: Method parse/execution failed [_PR_.CPU2._PPC] (Node ffff88014f9a4370), AE_NOT_FOUND (20110112/psparse-536) +[ 2.593935] ACPI Error: Method parse/execution failed [_PR_.CPU3._PPC] (Node ffff88014f9a42d0), AE_NOT_FOUND (20110112/psparse-536) +[ 2.634350] ACPI Error: [GTF1] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 2.634355] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3431af8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.634373] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3431b10), AE_NOT_FOUND (20110112/psparse-536) +[ 2.671117] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f2c2d018), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.671128] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f2c2d3a8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.701908] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831af8), AE_NOT_FOUND (20110112/psparse-536) +[ 2.701933] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831b10), AE_NOT_FOUND (20110112/psparse-536) +[ 2.771747] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node f402bf60), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.771758] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node f402d300), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 2.787172] ACPI Warning: For _SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 2.823916] ACPI Warning: _BQC returned an invalid level 20090521 video-629 +[ 2.837958] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f7431858), AE_NOT_FOUND (20110112/psparse-536) +[ 2.837994] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f7431870), AE_NOT_FOUND (20110112/psparse-536) +[ 2.838171] ACPI Warning for _SB_.BAT0._BIF: Return Package type mismatch at index 9 - found [NULL Object Descriptor], expected String/Buffer (20090903/nspredef-1012) +[ 2.851027] ACPI Warning: _BQC returned an invalid level (20110316/video-473) +[ 2.860339] ACPI Error: Method parse/execution failed [_SB_.C003.C098._DOD] (Node f4427588), AE_AML_PACKAGE_LIMIT (20110413/psparse-536) +[ 2.861808] ACPI Error: [_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 2.861812] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node ffff88015746e168), AE_NOT_FOUND (20110112/psparse-536) +[ 2.870589] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880137632c80), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 2.906610] ACPI Warning: For _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found Integer, expected Package (20110413/nspredef-1053) +[ 2.949708] ACPI Error: Field [CDW3] at 96 exceeds Buffer [NULL] size 64 (bits) (20110112/dsopcode-597) +[ 2.949716] ACPI Error: Method parse/execution failed [_SB_._OSC] (Node ffff880297016ca8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 3.005123] ACPI Error (psparse-0537): Method parse/execution failed [_SB_._OSC] (Node ffff88122fc1ea00), AE_NOT_FOUND +[ 3.033154] ACPI Warning: Incorrect checksum in table [OEMB] - 0x87, should be 0x84 (20100428/tbutils-314) +[ 3.112435] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node f74257c8), AE_NOT_FOUND +[ 3.112465] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node f742c210), AE_NOT_FOUND +[ 3.112494] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node f7427a20), AE_NOT_FOUND +[ 3.112522] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f74279d8), AE_NOT_FOUND +[ 3.112549] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f7427690), AE_NOT_FOUND +[ 3.139648] [Firmware Bug]: ACPI(XVS0) defines _DOD but not _DOS +[ 3.208822] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C098._DOD] (Node ffff88007cf30b60), AE_AML_PACKAGE_LIMIT +[ 3.223518] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880236c469a0), AE_AML_PACKAGE_LIMIT +[ 3.382436] ACPI Warning: Incorrect checksum in table [TCPA] - 00, should be 7F (20090903/tbutils-314) +[ 3.382442] ACPI Warning: Incorrect checksum in table [_RAT] - 00, should be 63 (20090903/tbutils-314) +[ 3.420672] ACPI Warning for _TZ_.THRM._PSL: Return Package type mismatch at index 0 - found Processor, expected Reference (20100428/nspredef-1059) +[ 3.480092] ACPI Warning for _SB_.PCI0.SAT0.PRT0._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 3.490098] ACPI Warning for _SB_.PCI0.SAT0.PRT1._GTF: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1006) +[ 3.490832] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff88013bc2bdc0), AE_AML_BUFFER_LIMIT +[ 3.490852] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff88013bc2bd40), AE_AML_BUFFER_LIMIT +[ 3.502273] ACPI Error: Could not enable SleepButton event (20100428/evxfevnt-205) +[ 3.601126] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f7420690), AE_AML_PACKAGE_LIMIT +[ 3.644168] ACPI Warning: Incorrect checksum in table [TCPA] - 0xF8, should be 0x9C (20110413/tbutils-314) +[ 3.663829] [Firmware Bug]: ACPI(GFX0) defines _DOD but not _DOS +[ 3.675814] ACPI Error: Evaluating _BCM failed (20100428/video-532) +[ 3.868794] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._SDD] (Node f3831b58), AE_NOT_FOUND (20110112/psparse-536) +[ 3.868812] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT0._GTF] (Node f3831b70), AE_NOT_FOUND (20110112/psparse-536) +[ 3.983031] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff88021d459028), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 3.983040] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff88021d459618), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 4.002664] [Firmware Bug]: ACPI(EVGA) defines _DOD but not _DOS +[ 4.046031] ACPI Warning: Incorrect checksum in table [OEMB] - 4A, should be 47 (20090903/tbutils-314) +[ 4.115197] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff88021d458eb0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 4.115206] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff88021d4594b0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 4.190434] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342f8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 4.198699] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._SDD] (Node f3831c00), AE_NOT_FOUND (20110112/psparse-536) +[ 4.198716] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT0.PRT1._GTF] (Node f3831c18), AE_NOT_FOUND (20110112/psparse-536) +[ 4.230508] ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20090903/evregion-424) +[ 4.230527] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR1] (Node f7018ed0), AE_TIME +[ 4.230612] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV.ECR2] (Node f7018ee8), AE_TIME +[ 4.230643] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f7018fa8), AE_TIME +[ 4.230672] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f7018fd8), AE_TIME +[ 4.230701] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f70186f0), AE_TIME +[ 4.230730] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ISAB.ECDV._Q66] (Node f7018eb8), AE_TIME +[ 4.576415] ACPI Error: No handler for Region [ERAM] (f4830d50) [EmbeddedControl] (20110112/evregion-369) +[ 4.576437] ACPI Error: Method parse/execution failed [_SB_.PCI0.SBRG.EC0_._REG] (Node f48326d8), AE_NOT_EXIST (20110112/psparse-536) +[ 4.638115] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff880220c5b028), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 4.638127] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff880220c5b618), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 4.838935] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.C2E8] (Node f701b108), AE_AML_PACKAGE_LIMIT +[ 4.838984] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.C2E7] (Node f701b0f0), AE_AML_PACKAGE_LIMIT +[ 4.839033] ACPI Error (psparse-0537): Method parse/execution failed [_TZ_.TZ2_._TMP] (Node f701b7c8), AE_AML_PACKAGE_LIMIT +[ 4.890970] ACPI Error: Method parse/execution failed [_SB_.EEAC] (Node ffff880126e43f50), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 4.890980] ACPI Error: Method parse/execution failed [_SB_.BAT2._STA] (Node ffff880126e44550), AE_ALREADY_EXISTS (20110413/psparse-536) +[ 4.983204] [Firmware Bug]: ACPI(MXM3) defines _DOD but not _DOS +[ 5.150560] ACPI Warning for _SB_.BAT0._BIF: Return Package type mismatch at index 12 - found Integer, expected String/Buffer (20090903/nspredef-1012) +[ 5.332663] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f4425450), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 6.224974] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node f3423438), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.224987] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node f3423420), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.227917] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node f34235b8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.227930] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node f34235a0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.732287] ACPI Error: [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dswload-802) +[ 6.732310] ACPI Error: Method parse/execution failed [_SB_.BAT1.UBIF] (Node dd028fc0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.732334] ACPI Error: Method parse/execution failed [_SB_.BAT1._BIF] (Node dd028f90), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 6.773266] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20101013/dsfield-143) +[ 6.773285] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node ddc25ca8), AE_ALREADY_EXISTS (20101013/psparse-537) +[ 7.365139] ACPI Error: No handler for Region [IPMI] (ffff8805ffa37240) [IPMI] (20110112/evregion-369) +[ 7.365150] ACPI Error: Region IPMI(0x7) has no handler (20110112/exfldio-292) +[ 7.365161] ACPI Error: Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff8805ffa36b18), AE_NOT_EXIST (20110112/psparse-536) +[ 7.365181] ACPI Error: Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff8805ffa36a78), AE_NOT_EXIST (20110112/psparse-536) +[ 8.137284] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e720), AE_TIME +[ 8.137317] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e7f8), AE_TIME +[ 8.137344] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702ea08), AE_TIME +[ 8.137370] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019ca8), AE_TIME +[ 8.227953] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C098._DOD] (Node f7021588), AE_AML_PACKAGE_LIMIT +[ 8.316300] [Firmware Bug]: ACPI(VGA0) defines _DOD but not _DOS +[ 8.794633] ACPI Error: Method parse/execution failed [_SB_.PCI0._OSC] (Node f5824ab0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 9.141980] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e690), AE_TIME +[ 9.142017] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e768), AE_TIME +[ 9.142046] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702e978), AE_TIME +[ 9.142076] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019420), AE_TIME +[ 9.267040] ACPI Warning for _SB_.SPM_._PMD: Return Package type mismatch at index 0 - found String, expected Reference (20090903/nspredef-1012) +[ 9.391036] ACPI Error: Method parse/execution failed [_SB_.PCI0.IBCM] (Node f3828738), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 9.391049] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node f3824b28), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 9.391061] ACPI Error: Evaluating _BCM failed (20110112/video-365) +[ 9.393479] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012d8cfee8 (20110112/exresop-590) +[ 9.393498] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88012f83e6b8), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 9.393510] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88012f83e690), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 9.394098] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012d8cfd38 (20110112/exresop-590) +[ 9.394109] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88012f83e6e0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 9.394118] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88012f83e668), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN0._GTM] (Node ffff88007af33780), AE_NOT_FOUND (20110112/psparse-536) +[ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SAT1.CHN1._GTM] (Node ffff88007af33910), AE_NOT_FOUND (20110112/psparse-536) +[ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN0._GTM] (Node ffff88007af32b68), AE_NOT_FOUND (20110112/psparse-536) +[ 9.957372] ACPI Error: Method parse/execution failed [_SB_.PCI0.SATA.CHN1._GTM] (Node ffff88007af32cf8), AE_NOT_FOUND (20110112/psparse-536) +[ 10.080352] [Firmware Bug]: ACPI(VGA) defines _DOD but not _DOS +[ 10.120967] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023bcba438 (20110112/exresop-590) +[ 10.120977] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023f45edc0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 10.121007] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023bcba1b0 (20110112/exresop-590) +[ 10.121018] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.GFX0._DSM] (Node ffff88023f474370), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 10.194089] ACPI Warning for _SB_.PCI0.PCIB._PRT: Return Package has no elements (empty) (20100428/nspredef-456) +[ 10.289821] ACPI Error (psargs-0359): [_PR_.CPU0._CST] Namespace lookup failure, AE_NOT_FOUND +[ 10.289828] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.CPU1._CST] (Node f70c3288), AE_NOT_FOUND +[ 10.344782] ACPI Error: SMBus or IPMI write requires Buffer of length 42, found length 20 (20090903/exfield-286) +[ 10.344788] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._GHL] (Node ffff88122fc1ece0), AE_AML_BUFFER_LIMIT +[ 10.344812] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PMI0._PMC] (Node ffff88122fc1ec60), AE_AML_BUFFER_LIMIT +[ 10.380244] ACPI Warning (nspredef-0357): _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) [20080926] +[ 10.680422] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff880117642ed8), AE_AML_INFINITE_LOOP (20110112/psparse-536) +[ 10.692650] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node f702e738), AE_TIME +[ 10.692684] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f702e810), AE_TIME +[ 10.692710] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f702e840), AE_TIME +[ 10.692735] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702ea50), AE_TIME +[ 10.692761] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e708), AE_TIME +[ 10.708822] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f7427738), AE_TIME +[ 10.708876] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f7427810), AE_TIME +[ 10.708908] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f7427a20), AE_TIME +[ 10.708939] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f742c078), AE_TIME +[ 10.724353] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880213050d00), AE_TIME +[ 10.724416] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880213050e20), AE_TIME +[ 10.724449] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node ffff8802130520e0), AE_TIME +[ 10.724482] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node ffff8802130573c0), AE_TIME +[ 11.195653] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f702e8a0), AE_TIME +[ 11.195680] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f702ec90), AE_TIME +[ 11.383565] ACPI Error: Method parse/execution failed [_SB_.C003.C098._DOD] (Node ffff880137636938), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 11.660551] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR2] (Node f702e6a8), AE_TIME +[ 11.660591] ACPI Error (psparse-0537): Method parse/execution failed [ECRW] (Node f702e780), AE_TIME +[ 11.660615] ACPI Error (psparse-0537): Method parse/execution failed [ECG1] (Node f702e7b0), AE_TIME +[ 11.660638] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node f702e9c0), AE_TIME +[ 11.660661] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node f702e678), AE_TIME +[ 11.800514] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8801376342a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 11.880473] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012125f558 (20110413/exresop-590) +[ 11.880998] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012125f3a8 (20110413/exresop-590) +[ 11.915871] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.SWFS] (Node ffff880226c49320), AE_AML_INFINITE_LOOP +[ 11.915905] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.RBYT] (Node ffff880226c493c0), AE_AML_INFINITE_LOOP +[ 11.915932] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.SECV] (Node ffff880226c4a0e0), AE_AML_INFINITE_LOOP +[ 11.915960] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.RVLT] (Node ffff880226c49b00), AE_AML_INFINITE_LOOP +[ 12.160904] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f702e810), AE_TIME +[ 12.160929] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f702ec00), AE_TIME +[ 12.167076] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff8800b1753048 (20090903/exresop-590) +[ 12.167089] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff8800b3c44ca0), AE_AML_OPERAND_TYPE +[ 12.167143] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff8800b3c44c80), AE_AML_OPERAND_TYPE +[ 12.167205] ACPI Warning: Evaluating _BQC failed (20090903/video-641) +[ 12.242368] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012ea6e6c0 (20110413/exresop-590) +[ 12.242387] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node ffff88013113f6b8), AE_AML_OPERAND_TYPE (20110413/psparse-536) +[ 12.242397] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node ffff88013113f690), AE_AML_OPERAND_TYPE (20110413/psparse-536) +[ 12.242409] ACPI Warning: Evaluating _BQC failed (20110413/video-484) +[ 12.242974] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88012ea6e5e8 (20110413/exresop-590) +[ 12.242986] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02.SBCM] (Node ffff88013113f6e0), AE_AML_OPERAND_TYPE (20110413/psparse-536) +[ 12.242994] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BCM] (Node ffff88013113f668), AE_AML_OPERAND_TYPE (20110413/psparse-536) +[ 12.243002] ACPI Error: Evaluating _BCM failed (20110413/video-365) +[ 12.361137] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.C003.C09D._DOD] (Node ffff88013b630c00), AE_AML_PACKAGE_LIMIT +[ 12.390421] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880213050f00), AE_TIME +[ 12.390446] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880213052440), AE_TIME +[ 12.553637] ACPI Warning: For _SB_.PCI0.P0P2.PEGP._DOD: Return type mismatch - found Integer, expected Package (20110112/nspredef-1053) +[ 12.838979] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20110112/evregion-474) +[ 12.841008] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain ACPI Warning: _BQC returned an invalid level (20110112/video-473) +[ 13.024512] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f7425450), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 13.396787] ACPI Error: Method parse/execution failed [_SB_.ADP1._PSR] (Node ffff88011763ba00), AE_TIME (20110112/psparse-536) +[ 13.445954] ACPI Error: Field [D128] at 1040 exceeds Buffer [NULL] size 160 (bits) (20110112/dsopcode-597) +[ 13.445980] ACPI Error: Method parse/execution failed [_SB_.WMID.HWMC] (Node f742a8b8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 13.446019] ACPI Error: Method parse/execution failed [_SB_.WMID.WMAD] (Node f742aac8), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 13.452167] ACPI Error (psargs-0359): [_PR_.C001] Namespace lookup failure, AE_NOT_FOUND +[ 13.452177] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_.TPAF] (Node f702bde0), AE_NOT_FOUND +[ 13.452213] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_.TBOM] (Node f702bdf8), AE_NOT_FOUND +[ 13.452247] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPC0.EC0_._Q1D] (Node f702ba98), AE_NOT_FOUND +[ 14.013275] ACPI Warning: _BQC returned an invalid level (20110112/video-473) +[ 14.175645] ACPI Error: Method parse/execution failed [_SB_.PCI0.OVGA.DD03.GBQC] (Node f44247e0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 14.175656] ACPI Error: Method parse/execution failed [_SB_.PCI0.OVGA.DD03._BQC] (Node f44247c8), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 14.175667] ACPI Warning: Evaluating _BQC failed (20110112/video-484) +[ 14.885219] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88013c6b58b8 (20110112/exresop-590) +[ 14.885234] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88013f849eb0), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 14.885277] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88013c6b5828 (20110112/exresop-590) +[ 14.885289] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88013f86f668), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 15.027464] ACPI Error (psparse-0537): Method parse/execution failed [_PR_.PPCE] (Node ffff880075137920), AE_NOT_FOUND +[ 15.027505] ACPI Error (psparse-0537): Method parse/execution failed [EV4_] (Node ffff880075140660), AE_NOT_FOUND +[ 15.027542] ACPI Error (psparse-0537): Method parse/execution failed [SMIE] (Node ffff88007513b180), AE_NOT_FOUND +[ 15.027579] ACPI Error (psparse-0537): Method parse/execution failed [NEVT] (Node ffff88007513b120), AE_NOT_FOUND +[ 15.027616] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV._Q66] (Node ffff880075139cc0), AE_NOT_FOUND +[ 15.287082] ACPI Warning: _BQC returned an invalid level (20100428/video-640) +[ 15.395484] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS +[ 15.846531] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff8800b3840360), AE_AML_PACKAGE_LIMIT +[ 16.336080] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.EC0_._Q33] (Node f70244b0), AE_TIME +[ 16.592600] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.SEFA] (Node ffff880226c4a120), AE_AML_INFINITE_LOOP +[ 16.592628] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.ASOC.RFAN] (Node ffff880226c49bc0), AE_AML_INFINITE_LOOP +[ 16.719798] ACPI Warning for _SB_.PCI0.VID2._DOD: Return Package has no elements (empty) (20090903/nspredef-433) +[ 16.942589] ACPI Error (dswload-0802): [_T_0] Namespace lookup failure, AE_ALREADY_EXISTS +[ 16.942606] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.OVGA.DD03.GBQC] (Node ffff8800b7e3c6e0), AE_ALREADY_EXISTS +[ 16.942654] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.OVGA.DD03._BQC] (Node ffff8800b7e3c6c0), AE_ALREADY_EXISTS +[ 17.125601] ACPI Error: Needed [Buffer/String/Package], found [Integer] eee27810 (20110112/exresop-590) +[ 17.125618] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node f7431fa8), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 17.125669] ACPI Error: Needed [Buffer/String/Package], found [Integer] eee27780 (20110112/exresop-590) +[ 17.125690] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node f7445c78), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 17.802564] ACPI Error: Method parse/execution failed [_SB_.WMID.HWMC] (Node ffff8801ffc5c078), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 17.802574] ACPI Error: Method parse/execution failed [_SB_.WMID.WMAD] (Node ffff8801ffc5c258), AE_AML_BUFFER_LIMIT (20110112/psparse-536) +[ 17.847665] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node f444ebe8), AE_NOT_FOUND (20110112/psparse-536) +[ 17.985672] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.IBCM] (Node ffff8800b3832600), AE_AML_BUFFER_LIMIT +[ 17.985723] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD03._BCM] (Node ffff8800b382b840), AE_AML_BUFFER_LIMIT +[ 18.054842] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880133a777e0 (20110112/exresop-590) +[ 18.054860] ACPI Error: Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff880137659190), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 18.054909] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880133a776c0 (20110112/exresop-590) +[ 18.054932] ACPI Error: Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013765d230), AE_AML_OPERAND_TYPE (20110112/psparse-536) +[ 18.353938] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_.GBQC] (Node ffff88013762f708), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 18.353954] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD_._BQC] (Node ffff88013762f6e0), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 18.367485] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1.GBQC] (Node ffff88013762f988), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 18.367501] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEGP.VGA_.LCD1._BQC] (Node ffff88013762f960), AE_ALREADY_EXISTS (20110112/psparse-536) +[ 18.720899] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f70206d8), AE_AML_PACKAGE_LIMIT +[ 19.086127] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f702e6a8), AE_TIME +[ 19.086176] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f702e780), AE_TIME +[ 19.086202] ACPI Error (psparse-0537): Method parse/execution failed [EC0A] (Node f702e990), AE_TIME +[ 19.086228] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AMW0._WED] (Node f7019fd8), AE_TIME +[ 19.408610] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node f74256a8), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 20.135790] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023b491318 (20110316/exresop-590) +[ 20.135804] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DSM] (Node ffff88023ec61eb0), AE_AML_OPERAND_TYPE (20110316/psparse-536) +[ 20.135849] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff88023b491708 (20110316/exresop-590) +[ 20.135864] ACPI Error: Method parse/execution failed [_SB_.PCI0.PEG1.GFX0._DSM] (Node ffff88023ec77668), AE_AML_OPERAND_TYPE (20110316/psparse-536) +[ 20.149010] ACPI Error: Needed [Integer/String/Buffer], found [Package] f741ed48 (20100428/exresop-422) +[ 20.149032] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P2.PEGP.LCD_._BQC] (Node f741f978), AE_AML_OPERAND_TYPE +[ 20.149063] ACPI Warning: Evaluating _BQC failed (20100428/video-651) +[ 20.298134] [Firmware Bug]: _BCQ is used instead of _BQC +[ 20.342464] ACPI Warning: _BQC returned an invalid level (20110413/video-473) +[ 20.435766] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work. +[ 20.634744] ACPI Warning for _SB_.PCI0.GFX0.DD02._BQC: Return type mismatch - found Reference, expected Integer (20100428/nspredef-1053) +[ 21.460488] ACPI Error: Method parse/execution failed [_SB_.PCI0.GFX0._DOD] (Node ffff880133632c80), AE_AML_PACKAGE_LIMIT (20110112/psparse-536) +[ 21.562484] ACPI Error: Needed [Buffer/String/Package], found [Integer] f7260370 (20090903/exresop-590) +[ 21.562496] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02.GBQC] (Node f7017a68), AE_AML_OPERAND_TYPE +[ 21.562544] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.GFX0.DD02._BQC] (Node f7017a50), AE_AML_OPERAND_TYPE +[ 22.154348] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node f74276a8), AE_TIME +[ 22.154443] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node f7427780), AE_TIME +[ 22.154516] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node f7427828), AE_TIME +[ 22.154587] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node f7427c18), AE_TIME +[ 24.824888] [Firmware Bug]: ACPI(IGPU) defines _DOD but not _DOS +[ 25.859931] ACPI Error: Needed [Buffer/String/Package], found [Integer] ffff880139af5240 (20090903/exresop-590) +[ 25.859949] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.VGA_._DSM] (Node ffff88013ba4c0e0), AE_AML_OPERAND_TYPE +[ 25.860025] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.P0P1.VGA_._DSM] (Node ffff88013ba4da80), AE_AML_OPERAND_TYPE +[ 26.653079] ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474) +[ 26.653190] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880226c54ce0), AE_TIME +[ 26.653252] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880226c54e00), AE_TIME +[ 26.653283] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880226c54ee0), AE_TIME +[ 26.653307] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880226c56420), AE_TIME +[ 26.874386] ACPI Warning: _BQC returned an invalid level (20090903/video-631) +[ 29.470614] ACPI Warning for _SB_.PCI0.GFX0.DD03._BQC: Return type mismatch - found Reference, expected Integer (20100428/nspredef-1053) +[ 30.140339] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff880217050ce0), AE_TIME +[ 30.140421] ACPI Error (psparse-0537): Method parse/execution failed [ECRB] (Node ffff880217050e00), AE_TIME +[ 30.140448] ACPI Error (psparse-0537): Method parse/execution failed [ECG5] (Node ffff880217050ee0), AE_TIME +[ 30.140475] ACPI Error (psparse-0537): Method parse/execution failed [_SB_.AC__._PSR] (Node ffff880217052420), AE_TIME +[ 42.490181] ACPI Error: [_SB_.VDRV] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) +[ 42.490202] ACPI Error: Method parse/execution failed [_SB_.PCI0.LPC0.H_EC._Q51] (Node ffff88003d9b1e60), AE_NOT_FOUND (20110112/psparse-536) +[ 44.661543] ACPI Warning for _SB_.PCI0.GFX0.DD01._BCL: Return type mismatch - found Integer, expected Package (20090903/nspredef-1006) +[ 50.737630] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMI: Excess arguments - needs 1, found 2 (20090903/nspredef-303) +[ 50.737686] ACPI Warning for _SB_.PCI0.AGP_.VID_.MXMS: Excess arguments - needs 1, found 2 (20090903/nspredef-303) diff -Nru fwts-14.02.00/fwts-test/klog-0001/test-0001.sh fwts-14.03.00/fwts-test/klog-0001/test-0001.sh --- fwts-14.02.00/fwts-test/klog-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog against known failure patterns" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0001/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/klog-0001/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0001/test-0002.sh fwts-14.03.00/fwts-test/klog-0001/test-0002.sh --- fwts-14.02.00/fwts-test/klog-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog summary table against known failure patterns" +NAME=test-0002.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0001/klog.txt klog - | grep summary | sed 's/line: [0-9]*//' | cut -c7- > $TMPLOG +grep -v "log line:" $FWTSTESTDIR/klog-0001/klog-0002.log | diff $TMPLOG - >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0001/test-0003.sh fwts-14.03.00/fwts-test/klog-0001/test-0003.sh --- fwts-14.02.00/fwts-test/klog-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog against known failure rate" +NAME=test-0003.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0001/klog.txt klog - | grep "unique errors in kernel log" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/klog-0001/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0001/testcase.txt fwts-14.03.00/fwts-test/klog-0001/testcase.txt --- fwts-14.02.00/fwts-test/klog-0001/testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0001/testcase.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Test fwts klog test against real kernel log messages diff -Nru fwts-14.02.00/fwts-test/klog-0002/klog-0001.log fwts-14.03.00/fwts-test/klog-0002/klog-0001.log --- fwts-14.02.00/fwts-test/klog-0002/klog-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/klog-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,105 @@ +klog klog: Scan kernel log for errors and warnings. +klog ---------------------------------------------------------- +klog Test 1 of 1: Kernel log error check. +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 0.408874] CPU1: Temperature above +klog threshold, cpu clock throttled (total events = 1) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogBiosIrqRoutingBug: Test 1, CRITICAL +klog Kernel message: [ 0.728985] Disabling IRQ #15 +klog +klog ADVICE: The kernel detected an irq storm. This is most +klog probably an IRQ routing bug. +klog +klog FAILED [CRITICAL] KlogBiosIrqRoutingBug: Test 1, CRITICAL +klog Kernel message: [ 0.734767] Disabling IRQ #11 +klog +klog ADVICE: The kernel detected an irq storm. This is most +klog probably an IRQ routing bug. +klog +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 0.768555] CPU3: Temperature above +klog threshold, cpu clock throttled (total events = 1) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 1.128275] CPU5: Temperature above +klog threshold, cpu clock throttled (total events = 1) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 1.487778] CPU7: Temperature above +klog threshold, cpu clock throttled (total events = 1) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogBiosIrqRoutingBug: Test 1, CRITICAL +klog Kernel message: [ 2.131632] Disabling IRQ #16 +klog +klog ADVICE: The kernel detected an irq storm. This is most +klog probably an IRQ routing bug. +klog +klog FAILED [CRITICAL] KlogBiosIrqRoutingBug: Test 1, CRITICAL +klog Kernel message: [ 3.220411] Disabling IRQ #18 +klog +klog ADVICE: The kernel detected an irq storm. This is most +klog probably an IRQ routing bug. +klog +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 10.027255] CPU0: Temperature above +klog threshold, cpu clock throttled (total events = 1) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogThermalOverrun: Test 1, CRITICAL +klog Kernel message: [ 11.592319] CPU1: Temperature above +klog threshold, cpu clock throttled (total events = 2) +klog +klog ADVICE: Test caused CPU temperature above critical +klog threshold. The CPU has been throttled to run slower +klog because of over-heating above the critical threshold. CPU +klog throttling will be turned off once the CPU has cooled +klog sufficiently. Frequent throttling may indicate poor +klog thermal design on the machine. +klog +klog FAILED [CRITICAL] KlogBiosIrqRoutingBug: Test 1, CRITICAL +klog Kernel message: [ 17.353310] Disabling IRQ #10 +klog +klog ADVICE: The kernel detected an irq storm. This is most +klog probably an IRQ routing bug. +klog +klog Found 11 unique errors in kernel log. +klog +klog ========================================================== +klog 0 passed, 11 failed, 0 warning, 0 aborted, 0 skipped, 0 +klog info only. +klog ========================================================== diff -Nru fwts-14.02.00/fwts-test/klog-0002/klog-0002.log fwts-14.03.00/fwts-test/klog-0002/klog-0002.log --- fwts-14.02.00/fwts-test/klog-0002/klog-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/klog-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,34 @@ +summary +summary 0 passed, 11 failed, 0 warning, 0 aborted, 0 skipped, 0 +summary info only. +summary +summary Test Failure Summary +summary ========================================================== +summary +summary Critical failures: 11 +summary klog: CRITICAL Kernel message: [ 0.408874] CPU1: Temperature above threshold, cpu clock throttled (total events = 1) +summary klog: CRITICAL Kernel message: [ 0.728985] Disabling IRQ #15 +summary klog: CRITICAL Kernel message: [ 0.734767] Disabling IRQ #11 +summary klog: CRITICAL Kernel message: [ 0.768555] CPU3: Temperature above threshold, cpu clock throttled (total events = 1) +summary klog: CRITICAL Kernel message: [ 1.128275] CPU5: Temperature above threshold, cpu clock throttled (total events = 1) +summary klog: CRITICAL Kernel message: [ 1.487778] CPU7: Temperature above threshold, cpu clock throttled (total events = 1) +summary klog: CRITICAL Kernel message: [ 2.131632] Disabling IRQ #16 +summary klog: CRITICAL Kernel message: [ 3.220411] Disabling IRQ #18 +summary klog: CRITICAL Kernel message: [ 10.027255] CPU0: Temperature above threshold, cpu clock throttled (total events = 1) +summary klog: CRITICAL Kernel message: [ 11.592319] CPU1: Temperature above threshold, cpu clock throttled (total events = 2) +summary klog: CRITICAL Kernel message: [ 17.353310] Disabling IRQ #10 +summary +summary High failures: NONE +summary +summary Medium failures: NONE +summary +summary Low failures: NONE +summary +summary Other failures: NONE +summary +summary Test |Pass |Fail |Abort|Warn |Skip |Info | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary klog | | 11| | | | | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary Total: | 0| 11| 0| 0| 0| 0| +summary ---------------+-----+-----+-----+-----+-----+-----+ diff -Nru fwts-14.02.00/fwts-test/klog-0002/klog-0003.log fwts-14.03.00/fwts-test/klog-0002/klog-0003.log --- fwts-14.02.00/fwts-test/klog-0002/klog-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/klog-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +klog Found 11 unique errors in kernel log. diff -Nru fwts-14.02.00/fwts-test/klog-0002/klog.txt fwts-14.03.00/fwts-test/klog-0002/klog.txt --- fwts-14.02.00/fwts-test/klog-0002/klog.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/klog.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,11 @@ +[ 0.408874] CPU1: Temperature above threshold, cpu clock throttled (total events = 1) +[ 0.728985] Disabling IRQ #15 +[ 0.734767] Disabling IRQ #11 +[ 0.768555] CPU3: Temperature above threshold, cpu clock throttled (total events = 1) +[ 1.128275] CPU5: Temperature above threshold, cpu clock throttled (total events = 1) +[ 1.487778] CPU7: Temperature above threshold, cpu clock throttled (total events = 1) +[ 2.131632] Disabling IRQ #16 +[ 3.220411] Disabling IRQ #18 +[ 10.027255] CPU0: Temperature above threshold, cpu clock throttled (total events = 1) +[ 11.592319] CPU1: Temperature above threshold, cpu clock throttled (total events = 2) +[ 17.353310] Disabling IRQ #10 diff -Nru fwts-14.02.00/fwts-test/klog-0002/test-0001.sh fwts-14.03.00/fwts-test/klog-0002/test-0001.sh --- fwts-14.02.00/fwts-test/klog-0002/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog against known common failure patterns (was the dmesg_common test)" +NAME=test-0001.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0002/klog.txt klog - | grep "^[0-9]*[ ]*klog" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/klog-0002/klog-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0002/test-0002.sh fwts-14.03.00/fwts-test/klog-0002/test-0002.sh --- fwts-14.02.00/fwts-test/klog-0002/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog against known common failure patterns (was the dmesg_common test)" +NAME=test-0002.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0002/klog.txt klog - | grep summary | sed 's/line: [0-9]*//' | cut -c7- > $TMPLOG +grep -v "log line:" $FWTSTESTDIR/klog-0002/klog-0002.log | diff $TMPLOG - >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0002/test-0003.sh fwts-14.03.00/fwts-test/klog-0002/test-0003.sh --- fwts-14.02.00/fwts-test/klog-0002/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test klog against known common failure patterns (was the dmesg_common test)" +NAME=test-0003.sh +TMPLOG=$TMP/klog.log.$$ + +$FWTS --log-format="%line %owner " -w 80 -j $FWTSTESTDIR/../data --klog=$FWTSTESTDIR/klog-0002/klog.txt klog - | grep "errors in kernel log" | grep "Found" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/klog-0002/klog-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/klog-0002/testcase.txt fwts-14.03.00/fwts-test/klog-0002/testcase.txt --- fwts-14.02.00/fwts-test/klog-0002/testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/klog-0002/testcase.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Test klog against known common failure patterns (was the dmesg_common test) diff -Nru fwts-14.02.00/fwts-test/method-0001/acpidump-0001.log fwts-14.03.00/fwts-test/method-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/method-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/method-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1759 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 . $TMPLOG +diff $TMPLOG $FWTSTESTDIR/method-0001/method-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/oops-0001/oops-0001.log fwts-14.03.00/fwts-test/oops-0001/oops-0001.log --- fwts-14.02.00/fwts-test/oops-0001/oops-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/oops-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1546 @@ +oops oops: Scan kernel log for Oopses. +oops ---------------------------------------------------------- +oops Test 1 of 1: Kernel log oops check. +oops Found OOPS (1): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0x8a/0x130 +oops *pde = af517067 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:14.1/host9/target9:0:1/9:0:1:0/block/sdh/dev +oops Modules linked in: snd_seq snd_timer snd_seq_device radeon(+) ttm drm_kms_helper fbcon tileblit font bitblit softcursor snd soundcore drm agpgart i2c_algo_bit shpchp joydev snd_page_alloc r8169 vga16fb usb_storage vgastate mii i2c_piix4 usbhid k8temp lp parport +oops +oops Pid: 410, comm: plymouthd Not tainted (2.6.32-13-generic #18-Ubuntu) A780GM-A +oops EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +oops EIP is at __mutex_lock_slowpath+0x8a/0x130 +oops EAX: 00000000 EBX: f63f727c ECX: f63f7284 EDX: f6945ec4 +oops ESI: f63f7280 EDI: f63f728c EBP: f6945edc ESP: f6945eb8 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 410, ti=f6944000 task=f649a670 task.ti=f6944000) +oops Stack: +oops 00000000 f63f7284 f649a670 f63f7284 00000000 f63f7000 f63f727c f62b96c0 +oops <0> f63f727c f6945eec c05a4f35 f62b96c0 f62b96c0 f6945f00 f81eb123 f62b96c0 +oops <0> f64dd000 f63f7000 f6945f44 f81e2ecf 00000001 f81f2365 f81f1980 f81f3890 +oops Call Trace: +oops [] ? mutex_lock+0x25/0x40 +oops [] ? drm_fb_release+0x23/0x70 [drm] +oops [] ? drm_release+0x2ff/0x390 [drm] +oops [] ? __fput+0xdf/0x1f0 +oops [] ? fput+0x1d/0x30 +oops [] ? filp_close+0x4c/0x80 +oops [] ? sys_close+0x78/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 18 63 7f bd 90 8d 74 26 00 8d 73 04 89 f0 e8 ce 11 00 00 8d 55 e8 8d 43 08 89 45 e0 8b 43 0c 89 53 0c 8b 4d e0 89 45 ec 89 4d e8 <89> 10 8b 45 e4 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +oops EIP: [] __mutex_lock_slowpath+0x8a/0x130 SS:ESP 0068:f6945eb8 +oops CR2: 0000000000000000 +oops +oops Found OOPS (2): +oops BUG: unable to handle kernel NULL pointer dereference at 00000000000003a7 +oops IP: [] con_insert_unipair+0x4b/0x250 +oops PGD 60954067 PUD 60220067 PMD 0 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/module/soundcore/initstate +oops CPU 0 +oops Modules linked in: amd64_edac_mod(+) uvcvideo(+) videodev v4l1_compat v4l2_compat_ioctl32 soundcore psmouse serio_raw jmb38x_ms k8temp snd_page_alloc i2c_piix4 edac_core edac_mce_amd sdhci_pci jme memstick sdhci mii led_class shpchp lp parport fbcon tileblit font bitblit softcursor vga16fb vgastate radeon ttm usbhid drm_kms_helper hid drm i2c_algo_bit ahci pata_atiixp video output +oops Pid: 638, comm: setfont Not tainted 2.6.32-21-generic #32-Ubuntu M77xK +oops RIP: 0010:[] [] con_insert_unipair+0x4b/0x250 +oops RSP: 0018:ffff880060a99cd8 EFLAGS: 00010206 +oops RAX: 000000000000037f RBX: 0000000000000153 RCX: ffffffff8133aee6 +oops RDX: 0000000000000005 RSI: 0000000000000153 RDI: ffff880060230a00 +oops RBP: ffff880060a99d18 R08: 0000000000000000 R09: 0000000000000080 +oops R10: 0000000000000001 R11: 0000000000000000 R12: ffff880060230a00 +oops R13: 00000000000000e1 R14: 00000000000003a7 R15: 0000000000000000 +oops FS: 00007f58fd4a5700(0000) GS:ffff880001c00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: 00000000000003a7 CR3: 0000000060bf1000 CR4: 00000000000006f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process setfont (pid: 638, threadinfo ffff880060a98000, task ffff880060cf44d0) +oops Stack: +oops 0000004001c0ea78 ffff880000014100 ffff880000012a90 000000000000001f +oops <0> 0000000000000000 0000000000bb4280 ffff880060230a00 0000000000000000 +oops <0> ffff880060a99d98 ffffffff8133b365 0000000000000002 ffff88006d2e0800 +oops Call Trace: +oops [] con_set_unimap+0x185/0x220 +oops [] vt_ioctl+0x159e/0x1820 +oops [] ? unlock_page+0x27/0x30 +oops [] ? __do_fault+0x439/0x500 +oops [] tty_ioctl+0xa2/0x6e0 +oops [] vfs_ioctl+0x22/0xa0 +oops [] ? __up_read+0x9a/0xc0 +oops [] do_vfs_ioctl+0x81/0x380 +oops [] ? up_read+0xe/0x10 +oops [] ? do_page_fault+0x158/0x3b0 +oops [] sys_ioctl+0x81/0xa0 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 00 41 89 f6 49 89 fc 89 f3 66 41 c1 ee 0b 41 89 d5 41 83 e6 1f 4a 8b 04 f7 48 85 c0 74 53 89 da 66 c1 ea 06 83 e2 1f 4c 8d 34 d0 <49> 8b 06 48 85 c0 0f 84 8e 00 00 00 48 89 da 0f b7 db 83 e2 3f +oops RIP [] con_insert_unipair+0x4b/0x250 +oops RSP +oops CR2: 00000000000003a7 +oops +oops Found OOPS (3): +oops BUG: unable to handle kernel NULL pointer dereference at 00000040 +oops IP: [] radeon_agp_init+0x19/0x3d0 [radeon] +oops *pde = 00000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/module/usbhid/initstate +oops Modules linked in: radeon(+) ttm drm_kms_helper drm hid_sunplus usbhid hid nvidia_agp(+) i2c_algo_bit forcedeth(+) pata_amd(+) agpgart floppy +oops +oops Pid: 228, comm: modprobe Not tainted (2.6.32-22-generic #36-Ubuntu) +oops EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +oops EIP is at radeon_agp_init+0x19/0x3d0 [radeon] +oops EAX: f69a2c00 EBX: f68f5000 ECX: d8000000 EDX: 00000000 +oops ESI: f69a2c00 EDI: 00000001 EBP: f69e1d48 ESP: f69e1cf4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 228, ti=f69e0000 task=f6998cd0 task.ti=f69e0000) +oops Stack: +oops f69e1d00 00000292 00000000 f69e1d28 c035d2b0 00000001 f69e1d18 0000000e +oops <0> 00000292 00000000 f68f5000 04000000 00000001 f69e1d40 f8333f85 f69e1d37 +oops <0> 009a2c00 f68f5000 f68f5000 f69a2c00 00000001 f69e1d54 f833186f f68f5000 +oops Call Trace: +oops [] ? pci_bus_read_config_byte+0x60/0x70 +oops [] ? r100_get_accessible_vram+0x55/0x150 [radeon] +oops [] ? r100_mc_init+0x9f/0xe0 [radeon] +oops [] ? r100_init+0xd2/0x270 [radeon] +oops [] ? _spin_lock_irqsave+0x2f/0x50 +oops [] ? vga_client_register+0x6b/0x80 +oops [] ? radeon_device_init+0x22f/0x2f0 [radeon] +oops [] ? radeon_vga_set_decode+0x0/0x30 [radeon] +oops [] ? radeon_driver_load_kms+0x7a/0x190 [radeon] +oops [] ? drm_get_dev+0x125/0x230 [drm] +oops [] ? sysfs_addrm_start+0x60/0xa0 +oops [] ? radeon_pci_probe+0x12/0x17f [radeon] +oops [] ? local_pci_probe+0x13/0x20 +oops [] ? pci_device_probe+0x68/0x90 +oops [] ? really_probe+0x4d/0x140 +oops [] ? pm_runtime_barrier+0x4e/0xc0 +oops [] ? driver_probe_device+0x3c/0x60 +oops [] ? __driver_attach+0x81/0x90 +oops [] ? bus_for_each_dev+0x53/0x80 +oops [] ? driver_attach+0x1e/0x20 +oops [] ? __driver_attach+0x0/0x90 +oops [] ? bus_add_driver+0xd5/0x280 +oops [] ? pci_device_remove+0x0/0x40 +oops [] ? driver_register+0x6a/0x130 +oops [] ? __pci_register_driver+0x45/0xb0 +oops [] ? drm_init+0xf3/0x100 [drm] +oops [] ? radeon_init+0xdf/0xe1 [radeon] +oops [] ? do_one_initcall+0x31/0x190 +oops [] ? radeon_init+0x0/0xe1 [radeon] +oops [] ? sys_init_module+0xb0/0x210 +oops [] ? syscall_call+0x7/0xb +oops Code: 66 90 e8 eb db e9 ff 5d 66 90 c3 8d b4 26 00 00 00 00 55 89 e5 57 56 53 83 ec 48 0f 1f 44 00 00 89 c3 8b 40 04 8b 90 28 02 00 00 <8b> 4a 40 85 c9 75 12 e8 2b db e9 ff 85 c0 89 c7 0f 85 51 03 00 +oops EIP: [] radeon_agp_init+0x19/0x3d0 [radeon] SS:ESP 0068:f69e1cf4 +oops CR2: 0000000000000040 +oops +oops Found OOPS (4): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0x8a/0x130 +oops *pde = 5dfad067 +oops Oops: 0002 [#2] SMP +oops last sysfs file: /sys/kernel/uevent_seqnum +oops Modules linked in: radeon(+) ttm drm_kms_helper drm hid_sunplus usbhid hid nvidia_agp i2c_algo_bit forcedeth pata_amd agpgart floppy +oops +oops Pid: 271, comm: plymouthd Tainted: G D (2.6.32-22-generic #36-Ubuntu) +oops EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +oops EIP is at __mutex_lock_slowpath+0x8a/0x130 +oops EAX: 00000000 EBX: f69a2e88 ECX: f69a2e90 EDX: f6b0fec0 +oops ESI: f69a2e8c EDI: f69a2e98 EBP: f6b0fed8 ESP: f6b0feb4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 271, ti=f6b0e000 task=f6a4a670 task.ti=f6b0e000) +oops Stack: +oops 00000000 f69a2e90 f6a4a670 f69a2e90 00000000 f69a2c00 f69a2e88 f6819680 +oops <0> f69a2e88 f6b0fee8 c058a485 f6819680 f6819680 f6b0fefc f81afa53 f6819680 +oops <0> f68196e0 f69a2c00 f6b0ff44 f81a707f 00000001 f81b7265 f81b67c0 f81b87c4 +oops Call Trace: +oops [] ? mutex_lock+0x25/0x40 +oops [] ? drm_fb_release+0x23/0x70 [drm] +oops [] ? drm_release+0x3cf/0x490 [drm] +oops [] ? __fput+0xdf/0x1f0 +oops [] ? fput+0x1d/0x30 +oops [] ? filp_close+0x4c/0x80 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 18 63 7f bd 90 8d 74 26 00 8d 73 04 89 f0 e8 de 11 00 00 8d 55 e8 8d 43 08 89 45 e0 8b 43 0c 89 53 0c 8b 4d e0 89 45 ec 89 4d e8 <89> 10 8b 45 e4 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +oops EIP: [] __mutex_lock_slowpath+0x8a/0x130 SS:ESP 0068:f6b0feb4 +oops CR2: 0000000000000000 +oops +oops Found OOPS (5): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x2e/0xb0 +oops PGD 9a43b067 PUD 9aba3067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/name +oops CPU 1 +oops Modules linked in: lirc_ene0100(+) lirc_dev lp parport ahci sdhci_pci firewire_ohci firewire_core sdhci led_class libahci crc_itu_t pata_amd forcedeth +oops +oops Pid: 511, comm: modprobe Not tainted 2.6.35-6-generic #9-Ubuntu Fuquene/Aspire 5520 +oops RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +oops RSP: 0018:ffff88009a579d08 EFLAGS: 00010286 +oops RAX: ffff8800b9477000 RBX: 0000000000000000 RCX: ffffffff8107f229 +oops RDX: 0000000000000000 RSI: 00000000000000d0 RDI: 0000000000000246 +oops RBP: ffff88009a579d18 R08: 0000000000000000 R09: 0000000000000246 +oops R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +oops R13: ffff88003787d800 R14: ffff8800bbc44c00 R15: 00000000fffffff4 +oops FS: 00007f3022b1c700(0000) GS:ffff880001f00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000000 CR3: 000000009a43d000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 511, threadinfo ffff88009a578000, task ffff88009b2edb80) +oops Stack: +oops ffff88009abc7b40 ffff8800bbc58660 ffff88009a579d58 ffffffffa009ee4f +oops <0> ffff88009a579d38 ffffffffa009f060 ffff88003787d800 ffffffffa009f580 +oops <0> ffffffffa009f540 00000000fffffff4 ffff88009a579d98 ffffffff8132a475 +oops Call Trace: +oops [] ene_probe+0x17f/0x350 [lirc_ene0100] +oops [] pnp_device_probe+0x95/0x100 +oops [] ? driver_sysfs_add+0x62/0x90 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] ? ene_init+0x0/0x3e [lirc_ene0100] +oops [] pnp_register_driver+0x21/0x30 +oops [] ene_init+0x3c/0x3e [lirc_ene0100] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 b7 33 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +oops RIP [] kfifo_alloc+0x2e/0xb0 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found OOPS (6): +oops BUG: unable to handle kernel paging request at f815b540 +oops IP: [] driver_register+0xfe/0x130 +oops *pde = 3701b067 *pte = 00000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/virtual/tty/tty40/uevent +oops Modules linked in: amd64_agp(+) squashfs aufs isofs nls_iso8859_1 nls_cp437 vfat fat dm_raid45 xor hid_microsoft vga16fb vgastate usbhid hid nouveau ttm drm_kms_helper usb_storage drm floppy forcedeth sata_nv pata_amd i2c_algo_bit agpgart +oops +oops Pid: 818, comm: modprobe Not tainted 2.6.35-6-generic #8-Ubuntu 'K8N-E-Deluxe'/K8N-E-Deluxe +oops EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +oops EIP is at driver_register+0xfe/0x130 +oops EAX: f815b510 EBX: 00000000 ECX: f801f419 EDX: f685eae0 +oops ESI: f801f510 EDI: c03716d0 EBP: f5471f34 ESP: f5471f18 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 818, ti=f5470000 task=f689cc20 task.ti=f5470000) +oops Stack: +oops 00000001 f801f780 00000000 c07e0ce0 f801f4e0 f801f780 f801f510 f5471f48 +oops <0> c03719d5 b7779000 f801f780 00000000 f5471f54 f802202c 00000000 f5471f5c +oops <0> f80220a8 f5471f88 c0101131 f801f780 c07df060 b7779000 f801f780 08bdd1c0 +oops Call Trace: +oops [] ? __pci_register_driver+0x45/0xb0 +oops [] ? agp_amd64_init+0x2c/0xa0 [amd64_agp] +oops [] ? agp_amd64_mod_init+0x8/0xa [amd64_agp] +oops [] ? do_one_initcall+0x31/0x190 +oops [] ? agp_amd64_mod_init+0x0/0xa [amd64_agp] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 89 f0 e8 86 ea ff ff 83 c4 10 89 f8 5b 5e 5f 5d c3 8b 06 c7 04 24 08 61 77 c0 89 44 24 04 e8 78 5b 1c 00 8b 56 04 e9 56 ff ff ff <8b> 40 30 bf f0 ff ff ff e8 f5 14 f5 ff 8b 06 c7 04 24 48 61 77 +oops EIP: [] driver_register+0xfe/0x130 SS:ESP 0068:f5471f18 +oops CR2: 00000000f815b540 +oops +oops Found OOPS (7): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x26/0x90 +oops *pde = 7dae9067 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/name +oops Modules linked in: lirc_ene0100(+) lirc_dev usbhid hid sdhci_pci firewire_ohci ahci sdhci led_class libahci firewire_core crc_itu_t tg3 +oops +oops Pid: 445, comm: modprobe Not tainted 2.6.35-6-generic #9-Ubuntu Nettiling/Aspire 5720Z +oops EIP: 0060:[] EFLAGS: 00010286 CPU: 1 +oops EIP is at kfifo_alloc+0x26/0x90 +oops EAX: e10ef000 EBX: 00001000 ECX: c01674d2 EDX: c01674d2 +oops ESI: 00000000 EDI: f69e9100 EBP: d1631e40 ESP: d1631e38 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 445, ti=d1630000 task=f6990cb0 task.ti=d1630000) +oops Stack: +oops f6b3f4e0 f6bf7840 d1631e68 f8273dc7 00000020 000080d0 d1631e68 f724ce00 +oops <0> fffffff4 f8273fa0 f724ce00 f8274400 d1631e7c c03b7e9e f724ce00 f8274420 +oops <0> f8274420 d1631ea0 c0404ead f724ced0 d1631ea0 c040c0f7 00000000 f724ce00 +oops Call Trace: +oops [] ? ene_probe+0x157/0x30b [lirc_ene0100] +oops [] ? pnp_device_probe+0x6e/0xd0 +oops [] ? really_probe+0x4d/0x150 +oops [] ? pm_runtime_barrier+0x57/0xb0 +oops [] ? driver_probe_device+0x3c/0x60 +oops [] ? __driver_attach+0x81/0x90 +oops [] ? bus_for_each_dev+0x53/0x80 +oops [] ? driver_attach+0x1e/0x20 +oops [] ? __driver_attach+0x0/0x90 +oops [] ? bus_add_driver+0xd5/0x280 +oops [] ? pnp_device_remove+0x0/0x40 +oops [] ? driver_register+0x6a/0x130 +oops [] ? tracepoint_module_notify+0x27/0x30 +oops [] ? pnp_register_driver+0x1c/0x20 +oops [] ? ene_init+0x38/0x3a [lirc_ene0100] +oops [] ? __blocking_notifier_call_chain+0x54/0x70 +oops [] ? do_one_initcall+0x31/0x190 +oops [] ? ene_init+0x0/0x3a [lirc_ene0100] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 89 3a eb d3 90 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 4b ff 74 31 85 d9 75 25 89 d8 e8 de 64 0a 00 85 c0 74 38 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +oops EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:d1631e38 +oops CR2: 0000000000000000 +oops +oops Found OOPS (8): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0x9a/0x140 +oops *pde = 3d9e2067 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/platform/i8042/serio0/input/input3/event3/uevent +oops Modules linked in: snd_hwdep snd_pcm i915(+) snd_seq_midi snd_rawmidi snd_seq_midi_event drm_kms_helper snd_seq lib80211_crypt_tkip snd_timer drm snd_seq_device uvcvideo dell_laptop wl(P) compal_laptop videodev dcdbas intel_agp snd psmouse v4l1_compat led_class soundcore serio_raw agpgart i2c_algo_bit snd_page_alloc lib80211 video coretemp output lp parport btrfs zlib_deflate r8169 mii crc32c libcrc32c +oops +oops Pid: 315, comm: plymouthd Tainted: P 2.6.35-7-generic #12-Ubuntu CN0Y53/Inspiron 1011 +oops EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +oops EIP is at __mutex_lock_slowpath+0x9a/0x140 +oops EAX: 00000000 EBX: ef5a9a90 ECX: ef5a9a98 EDX: f6ab7ec0 +oops ESI: ef5a9a94 EDI: ef5a9a90 EBP: f6ab7ed8 ESP: f6ab7eb4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 315, ti=f6ab6000 task=f6ae3f70 task.ti=f6ab6000) +oops Stack: +oops f6ab7ec4 f6ae3f70 ef5a9a98 ef5a9a98 00000000 f6ab7ed8 ef5a9a90 f7109100 +oops <0> ef5a9a90 f6ab7ee8 c05cb095 f7109100 f7109100 f6ab7efc f890fdc3 f7109100 +oops <0> f7109160 ef5a9800 f6ab7f44 f8907337 00000001 f8917e25 f8917220 f8919590 +oops Call Trace: +oops [] ? mutex_lock+0x25/0x40 +oops [] ? drm_fb_release+0x23/0x70 [drm] +oops [] ? drm_release+0x3e7/0x4c0 [drm] +oops [] ? __fput+0xdf/0x1f0 +oops [] ? fput+0x1d/0x30 +oops [] ? filp_close+0x4c/0x80 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 5e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +oops EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f6ab7eb4 +oops CR2: 0000000000000000 +oops +oops Found OOPS (9): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0xd2/0x190 +oops PGD 1b4837067 PUD 1b4836067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/snd_hda_codec/initstate +oops CPU 0 +oops Modules linked in: snd_hda_codec_realtek snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi nouveau(+) snd_rawmidi snd_seq_midi_event snd_seq ttm snd_timer snd_seq_device drm_kms_helper ppdev parport_pc snd psmouse serio_raw drm i2c_algo_bit soundcore intel_agp snd_page_alloc lp parport hid floppy pata_jmicron ahci libahci r8169 mii +oops +oops Pid: 342, comm: plymouthd Not tainted 2.6.35-8-generic #13-Ubuntu P45 Neo3 (MS-7514)/MS-7514 +oops RIP: 0010:[] [] __mutex_lock_slowpath+0xd2/0x190 +oops RSP: 0018:ffff8801b87d9d98 EFLAGS: 00010246 +oops RAX: 0000000000000000 RBX: ffff8801b4ab4418 RCX: 0000000000000006 +oops RDX: ffff8801b87d9da8 RSI: 0000000000000000 RDI: ffff8801b4ab441c +oops RBP: ffff8801b87d9df8 R08: 0000000000000156 R09: 000000000000e200 +oops R10: fffffffffffffff0 R11: 0000000000000246 R12: ffff8801b49644a0 +oops R13: ffff8801b4ab441c R14: 00000000ffffffff R15: ffff8801b4ab4420 +oops FS: 00007f92f737b700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000000 CR3: 00000001b58a8000 CR4: 00000000000406f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process plymouthd (pid: 342, threadinfo ffff8801b87d8000, task ffff8801b49644a0) +oops Stack: +oops ffff880100000000 000000000000e200 ffff8801b4ab4420 0000000000000000 +oops <0> 0000000000000000 ffffffffa00a7240 ffffffffa00a4f60 ffff8801b4ab4418 +oops <0> ffff8801aab95840 ffff8801b4ab4418 ffff8801b4ab4320 ffff8801aab958e8 +oops Call Trace: +oops [] ? drm_gem_object_release_handle+0x0/0x40 [drm] +oops [] ? drm_version+0x0/0xb0 [drm] +oops [] mutex_lock+0x2b/0x50 +oops [] drm_fb_release+0x2f/0xb0 [drm] +oops [] drm_release+0x468/0x550 [drm] +oops [] __fput+0xf5/0x210 +oops [] fput+0x25/0x30 +oops [] filp_close+0x5d/0x90 +oops [] sys_close+0xb7/0x120 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 00 4c 8d 6b 04 4c 8d 7b 08 41 be ff ff ff ff 4c 89 ef e8 22 14 00 00 48 8b 43 10 48 8d 55 b0 48 89 53 10 4c 89 7d b0 48 89 45 b8 <48> 89 10 44 89 f0 4c 89 65 c0 87 03 83 f8 01 75 24 eb 2c 0f 1f +oops RIP [] __mutex_lock_slowpath+0xd2/0x190 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found OOPS (10): +oops BUG: unable to handle kernel NULL pointer dereference at 0000000000000010 +oops IP: [] fb_release+0x30/0x70 +oops PGD 1b8a7b067 PUD 1b8a77067 PMD 0 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/virtual/block/dm-3/uevent +oops CPU 1 +oops Modules linked in: deflate zlib_deflate ctr twofish twofish_common camellia serpent blowfish cast5 des_generic cryptd aes_x86_64 aes_generic xcbc rmd160 sha512_generic sha256_generic sha1_generic crypto_null af_key snd_hda_codec_atihdmi snd_hda_codec_analog tpm_infineon snd_hda_intel snd_usb_audio snd_hda_codec snd_pcm snd_seq_midi snd_hwdep snd_seq_midi_event radeon snd_seq snd_timer snd_usbmidi_lib snd_rawmidi tpm_tis i7core_edac btusb asus_atk0110 bluetooth ttm drm_kms_helper uvcvideo snd_seq_device videodev v4l1_compat v4l2_compat_ioctl32 joydev snd edac_core psmouse tpm tpm_bios drm serio_raw soundcore i2c_algo_bit snd_page_alloc lp parport hid_logitech ff_memless usbhid hid firewire_ohci firewire_core ahci libahci crc_itu_t sky2 +oops +oops Pid: 451, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu P6T DELUXE V2/System Product Name +oops RIP: 0010:[] [] fb_release+0x30/0x70 +oops RSP: 0018:ffff8801b6a4bea8 EFLAGS: 00010286 +oops RAX: ffff8801b6a4a000 RBX: ffff8801b7124000 RCX: 0000000000000003 +oops RDX: 0000000000000000 RSI: ffff8801a56206c0 RDI: ffff8801b7124008 +oops RBP: ffff8801b6a4beb8 R08: 0000000000000000 R09: 0000000000000000 +oops R10: 00007fff8969bed0 R11: 0000000000000246 R12: ffff8801b7124008 +oops R13: ffff8801b88235f0 R14: ffff8801b640bc80 R15: ffff8801b55e8300 +oops FS: 00007f890030c700(0000) GS:ffff880001e20000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000010 CR3: 00000001b53b7000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process plymouthd (pid: 451, threadinfo ffff8801b6a4a000, task ffff8801b3c596e0) +oops Stack: +oops ffff8801a56206c0 0000000000000008 ffff8801b6a4bf08 ffffffff81152df5 +oops <0> ffff8801b88235f0 ffff8801b640bc80 00007f89001de000 ffff8801a56206c0 +oops <0> ffff8801b8cd9e40 0000000000000000 000000000000000b 0000000002082db0 +oops Call Trace: +oops [] __fput+0xf5/0x210 +oops [] fput+0x25/0x30 +oops [] filp_close+0x5d/0x90 +oops [] sys_close+0xb7/0x120 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 83 ec 10 48 89 1c 24 4c 89 64 24 08 0f 1f 44 00 00 48 8b 9e a0 00 00 00 4c 8d 63 08 4c 89 e7 e8 67 1b 29 00 48 8b 93 c0 03 00 00 <48> 8b 42 10 48 85 c0 74 11 be 01 00 00 00 48 89 df ff d0 48 8b +oops RIP [] fb_release+0x30/0x70 +oops RSP +oops CR2: 0000000000000010 +oops +oops Found OOPS (11): +oops BUG: unable to handle kernel NULL pointer dereference at 0000030c +oops IP: [] fb_mmap+0x34/0x170 +oops *pde = 3f809067 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:0a.0/device +oops Modules linked in: snd_emu10k1(+) arc4 snd_ac97_codec ac97_bus snd_pcm snd_page_alloc snd_util_mem snd_hwdep nouveau(+) snd_seq_midi rt2500pci rt2x00pci snd_rawmidi rt2x00lib led_class snd_seq_midi_event mac80211 snd_seq ttm snd_timer drm_kms_helper snd_seq_device drm i2c_viapro via_ircc usblp cfg80211 i2c_algo_bit irda psmouse serio_raw emu10k1_gp snd lp via_agp joydev gameport eeprom_93cx6 parport agpgart shpchp crc_ccitt soundcore usbhid hid pata_via floppy +oops +oops Pid: 278, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu VT8367-8235/VT8367-8235 +oops EIP: 0060:[] EFLAGS: 00010293 CPU: 0 +oops EIP is at fb_mmap+0x34/0x170 +oops EAX: 00000000 EBX: f397f898 ECX: c05fdd60 EDX: 00000000 +oops ESI: 00000000 EDI: b745f000 EBP: f6a73efc ESP: f6a73ed8 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 278, ti=f6a72000 task=f68b9960 task.ti=f6a72000) +oops Stack: +oops 00000202 c01f8068 f6980960 0000012c 000080d0 00000058 f6892648 f689264c +oops <0> b745f000 f6a73f50 c01f810c b758b000 000000fa 00000000 f48fc580 00000000 +oops <0> 00000000 00000000 f6892630 00000000 f73fc060 f48fc580 ffffffea 0000012c +oops Call Trace: +oops [] ? mmap_region+0x298/0x490 +oops [] ? mmap_region+0x33c/0x490 +oops [] ? do_mmap_pgoff+0x25c/0x300 +oops [] ? sys_mmap_pgoff+0x193/0x1c0 +oops [] ? syscall_call+0x7/0xb +oops Code: 89 75 f8 89 7d fc 0f 1f 44 00 00 8b 40 0c 89 d3 8b 52 44 8b 40 10 8b 40 34 25 ff ff 0f 00 81 fa ff ff 0f 00 8b 34 85 40 67 82 c0 <8b> 8e 0c 03 00 00 76 14 bf ea ff ff ff 89 f8 8b 5d f4 8b 75 f8 +oops EIP: [] fb_mmap+0x34/0x170 SS:ESP 0068:f6a73ed8 +oops CR2: 000000000000030c +oops +oops Found OOPS (12): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0x9a/0x140 +oops *pde = 3df7b067 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/snd_rawmidi/initstate +oops Modules linked in: i915(+) drm_kms_helper snd_seq_midi_event snd_seq snd_rawmidi snd_timer drm snd_seq_device gspca_sonixj gspca_main snd videodev v4l1_compat dcdbas intel_agp lp soundcore snd_page_alloc i2c_algo_bit video output psmouse serio_raw parport agpgart usbhid hid e100 mii +oops +oops Pid: 219, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu 0JC474/Dell DV051 +oops EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +oops EIP is at __mutex_lock_slowpath+0x9a/0x140 +oops EAX: 00000000 EBX: f5288e90 ECX: f5288e98 EDX: f5b13ec0 +oops ESI: f5288e94 EDI: f5288e90 EBP: f5b13ed8 ESP: f5b13eb4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 219, ti=f5b12000 task=f69bcc20 task.ti=f5b12000) +oops Stack: +oops f849c400 f69bcc20 f5288e98 f5288e98 00000000 f5b13ed8 f5288e90 f5381f80 +oops <0> f5288e90 f5b13ee8 c05c8295 f5381f80 f5381f80 f5b13efc f848fd53 f5381f80 +oops <0> f5381fe0 f5288c00 f5b13f44 f8487327 00000001 f8497d85 f8497180 f84994f0 +oops Call Trace: +oops [] ? mutex_lock+0x25/0x40 +oops [] ? drm_fb_release+0x23/0x70 [drm] +oops [] ? drm_release+0x3e7/0x4c0 [drm] +oops [] ? __fput+0xe4/0x1e0 +oops [] ? fput+0x1d/0x30 +oops [] ? filp_close+0x4c/0x80 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 3e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +oops EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f5b13eb4 +oops CR2: 0000000000000000 +oops +oops Found OOPS (13): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x2e/0xb0 +oops PGD 13a27b067 PUD 1375c6067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/snd/initstate +oops CPU 1 +oops Modules linked in: lirc_ene0100(+) lirc_dev v4l1_compat v4l2_compat_ioctl32 lp(+) led_class serio_raw intel_agp video output parport snd soundcore snd_page_alloc usb_storage ahci ssb r8169 mii libahci +oops +oops Pid: 687, comm: modprobe Not tainted 2.6.35-12-generic #17-Ubuntu 3602/HP Pavilion dv5 Notebook PC +oops RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +oops RSP: 0018:ffff88013825fd08 EFLAGS: 00010286 +oops RAX: ffff88013fc0f000 RBX: 0000000000000000 RCX: ffffffff8107f129 +oops RDX: 0000000000000000 RSI: 00000000000000d0 RDI: 0000000000000246 +oops RBP: ffff88013825fd18 R08: 0000000000000000 R09: 0000000000000246 +oops R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +oops R13: ffff880139be1400 R14: ffff880136d58640 R15: 00000000fffffff4 +oops FS: 00007f450591a700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000000 CR3: 000000013a270000 CR4: 00000000000406e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 687, threadinfo ffff88013825e000, task ffff8801383ddb80) +oops Stack: +oops ffff8801379ee840 ffff8801379f14e0 ffff88013825fd58 ffffffffa009ee4f +oops <0> ffff88013825fd38 ffffffffa009f060 ffff880139be1400 ffffffffa009f580 +oops <0> ffffffffa009f540 00000000fffffff4 ffff88013825fd98 ffffffff81341325 +oops Call Trace: +oops [] ene_probe+0x17f/0x350 [lirc_ene0100] +oops [] pnp_device_probe+0x95/0x100 +oops [] ? driver_sysfs_add+0x62/0x90 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] ? ene_init+0x0/0x3e [lirc_ene0100] +oops [] pnp_register_driver+0x21/0x30 +oops [] ene_init+0x3c/0x3e [lirc_ene0100] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 67 33 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +oops RIP [] kfifo_alloc+0x2e/0xb0 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found OOPS (14): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0xbb/0x170 +oops PGD 609c90067 PUD 6097fd067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/fbcon/initstate +oops CPU 1 +oops Modules linked in: fbcon(+) tileblit font bitblit softcursor vga16fb vgastate nouveau(+) ttm drm_kms_helper mce_xeon75xx(-) drm i2c_algo_bit snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq ppdev snd_timer snd_seq_device parport_pc snd dell_wmi dcdbas soundcore snd_page_alloc shpchp lp parport usbhid hid ohci1394 ieee1394 ahci tg3 +oops Pid: 405, comm: plymouthd Not tainted 2.6.32-24-generic #38-Ubuntu Precision WorkStation T7500 +oops RIP: 0010:[] [] __mutex_lock_slowpath+0xbb/0x170 +oops RSP: 0018:ffff8806082ddd98 EFLAGS: 00010246 +oops RAX: 0000000000000000 RBX: ffff880609d23c08 RCX: 0000000000000006 +oops RDX: ffff8806082ddda8 RSI: ffffffffa01b3d10 RDI: ffff880609d23c0c +oops RBP: ffff8806082dddf8 R08: 0000000000000195 R09: 000000000000e200 +oops R10: fffffffffffffff0 R11: 0000000000000246 R12: ffff8806089e44d0 +oops R13: ffff880609d23c0c R14: ffffffffffffffff R15: ffff880609d23c10 +oops FS: 00007f4dd6e70700(0000) GS:ffff88003e220000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000000 CR3: 00000006097d6000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process plymouthd (pid: 405, threadinfo ffff8806082dc000, task ffff8806089e44d0) +oops Stack: +oops ffff880600000001 ffff8806082ddfd8 ffff880609d23c10 0000000000000000 +oops <0> 0000000000000000 ffffffffa01b3d10 ffff8806082dddd8 ffff880609d23c08 +oops <0> ffff8806018bbe00 ffff880609d23c08 ffff880609d23b10 ffff8806018bbea8 +oops Call Trace: +oops [] ? drm_gem_object_release_handle+0x0/0x40 [drm] +oops [] mutex_lock+0x2b/0x50 +oops [] drm_fb_release+0x2f/0xd0 [drm] +oops [] drm_release+0x448/0x510 [drm] +oops [] __fput+0xf5/0x210 +oops [] fput+0x25/0x30 +oops [] filp_close+0x5d/0x90 +oops [] sys_close+0xb7/0x120 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 4c 8d 6b 04 4c 8d 7b 08 49 c7 c6 ff ff ff ff 4c 89 ef e8 29 15 00 00 48 8b 43 10 48 8d 55 b0 48 89 53 10 4c 89 7d b0 48 89 45 b8 <48> 89 10 4c 89 f0 4c 89 65 c0 87 03 83 f8 01 75 23 eb 2b 66 90 +oops RIP [] __mutex_lock_slowpath+0xbb/0x170 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found OOPS (15): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x26/0x90 +oops *pde = 00000000 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/uevent +oops Modules linked in: k10temp lirc_ene0100(+) btusb agpgart i2c_piix4 joydev i2c_algo_bit videodev v4l1_compat wacom video psmouse bluetooth lirc_dev shpchp serio_raw output led_class lp(+) parport hp_wmi usbhid hid usb_storage ahci pata_atiixp ssb libahci r8169 mii +oops +oops Pid: 637, comm: modprobe Not tainted 2.6.35-15-generic #21-Ubuntu 30F1/HP Pavilion tx2500 Notebook PC +oops EIP: 0060:[] EFLAGS: 00010286 CPU: 1 +oops EIP is at kfifo_alloc+0x26/0x90 +oops EAX: d2079000 EBX: 00001000 ECX: c0166452 EDX: c0166452 +oops ESI: 00000000 EDI: d27add60 EBP: d209de40 ESP: d209de38 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 637, ti=d209c000 task=d21d7230 task.ti=d209c000) +oops Stack: +oops f6ad12a0 d26a1a00 d209de68 f803bdb7 00000020 000080d0 d209de68 f724de00 +oops <0> fffffff4 f803bf90 f724de00 f803c3e0 d209de7c c03ca5fe f724de00 f803c400 +oops <0> f803c400 d209dea0 c0402cc0 f724ded0 d209dea0 c0409f07 00000000 f724de00 +oops Call Trace: +oops [] ? ene_probe+0x157/0x30b [lirc_ene0100] +oops cfg80211: Calling CRDA to update world regulatory domain +oops b43-phy0: Broadcom 4312 WLAN found (core revision 15) +oops [] ? pnp_device_probe+0x6e/0xd0 +oops [] ? really_probe+0x50/0x150 +oops [] ? pm_runtime_barrier+0x57/0xb0 +oops [] ? driver_probe_device+0x3c/0x60 +oops [] ? __driver_attach+0x81/0x90 +oops [] ? bus_for_each_dev+0x53/0x80 +oops Synaptics Touchpad, model: 1, fw: 6.3, id: 0x180b1, caps: 0xa04711/0xa00000/0x0 +oops input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9 +oops [] ? driver_attach+0x1e/0x20 +oops [] ? __driver_attach+0x0/0x90 +oops [] ? bus_add_driver+0xd5/0x280 +oops [] ? pnp_device_remove+0x0/0x40 +oops [] ? driver_register+0x6a/0x130 +oops [] ? tracepoint_module_notify+0x27/0x30 +oops [] ? pnp_register_driver+0x1c/0x20 +oops [] ? ene_init+0x38/0x3a [lirc_ene0100] +oops [] ? __blocking_notifier_call_chain+0x54/0x70 +oops [] ? do_one_initcall+0x32/0x1a0 +oops [] ? ene_init+0x0/0x3a [lirc_ene0100] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 90 8d 74 26 00 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 43 ff 74 31 85 d8 75 25 89 d8 e8 4e 60 0a 00 85 c0 74 39 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +oops EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:d209de38 +oops CR2: 0000000000000000 +oops +oops Found OOPS (16): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: +oops agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +oops [] kfifo_alloc+0x26/0x90 +oops *pde = 00000000 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/intel_agp/initstate +oops Modules linked in: lirc_ene0100(+) i2c_algo_bit intel_agp lirc_dev video snd soundcore snd_page_alloc psmouse serio_raw lib80211 agpgart output lp parport usbhid hid usb_storage firewire_ohci ahci firewire_core sdhci_pci tg3 sdhci led_class crc_itu_t libahci +oops +oops Pid: 453, comm: modprobe Not tainted 2.6.35-17-generic #23-Ubuntu Nettiling/Aspire 5720Z +oops EIP: 0060:[] EFLAGS: 00010286 CPU: 0 +oops EIP is at kfifo_alloc+0x26/0x90 +oops EAX: f5faa000 EBX: 00001000 ECX: c01665b2 EDX: c01665b2 +oops ESI: 00000000 EDI: f5d09e40 EBP: f5cf1e40 ESP: f5cf1e38 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 453, ti=f5cf0000 task=f68a3f70 task.ti=f5cf0000) +oops Stack: +oops f695ce40 f6a1d540 f5cf1e68 f806bdb7 00000020 000080d0 f5cf1e68 f7232200 +oops <0> fffffff4 f806bf90 f7232200 f806c3e0 f5cf1e7c c03c737e f7232200 f806c400 +oops <0> f806c400 f5cf1ea0 c03ffa30 f72322d0 f5cf1ea0 c0406c87 00000000 f7232200 +oops Call Trace: +oops [] ? ene_probe+0x157/0x30b [lirc_ene0100] +oops [] ? pnp_device_probe+0x6e/0xd0 +oops [] ? really_probe+0x50/0x150 +oops [] ? pm_runtime_barrier+0x57/0xb0 +oops [] ? driver_probe_device+0x3c/0x60 +oops [] ? __driver_attach+0x81/0x90 +oops [] ? bus_for_each_dev+0x53/0x80 +oops [] ? driver_attach+0x1e/0x20 +oops [] ? __driver_attach+0x0/0x90 +oops [] ? bus_add_driver+0xd5/0x280 +oops [] ? pnp_device_remove+0x0/0x40 +oops [] ? driver_register+0x6a/0x130 +oops [] ? tracepoint_module_notify+0x27/0x30 +oops [] ? pnp_register_driver+0x1c/0x20 +oops [] ? ene_init+0x38/0x3a [lirc_ene0100] +oops [] ? __blocking_notifier_call_chain+0x54/0x70 +oops [] ? do_one_initcall+0x32/0x1a0 +oops [] ? ene_init+0x0/0x3a [lirc_ene0100] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 90 8d 74 26 00 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 43 ff 74 31 85 d8 75 25 89 d8 e8 7e 61 0a 00 85 c0 74 39 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +oops EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:f5cf1e38 +oops CR2: 0000000000000000 +oops +oops Found OOPS (17): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x2e/0xb0 +oops PGD 13ad1b067 PUD 13ad1a067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:26/PNP0303:00/uevent +oops CPU 1 +oops Modules linked in: lirc_ene0100(+) input_polldev(+) lirc_dev parport(+) ahci r8169 mii sdhci_pci sdhci led_class pata_atiixp libahci +oops +oops Pid: 407, comm: modprobe Not tainted 2.6.35-17-generic #23-Ubuntu 30FC/HP Pavilion dv7 Notebook PC +oops RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +oops RSP: 0018:ffff88013b475d08 EFLAGS: 00010286 +oops RAX: ffff8801384be000 RBX: 0000000000000000 RCX: ffffffff8107f199 +oops RDX: ffff8801384ba000 RSI: 00000000000000d0 RDI: 0000000000000246 +oops RBP: ffff88013b475d18 R08: 0000000000000000 R09: 0000000000000246 +oops R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +oops R13: ffff8801394bc800 R14: ffff88013b64c280 R15: 00000000fffffff4 +oops FS: 00007f5fb9cd0700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: 0000000000000000 CR3: 000000013ad17000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 407, threadinfo ffff88013b474000, task ffff88013b478000) +oops Stack: +oops ffff88013a65cb40 ffff88013b61b7e0 ffff88013b475d58 ffffffffa005ee4f +oops [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +oops acpi device:03: registered as cooling_device2 +oops input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input4 +oops ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +oops lis3lv02d: hardware type DV7 found. +oops lis3lv02d: 8 bits sensor found +oops shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +oops +oops <0> ffff88013b475d38 ffffffffa005f060 ffff8801394bc800 ffffffffa005f580 +oops <0> ffffffffa005f540 00000000fffffff4 ffff88013b475d98 ffffffff8133d7d5 +oops Call Trace: +oops [] ene_probe+0x17f/0x350 [lirc_ene0100] +oops [] pnp_device_probe+0x95/0x100 +oops [] ? driver_sysfs_add+0x62/0x90 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] ? ene_init+0x0/0x3e [lirc_ene0100] +oops [] pnp_register_driver+0x21/0x30 +oops [] ene_init+0x3c/0x3e [lirc_ene0100] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 07 35 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +oops RIP [] kfifo_alloc+0x2e/0xb0 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found OOPS (18): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] kfifo_alloc+0x2e/0xb0 +oops PGD 1375cb067 PUD 1375ce067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/virtual/vc/vcs6/uevent +oops CPU 1 +oops Modules linked in: lirc_ene0100(+) v4l2_compat_ioctl32(+) hp_wmi(+) snd(+) lirc_dev wl(P+) bluetooth(+) drm(+) video(+) psmouse output serio_raw k10temp edac_core soundcore i2c_algo_bit lib80211 i2c_piix4 snd_page_alloc edac_mce_amd shpchp lp parport usb_storage r8169 mii ahci libahci pata_atiixp +oops +oops Pid: 529, comm: modprobe Tainted: P 2.6.35-17-generic #23-Ubuntu 3045/HP TouchSmart tx2 Notebook PC +oops RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +oops RSP: 0018:ffff880138739d08 EFLAGS: 00010286 +oops RAX: ffff880137500000 RBX: 0000000000000000 RCX: ffffffff8107f199 +oops RDX: ffff880137504000 RSI: 00000000000000d0 RDI: 0000000000000246 +oops RBP: ffff880138739d18 R08: 0000000000000000 R09: 0000000000000246 +oops R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +oops R13: ffff88013b33c400 R14: ffff8801386a7280 R15: 00000000fffffff4 +oops FS: 00007f3989a31700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000000 CR3: 0000000139428000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 529, threadinfo ffff880138738000, task ffff88013b6cc4a0) +oops Stack: +oops ffff880137c3fb40 ffff88013b49dba0 ffff880138739d58 ffffffffa010ee4f +oops <0> ffff880138739d38 ffffffffa010f060 ffff88013b33c400 ffffffffa010f580 +oops <0> ffffffffa010f540 00000000fffffff4 ffff880138739d98 ffffffff8133d7d5 +oops Call Trace: +oops [] ene_probe+0x17f/0x350 [lirc_ene0100] +oops [] pnp_device_probe+0x95/0x100 +oops [] ? driver_sysfs_add+0x62/0x90 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] ? ene_init+0x0/0x3e [lirc_ene0100] +oops [] pnp_register_driver+0x21/0x30 +oops [] ene_init+0x3c/0x3e [lirc_ene0100] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 07 35 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +oops RIP [] kfifo_alloc+0x2e/0xb0 +oops RSP +oops CR2: 0000000000000000 +oops +oops Found WARNING (1): +oops WARNING: at /build/buildd/linux-2.6.35/lib/kobject.c:595 kobject_put+0x50/0x60() +oops Hardware name: To Be Filled By O.E.M. +oops kobject: '(null)' (ffff8802374c5998): is not initialized, yet kobject_put() is being called. +oops Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +oops Pid: 1302, comm: dmraid Tainted: G M D 2.6.35-19-generic #28-Ubuntu +oops Call Trace: +oops [] warn_slowpath_common+0x7f/0xc0 +oops [] warn_slowpath_fmt+0x46/0x50 +oops [] kobject_put+0x50/0x60 +oops [] dm_sysfs_exit+0x16/0x20 +oops [] dm_put+0x9f/0x120 +oops [] table_status+0x54/0xa0 +oops [] ? table_status+0x0/0xa0 +oops [] ctl_ioctl+0x1a5/0x250 +oops [] ? do_anonymous_page+0x11b/0x330 +oops [] dm_ctl_ioctl+0x13/0x20 +oops [] vfs_ioctl+0x3d/0xd0 +oops [] do_vfs_ioctl+0x81/0x340 +oops [] ? do_page_fault+0x15e/0x350 +oops [] sys_ioctl+0x81/0xa0 +oops [] system_call_fastpath+0x16/0x1b +oops +oops Found OOPS (19): +oops BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +oops IP: [] bdput+0x9/0x20 +oops PGD 2220c7067 PUD 2220c6067 PMD 0 +oops Oops: 0000 [#2] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:1f.2/host4/target4:0:0/4:0:0:0/block/sda/sda3/alignment_offset +oops CPU 4 +oops Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +oops +oops Pid: 1302, comm: dmraid Tainted: G M D W 2.6.35-19-generic #28-Ubuntu EVGA Classified SR-2/To Be Filled By O.E.M. +oops RIP: 0010:[] [] bdput+0x9/0x20 +oops RSP: 0018:ffff8803b5031d98 EFLAGS: 00010296 +oops RAX: ffff8802374c5860 RBX: ffff8802374c5800 RCX: 000000000003ffff +oops RDX: 0000000000000000 RSI: ffffffff812b8280 RDI: 0000000000000000 +oops RBP: ffff8803b5031d98 R08: 0000000000015629 R09: 0000000000000000 +oops R10: 0000000000000000 R11: 0000000000000002 R12: 00000000ffffffff +oops R13: ffffc90013bd4000 R14: 0000000000004000 R15: 0000000000000000 +oops FS: 00007f686410e7a0(0000) GS:ffff880245600000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000008 CR3: 0000000236c87000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process dmraid (pid: 1302, threadinfo ffff8803b5030000, task ffff8803b44744a0) +oops Stack: +oops ffff8803b5031db8 ffffffff81453ddb ffff8802374c5800 0000000000000000 +oops <0> ffff8803b5031de8 ffffffff81455a81 0000000000000000 ffff8802374c5800 +oops <0> 0000000000000000 ffffc90013bd4000 ffff8803b5031e28 ffffffff8145a864 +oops Call Trace: +oops [] free_dev+0x2b/0xe0 +oops [] dm_put+0xf1/0x120 +oops [] table_status+0x54/0xa0 +oops [] ? table_status+0x0/0xa0 +oops [] ctl_ioctl+0x1a5/0x250 +oops [] ? do_anonymous_page+0x11b/0x330 +oops [] dm_ctl_ioctl+0x13/0x20 +oops [] vfs_ioctl+0x3d/0xd0 +oops [] do_vfs_ioctl+0x81/0x340 +oops [] ? do_page_fault+0x15e/0x350 +oops [] sys_ioctl+0x81/0xa0 +oops [] system_call_fastpath+0x16/0x1b +oops Code: c0 8f a2 81 e8 19 3c eb ff 66 90 48 85 db 74 09 48 8b 7b 08 e8 c9 66 fe ff 5b 41 5c c9 c3 eb 02 90 90 55 48 89 e5 0f 1f 44 00 00 <48> 8b 7f 08 e8 ae 66 fe ff c9 c3 eb 0a 90 90 90 90 90 90 90 90 +oops RIP [] bdput+0x9/0x20 +oops RSP +oops CR2: 0000000000000008 +oops +oops Found OOPS (20): +oops BUG: unable to handle kernel paging request at f8147540 +oops IP: [] driver_register+0xfe/0x130 +oops *pde = 3716d067 *pte = 00000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:18.3/uevent +oops Modules linked in: amd64_agp(+) squashfs aufs nls_iso8859_1 nls_cp437 vfat fat dm_raid45 xor btrfs zlib_deflate crc32c libcrc32c radeon ttm drm_kms_helper drm usb_storage forcedeth pata_amd sata_nv i2c_algo_bit agpgart +oops +oops Pid: 1879, comm: modprobe Not tainted 2.6.35-22-generic #33-Ubuntu 'K8N'/K8N +oops EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +oops EIP is at driver_register+0xfe/0x130 +oops EAX: f8147510 EBX: 00000000 ECX: f8006419 EDX: f681f780 +oops ESI: f8006510 EDI: c036c8a0 EBP: f6899f34 ESP: f6899f18 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 1879, ti=f6898000 task=f642bf70 task.ti=f6898000) +oops Stack: +oops 00000001 f8006780 00000000 c07d2ae0 f80064e0 f8006780 f8006510 f6899f48 +oops <0> c036cba5 b78ba000 f8006780 00000000 f6899f54 f800902c 00000000 f6899f5c +oops <0> f80090a8 f6899f88 c0101132 f8006780 c07d0f60 b78ba000 f8006780 08b41228 +oops Call Trace: +oops [] ? __pci_register_driver+0x45/0xb0 +oops [] ? agp_amd64_init+0x2c/0xa0 [amd64_agp] +oops [] ? agp_amd64_mod_init+0x8/0xa [amd64_agp] +oops [] ? do_one_initcall+0x32/0x1a0 +oops [] ? agp_amd64_mod_init+0x0/0xa [amd64_agp] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_write+0x42/0x70 +oops [] ? syscall_call+0x7/0xb +oops Code: 89 f0 e8 86 ea ff ff 83 c4 10 89 f8 5b 5e 5f 5d c3 8b 06 c7 04 24 2c 6a 76 c0 89 44 24 04 e8 85 59 1c 00 8b 56 04 e9 56 ff ff ff <8b> 40 30 bf f0 ff ff ff e8 d5 11 f5 ff 8b 06 c7 04 24 6c 6a 76 +oops EIP: [] driver_register+0xfe/0x130 SS:ESP 0068:f6899f18 +oops CR2: 00000000f8147540 +oops +oops Found OOPS (21): +oops BUG: unable to handle kernel paging request at ffffc900102b8000 +oops IP: [] azx_create+0x36b/0x73d [snd_hda_intel] +oops PGD 1d897067 PUD 1d898067 PMD 1693c067 PTE 800000fd00000173 +oops Oops: 0009 [#1] SMP +oops last sysfs file: /sys/devices/platform/i8042/serio1/input/input3/event3/uevent +oops CPU 0 +oops Modules linked in: snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore ppdev psmouse serio_raw parport_pc i2c_viapro edac_core lp snd_page_alloc parport k8temp edac_mce_amd shpchp 8139too 8139cp mii floppy pata_via sata_via +oops +oops Pid: 735, comm: work_for_cpu Not tainted 2.6.35-22-generic #34-Ubuntu 0A88h/HP dx2255 MT(RL028AV) +oops RIP: 0010:[] [] azx_create+0x36b/0x73d [snd_hda_intel] +oops RSP: 0018:ffff88001a7d7e20 EFLAGS: 00010282 +oops RAX: ffffc900102b8000 RBX: ffff88001a7d7e80 RCX: 0000000000000000 +oops RDX: 0000000000000000 RSI: 0000000000000286 RDI: 0000000000000286 +oops RBP: ffff88001a7d7e70 R08: 0000000000000001 R09: 0000000000000040 +oops R10: 0000000000000008 R11: 0000000000000003 R12: ffff88001cf02000 +oops R13: ffff880016b0b000 R14: 0000000000000000 R15: ffff880016b0b400 +oops FS: 00007fe9f4940700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffc900102b8000 CR3: 000000001c49c000 CR4: 00000000000006f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process work_for_cpu (pid: 735, threadinfo ffff88001a7d6000, task ffff88001694c4a0) +oops Stack: +oops ffffffffa00b71e0 ffffffffa014cd78 ffffffff00000000 000000001a7d7e88 +oops <0> 0000000000000000 ffff88001cf02000 ffffffffa014c520 ffff88001cf02090 +oops <0> 0000000000000000 0000000000000000 ffff88001a7d7eb0 ffffffffa014b100 +oops Call Trace: +oops [] azx_probe+0xb8/0x284 [snd_hda_intel] +oops [] ? do_work_for_cpu+0x0/0x30 +oops [] local_pci_probe+0x17/0x20 +oops [] do_work_for_cpu+0x18/0x30 +oops [] kthread+0x96/0xa0 +oops [] kernel_thread_helper+0x4/0x10 +oops [] ? kthread+0x0/0xa0 +oops [] ? kernel_thread_helper+0x0/0x10 +oops Code: ef 31 f6 4c 89 ef 89 4d c0 e8 17 d5 ff ff 85 c0 0f 88 c3 03 00 00 4c 89 e7 e8 87 9d 18 e1 41 8b 7d 40 e8 1e 01 f8 e0 49 8b 45 38 <66> 44 8b 30 41 8b 45 14 8b 4d c0 8d 50 fd 83 fa 01 77 3f 31 d2 +oops RIP [] azx_create+0x36b/0x73d [snd_hda_intel] +oops RSP +oops CR2: ffffc900102b8000 +oops +oops Found OOPS (22): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [] __mutex_lock_slowpath+0x9a/0x140 +oops *pde = df469067 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/devices/platform/radeon_cp.0/firmware/radeon_cp.0/loading +oops Modules linked in: snd_seq_midi_event radeon(+) snd_seq sbp2 uvcvideo i82875p_edac snd_timer snd_seq_device ieee1394 sunrpc edac_core videodev ttm v4l1_compat drm_kms_helper snd drm i2c_algo_bit snd_page_alloc btusb soundcore intel_agp lp bluetooth agpgart parport shpchp serio_raw hid_logitech ff_memless usbhid hid usb_storage firewire_ohci e1000 firewire_core crc_itu_t +oops +oops Pid: 353, comm: plymouthd Not tainted 2.6.35-7-generic #11-Ubuntu Canterwood/ +oops EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +oops EIP is at __mutex_lock_slowpath+0x9a/0x140 +oops EAX: 00000000 EBX: f2796e90 ECX: f2796e98 EDX: f6a71ec0 +oops ESI: f2796e94 EDI: f2796e90 EBP: f6a71ed8 ESP: f6a71eb4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 353, ti=f6a70000 task=c106cc20 task.ti=f6a70000) +oops Stack: +oops f6a71ec4 c106cc20 f2796e98 f2796e98 00000000 f2796c00 f2796e90 f6b1fb00 +oops <0> f2796e90 f6a71ee8 c05cb095 f6b1fb00 f6b1fb00 f6a71efc f87e7dc3 f6b1fb00 +oops <0> f6b1fb60 f2796c00 f6a71f44 f87df337 00000001 f87efe25 f87ef220 f87f1590 +oops Call Trace: +oops [] ? mutex_lock+0x25/0x40 +oops [] ? drm_fb_release+0x23/0x70 [drm] +oops [] ? drm_release+0x3e7/0x4c0 [drm] +oops [] ? __fput+0xdf/0x1f0 +oops [] ? fput+0x1d/0x30 +oops [] ? filp_close+0x4c/0x80 +oops [] ? sys_close+0x75/0xc0 +oops [] ? syscall_call+0x7/0xb +oops Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 5e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +oops EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f6a71eb4 +oops CR2: 0000000000000000 +oops +oops Found OOPS (23): +oops BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +oops IP: [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +oops PGD 130ef4067 PUD 130ef3067 PMD 0 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4/name +oops CPU 1 +oops Modules linked in: intel_ips(+) serio_raw snd_page_alloc squashfs aufs nls_cp437 isofs dm_raid45 xor btrfs zlib_deflate crc32c libcrc32c usb_storage usbhid hid i915 drm_kms_helper drm atl1c ahci intel_agp i2c_algo_bit video output libahci +oops +oops Pid: 1463, comm: modprobe Not tainted 2.6.35-22-generic #33-Ubuntu Base Board Product Name/Satellite L655 +oops RIP: 0010:[] [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +oops RSP: 0018:ffff88012d92bc48 EFLAGS: 00010202 +oops RAX: 0000000000c800c8 RBX: 0000000000000000 RCX: 0000000000c800c8 +oops RDX: 0000000000000000 RSI: ffff88012d92bc64 RDI: 0000000000c800c8 +oops RBP: ffff88012d92bc88 R08: 0000000000000000 R09: 0000000000000000 +oops R10: 0000000000000000 R11: 0000000000000002 R12: 0000000000c800c8 +oops R13: ffff8801303a90c0 R14: ffff880131703090 R15: 00000000fffffff4 +oops FS: 00007ff77fdc8700(0000) GS:ffff880001e40000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: 0000000000000008 CR3: 000000012e690000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1463, threadinfo ffff88012d92a000, task ffff880130ee16e0) +oops Stack: +oops ffff88012d92bc88 ffffffff81142fa4 ffff88012d92bc78 0000000031703000 +oops <0> ffff880131703000 ffff8801303a90c0 ffff880131703000 00000000fffffff4 +oops <0> ffff88012d92bcd8 ffffffffa012dfb1 ffff88012d92bcb8 ffff8801321edb90 +oops Call Trace: +oops [] ? kmem_cache_alloc_notrace+0xb4/0xd0 +oops [] ips_probe+0x71/0x710 [intel_ips] +oops [] local_pci_probe+0x17/0x20 +oops [] __pci_device_probe+0xe9/0xf0 +oops [] ? kobject_get+0x1a/0x30 +oops [] ? get_device+0x19/0x20 +oops [] pci_device_probe+0x3a/0x60 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] ? notifier_call_chain+0x56/0x80 +oops [] __pci_register_driver+0x56/0xd0 +oops [] ? __blocking_notifier_call_chain+0x65/0x80 +oops [] ? ips_init+0x0/0x20 [intel_ips] +oops [] ips_init+0x1e/0x20 [intel_ips] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: a0 48 c7 c7 88 ec ac 81 48 c7 c3 80 fa 12 a0 e8 c1 0c 19 e1 48 85 c0 74 44 bf ac 01 00 00 4c 89 e6 e8 3f 8e f0 e0 66 90 41 89 c4 <8b> 53 08 41 c1 e4 12 41 c1 ec 15 41 69 c4 e8 03 00 00 39 c2 0f +oops RIP [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +oops RSP +oops CR2: 0000000000000008 +oops +oops Found OOPS (24): +oops BUG: unable to handle kernel NULL pointer dereference at 00000008 +oops IP: [] ips_detect_cpu+0x62/0x180 [intel_ips] +oops *pdpt = 0000000035926001 *pde = 0000000000000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/platform/pcspkr/uevent +oops Modules linked in: intel_ips(+) sony_laptop(+) video output lp parport usbhid hid firewire_ohci ahci sdhci_pci atl1c libahci firewire_core sdhci led_class crc_itu_t +oops +oops Pid: 569, comm: modprobe Not tainted 2.6.35-22-generic-pae #35-Ubuntu VAIO/VPCY21S1E +oops EIP: 0060:[] EFLAGS: 00010286 CPU: 0 +oops EIP is at ips_detect_cpu+0x62/0x180 [intel_ips] +oops EAX: 00580058 EBX: 00000000 ECX: 00580058 EDX: 00000000 +oops ESI: f5965e04 EDI: f60eac00 EBP: f5965e14 ESP: f5965de4 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process modprobe (pid: 569, ti=f5964000 task=f593b2c0 task.ti=f5964000) +oops Stack: +oops f88f6efc f88f6e9e f759db40 f5965e14 c02162f1 f5965e08 c05ee9c9 f88f5eef +oops <0> 00000000 f60eac00 f75e9000 fffffff4 f5965e4c f88f5f2b c027b6cd f5965e4c +oops <0> c027ac77 f5965e4c c027b07a f5965e38 f75e9000 f75e9060 c037614e f75e9000 +oops Call Trace: +oops [] ? kmem_cache_alloc_notrace+0x91/0xb0 +oops [] ? mutex_lock+0x19/0x40 +oops [] ? ips_probe+0x1f/0x6a0 [intel_ips] +oops [] ? ips_probe+0x5b/0x6a0 [intel_ips] +oops [] ? sysfs_add_one+0x1d/0x110 +oops [] ? sysfs_new_dirent+0x67/0x100 +oops [] ? sysfs_addrm_finish+0x1a/0xb0 +oops [] ? pci_match_device+0xbe/0xd0 +oops [] ? local_pci_probe+0x13/0x20 +oops [] ? pci_device_probe+0x68/0x90 +oops [] ? really_probe+0x50/0x150 +oops [] ? pm_runtime_barrier+0x57/0xb0 +oops [] ? driver_probe_device+0x3c/0x60 +oops [] ? __driver_attach+0x81/0x90 +oops [] ? bus_for_each_dev+0x53/0x80 +oops [] ? driver_attach+0x1e/0x20 +oops [] ? __driver_attach+0x0/0x90 +oops [] ? bus_add_driver+0xd5/0x280 +oops [] ? pci_device_remove+0x0/0x40 +oops [] ? driver_register+0x6a/0x130 +oops [] ? __pci_register_driver+0x45/0xb0 +oops [] ? ips_init+0x17/0x19 [intel_ips] +oops [] ? do_one_initcall+0x32/0x1a0 +oops [] ? ips_init+0x0/0x19 [intel_ips] +oops [] ? sys_init_module+0x9b/0x1e0 +oops [] ? sys_write+0x42/0x70 +oops [] ? sysenter_do_call+0x12/0x28 +oops Code: d5 83 c7 90 ba f5 6d 8f f8 b8 8c 42 85 c0 e8 56 ea a6 c7 bb 80 74 8f f8 85 c0 74 35 b8 ac 01 00 00 89 f2 e8 21 d5 83 c7 90 89 c1 <8b> 53 08 c1 e1 12 c1 e9 15 69 c1 e8 03 00 00 39 c2 75 75 89 d8 +oops EIP: [] ips_detect_cpu+0x62/0x180 [intel_ips] SS:ESP 0068:f5965de4 +oops CR2: 0000000000000008 +oops +oops Found OOPS (25): +oops BUG: unable to handle kernel paging request at ffffc90000360000 +oops IP: [] azx_create+0x36b/0x73d [snd_hda_intel] +oops PGD 75417067 PUD 75418067 PMD 75522067 PTE 800000fd00000173 +oops Oops: 0009 [#1] SMP +oops last sysfs file: /sys/devices/pci0000:00/0000:00:0f.0/host0/target0:0:0/0:0:0:0/block/sda/sda17/alignment_offset +oops CPU 0 +oops Modules linked in: snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc ppdev lp parport_pc k8temp edac_core edac_mce_amd i2c_viapro parport shpchp psmouse joydev serio_raw usbhid hid floppy via_rhine pata_via mii sata_via +oops +oops Pid: 856, comm: work_for_cpu Not tainted 2.6.35-22-generic #35-Ubuntu MS-7253/MS-7253 +oops RIP: 0010:[] [] azx_create+0x36b/0x73d [snd_hda_intel] +oops RSP: 0018:ffff880073aa5e20 EFLAGS: 00010282 +oops RAX: ffffc90000360000 RBX: ffff880073aa5e80 RCX: 0000000000000000 +oops RDX: 0000000000000000 RSI: 0000000000000286 RDI: 0000000000000286 +oops RBP: ffff880073aa5e70 R08: 0000000000000001 R09: 0000000000000040 +oops R10: 0000000000000008 R11: 0000000000000003 R12: ffff8800752af000 +oops R13: ffff88007575e400 R14: 0000000000000000 R15: ffff88007575d400 +oops FS: 00007f7f480467a0(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffc90000360000 CR3: 000000007536b000 CR4: 00000000000006f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process work_for_cpu (pid: 856, threadinfo ffff880073aa4000, task ffff88007417adc0) +oops Stack: +oops ffffffffa00bf1e0 ffffffffa009ad78 ffffffff00000000 0000000073aa5e88 +oops <0> 0000000000000000 ffff8800752af000 ffffffffa009a520 ffff8800752af090 +oops <0> 0000000000000000 0000000000000000 ffff880073aa5eb0 ffffffffa0099100 +oops Call Trace: +oops [] azx_probe+0xb8/0x284 [snd_hda_intel] +oops [] ? do_work_for_cpu+0x0/0x30 +oops [] local_pci_probe+0x17/0x20 +oops [] do_work_for_cpu+0x18/0x30 +oops [] kthread+0x96/0xa0 +oops [] kernel_thread_helper+0x4/0x10 +oops [] ? kthread+0x0/0xa0 +oops [] ? kernel_thread_helper+0x0/0x10 +oops Code: ef 31 f6 4c 89 ef 89 4d c0 e8 17 d5 ff ff 85 c0 0f 88 c3 03 00 00 4c 89 e7 e8 87 bd 23 e1 41 8b 7d 40 e8 1e 21 03 e1 49 8b 45 38 <66> 44 8b 30 41 8b 45 14 8b 4d c0 8d 50 fd 83 fa 01 77 3f 31 d2 +oops RIP [] azx_create+0x36b/0x73d [snd_hda_intel] +oops RSP +oops CR2: ffffc90000360000 +oops +oops Found OOPS (26): +oops BUG: unable to handle kernel paging request at ffffc90422101ffc +oops IP: [] evergreen_cp_start+0x4c/0x570 [radeon] +oops PGD 157c0c067 PUD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/snd_rawmidi/initstate +oops CPU 0 +oops Modules linked in: snd_rawmidi snd_seq_midi_event snd_seq arc4 snd_timer radeon(+) snd_seq_device snd ttm iwlagn i915 iwlcore soundcore drm_kms_helper uvcvideo drm joydev usbhid mac80211 hid snd_page_alloc videodev v4l1_compat v4l2_compat_ioctl32 intel_ips hp_wmi hp_accel lis3lv02d input_polldev video intel_agp btusb wacom cfg80211 bluetooth i2c_algo_bit led_class psmouse output serio_raw lp parport ahci libahci r8169 mii +oops +oops Pid: 564, comm: modprobe Not tainted 2.6.35-24-generic #42-Ubuntu 1486/HP TouchSmart tm2 Notebook PC +oops RIP: 0010:[] [] evergreen_cp_start+0x4c/0x570 [radeon] +oops RSP: 0018:ffff880145bcbb48 EFLAGS: 00010286 +oops RAX: 0000000000000000 RBX: 0000000000000000 RCX: ffff880145bcbfd8 +oops RDX: ffffc90422101ffc RSI: 0000000000000007 RDI: 0000000000000010 +oops RBP: ffff880145bcbb58 R08: ffff880145bca000 R09: 00000000ffffffff +oops R10: 00000000ffffffff R11: 0000000000000001 R12: ffff880153604000 +oops R13: 0000000000c10027 R14: 00000000fffffff4 R15: ffffffffa0408c80 +oops FS: 00007f3dabda0700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffc90422101ffc CR3: 000000014eb1c000 CR4: 00000000000006f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 564, threadinfo ffff880145bca000, task ffff880145b80000) +oops Stack: +oops ffff880153604000 0000000008000911 ffff880145bcbb78 ffffffffa03e174d +oops <0> ffff880153604000 0000000000000000 ffff880145bcbb98 ffffffffa03e1a6f +oops <0> ffff880153604000 0000000000000000 ffff880145bcbbc8 ffffffffa03e1d63 +oops Call Trace: +oops [] evergreen_cp_resume+0x2ad/0x520 [radeon] +oops [] evergreen_startup+0xaf/0x140 [radeon] +oops [] evergreen_init+0x263/0x4d0 [radeon] +oops [] radeon_device_init+0x344/0x4a0 [radeon] +oops [] radeon_driver_load_kms+0xa3/0x250 [radeon] +oops [] drm_get_dev+0x15f/0x2c0 [drm] +oops [] ? sysfs_add_one+0x2c/0x130 +oops [] radeon_pci_probe+0x15/0x269 [radeon] +oops [] local_pci_probe+0x17/0x20 +oops [] __pci_device_probe+0xe9/0xf0 +oops [] ? kobject_get+0x1a/0x30 +oops [] ? get_device+0x19/0x20 +oops [] pci_device_probe+0x3a/0x60 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0x9b/0xa0 +oops [] ? __driver_attach+0x0/0xa0 +oops [] bus_for_each_dev+0x68/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xde/0x280 +oops [] driver_register+0x80/0x150 +oops [] __pci_register_driver+0x56/0xd0 +oops [] drm_init+0x111/0x120 [drm] +oops [] ? vga_switcheroo_register_handler+0x3a/0x60 +oops [] ? radeon_init+0x0/0xc6 [radeon] +oops [] radeon_init+0xc4/0xc6 [radeon] +oops [] do_one_initcall+0x3c/0x1a0 +oops [] sys_init_module+0xbb/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 00 00 41 8b bc 24 e4 09 00 00 85 ff 0f 8e ce 03 00 00 41 8b 84 24 d4 09 00 00 89 c2 83 c0 01 48 c1 e2 02 49 03 94 24 c8 09 00 00 02 00 44 05 c0 41 8b 94 24 e4 09 00 00 41 23 84 24 f4 09 00 +oops RIP [] evergreen_cp_start+0x4c/0x570 [radeon] +oops RSP +oops CR2: ffffc90422101ffc +oops +oops Found OOPS (27): +oops BUG: unable to handle kernel NULL pointer dereference at (null) +oops IP: [<(null)>] (null) +oops *pde = 00000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/kernel/uevent_seqnum +oops Modules linked in: joydev snd_hda_codec_intelhdmi snd_hda_codec_realtek btusb bluetooth tpm_infineon arc4 snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi i915 iwlagn snd_seq_midi_event drm_kms_helper snd_seq drm snd_timer uvcvideo iwlcore snd_seq_device videodev v4l1_compat mac80211 tpm_tis tpm psmouse tpm_bios serio_raw snd toshiba_bluetooth toshiba_acpi intel_agp agpgart cfg80211 i2c_algo_bit soundcore intel_ips snd_page_alloc video output lp parport ahci sdhci_pci sdhci led_class libahci e1000e +oops +oops Pid: 624, comm: ips-adjust Not tainted 2.6.35-25-generic #44-Ubuntu Portable PC/TECRA R700 +oops EIP: 0060:[<00000000>] EFLAGS: 00010202 CPU: 2 +oops EIP is at 0x0 +oops EAX: 00000292 EBX: f5ae5b00 ECX: 00002328 EDX: 00000292 +oops ESI: f5ae5b2c EDI: 00000000 EBP: f5a61fbc ESP: f5a61f78 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process ips-adjust (pid: 624, ti=f5a60000 task=f51d8000 task.ti=f5a60000) +oops Stack: +oops f84eab93 c08c4700 c08c4700 f70a9960 00000001 c08c4700 c08c4700 f5a61fac +oops <0> 0000005a f6a3e200 008c4700 0000058f f51d005a 00000000 f5ae7dec f5ae5b00 +oops <0> f84ea900 f5a61fe4 c0165ad4 00000000 00000000 00000000 f5a61fd0 f5a61fd0 +oops Call Trace: +oops [] ? ips_adjust+0x293/0x400 [intel_ips] +oops [] ? ips_adjust+0x0/0x400 [intel_ips] +oops [] ? kthread+0x74/0x80 +oops [] ? kthread+0x0/0x80 +oops [] ? kernel_thread_helper+0x6/0x10 +oops Code: Bad EIP value. +oops EIP: [<00000000>] 0x0 SS:ESP 0068:f5a61f78 +oops CR2: 0000000000000000 +oops +oops Found OOPS (28): +oops BUG: unable to handle kernel NULL pointer dereference at 0000018e +oops IP: [] fb_release+0x25/0x60 +oops *pde = 00000000 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/virtual/vtconsole/vtcon1/uevent +oops Modules linked in: parport_pc ppdev snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep arc4 snd_pcm ath5k snd_seq_midi snd_rawmidi ath i915 snd_seq_midi_event mac80211 snd_seq joydev snd_timer snd_seq_device drm_kms_helper uvcvideo cfg80211 drm snd psmouse videodev serio_raw soundcore snd_page_alloc i2c_algo_bit eeepc_laptop video sparse_keymap lp parport usbhid hid usb_storage uas atl2 +oops +oops Pid: 246, comm: plymouthd Not tainted 2.6.38-999-generic #201103011141 ASUSTeK Computer INC. 701/701 +oops EIP: 0060:[] EFLAGS: 00210286 CPU: 0 +oops EIP is at fb_release+0x25/0x60 +oops EAX: 00000186 EBX: f41f1800 ECX: c12aaf90 EDX: f6df6000 +oops ESI: f41f1808 EDI: f0a64e40 EBP: f6df7f40 ESP: f6df7f38 +oops DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +oops Process plymouthd (pid: 246, ti=f6df6000 task=f6e325e0 task.ti=f6df6000) +oops Stack: +oops f3e9e880 00000008 f6df7f74 c1127c39 00000001 00000000 00000000 f3e9e880 +oops f41966c0 f43e83f0 f0a64e48 f43e83f0 f0a64e40 f6e03100 00000000 f6df7f7c +oops c1127d7e f6df7f94 c112467c 0012d000 f6e03140 f6e03100 0000000c f6df7fac +oops Call Trace: +oops [] __fput+0x99/0x1c0 +oops [] fput+0x1e/0x30 +oops [] filp_close+0x4c/0x80 +oops [] sys_close+0x6e/0xc0 +oops [] sysenter_do_call+0x12/0x28 +oops [] ? squash_the_stupid_serial_number+0xc0/0xe0 +oops Code: b4 26 00 00 00 00 55 89 e5 83 ec 08 89 1c 24 89 74 24 04 3e 8d 74 26 00 8b 5a 74 8d 73 08 89 f0 e8 11 f9 25 00 8b 83 0c 03 00 00 <8b> 48 08 85 c9 74 0f ba 01 00 00 00 89 d8 ff d1 8b 83 0c 03 00 +oops EIP: [] fb_release+0x25/0x60 SS:ESP 0068:f6df7f38 +oops CR2: 000000000000018e +oops +oops Found OOPS (29): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/pcmcia/initstate +oops CPU 1 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1089, comm: modprobe Tainted: P 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff8801194a3d80 EFLAGS: 00010246 +oops RAX: ffffffffa0067698 RBX: ffffffff817d6acc RCX: 000000000000000b +oops RDX: ffffffffa0c8d858 RSI: ffffc900110f526a RDI: ffffffff817d6acd +oops RBP: ffff8801194a3d88 R08: ffffffffa0067520 R09: ffffc900110f5948 +oops R10: ffffc900110f5260 R11: 000000000000000c R12: ffffc900110f53c8 +oops R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007f72c73de700(0000) GS:ffff880001e40000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: ffffffffa0c8d860 CR3: 00000001187f3000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1089, threadinfo ffff8801194a2000, task ffff880118cfc4a0) +oops Stack: +oops 0000000000000000 ffff8801194a3df8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa0067520 ffffc900110f1000 ffffc900110f5348 ffffc900110f5260 +oops <0> ffffc900110f5948 ffff8801194a3df8 ffffffffa0067520 ffffc900110f1000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] ? vfs_write+0x132/0x1a0 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (30): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#2] SMP +oops last sysfs file: /sys/module/snd_hda_codec/initstate +oops CPU 3 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1125, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff88011bb7dd80 EFLAGS: 00010246 +oops RAX: ffffffffa015d3b8 RBX: ffffffff817d6acc RCX: 000000000000000b +oops RDX: ffffffffa0c8d858 RSI: ffffc9001113804a RDI: ffffffff817d6acd +oops RBP: ffff88011bb7dd88 R08: ffffffffa015d240 R09: ffffc900111387b8 +oops R10: ffffc90011138040 R11: 000000000000000c R12: ffffc900111381b8 +oops R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007fa52f1e1700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: ffffffffa0c8d860 CR3: 0000000119c91000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1125, threadinfo ffff88011bb7c000, task ffff880117c496e0) +oops Stack: +oops 0000000000000000 ffff88011bb7ddf8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa015d240 ffffc90011134000 ffffc90011138138 ffffc90011138040 +oops <0> ffffc900111387b8 ffff88011bb7ddf8 ffffffffa015d240 ffffc90011134000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (31): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#3] SMP +oops last sysfs file: /sys/module/snd_hda_intel/initstate +oops CPU 3 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1129, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff88011ac0dd80 EFLAGS: 00010246 +oops RAX: ffffffffa0c623b8 RBX: ffffffff817d6acc RCX: 000000000000000b +oops RDX: ffffffffa0c8d858 RSI: ffffc9001114204a RDI: ffffffff817d6acd +oops RBP: ffff88011ac0dd88 R08: ffffffffa0c62240 R09: ffffc900111427b8 +oops R10: ffffc90011142040 R11: 000000000000000c R12: ffffc900111421b8 +oops R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007f532b66d700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: ffffffffa0c8d860 CR3: 000000011b29c000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1129, threadinfo ffff88011ac0c000, task ffff880117c4c4a0) +oops Stack: +oops 0000000000000000 ffff88011ac0ddf8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa0c62240 ffffc9001113e000 ffffc90011142138 ffffc90011142040 +oops <0> ffffc900111427b8 ffff88011ac0ddf8 ffffffffa0c62240 ffffc9001113e000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (32): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#4] SMP +oops last sysfs file: /sys/module/snd_hda_codec/initstate +oops CPU 3 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1140, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff880127ea7d80 EFLAGS: 00010246 +oops RAX: ffffffffa0c813b8 RBX: ffffffff817d6acc RCX: 000000000000000b +oops RDX: ffffffffa0c8d858 RSI: ffffc9001114f04a RDI: ffffffff817d6acd +oops RBP: ffff880127ea7d88 R08: ffffffffa0c81240 R09: ffffc9001114f7b8 +oops R10: ffffc9001114f040 R11: 000000000000000c R12: ffffc9001114f1b8 +oops R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007f2de6864700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffffffa0c8d860 CR3: 000000011ba76000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1140, threadinfo ffff880127ea6000, task ffff880117c4db80) +oops Stack: +oops 0000000000000000 ffff880127ea7df8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa0c81240 ffffc9001114b000 ffffc9001114f138 ffffc9001114f040 +oops <0> ffffc9001114f7b8 ffff880127ea7df8 ffffffffa0c81240 ffffc9001114b000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (33): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#5] SMP +oops last sysfs file: /sys/module/snd_hda_codec/initstate +oops CPU 3 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1144, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff88011976dd80 EFLAGS: 00010246 +oops RAX: ffffffffa0cee3b8 RBX: ffffffff817d6acc RCX: 000000000000000b +oops RDX: ffffffffa0c8d858 RSI: ffffc9001115904a RDI: ffffffff817d6acd +oops RBP: ffff88011976dd88 R08: ffffffffa0cee240 R09: ffffc900111597b8 +oops R10: ffffc90011159040 R11: 000000000000000c R12: ffffc900111591b8 +oops R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007f0d3b909700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffffffa0c8d860 CR3: 000000011acb9000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1144, threadinfo ffff88011976c000, task ffff880117c48000) +oops Stack: +oops 0000000000000000 ffff88011976ddf8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa0cee240 ffffc90011155000 ffffc90011159138 ffffc90011159040 +oops <0> ffffc900111597b8 ffff88011976ddf8 ffffffffa0cee240 ffffc90011155000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (34): +oops BUG: unable to handle kernel paging request at ffffffffa0c8d860 +oops IP: [] module_bug_finalize+0x7e/0xd0 +oops PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +oops Oops: 0002 [#6] SMP +oops last sysfs file: /sys/bus/acpi/drivers/NVIDIA ACPI Video Driver/uevent +oops CPU 0 +oops Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +oops +oops Pid: 1601, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +oops RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +oops RSP: 0018:ffff880116f57d80 EFLAGS: 00010a02 +oops RAX: ffffffffa0b7d298 RBX: ffffffff817d6acc RCX: 0000000000000000 +oops RDX: ffffffffa0c8d858 RSI: ffffc900121358f0 RDI: ffffffff817d6ad8 +oops RBP: ffff880116f57d88 R08: ffffffffa0b7d120 R09: ffffc90012135e88 +oops R10: ffffc90012135828 R11: 000000000000000c R12: ffffc90012135ac8 +oops R13: ffffc90012135d48 R14: ffffffff817a67b7 R15: 0000000000000006 +oops FS: 00007f53be4b8700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: ffffffffa0c8d860 CR3: 000000011794d000 CR4: 00000000000006f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 1601, threadinfo ffff880116f56000, task ffff880116f3db80) +oops Stack: +oops ffffc90012135e08 ffff880116f57df8 ffffffff8103273f ffffffff812c3970 +oops <0> ffffffffa0b7d120 ffffc900120f9000 ffffc90012135a48 ffffc90012135828 +oops <0> ffffc900121367c8 ffff880116f57df8 ffffffffa0b7d120 ffffc900120f9000 +oops Call Trace: +oops [] module_finalize+0x11f/0x160 +oops [] ? generic_swap+0x0/0x30 +oops [] load_module+0xc65/0x1140 +oops [] sys_init_module+0x62/0x200 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +oops RIP [] module_bug_finalize+0x7e/0xd0 +oops RSP +oops CR2: ffffffffa0c8d860 +oops +oops Found OOPS (35): +oops BUG: unable to handle kernel NULL pointer dereference at 0000000000000065 +oops IP: [] ReadVBIOSTablData+0x29/0x410 [xgifb] +oops PGD 20b5aa067 PUD 20b5a9067 PMD 0 +oops Oops: 0000 [#1] SMP +oops last sysfs file: /sys/devices/virtual/block/loop4/removable +oops CPU 0 +oops Modules linked in: xgifb(C+) intel_rng(-) hed i3200_edac edac_core lp parport usb_storage tg3 btrfs zlib_deflate libcrc32c +oops +oops Pid: 414, comm: modprobe Tainted: G C 2.6.38-8-server #42-Ubuntu ASUS RS100-E5/PI2/P5BV-M/RS100-E5 +oops RIP: 0010:[] [] ReadVBIOSTablData+0x29/0x410 [xgifb] +oops RSP: 0018:ffff88020c81f8c8 EFLAGS: 00010246 +oops RAX: 0000000000000000 RBX: ffffffffa012eb80 RCX: 000000000003ffff +oops RDX: 0000000000000000 RSI: ffff88020c81f8d8 RDI: 0000000000000031 +oops RBP: ffff88020c81f8c8 R08: 0000000000000000 R09: 000000000000c0c3 +oops R10: 0000000000000000 R11: 0000000000000003 R12: 00000000fffffffb +oops R13: ffff88020e9b6090 R14: ffff88020e9b6200 R15: 000000000040506a +oops FS: 00007fddc20b9720(0000) GS:ffff8800dfc00000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +oops CR2: 0000000000000065 CR3: 000000020b5a0000 CR4: 00000000000406f0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 414, threadinfo ffff88020c81e000, task ffff88020cde96e0) +oops Stack: +oops ffff88020c81fca8 ffffffffa01132da ffff88021fffcc00 000000000000ec44 +oops 000000000000ec54 000000000000ec40 000000000000ec4e 000000000000ec42 +oops ffff880200000041 000000000000ec4a 000000000000ec46 000000000000ec47 +oops Call Trace: +oops [] XGIInitNew+0x1ea/0xaa0 [xgifb] +oops [] ? build_zonelists+0x1f0/0x290 +oops [] ? put_dec+0x59/0x60 +oops [] ? vsnprintf+0x35e/0x620 +oops [] xgifb_probe+0x716/0x1051 [xgifb] +oops [] local_pci_probe+0x5f/0xd0 +oops [] pci_device_probe+0x129/0x130 +oops [] ? driver_sysfs_add+0x7a/0xb0 +oops [] really_probe+0x68/0x190 +oops [] driver_probe_device+0x45/0x70 +oops [] __driver_attach+0xab/0xb0 +oops [] ? __driver_attach+0x0/0xb0 +oops [] bus_for_each_dev+0x5e/0x90 +oops [] driver_attach+0x1e/0x20 +oops [] bus_add_driver+0xc5/0x280 +oops [] ? xgifb_init_module+0x0/0xb55 [xgifb] +oops [] driver_register+0x76/0x140 +oops [] ? xgifb_init_module+0x0/0xb55 [xgifb] +oops [] __pci_register_driver+0x56/0xd0 +oops [] ? xgifb_init_module+0x0/0xb55 [xgifb] +oops [] xgifb_init_module+0x7f/0xb55 [xgifb] +oops [] do_one_initcall+0x45/0x190 +oops [] sys_init_module+0xfb/0x250 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 00 00 55 48 89 e5 0f 1f 44 00 00 48 8b 96 f0 00 00 00 40 80 ff 31 74 0a c9 c3 0f 1f 84 00 00 00 00 00 66 c7 86 b8 00 00 00 00 00 <0f> b6 42 65 a8 01 74 e5 66 c7 86 b8 00 00 00 01 00 0f b6 8a 16 +oops RIP [] ReadVBIOSTablData+0x29/0x410 [xgifb] +oops RSP +oops CR2: 0000000000000065 +oops +oops Found OOPS (36): +oops BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +oops IP: [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +oops PGD 13361f067 PUD 133627067 PMD 0 +oops Oops: 0002 [#1] SMP +oops last sysfs file: /sys/module/snd_pcm/initstate +oops CPU 4 +oops Modules linked in: snd_usbmidi_lib snd_hda_codec snd_seq_midi snd_rawmidi iwlcore ir_lirc_codec rc_rc6_mce mac80211 lirc_dev psmouse ir_sony_decoder hp_accel(+) snd_seq_midi_event hp_wmi ir_jvc_decoder snd_seq ir_rc6_decoder snd_hwdep jmb38x_ms snd_seq_device snd_pcm sparse_keymap lis3lv02d ene_ir ir_rc5_decoder ir_nec_decoder btusb rc_core serio_raw memstick ses(+) snd_timer +oops input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input10 +oops input_polldev cfg80211 +oops Registered led device: hp::hddprotect +oops hp_accel: driver loaded +oops bluetooth uvcvideo videodev video enclosure i7core_edac snd edac_core v4l2_compat_ioctl32 soundcore lp snd_page_alloc parport usb_storage uas hid_a4tech usbhid hid ahci firewire_ohci libahci r8169 sdhci_pci firewire_core sdhci crc_itu_t +oops +oops Pid: 548, comm: modprobe Not tainted 2.6.38-8-generic #42-Ubuntu Hewlett-Packard HP Pavilion dv6 Notebook PC/3659 +oops RIP: 0010:[] [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +oops RSP: 0018:ffff8801035e9d88 EFLAGS: 00010286 +oops RAX: ffff880101b3aeb8 RBX: 0000000000000000 RCX: 0000000000000000 +oops RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000 +oops RBP: ffff8801035e9df8 R08: 00000000000007f9 R09: ffff880137022ddc +oops R10: 0000000000000000 R11: ffff880101a00000 R12: ffff880134e5f442 +oops R13: 0000000000000000 R14: ffff880134e04ea4 R15: 0000000000000237 +oops FS: 00007fe283dec720(0000) GS:ffff8800bf500000(0000) knlGS:0000000000000000 +oops CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +oops CR2: 0000000000000008 CR3: 0000000106387000 CR4: 00000000000006e0 +oops DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +oops DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +oops Process modprobe (pid: 548, threadinfo ffff8801035e8000, task ffff8801059b8000) +oops Stack: +oops 0000000000000000 ffff880133249148 ffff002000830112 ffffffff00000000 +oops ffff880101a00000 ffff8801050dfae0 ffff880137022dd8 000000d3000000e0 +oops ffff8801035e9df8 ffff880102913540 ffff880133249000 ffff880101a00000 +oops Call Trace: +oops [] ses_match_to_enclosure+0xa5/0x1f0 [ses] +oops [] ses_intf_add+0x4b8/0x578 [ses] +oops [] ? ses_init+0x0/0x1000 [ses] +oops [] class_interface_register+0xa9/0xe0 +oops [] scsi_register_interface+0x16/0x20 +oops [] ses_init+0x14/0x1000 [ses] +oops [] do_one_initcall+0x45/0x190 +oops [] sys_init_module+0xfb/0x250 +oops [] system_call_fastpath+0x16/0x1b +oops Code: 49 63 c0 41 83 c0 01 48 69 c0 78 02 00 00 49 8d 84 03 78 02 00 00 48 3d 00 f0 ff ff 77 29 4d 85 e4 74 24 41 0f b6 14 24 48 8b 30 <4c> 89 66 08 f6 c2 80 75 13 89 d0 83 e0 0f 83 f8 06 0f 84 89 00 +oops RIP [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +oops RSP +oops CR2: 0000000000000008 +oops +oops FAILED [CRITICAL] KernelOops: Test 1, Found 36 oopses in +oops kernel log. +oops FAILED [HIGH] KernelWarnOns: Test 1, Found 1 WARN_ON +oops warnings in kernel log. +oops +oops ========================================================== +oops 0 passed, 2 failed, 0 warning, 0 aborted, 0 skipped, 0 +oops info only. +oops ========================================================== diff -Nru fwts-14.02.00/fwts-test/oops-0001/oops-0002.log fwts-14.03.00/fwts-test/oops-0001/oops-0002.log --- fwts-14.02.00/fwts-test/oops-0001/oops-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/oops-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,24 @@ +summary +summary 0 passed, 2 failed, 0 warning, 0 aborted, 0 skipped, 0 info only. +summary +summary Test Failure Summary +summary ========================================================================================================================================================================================================================================================================================================================================================================================== +summary +summary Critical failures: 1 +summary oops: Found 36 oopses in kernel log. +summary +summary High failures: 1 +summary oops: Found 1 WARN_ON warnings in kernel log. +summary +summary Medium failures: NONE +summary +summary Low failures: NONE +summary +summary Other failures: NONE +summary +summary Test |Pass |Fail |Abort|Warn |Skip |Info | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary oops | | 2| | | | | +summary ---------------+-----+-----+-----+-----+-----+-----+ +summary Total: | 0| 2| 0| 0| 0| 0| +summary ---------------+-----+-----+-----+-----+-----+-----+ diff -Nru fwts-14.02.00/fwts-test/oops-0001/oops-0003.log fwts-14.03.00/fwts-test/oops-0001/oops-0003.log --- fwts-14.02.00/fwts-test/oops-0001/oops-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/oops-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +oops FAILED [CRITICAL] KernelOops: Test 1, Found 36 oopses in diff -Nru fwts-14.02.00/fwts-test/oops-0001/oops.txt fwts-14.03.00/fwts-test/oops-0001/oops.txt --- fwts-14.02.00/fwts-test/oops-0001/oops.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/oops.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,27687 @@ +Bug: 521260 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-13-generic (buildd@vernadsky) (gcc version 4.4.3 (Ubuntu 4.4.3-2ubuntu1) ) #18-Ubuntu SMP Wed Feb 10 21:24:20 UTC 2010 (Ubuntu 2.6.32-13.18-generic) +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] NSC Geode by NSC +[ 0.000000] Cyrix CyrixInstead +[ 0.000000] Centaur CentaurHauls +[ 0.000000] Transmeta GenuineTMx86 +[ 0.000000] Transmeta TransmetaCPU +[ 0.000000] UMC UMC UMC UMC +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable) +[ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000afeb0000 (usable) +[ 0.000000] BIOS-e820: 00000000afeb0000 - 00000000afebe000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000afebe000 - 00000000afee0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000afee0000 - 00000000afeee000 (reserved) +[ 0.000000] BIOS-e820: 00000000afef0000 - 00000000aff00000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff700000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] DMI present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0xafeb0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-EFFFF uncachable +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FF80000000 write-back +[ 0.000000] 1 base 0080000000 mask FFE0000000 write-back +[ 0.000000] 2 base 00A0000000 mask FFF0000000 write-back +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] TOM2: 0000000150000000 aka 5376M +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000b0000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009d800 (usable) +[ 0.000000] modified: 000000000009d800 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e6000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000afeb0000 (usable) +[ 0.000000] modified: 00000000afeb0000 - 00000000afebe000 (ACPI data) +[ 0.000000] modified: 00000000afebe000 - 00000000afee0000 (ACPI NVS) +[ 0.000000] modified: 00000000afee0000 - 00000000afeee000 (reserved) +[ 0.000000] modified: 00000000afef0000 - 00000000aff00000 (reserved) +[ 0.000000] modified: 00000000ff700000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] Using x86 segment limits to approximate NX protection +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 10000-15000 +[ 0.000000] RAMDISK: 37d73000 - 37fefcb1 +[ 0.000000] Allocated new RAMDISK: 00916000 - 00b92cb1 +[ 0.000000] Move RAMDISK from 0000000037d73000 - 0000000037fefcb0 to 00916000 - 00b92cb0 +[ 0.000000] ACPI: RSDP 000f9d10 00014 (v00 ACPIAM) +[ 0.000000] ACPI: RSDT afeb0000 0003C (v01 052008 RSDT1711 20080520 MSFT 00000097) +[ 0.000000] ACPI: FACP afeb0200 00084 (v02 052008 FACP1711 20080520 MSFT 00000097) +[ 0.000000] ACPI: DSDT afeb0440 04D1B (v01 1AAAA 1AAAA000 00000000 INTL 20051117) +[ 0.000000] ACPI: FACS afebe000 00040 +[ 0.000000] ACPI: APIC afeb0390 0006C (v01 052008 APIC1711 20080520 MSFT 00000097) +[ 0.000000] ACPI: MCFG afeb0400 0003C (v01 052008 OEMMCFG 20080520 MSFT 00000097) +[ 0.000000] ACPI: OEMB afebe040 00071 (v01 052008 OEMB1711 20080520 MSFT 00000097) +[ 0.000000] ACPI: HPET afeb5160 00038 (v01 052008 OEMHPET 20080520 MSFT 00000097) +[ 0.000000] ACPI: SSDT afeb51a0 002CC (v01 A M I POWERNOW 00000001 AMD 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 1926MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] node 0 low ram: 00000000 - 377fe000 +[ 0.000000] node 0 bootmap 00011000 - 00017f00 +[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +[ 0.000000] #3 [0000100000 - 0000911f98] TEXT DATA BSS ==> [0000100000 - 0000911f98] +[ 0.000000] #4 [000009d800 - 0000100000] BIOS reserved ==> [000009d800 - 0000100000] +[ 0.000000] #5 [0000912000 - 00009150dd] BRK ==> [0000912000 - 00009150dd] +[ 0.000000] #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] +[ 0.000000] #7 [0000916000 - 0000b92cb1] NEW RAMDISK ==> [0000916000 - 0000b92cb1] +[ 0.000000] #8 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000] +[ 0.000000] found SMP MP-table at [c00ff780] ff780 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x000afeb0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x000afeb0 +[ 0.000000] On node 0 totalpages: 720445 +[ 0.000000] free_area_init_node: node 0, pgdat c07cf100, node_mem_map c1001200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3949 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 3854 pages used for memmap +[ 0.000000] HighMem zone: 489380 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] Detected use of extended apic ids on hypertransport bus +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 24 +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000 +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000 +[ 0.000000] PM: Registered nosave memory: 00000000000e6000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at aff00000 (gap: aff00000:4f800000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s35896 r0 d21448 u1048576 +[ 0.000000] pcpu-alloc: s35896 r0 d21448 u1048576 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 714815 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-13-generic root=/dev/mapper/new--lvm-root ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 14410880 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Initializing HighMem for node 0 (000377fe:000afeb0) +[ 0.000000] Memory: 2832080k/2882240k available (4780k kernel code, 48516k reserved, 2233k data, 660k init, 1972936k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc07da000 - 0xc087f000 ( 660 kB) +[ 0.000000] .data : 0xc05ab0ff - 0xc07d9528 (2233 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05ab0ff (4780 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:2304 nr_irqs:440 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] alloc irq_desc for 24 on node 0 +[ 0.000000] alloc kstat_irqs on node 0 +[ 0.000000] HPET: 4 timers in total, 1 timers will be used for per-cpu timer +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2700.337 MHz processor. +[ 0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5400.67 BogoMIPS (lpj=10801348) +[ 0.004018] Security Framework initialized +[ 0.004034] AppArmor: AppArmor initialized +[ 0.004040] Mount-cache hash table entries: 512 +[ 0.004135] Initializing cgroup subsys ns +[ 0.004139] Initializing cgroup subsys cpuacct +[ 0.004142] Initializing cgroup subsys memory +[ 0.004147] Initializing cgroup subsys devices +[ 0.004150] Initializing cgroup subsys freezer +[ 0.008003] Initializing cgroup subsys net_cls +[ 0.008017] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.008019] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.008021] CPU: Physical Processor ID: 0 +[ 0.008022] CPU: Processor Core ID: 0 +[ 0.008025] mce: CPU supports 5 MCE banks +[ 0.008032] using C1E aware idle routine +[ 0.008038] Performance Events: AMD PMU driver. +[ 0.008042] ... version: 0 +[ 0.008044] ... bit width: 48 +[ 0.008045] ... generic registers: 4 +[ 0.008047] ... value mask: 0000ffffffffffff +[ 0.008049] ... max period: 00007fffffffffff +[ 0.008050] ... fixed-purpose events: 0 +[ 0.008052] ... event mask: 000000000000000f +[ 0.008055] Checking 'hlt' instruction... OK. +[ 0.025658] ACPI: Core revision 20090903 +[ 0.031792] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.031797] ftrace: allocating 22783 entries in 45 pages +[ 0.036389] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.077247] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ stepping 02 +[ 0.080001] Booting processor 1 APIC 0x1 ip 0x6000 +[ 0.008000] Initializing CPU#1 +[ 0.008000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.008000] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.008000] CPU: Physical Processor ID: 0 +[ 0.008000] CPU: Processor Core ID: 1 +[ 0.164027] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ stepping 02 +[ 0.164049] Brought up 2 CPUs +[ 0.164051] Total of 2 processors activated (10800.86 BogoMIPS). +[ 0.164197] CPU0 attaching sched-domain: +[ 0.164200] domain 0: span 0-1 level MC +[ 0.164202] groups: 0 1 +[ 0.164206] CPU1 attaching sched-domain: +[ 0.164208] domain 0: span 0-1 level MC +[ 0.164210] groups: 1 0 +[ 0.164337] devtmpfs: initialized +[ 0.164608] regulator: core version 0.5 +[ 0.164634] Time: 19:42:38 Date: 02/12/10 +[ 0.164670] NET: Registered protocol family 16 +[ 0.164764] EISA bus registered +[ 0.164770] ACPI: bus type pci registered +[ 0.164822] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 +[ 0.164824] PCI: Not using MMCONFIG. +[ 0.165383] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=3 +[ 0.165385] PCI: Using configuration type 1 for base access +[ 0.166162] Trying to unpack rootfs image as initramfs... +[ 0.180233] bio: create slab at 0 +[ 0.180771] ACPI: EC: Look up EC in DSDT +[ 0.182639] ACPI Error (psargs-0359): [ECEN] Namespace lookup failure, AE_NOT_FOUND +[ 0.182645] ACPI Error (psparse-0537): Method parse/execution failed [\] (Node c090665c), AE_NOT_FOUND +[ 0.182708] ACPI: Executed 3 blocks of module-level executable AML code +[ 0.186623] ACPI: Interpreter enabled +[ 0.186627] ACPI: (supports S0 S3 S4 S5) +[ 0.186648] ACPI: Using IOAPIC for interrupt routing +[ 0.186685] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 +[ 0.189988] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources +[ 0.189990] PCI: Using MMCONFIG for extended config space +[ 0.195685] ACPI Warning: Incorrect checksum in table [OEMB] - 2A, should be 29 (20090903/tbutils-314) +[ 0.195772] ACPI: No dock devices found. +[ 0.195892] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 0.196034] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold +[ 0.196037] pci 0000:00:06.0: PME# disabled +[ 0.196102] pci 0000:00:11.0: reg 10 io port: [0xa000-0xa007] +[ 0.196109] pci 0000:00:11.0: reg 14 io port: [0x9000-0x9003] +[ 0.196116] pci 0000:00:11.0: reg 18 io port: [0x8000-0x8007] +[ 0.196123] pci 0000:00:11.0: reg 1c io port: [0x7000-0x7003] +[ 0.196130] pci 0000:00:11.0: reg 20 io port: [0x6000-0x600f] +[ 0.196137] pci 0000:00:11.0: reg 24 32bit mmio: [0xfccff800-0xfccffbff] +[ 0.196198] pci 0000:00:12.0: reg 10 32bit mmio: [0xfccfe000-0xfccfefff] +[ 0.196255] pci 0000:00:12.1: reg 10 32bit mmio: [0xfccfd000-0xfccfdfff] +[ 0.196329] pci 0000:00:12.2: reg 10 32bit mmio: [0xfccff000-0xfccff0ff] +[ 0.196383] pci 0000:00:12.2: supports D1 D2 +[ 0.196385] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot +[ 0.196389] pci 0000:00:12.2: PME# disabled +[ 0.196422] pci 0000:00:13.0: reg 10 32bit mmio: [0xfccfc000-0xfccfcfff] +[ 0.196479] pci 0000:00:13.1: reg 10 32bit mmio: [0xfccf7000-0xfccf7fff] +[ 0.196554] pci 0000:00:13.2: reg 10 32bit mmio: [0xfccf6800-0xfccf68ff] +[ 0.196608] pci 0000:00:13.2: supports D1 D2 +[ 0.196610] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot +[ 0.196614] pci 0000:00:13.2: PME# disabled +[ 0.196734] pci 0000:00:14.1: reg 10 io port: [0x00-0x07] +[ 0.196741] pci 0000:00:14.1: reg 14 io port: [0x00-0x03] +[ 0.196748] pci 0000:00:14.1: reg 18 io port: [0x00-0x07] +[ 0.196755] pci 0000:00:14.1: reg 1c io port: [0x00-0x03] +[ 0.196761] pci 0000:00:14.1: reg 20 io port: [0xff00-0xff0f] +[ 0.196829] pci 0000:00:14.2: reg 10 64bit mmio: [0xfccf0000-0xfccf3fff] +[ 0.196874] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.196878] pci 0000:00:14.2: PME# disabled +[ 0.196990] pci 0000:00:14.5: reg 10 32bit mmio: [0xfccf5000-0xfccf5fff] +[ 0.197125] pci 0000:01:05.0: reg 10 32bit mmio pref: [0xb0000000-0xbfffffff] +[ 0.197129] pci 0000:01:05.0: reg 14 io port: [0xb000-0xb0ff] +[ 0.197133] pci 0000:01:05.0: reg 18 32bit mmio: [0xfcef0000-0xfcefffff] +[ 0.197141] pci 0000:01:05.0: reg 24 32bit mmio: [0xfcd00000-0xfcdfffff] +[ 0.197153] pci 0000:01:05.0: supports D1 D2 +[ 0.197173] pci 0000:01:05.1: reg 10 32bit mmio: [0xfcee8000-0xfceebfff] +[ 0.197194] pci 0000:01:05.1: supports D1 D2 +[ 0.197237] pci 0000:00:01.0: bridge io port: [0xb000-0xbfff] +[ 0.197240] pci 0000:00:01.0: bridge 32bit mmio: [0xfcd00000-0xfcefffff] +[ 0.197244] pci 0000:00:01.0: bridge 64bit mmio pref: [0xb0000000-0xbfffffff] +[ 0.197280] pci 0000:02:00.0: reg 10 io port: [0xc800-0xc8ff] +[ 0.197296] pci 0000:02:00.0: reg 18 64bit mmio: [0xfcfff000-0xfcffffff] +[ 0.197307] pci 0000:02:00.0: reg 20 64bit mmio pref: [0xcfff0000-0xcfffffff] +[ 0.197314] pci 0000:02:00.0: reg 30 32bit mmio pref: [0xfcfc0000-0xfcfdffff] +[ 0.197345] pci 0000:02:00.0: supports D1 D2 +[ 0.197347] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.197351] pci 0000:02:00.0: PME# disabled +[ 0.197413] pci 0000:00:06.0: bridge io port: [0xc000-0xcfff] +[ 0.197415] pci 0000:00:06.0: bridge 32bit mmio: [0xfcf00000-0xfcffffff] +[ 0.197419] pci 0000:00:06.0: bridge 64bit mmio pref: [0xcff00000-0xcfffffff] +[ 0.197471] pci 0000:03:06.0: reg 10 io port: [0xe800-0xe807] +[ 0.197480] pci 0000:03:06.0: reg 14 io port: [0xe400-0xe403] +[ 0.197488] pci 0000:03:06.0: reg 18 io port: [0xe000-0xe007] +[ 0.197496] pci 0000:03:06.0: reg 1c io port: [0xd800-0xd803] +[ 0.197504] pci 0000:03:06.0: reg 20 io port: [0xd400-0xd40f] +[ 0.197513] pci 0000:03:06.0: reg 24 32bit mmio: [0xfebffc00-0xfebffdff] +[ 0.197521] pci 0000:03:06.0: reg 30 32bit mmio pref: [0xfeb00000-0xfeb7ffff] +[ 0.197545] pci 0000:03:06.0: supports D1 D2 +[ 0.197588] pci 0000:03:07.0: reg 10 32bit mmio: [0xfd000000-0xfdffffff] +[ 0.197597] pci 0000:03:07.0: reg 14 32bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.197630] pci 0000:03:07.0: reg 30 32bit mmio pref: [0xfebc0000-0xfebdffff] +[ 0.197700] pci 0000:00:14.4: transparent bridge +[ 0.197704] pci 0000:00:14.4: bridge io port: [0xd000-0xefff] +[ 0.197708] pci 0000:00:14.4: bridge 32bit mmio: [0xfd000000-0xfebfffff] +[ 0.197713] pci 0000:00:14.4: bridge 32bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.197725] pci_bus 0000:00: on NUMA node 0 +[ 0.197729] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.197915] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 0.197989] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT] +[ 0.201814] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 *7 10 11 12 14 15) +[ 0.201891] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 *10 11 12 14 15) +[ 0.201967] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15) +[ 0.202043] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15) +[ 0.202119] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 12 14 15) *0, disabled. +[ 0.202196] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 *10 11 12 14 15) +[ 0.202272] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 *11 12 14 15) +[ 0.202347] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 12 14 15) *0, disabled. +[ 0.202445] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.202452] vgaarb: device added: PCI:0000:03:07.0,decodes=io+mem,owns=none,locks=none +[ 0.202454] vgaarb: loaded +[ 0.202545] SCSI subsystem initialized +[ 0.202613] libata version 3.00 loaded. +[ 0.202667] usbcore: registered new interface driver usbfs +[ 0.202677] usbcore: registered new interface driver hub +[ 0.202698] usbcore: registered new device driver usb +[ 0.202797] ACPI: WMI: Mapper loaded +[ 0.202798] PCI: Using ACPI for IRQ routing +[ 0.202945] NetLabel: Initializing +[ 0.202946] NetLabel: domain hash size = 128 +[ 0.202948] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.202962] NetLabel: unlabeled traffic allowed by default +[ 0.202993] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 0 +[ 0.202998] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.205008] Switching to clocksource hpet +[ 0.205438] AppArmor: AppArmor Filesystem Enabled +[ 0.205452] pnp: PnP ACPI init +[ 0.205466] ACPI: bus type pnp registered +[ 0.208319] pnp: PnP ACPI: found 14 devices +[ 0.208321] ACPI: ACPI bus type pnp unregistered +[ 0.208324] PnPBIOS: Disabled by ACPI PNP +[ 0.208338] system 00:08: iomem range 0xfec00000-0xfec00fff could not be reserved +[ 0.208341] system 00:08: iomem range 0xfee00000-0xfee00fff has been reserved +[ 0.208346] system 00:09: ioport range 0x4d0-0x4d1 has been reserved +[ 0.208348] system 00:09: ioport range 0x40b-0x40b has been reserved +[ 0.208351] system 00:09: ioport range 0x4d6-0x4d6 has been reserved +[ 0.208353] system 00:09: ioport range 0xc00-0xc01 has been reserved +[ 0.208356] system 00:09: ioport range 0xc14-0xc14 has been reserved +[ 0.208358] system 00:09: ioport range 0xc50-0xc51 has been reserved +[ 0.208360] system 00:09: ioport range 0xc52-0xc52 has been reserved +[ 0.208363] system 00:09: ioport range 0xc6c-0xc6c has been reserved +[ 0.208365] system 00:09: ioport range 0xc6f-0xc6f has been reserved +[ 0.208368] system 00:09: ioport range 0xcd0-0xcd1 has been reserved +[ 0.208370] system 00:09: ioport range 0xcd2-0xcd3 has been reserved +[ 0.208373] system 00:09: ioport range 0xcd4-0xcd5 has been reserved +[ 0.208375] system 00:09: ioport range 0xcd6-0xcd7 has been reserved +[ 0.208378] system 00:09: ioport range 0xcd8-0xcdf has been reserved +[ 0.208380] system 00:09: ioport range 0xa7a-0xb1f has been reserved +[ 0.208382] system 00:09: ioport range 0xb30-0xbff has been reserved +[ 0.208385] system 00:09: ioport range 0x800-0x89f has been reserved +[ 0.208387] system 00:09: ioport range 0xb20-0xb3f could not be reserved +[ 0.208390] system 00:09: ioport range 0x900-0x90f has been reserved +[ 0.208393] system 00:09: ioport range 0x910-0x91f has been reserved +[ 0.208395] system 00:09: ioport range 0xfe00-0xfefe has been reserved +[ 0.208398] system 00:09: iomem range 0xffb80000-0xffbfffff has been reserved +[ 0.208401] system 00:09: iomem range 0xfec10000-0xfec1001f has been reserved +[ 0.208406] system 00:0b: ioport range 0xe00-0xe0f has been reserved +[ 0.208408] system 00:0b: ioport range 0xe80-0xe8f has been reserved +[ 0.208411] system 00:0b: ioport range 0xf40-0xf4f has been reserved +[ 0.208413] system 00:0b: ioport range 0xa30-0xa3f has been reserved +[ 0.208417] system 00:0c: iomem range 0xe0000000-0xefffffff has been reserved +[ 0.208422] system 00:0d: iomem range 0x0-0x9ffff could not be reserved +[ 0.208425] system 00:0d: iomem range 0xc0000-0xcffff could not be reserved +[ 0.208427] system 00:0d: iomem range 0xe0000-0xfffff could not be reserved +[ 0.208430] system 00:0d: iomem range 0x100000-0xafefffff could not be reserved +[ 0.208432] system 00:0d: iomem range 0xfec00000-0xffffffff could not be reserved +[ 0.214452] Freeing initrd memory: 2547k freed +[ 0.243084] pci 0000:03:06.0: BAR 6: address space collision on of device [0xfeb00000-0xfeb7ffff] +[ 0.243087] pci 0000:03:07.0: BAR 6: address space collision on of device [0xfebc0000-0xfebdffff] +[ 0.243103] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01 +[ 0.243106] pci 0000:00:01.0: IO window: 0xb000-0xbfff +[ 0.243109] pci 0000:00:01.0: MEM window: 0xfcd00000-0xfcefffff +[ 0.243112] pci 0000:00:01.0: PREFETCH window: 0x000000b0000000-0x000000bfffffff +[ 0.243117] pci 0000:00:06.0: PCI bridge, secondary bus 0000:02 +[ 0.243119] pci 0000:00:06.0: IO window: 0xc000-0xcfff +[ 0.243122] pci 0000:00:06.0: MEM window: 0xfcf00000-0xfcffffff +[ 0.243125] pci 0000:00:06.0: PREFETCH window: 0x000000cff00000-0x000000cfffffff +[ 0.243132] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03 +[ 0.243135] pci 0000:00:14.4: IO window: 0xd000-0xefff +[ 0.243141] pci 0000:00:14.4: MEM window: 0xfd000000-0xfebfffff +[ 0.243145] pci 0000:00:14.4: PREFETCH window: 0xd0000000-0xdfffffff +[ 0.243161] alloc irq_desc for 18 on node -1 +[ 0.243163] alloc kstat_irqs on node -1 +[ 0.243168] pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.243171] pci 0000:00:06.0: setting latency timer to 64 +[ 0.243179] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 0.243181] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff] +[ 0.243183] pci_bus 0000:01: resource 0 io: [0xb000-0xbfff] +[ 0.243186] pci_bus 0000:01: resource 1 mem: [0xfcd00000-0xfcefffff] +[ 0.243188] pci_bus 0000:01: resource 2 pref mem [0xb0000000-0xbfffffff] +[ 0.243190] pci_bus 0000:02: resource 0 io: [0xc000-0xcfff] +[ 0.243193] pci_bus 0000:02: resource 1 mem: [0xfcf00000-0xfcffffff] +[ 0.243195] pci_bus 0000:02: resource 2 pref mem [0xcff00000-0xcfffffff] +[ 0.243197] pci_bus 0000:03: resource 0 io: [0xd000-0xefff] +[ 0.243200] pci_bus 0000:03: resource 1 mem: [0xfd000000-0xfebfffff] +[ 0.243202] pci_bus 0000:03: resource 2 pref mem [0xd0000000-0xdfffffff] +[ 0.243204] pci_bus 0000:03: resource 3 io: [0x00-0xffff] +[ 0.243207] pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffff] +[ 0.243238] NET: Registered protocol family 2 +[ 0.243318] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.243584] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.244155] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.244449] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.244451] TCP reno registered +[ 0.244535] NET: Registered protocol family 1 +[ 0.340019] pci 0000:01:05.0: Boot video device +[ 0.340195] cpufreq-nforce2: No nForce2 chipset. +[ 0.340215] Scanning for low memory corruption every 60 seconds +[ 0.340295] audit: initializing netlink socket (disabled) +[ 0.340303] type=2000 audit(1266003757.340:1): initialized +[ 0.348147] highmem bounce pool size: 64 pages +[ 0.348152] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.349311] VFS: Disk quotas dquot_6.5.2 +[ 0.349359] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.349801] fuse init (API version 7.13) +[ 0.349866] msgmni has been set to 1685 +[ 0.350035] alg: No test for stdrng (krng) +[ 0.350042] io scheduler noop registered +[ 0.350044] io scheduler anticipatory registered +[ 0.350046] io scheduler deadline registered +[ 0.350078] io scheduler cfq registered (default) +[ 0.350201] alloc irq_desc for 25 on node -1 +[ 0.350203] alloc kstat_irqs on node -1 +[ 0.350210] pcieport 0000:00:06.0: irq 25 for MSI/MSI-X +[ 0.350216] pcieport 0000:00:06.0: setting latency timer to 64 +[ 0.350270] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.350288] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.350373] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.350381] ACPI: Power Button [PWRB] +[ 0.350418] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.350421] ACPI: Power Button [PWRF] +[ 0.350677] processor LNXCPU:00: registered as cooling_device0 +[ 0.350703] processor LNXCPU:01: registered as cooling_device1 +[ 0.352717] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.352723] ACPI: Thermal Zone [THRM] (30 C) +[ 0.352801] isapnp: Scanning for PnP cards... +[ 0.353849] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.353965] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.354244] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.355106] brd: module loaded +[ 0.355476] loop: module loaded +[ 0.355548] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +[ 0.355621] ahci 0000:00:11.0: version 3.0 +[ 0.355640] alloc irq_desc for 22 on node -1 +[ 0.355642] alloc kstat_irqs on node -1 +[ 0.355648] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 0.355689] alloc irq_desc for 26 on node -1 +[ 0.355690] alloc kstat_irqs on node -1 +[ 0.355701] ahci 0000:00:11.0: irq 26 for MSI/MSI-X +[ 0.355820] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode +[ 0.355823] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc +[ 0.356403] scsi0 : ahci +[ 0.356498] scsi1 : ahci +[ 0.356544] scsi2 : ahci +[ 0.356588] scsi3 : ahci +[ 0.356633] scsi4 : ahci +[ 0.356677] scsi5 : ahci +[ 0.356814] ata1: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccff900 irq 26 +[ 0.356817] ata2: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccff980 irq 26 +[ 0.356821] ata3: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccffa00 irq 26 +[ 0.356825] ata4: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccffa80 irq 26 +[ 0.356828] ata5: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccffb00 irq 26 +[ 0.356832] ata6: SATA max UDMA/133 abar m1024@0xfccff800 port 0xfccffb80 irq 26 +[ 0.356923] sata_sil 0000:03:06.0: version 2.4 +[ 0.356955] alloc irq_desc for 21 on node -1 +[ 0.356957] alloc kstat_irqs on node -1 +[ 0.356962] sata_sil 0000:03:06.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 0.357082] scsi6 : sata_sil +[ 0.357149] scsi7 : sata_sil +[ 0.357178] ata7: SATA max UDMA/100 mmio m512@0xfebffc00 tf 0xfebffc80 irq 21 +[ 0.357182] ata8: SATA max UDMA/100 mmio m512@0xfebffc00 tf 0xfebffcc0 irq 21 +[ 0.357322] alloc irq_desc for 16 on node -1 +[ 0.357324] alloc kstat_irqs on node -1 +[ 0.357328] pata_atiixp 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.357358] pata_atiixp 0000:00:14.1: setting latency timer to 64 +[ 0.357445] scsi8 : pata_atiixp +[ 0.357512] scsi9 : pata_atiixp +[ 0.358506] ata9: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14 +[ 0.358508] ata10: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15 +[ 0.359051] Fixed MDIO Bus: probed +[ 0.359079] PPP generic driver version 2.4.2 +[ 0.359129] tun: Universal TUN/TAP device driver, 1.6 +[ 0.359130] tun: (C) 1999-2004 Max Krasnyansky +[ 0.359207] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.359226] alloc irq_desc for 17 on node -1 +[ 0.359228] alloc kstat_irqs on node -1 +[ 0.359233] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.359247] ehci_hcd 0000:00:12.2: EHCI Host Controller +[ 0.359272] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1 +[ 0.359293] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.359308] ehci_hcd 0000:00:12.2: debug port 1 +[ 0.359328] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfccff000 +[ 0.368014] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00 +[ 0.368084] usb usb1: configuration #1 chosen from 1 choice +[ 0.368108] hub 1-0:1.0: USB hub found +[ 0.368115] hub 1-0:1.0: 6 ports detected +[ 0.368170] alloc irq_desc for 19 on node -1 +[ 0.368172] alloc kstat_irqs on node -1 +[ 0.368177] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.368185] ehci_hcd 0000:00:13.2: EHCI Host Controller +[ 0.368211] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2 +[ 0.368231] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.368245] ehci_hcd 0000:00:13.2: debug port 1 +[ 0.368261] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfccf6800 +[ 0.380014] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00 +[ 0.380070] usb usb2: configuration #1 chosen from 1 choice +[ 0.380090] hub 2-0:1.0: USB hub found +[ 0.380096] hub 2-0:1.0: 6 ports detected +[ 0.380150] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.380164] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.380172] ohci_hcd 0000:00:12.0: OHCI Host Controller +[ 0.380197] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3 +[ 0.380219] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfccfe000 +[ 0.440057] usb usb3: configuration #1 chosen from 1 choice +[ 0.440077] hub 3-0:1.0: USB hub found +[ 0.440086] hub 3-0:1.0: 3 ports detected +[ 0.440127] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.440135] ohci_hcd 0000:00:12.1: OHCI Host Controller +[ 0.440172] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4 +[ 0.440186] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfccfd000 +[ 0.500060] usb usb4: configuration #1 chosen from 1 choice +[ 0.500080] hub 4-0:1.0: USB hub found +[ 0.500090] hub 4-0:1.0: 3 ports detected +[ 0.500132] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.500140] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 0.500166] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5 +[ 0.500186] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfccfc000 +[ 0.560055] usb usb5: configuration #1 chosen from 1 choice +[ 0.560075] hub 5-0:1.0: USB hub found +[ 0.560084] hub 5-0:1.0: 3 ports detected +[ 0.560124] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.560132] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 0.560158] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6 +[ 0.560171] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfccf7000 +[ 0.620067] usb usb6: configuration #1 chosen from 1 choice +[ 0.620087] hub 6-0:1.0: USB hub found +[ 0.620095] hub 6-0:1.0: 3 ports detected +[ 0.620141] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.620150] ohci_hcd 0000:00:14.5: OHCI Host Controller +[ 0.620174] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7 +[ 0.620188] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfccf5000 +[ 0.676034] ata6: SATA link down (SStatus 0 SControl 300) +[ 0.676187] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 310) +[ 0.680390] usb usb7: configuration #1 chosen from 1 choice +[ 0.680410] hub 7-0:1.0: USB hub found +[ 0.680419] hub 7-0:1.0: 2 ports detected +[ 0.680460] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.680532] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1 +[ 0.680534] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp +[ 0.680653] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.680732] mice: PS/2 mouse device common for all mice +[ 0.680823] rtc_cmos 00:03: RTC can wake from S4 +[ 0.680858] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.680884] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 0.680964] device-mapper: uevent: version 1.0.3 +[ 0.681050] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 0.681104] device-mapper: multipath: version 1.1.0 loaded +[ 0.681107] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.681201] EISA: Probing bus 0 at eisa.0 +[ 0.681226] Cannot allocate resource for EISA slot 6 +[ 0.681228] Cannot allocate resource for EISA slot 7 +[ 0.681230] Cannot allocate resource for EISA slot 8 +[ 0.681232] EISA: Detected 0 cards. +[ 0.681293] cpuidle: using governor ladder +[ 0.681295] cpuidle: using governor menu +[ 0.681652] TCP cubic registered +[ 0.681769] NET: Registered protocol family 10 +[ 0.682173] lo: Disabled Privacy Extensions +[ 0.682420] NET: Registered protocol family 17 +[ 0.682442] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ processors (2 cpu cores) (version 2.20.00) +[ 0.682483] powernow-k8: 0 : fid 0x13 (2700 MHz), vid 0x8 +[ 0.682485] powernow-k8: 1 : fid 0x12 (2600 MHz), vid 0x9 +[ 0.682487] powernow-k8: 2 : fid 0x10 (2400 MHz), vid 0xb +[ 0.682489] powernow-k8: 3 : fid 0xe (2200 MHz), vid 0xd +[ 0.682491] powernow-k8: 4 : fid 0xc (2000 MHz), vid 0xf +[ 0.682493] powernow-k8: 5 : fid 0xa (1800 MHz), vid 0x11 +[ 0.682495] powernow-k8: 6 : fid 0x2 (1000 MHz), vid 0x12 +[ 0.682527] Using IPI No-Shortcut mode +[ 0.682588] PM: Resume from disk failed. +[ 0.682598] registered taskstats version 1 +[ 0.682923] Magic number: 14:575:748 +[ 0.683005] rtc_cmos 00:03: setting system clock to 2010-02-12 19:42:38 UTC (1266003758) +[ 0.683008] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.683009] EDD information not available. +[ 0.700543] ata7.00: ATA-7: HDT722516DLA380, V43OA91A, max UDMA/133 +[ 0.700545] ata7.00: 321672960 sectors, multi 0: LBA48 NCQ (depth 0/32) +[ 0.700734] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.706554] isapnp: No Plug & Play device found +[ 0.716539] ata7.00: configured for UDMA/100 +[ 0.840021] ata5: softreset failed (device not ready) +[ 0.840024] ata5: applying SB600 PMP SRST workaround and retrying +[ 0.840040] ata4: softreset failed (device not ready) +[ 0.840043] ata4: applying SB600 PMP SRST workaround and retrying +[ 0.840059] ata2: softreset failed (device not ready) +[ 0.840062] ata2: applying SB600 PMP SRST workaround and retrying +[ 0.840078] ata1: softreset failed (device not ready) +[ 0.840081] ata1: applying SB600 PMP SRST workaround and retrying +[ 0.840097] ata3: softreset failed (device not ready) +[ 0.840100] ata3: applying SB600 PMP SRST workaround and retrying +[ 0.904020] usb 2-5: new high speed USB device using ehci_hcd and address 2 +[ 1.004040] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.004061] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.004080] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.004099] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.004118] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.004578] ata2.00: ATA-7: WDC WD2500KS-00MJB0, 02.01C03, max UDMA/133 +[ 1.004581] ata2.00: 488397168 sectors, multi 0: LBA48 +[ 1.005213] ata2.00: configured for UDMA/133 +[ 1.010504] ata4.00: ATA-7: SAMSUNG HD103UI, 1AA01113, max UDMA7 +[ 1.010507] ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 1.016772] ata1.00: ATA-8: WDC WD4000AAJS-00YFA0, 12.01C02, max UDMA/133 +[ 1.016774] ata1.00: 781422768 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 1.017040] ata4.00: configured for UDMA/133 +[ 1.017729] ata1.00: configured for UDMA/133 +[ 1.024515] ata5.00: ATA-7: WDC WD4000AAKS-00TMA0, 12.01C01, max UDMA/133 +[ 1.024517] ata5.00: 781422768 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 1.024704] ata3.00: ATA-8: WDC WD10EACS-00C7B0, 01.01B01, max UDMA/133 +[ 1.024707] ata3.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 1.025440] ata5.00: configured for UDMA/133 +[ 1.025615] ata3.00: configured for UDMA/133 +[ 1.032106] scsi 0:0:0:0: Direct-Access ATA WDC WD4000AAJS-0 12.0 PQ: 0 ANSI: 5 +[ 1.032224] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.032313] scsi 1:0:0:0: Direct-Access ATA WDC WD2500KS-00M 02.0 PQ: 0 ANSI: 5 +[ 1.032448] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.032471] sd 1:0:0:0: Attached scsi generic sg1 type 0 +[ 1.032501] sd 1:0:0:0: [sdb] Write Protect is off +[ 1.032503] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.032510] sd 0:0:0:0: [sda] 781422768 512-byte logical blocks: (400 GB/372 GiB) +[ 1.032529] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.032550] sd 0:0:0:0: [sda] Write Protect is off +[ 1.032553] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.032570] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.032663] sdb: +[ 1.032719] sda: sda1 +[ 1.037898] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.038643] usb 2-5: configuration #1 chosen from 1 choice +[ 1.040081] scsi 2:0:0:0: Direct-Access ATA WDC WD10EACS-00C 01.0 PQ: 0 ANSI: 5 +[ 1.040171] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB) +[ 1.040182] sd 2:0:0:0: Attached scsi generic sg2 type 0 +[ 1.040213] sd 2:0:0:0: [sdc] Write Protect is off +[ 1.040215] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00 +[ 1.040236] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.040250] scsi 3:0:0:0: Direct-Access ATA SAMSUNG HD103UI 1AA0 PQ: 0 ANSI: 5 +[ 1.040346] sdc: +[ 1.040348] sd 3:0:0:0: Attached scsi generic sg3 type 0 +[ 1.040414] scsi 4:0:0:0: Direct-Access ATA WDC WD4000AAKS-0 12.0 PQ: 0 ANSI: 5 +[ 1.040513] sd 4:0:0:0: [sde] 781422768 512-byte logical blocks: (400 GB/372 GiB) +[ 1.040515] sd 4:0:0:0: Attached scsi generic sg4 type 0 +[ 1.040561] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB) +[ 1.040596] scsi 6:0:0:0: Direct-Access ATA HDT722516DLA380 V43O PQ: 0 ANSI: 5 +[ 1.040599] sd 3:0:0:0: [sdd] Write Protect is off +[ 1.040602] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00 +[ 1.040619] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.040705] sd 6:0:0:0: [sdf] 321672960 512-byte logical blocks: (164 GB/153 GiB) +[ 1.040720] sd 6:0:0:0: Attached scsi generic sg5 type 0 +[ 1.040763] sd 4:0:0:0: [sde] Write Protect is off +[ 1.040765] sd 4:0:0:0: [sde] Mode Sense: 00 3a 00 00 +[ 1.040782] sd 6:0:0:0: [sdf] Write Protect is off +[ 1.040785] sd 4:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.040789] sd 6:0:0:0: [sdf] Mode Sense: 00 3a 00 00 +[ 1.040809] sd 6:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.040896] sde: +[ 1.040935] sdf: +[ 1.041071] sdd: sde1 +[ 1.044577] sd 4:0:0:0: [sde] Attached SCSI disk +[ 1.048983] sdb1 +[ 1.049125] sd 1:0:0:0: [sdb] Attached SCSI disk +[ 1.051674] sdc1 +[ 1.051820] sd 2:0:0:0: [sdc] Attached SCSI disk +[ 1.052601] sdd1 +[ 1.052739] sd 3:0:0:0: [sdd] Attached SCSI disk +[ 1.055182] sdf1 +[ 1.055334] sd 6:0:0:0: [sdf] Attached SCSI disk +[ 1.300020] usb 3-1: new full speed USB device using ohci_hcd and address 2 +[ 1.360060] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 310) +[ 1.383064] ata8.00: ATA-8: WDC WD4000AAJS-00YFA0, 12.01C02, max UDMA/133 +[ 1.383067] ata8.00: 781422768 sectors, multi 0: LBA48 NCQ (depth 0/32) +[ 1.396946] ata8.00: configured for UDMA/100 +[ 1.397015] scsi 7:0:0:0: Direct-Access ATA WDC WD4000AAJS-0 12.0 PQ: 0 ANSI: 5 +[ 1.397108] sd 7:0:0:0: [sdg] 781422768 512-byte logical blocks: (400 GB/372 GiB) +[ 1.397135] sd 7:0:0:0: Attached scsi generic sg6 type 0 +[ 1.397149] sd 7:0:0:0: [sdg] Write Protect is off +[ 1.397151] sd 7:0:0:0: [sdg] Mode Sense: 00 3a 00 00 +[ 1.397181] sd 7:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.397275] sdg: sdg1 +[ 1.404266] sd 7:0:0:0: [sdg] Attached SCSI disk +[ 1.461124] usb 3-1: configuration #1 chosen from 1 choice +[ 1.463102] hub 3-1:1.0: USB hub found +[ 1.465081] hub 3-1:1.0: 4 ports detected +[ 1.568482] ata10.00: ATAPI: TSSTcorpCD/DVDW SH-S182M, SB03, max UDMA/33 +[ 1.583771] ata10.01: ATA-7: WDC WD2500JB-00REA0, 20.00K20, max UDMA/100 +[ 1.583774] ata10.01: 488397168 sectors, multi 16: LBA48 +[ 1.596438] ata10.00: configured for UDMA/33 +[ 1.604623] ata10.01: configured for UDMA/100 +[ 1.606035] scsi 9:0:0:0: CD-ROM TSSTcorp CD/DVDW SH-S182M SB03 PQ: 0 ANSI: 5 +[ 1.613283] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.613286] Uniform CD-ROM driver Revision: 3.20 +[ 1.613354] sr 9:0:0:0: Attached scsi CD-ROM sr0 +[ 1.613391] sr 9:0:0:0: Attached scsi generic sg7 type 5 +[ 1.613452] scsi 9:0:1:0: Direct-Access ATA WDC WD2500JB-00R 20.0 PQ: 0 ANSI: 5 +[ 1.613545] sd 9:0:1:0: Attached scsi generic sg8 type 0 +[ 1.613549] sd 9:0:1:0: [sdh] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.613585] sd 9:0:1:0: [sdh] Write Protect is off +[ 1.613587] sd 9:0:1:0: [sdh] Mode Sense: 00 3a 00 00 +[ 1.613606] sd 9:0:1:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.613703] sdh: sdh1 sdh2 < sdh5 > +[ 1.626032] sd 9:0:1:0: [sdh] Attached SCSI disk +[ 1.626054] Freeing unused kernel memory: 660k freed +[ 1.626426] Write protecting the kernel text: 4784k +[ 1.626454] Write protecting the kernel read-only data: 1916k +[ 1.637922] udev: starting version 151 +[ 1.740062] usb 3-2: new full speed USB device using ohci_hcd and address 3 +[ 1.913182] usb 3-2: configuration #1 chosen from 1 choice +[ 2.102739] kjournald starting. Commit interval 5 seconds +[ 2.102749] EXT3-fs: mounted filesystem with ordered data mode. +[ 3.803875] Adding 8499192k swap on /dev/mapper/new--lvm-swap. Priority:-1 extents:1 across:8499192k +[ 4.052457] udev: starting version 151 +[ 4.461515] EXT3 FS on dm-2, internal journal +[ 5.308700] type=1505 audit(1266003763.125:2): operation="profile_load" pid=888 name="/sbin/dhclient3" +[ 5.308929] type=1505 audit(1266003763.125:3): operation="profile_load" pid=888 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 5.309057] type=1505 audit(1266003763.125:4): operation="profile_load" pid=888 name="/usr/lib/connman/scripts/dhclient-script" +[ 5.644426] kjournald starting. Commit interval 5 seconds +[ 5.644624] EXT3 FS on sdh1, internal journal +[ 5.644629] EXT3-fs: mounted filesystem with ordered data mode. +[ 5.672973] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 5.930280] usbcore: registered new interface driver hiddev +[ 5.930943] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 +[ 5.933478] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/input/input4 +[ 5.933570] generic-usb 0003:046D:C525.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:12.0-2/input0 +[ 5.936120] Initializing USB Mass Storage driver... +[ 5.936239] scsi10 : SCSI emulation for USB Mass Storage devices +[ 5.936369] usbcore: registered new interface driver usb-storage +[ 5.936371] USB Mass Storage support registered. +[ 5.936540] usb-storage: device found at 2 +[ 5.936541] usb-storage: waiting for device to settle before scanning +[ 5.941332] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.1/input/input5 +[ 5.941457] generic-usb 0003:046D:C525.0002: input,hiddev96,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:12.0-2/input1 +[ 5.941481] usbcore: registered new interface driver usbhid +[ 5.941483] usbhid: v2.6:USB HID core driver +[ 5.944704] vga16fb: initializing +[ 5.944709] vga16fb: mapped to 0xc00a0000 +[ 5.944762] fb0: VGA16 VGA frame buffer device +[ 6.236552] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 0 ss_did 0 +[ 6.236557] shpchp 0000:00:01.0: Cannot reserve MMIO region +[ 6.236907] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 6.238038] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 6.238062] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 6.238103] r8169 0000:02:00.0: setting latency timer to 64 +[ 6.238139] alloc irq_desc for 27 on node -1 +[ 6.238141] alloc kstat_irqs on node -1 +[ 6.238154] r8169 0000:02:00.0: irq 27 for MSI/MSI-X +[ 6.238685] eth0: RTL8168c/8111c at 0xf8162000, 00:21:97:02:08:07, XID 1c4000c0 IRQ 27 +[ 6.273533] Linux agpgart interface v0.103 +[ 6.333427] [drm] Initialized drm 1.1.0 20060810 +[ 6.578699] lp: driver loaded but no devices found +[ 6.937634] [drm] radeon defaulting to kernel modesetting. +[ 6.937637] [drm] radeon kernel modesetting enabled. +[ 6.937701] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 6.937705] radeon 0000:01:05.0: setting latency timer to 64 +[ 6.939135] [drm] radeon: Initializing kernel modesetting. +[ 6.939159] [drm] register mmio base: 0xFCEF0000 +[ 6.939160] [drm] register mmio size: 65536 +[ 6.940197] ATOM BIOS: 113 +[ 6.940202] [drm] Clocks initialized ! +[ 6.940362] [drm] Detected VRAM RAM=256M, BAR=256M +[ 6.940366] [drm] RAM width 32bits DDR +[ 6.953408] [TTM] Zone kernel: Available graphics memory: 431768 kiB. +[ 6.953410] [TTM] Zone highmem: Available graphics memory: 1418236 kiB. +[ 6.953425] [drm] radeon: 256M of VRAM memory ready +[ 6.953426] [drm] radeon: 512M of GTT memory ready. +[ 6.953518] [drm] Loading RS780 CP Microcode +[ 6.953777] platform radeon_cp.0: firmware: requesting radeon/RS780_pfp.bin +[ 6.961107] Console: switching to colour frame buffer device 80x30 +[ 7.251602] platform radeon_cp.0: firmware: requesting radeon/RS780_me.bin +[ 7.432087] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 7.432631] IP: [] __mutex_lock_slowpath+0x8a/0x130 +[ 7.433022] *pde = af517067 +[ 7.433284] Oops: 0002 [#1] SMP +[ 7.435404] last sysfs file: /sys/devices/pci0000:00/0000:00:14.1/host9/target9:0:1/9:0:1:0/block/sdh/dev +[ 7.436006] Modules linked in: snd_seq snd_timer snd_seq_device radeon(+) ttm drm_kms_helper fbcon tileblit font bitblit softcursor snd soundcore drm agpgart i2c_algo_bit shpchp joydev snd_page_alloc r8169 vga16fb usb_storage vgastate mii i2c_piix4 usbhid k8temp lp parport +[ 7.457480] +[ 7.457480] Pid: 410, comm: plymouthd Not tainted (2.6.32-13-generic #18-Ubuntu) A780GM-A +[ 7.457480] EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +[ 7.457480] EIP is at __mutex_lock_slowpath+0x8a/0x130 +[ 7.457480] EAX: 00000000 EBX: f63f727c ECX: f63f7284 EDX: f6945ec4 +[ 7.457480] ESI: f63f7280 EDI: f63f728c EBP: f6945edc ESP: f6945eb8 +[ 7.457480] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 7.457480] Process plymouthd (pid: 410, ti=f6944000 task=f649a670 task.ti=f6944000) +[ 7.457480] Stack: +[ 7.457480] 00000000 f63f7284 f649a670 f63f7284 00000000 f63f7000 f63f727c f62b96c0 +[ 7.457480] <0> f63f727c f6945eec c05a4f35 f62b96c0 f62b96c0 f6945f00 f81eb123 f62b96c0 +[ 7.457480] <0> f64dd000 f63f7000 f6945f44 f81e2ecf 00000001 f81f2365 f81f1980 f81f3890 +[ 7.457480] Call Trace: +[ 7.457480] [] ? mutex_lock+0x25/0x40 +[ 7.604514] [] ? drm_fb_release+0x23/0x70 [drm] +[ 7.604514] [] ? drm_release+0x2ff/0x390 [drm] +[ 7.604514] [] ? __fput+0xdf/0x1f0 +[ 7.604514] [] ? fput+0x1d/0x30 +[ 7.604514] [] ? filp_close+0x4c/0x80 +[ 7.604514] [] ? sys_close+0x78/0xc0 +[ 7.604514] [] ? syscall_call+0x7/0xb +[ 7.604514] Code: 18 63 7f bd 90 8d 74 26 00 8d 73 04 89 f0 e8 ce 11 00 00 8d 55 e8 8d 43 08 89 45 e0 8b 43 0c 89 53 0c 8b 4d e0 89 45 ec 89 4d e8 <89> 10 8b 45 e4 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +[ 7.604514] EIP: [] __mutex_lock_slowpath+0x8a/0x130 SS:ESP 0068:f6945eb8 +[ 7.604514] CR2: 0000000000000000 +[ 7.607248] ---[ end trace bdc69ac9537b9c32 ]--- +[ 7.825238] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 7.869756] [drm] ring test succeeded in 0 usecs +[ 7.881065] [drm] radeon: ib pool ready. +[ 7.891970] [drm] ib test succeeded in 0 usecs +[ 7.902989] [drm] Radeon Display Connectors +[ 7.913446] [drm] Connector 0: +[ 7.923464] [drm] VGA +[ 7.933096] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 7.952371] [drm] Encoders: +[ 7.963869] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 7.973582] [drm] Connector 1: +[ 7.983207] [drm] HDMI-A +[ 7.992711] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 8.012360] [drm] Encoders: +[ 8.023952] [drm] DFP3: INTERNAL_KLDSCP_LVTMA +[ 8.070911] [drm] fb mappable at 0xB0141000 +[ 8.081737] [drm] vram apper at 0xB0000000 +[ 8.092159] [drm] size 1996800 +[ 8.102184] [drm] fb depth is 24 +[ 8.112111] [drm] pitch is 3328 +[ 8.121433] kjournald starting. Commit interval 5 seconds +[ 8.122878] fb1: radeondrmfb frame buffer device +[ 8.122881] registered panic notifier +[ 8.122886] [drm] Initialized radeon 2.0.0 20080528 for 0000:01:05.0 on minor 0 +[ 8.166610] EXT3 FS on dm-5, internal journal +[ 8.176254] EXT3-fs: mounted filesystem with ordered data mode. +[ 8.376043] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 8.563319] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input6 +[ 8.706824] kjournald starting. Commit interval 5 seconds +[ 8.717339] EXT3 FS on dm-3, internal journal +[ 8.727742] EXT3-fs: mounted filesystem with ordered data mode. +[ 8.844151] input: HDA ATI SB Line In at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input7 +[ 8.865919] input: HDA ATI SB Mic at Ext Front Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input8 +[ 8.887927] input: HDA ATI SB Mic at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input9 +[ 8.911538] input: HDA ATI SB Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input10 +[ 8.935871] input: HDA ATI SB Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input11 +[ 8.960861] input: HDA ATI SB Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input12 +[ 8.986944] input: HDA ATI SB Speaker at Ext Rear Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input13 +[ 9.013446] kjournald starting. Commit interval 5 seconds +[ 9.013825] input: HDA ATI SB HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input14 +[ 9.036654] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 9.036678] HDA Intel 0000:01:05.1: setting latency timer to 64 +[ 9.051109] EXT3 FS on dm-4, internal journal +[ 9.051114] EXT3-fs: mounted filesystem with ordered data mode. +[ 9.487430] kjournald starting. Commit interval 5 seconds +[ 9.500607] EXT3 FS on dm-1, internal journal +[ 9.513888] EXT3-fs: mounted filesystem with ordered data mode. +[ 10.936149] usb-storage: device scan complete +[ 10.944531] scsi 10:0:0:0: Direct-Access Generic USB SD Reader 1.00 PQ: 0 ANSI: 0 +[ 10.945128] scsi 10:0:0:1: Direct-Access Generic USB CF Reader 1.01 PQ: 0 ANSI: 0 +[ 10.945751] scsi 10:0:0:2: Direct-Access Generic USB SM Reader 1.02 PQ: 0 ANSI: 0 +[ 10.946374] scsi 10:0:0:3: Direct-Access Generic USB MS Reader 1.03 PQ: 0 ANSI: 0 +[ 10.946706] sd 10:0:0:0: Attached scsi generic sg9 type 0 +[ 10.946788] sd 10:0:0:1: Attached scsi generic sg10 type 0 +[ 10.946871] sd 10:0:0:2: Attached scsi generic sg11 type 0 +[ 10.946953] sd 10:0:0:3: Attached scsi generic sg12 type 0 +[ 11.107874] sd 10:0:0:0: [sdi] Attached SCSI removable disk +[ 11.117236] sd 10:0:0:1: [sdj] Attached SCSI removable disk +[ 11.117982] sd 10:0:0:2: [sdk] Attached SCSI removable disk +[ 11.119716] sd 10:0:0:3: [sdl] Attached SCSI removable disk +[ 13.135849] r8169: eth0: link up +[ 13.139850] r8169: eth0: link up +[ 13.729173] type=1505 audit(1266003771.545:5): operation="profile_load" pid=1577 name="/usr/share/gdm/guest-session/Xsession" +[ 13.751110] type=1505 audit(1266003771.566:6): operation="profile_replace" pid=1578 name="/sbin/dhclient3" +[ 13.772494] type=1505 audit(1266003771.588:7): operation="profile_replace" pid=1578 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 13.793108] type=1505 audit(1266003771.609:8): operation="profile_replace" pid=1578 name="/usr/lib/connman/scripts/dhclient-script" +[ 13.854519] type=1505 audit(1266003771.669:9): operation="profile_load" pid=1579 name="/usr/bin/evince" +[ 13.878232] type=1505 audit(1266003771.693:10): operation="profile_load" pid=1579 name="/usr/bin/evince-previewer" +[ 13.900476] type=1505 audit(1266003771.717:11): operation="profile_load" pid=1579 name="/usr/bin/evince-thumbnailer" +[ 14.102009] type=1505 audit(1266003771.917:12): operation="profile_load" pid=1582 name="/usr/lib/cups/backend/cups-pdf" +[ 14.102306] type=1505 audit(1266003771.917:13): operation="profile_load" pid=1582 name="/usr/sbin/cupsd" +[ 14.117695] type=1505 audit(1266003771.933:14): operation="profile_load" pid=1583 name="/usr/sbin/tcpdump" +[ 14.401871] vgaarb: device changed decodes: PCI:0000:01:05.0,olddecodes=io+mem,decodes=none:owns=io+mem +[ 14.401876] vgaarb: transferring owner from PCI:0000:01:05.0 to PCI:0000:03:07.0 + +Bug: 560249 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-21-generic (buildd@yellow) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:09:38 UTC 2010 (Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-21-generic root=UUID=50cc7340-4a5d-4a26-8d8e-1bc88476d3de ro quiet splash +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009dc00 (usable) +[ 0.000000] BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000006fe80000 (usable) +[ 0.000000] BIOS-e820: 000000006fe80000 - 000000006fe8d000 (ACPI data) +[ 0.000000] BIOS-e820: 000000006fe8d000 - 000000006fe8f000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000006fe8f000 - 0000000080000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] DMI present. +[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0x6fe80 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-CFFFF write-protect +[ 0.000000] D0000-DFFFF uncachable +[ 0.000000] E0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FF80000000 write-back +[ 0.000000] 1 disabled +[ 0.000000] 2 disabled +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009dc00 (usable) +[ 0.000000] modified: 000000000009dc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000d0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000006fe80000 (usable) +[ 0.000000] modified: 000000006fe80000 - 000000006fe8d000 (ACPI data) +[ 0.000000] modified: 000000006fe8d000 - 000000006fe8f000 (ACPI NVS) +[ 0.000000] modified: 000000006fe8f000 - 0000000080000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-000000006fe80000 +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] 0000000000 - 006fe00000 page 2M +[ 0.000000] 006fe00000 - 006fe80000 page 4k +[ 0.000000] kernel direct mapping tables up to 6fe80000 @ 10000-14000 +[ 0.000000] RAMDISK: 3728b000 - 37fef421 +[ 0.000000] ACPI: RSDP 00000000000f8130 00024 (v02 PTLTD ) +[ 0.000000] ACPI: XSDT 000000006fe84e00 0005C (v01 PTLTD ? XSDT 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 000000006fe8cbae 000F4 (v03 ATI Herring 06040000 ATI 000F4240) +[ 0.000000] ACPI: DSDT 000000006fe84e5c 07D52 (v01 ATI SB600 06040000 MSFT 03000001) +[ 0.000000] ACPI: FACS 000000006fe8efc0 00040 +[ 0.000000] ACPI: TCPA 000000006fe8cd16 00032 (v02 AMD 06040000 PTEC 00000000) +[ 0.000000] ACPI: SSDT 000000006fe8cd48 000D3 (v01 PTLTD POWERNOW 06040000 LTP 00000001) +[ 0.000000] ACPI: ASF! 000000006fe8ce1b 0012B (v32 DMA AMDTBL 06040000 PTL 00000001) +[ 0.000000] ACPI: APIC 000000006fe8cf46 00046 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: MCFG 000000006fe8cf8c 0003C (v01 PTLTD MCFG 06040000 LTP 00000000) +[ 0.000000] ACPI: HPET 000000006fe8cfc8 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] Scanning NUMA topology in Northbridge 24 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-000000006fe80000 +[ 0.000000] Bootmem setup node 0 0000000000000000-000000006fe80000 +[ 0.000000] NODE_DATA [0000000000012000 - 0000000000016fff] +[ 0.000000] bootmap [0000000000017000 - 0000000000024fcf] pages e +[ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 006fe80000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] +[ 0.000000] #2 [0001000000 - 0001a29e64] TEXT DATA BSS ==> [0001000000 - 0001a29e64] +[ 0.000000] #3 [003728b000 - 0037fef421] RAMDISK ==> [003728b000 - 0037fef421] +[ 0.000000] #4 [000009dc00 - 0000100000] BIOS reserved ==> [000009dc00 - 0000100000] +[ 0.000000] #5 [0001a2a000 - 0001a2a2ac] BRK ==> [0001a2a000 - 0001a2a2ac] +[ 0.000000] #6 [0000010000 - 0000012000] PGTABLE ==> [0000010000 - 0000012000] +[ 0.000000] found SMP MP-table at [ffff8800000f8160] f8160 +[ 0.000000] [ffffea0000000000-ffffea00019fffff] PMD -> [ffff880002000000-ffff8800039fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00100000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x0006fe80 +[ 0.000000] On node 0 totalpages: 458253 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 103 pages reserved +[ 0.000000] DMA zone: 3822 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 6211 pages used for memmap +[ 0.000000] DMA32 zone: 448061 pages, LIFO batch:31 +[ 0.000000] Detected use of extended apic ids on hypertransport bus +[ 0.000000] ACPI: PM-Timer IO Port: 0x8008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x43538301 base: 0xfed00000 +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 24 +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000 +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000 +[ 0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001c00000 s91544 r8192 d23144 u2097152 +[ 0.000000] pcpu-alloc: s91544 r8192 d23144 u2097152 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 451883 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-21-generic root=UUID=50cc7340-4a5d-4a26-8d8e-1bc88476d3de ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Initializing CPU#0 +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Node 0: aperture @ 2038000000 size 32 MB +[ 0.000000] Aperture beyond 4GB. Ignoring. +[ 0.000000] Memory: 1781976k/1833472k available (5409k kernel code, 460k absent, 51036k reserved, 2976k data, 876k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:4352 nr_irqs:256 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 18350080 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1596.195 MHz processor. +[ 0.020007] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.39 BogoMIPS (lpj=15961950) +[ 0.020044] Security Framework initialized +[ 0.020072] AppArmor: AppArmor initialized +[ 0.020320] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.021737] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.022435] Mount-cache hash table entries: 256 +[ 0.022628] Initializing cgroup subsys ns +[ 0.022634] Initializing cgroup subsys cpuacct +[ 0.022639] Initializing cgroup subsys memory +[ 0.022653] Initializing cgroup subsys devices +[ 0.022657] Initializing cgroup subsys freezer +[ 0.022659] Initializing cgroup subsys net_cls +[ 0.022688] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.022691] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.022695] CPU 0/0x0 -> Node 0 +[ 0.022698] tseg: 006ff00000 +[ 0.022702] mce: CPU supports 5 MCE banks +[ 0.022717] using C1E aware idle routine +[ 0.022720] Performance Events: AMD PMU driver. +[ 0.022727] ... version: 0 +[ 0.022730] ... bit width: 48 +[ 0.022732] ... generic registers: 4 +[ 0.022734] ... value mask: 0000ffffffffffff +[ 0.022737] ... max period: 00007fffffffffff +[ 0.022739] ... fixed-purpose events: 0 +[ 0.022742] ... event mask: 000000000000000f +[ 0.022758] SMP alternatives: switching to UP code +[ 0.036771] Freeing SMP alternatives: 40k freed +[ 0.036823] ACPI: Core revision 20090903 +[ 0.050009] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.050017] ftrace: allocating 22518 entries in 89 pages +[ 0.060115] Setting APIC routing to flat +[ 0.060441] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1 +[ 0.070000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC +[ 0.070000] ...trying to set up timer (IRQ0) through the 8259A ... +[ 0.070000] ..... (found apic 0 pin 0) ... +[ 0.176237] ....... works. +[ 0.176239] CPU0: AMD Athlon(tm) Processor TF-20 stepping 02 +[ 0.180000] Brought up 1 CPUs +[ 0.180000] Total of 1 processors activated (3192.39 BogoMIPS). +[ 0.180000] CPU0 attaching NULL sched-domain. +[ 0.180000] devtmpfs: initialized +[ 0.180000] regulator: core version 0.5 +[ 0.180000] Time: 20:43:58 Date: 05/04/10 +[ 0.180000] NET: Registered protocol family 16 +[ 0.180000] node 0 link 0: io port [1000, fffff] +[ 0.180000] TOM: 0000000080000000 aka 2048M +[ 0.180000] node 0 link 0: mmio [f0100000, ffffffff] +[ 0.180000] node 0 link 0: mmio [e0000000, dfffffff] +[ 0.180000] node 0 link 0: mmio [d0000000, dfffffff] +[ 0.180000] node 0 link 0: mmio [a0000, bffff] +[ 0.180000] node 0 link 0: mmio [f0000000, f00fffff] +[ 0.180000] node 0 link 0: mmio [e0000000, efffffff] +[ 0.180000] node 0 link 0: mmio [80000000, cfffffff] +[ 0.180000] bus: [00,ff] on node 0 link 0 +[ 0.180000] bus: 00 index 0 io port: [0, ffff] +[ 0.180000] bus: 00 index 1 mmio: [e0000000, fcffffffff] +[ 0.180000] bus: 00 index 2 mmio: [80000000, dfffffff] +[ 0.180000] bus: 00 index 3 mmio: [a0000, bffff] +[ 0.180000] ACPI: bus type pci registered +[ 0.180000] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 31 +[ 0.180000] PCI: MCFG area at e0000000 reserved in E820 +[ 0.180000] PCI: Using MMCONFIG at e0000000 - e1ffffff +[ 0.180000] PCI: Using configuration type 1 for base access +[ 0.180000] bio: create slab at 0 +[ 0.180000] ACPI: EC: Look up EC in DSDT +[ 0.180000] ACPI: BIOS _OSI(Linux) query ignored +[ 0.180673] ACPI: Interpreter enabled +[ 0.180673] ACPI: (supports S0 S3 S4 S5) +[ 0.180673] ACPI: Using IOAPIC for interrupt routing +[ 0.194026] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62 +[ 0.194341] ACPI: No dock devices found. +[ 0.196335] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 0.196476] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 0.196480] pci 0000:00:02.0: PME# disabled +[ 0.196527] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold +[ 0.196531] pci 0000:00:04.0: PME# disabled +[ 0.196572] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold +[ 0.196575] pci 0000:00:05.0: PME# disabled +[ 0.196617] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold +[ 0.196621] pci 0000:00:06.0: PME# disabled +[ 0.196661] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 0.196665] pci 0000:00:07.0: PME# disabled +[ 0.196726] pci 0000:00:12.0: reg 10 io port: [0x8440-0x8447] +[ 0.196734] pci 0000:00:12.0: reg 14 io port: [0x8434-0x8437] +[ 0.196742] pci 0000:00:12.0: reg 18 io port: [0x8438-0x843f] +[ 0.196751] pci 0000:00:12.0: reg 1c io port: [0x8430-0x8433] +[ 0.196759] pci 0000:00:12.0: reg 20 io port: [0x8400-0x840f] +[ 0.196768] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0609000-0xf06093ff] +[ 0.196825] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0404000-0xf0404fff] +[ 0.196891] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0405000-0xf0405fff] +[ 0.196959] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0406000-0xf0406fff] +[ 0.197024] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0407000-0xf0407fff] +[ 0.197089] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0408000-0xf0408fff] +[ 0.197175] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0609400-0xf06094ff] +[ 0.197235] pci 0000:00:13.5: supports D1 D2 +[ 0.197238] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +[ 0.197243] pci 0000:00:13.5: PME# disabled +[ 0.197295] pci 0000:00:14.0: reg 10 io port: [0x8410-0x841f] +[ 0.197374] pci 0000:00:14.1: reg 10 io port: [0x1f0-0x1f7] +[ 0.197382] pci 0000:00:14.1: reg 14 io port: [0x3f4-0x3f7] +[ 0.197390] pci 0000:00:14.1: reg 18 io port: [0x00-0x07] +[ 0.197399] pci 0000:00:14.1: reg 1c io port: [0x00-0x03] +[ 0.197407] pci 0000:00:14.1: reg 20 io port: [0x8420-0x842f] +[ 0.197469] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0400000-0xf0403fff] +[ 0.197519] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.197524] pci 0000:00:14.2: PME# disabled +[ 0.197768] pci 0000:01:05.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.197776] pci 0000:01:05.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +[ 0.197781] pci 0000:01:05.0: reg 20 io port: [0x9000-0x90ff] +[ 0.197786] pci 0000:01:05.0: reg 24 32bit mmio: [0xf0000000-0xf00fffff] +[ 0.197800] pci 0000:01:05.0: supports D1 D2 +[ 0.197826] pci 0000:01:05.2: reg 10 64bit mmio: [0xf0110000-0xf0113fff] +[ 0.197872] pci 0000:00:01.0: bridge io port: [0x9000-0x9fff] +[ 0.197876] pci 0000:00:01.0: bridge 32bit mmio: [0xf0000000-0xf01fffff] +[ 0.197881] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.200112] pci 0000:00:04.0: bridge io port: [0x00-0xfff] +[ 0.200116] pci 0000:00:04.0: bridge 32bit mmio: [0x000000-0x0fffff] +[ 0.200176] pci 0000:00:05.0: bridge io port: [0x00-0xfff] +[ 0.200179] pci 0000:00:05.0: bridge 32bit mmio: [0x000000-0x0fffff] +[ 0.200222] pci 0000:0f:00.0: reg 10 io port: [0xa000-0xa0ff] +[ 0.200230] pci 0000:0f:00.0: reg 14 32bit mmio: [0xf0200000-0xf0203fff] +[ 0.200283] pci 0000:0f:00.0: supports D1 D2 +[ 0.200286] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot +[ 0.200291] pci 0000:0f:00.0: PME# disabled +[ 0.200358] pci 0000:00:06.0: bridge io port: [0xa000-0xafff] +[ 0.200362] pci 0000:00:06.0: bridge 32bit mmio: [0xf0200000-0xf02fffff] +[ 0.200407] pci 0000:15:00.0: reg 10 32bit mmio: [0xf0300000-0xf03000ff] +[ 0.200522] pci 0000:15:00.2: reg 10 32bit mmio: [0xf0300400-0xf03004ff] +[ 0.200634] pci 0000:15:00.3: reg 10 32bit mmio: [0xf0300800-0xf03008ff] +[ 0.200748] pci 0000:15:00.5: reg 10 32bit mmio: [0xf0304000-0xf0307fff] +[ 0.200763] pci 0000:15:00.5: reg 18 io port: [0xb400-0xb47f] +[ 0.200772] pci 0000:15:00.5: reg 1c io port: [0xb000-0xb0ff] +[ 0.200823] pci 0000:15:00.5: PME# supported from D0 D3hot D3cold +[ 0.200828] pci 0000:15:00.5: PME# disabled +[ 0.200898] pci 0000:00:07.0: bridge io port: [0xb000-0xbfff] +[ 0.200902] pci 0000:00:07.0: bridge 32bit mmio: [0xf0300000-0xf03fffff] +[ 0.200972] pci 0000:00:14.4: transparent bridge +[ 0.201003] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.201171] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB2_._PRT] +[ 0.201277] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT] +[ 0.201376] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT] +[ 0.201475] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT] +[ 0.201582] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB7_._PRT] +[ 0.201727] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BB4_._PRT] +[ 0.201833] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BB5_._PRT] +[ 0.201982] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT] +[ 0.202204] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT] +[ 0.214741] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled. +[ 0.214918] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0, disabled. +[ 0.215093] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0, disabled. +[ 0.215267] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0, disabled. +[ 0.215441] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0, disabled. +[ 0.215615] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0, disabled. +[ 0.215789] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled. +[ 0.215963] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0, disabled. +[ 0.216135] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.216141] vgaarb: loaded +[ 0.216294] SCSI subsystem initialized +[ 0.216389] libata version 3.00 loaded. +[ 0.216478] usbcore: registered new interface driver usbfs +[ 0.216495] usbcore: registered new interface driver hub +[ 0.216526] usbcore: registered new device driver usb +[ 0.216705] ACPI: WMI: Mapper loaded +[ 0.216708] PCI: Using ACPI for IRQ routing +[ 0.216716] pci 0000:00:04.0: BAR 13: can't allocate resource +[ 0.216719] pci 0000:00:04.0: BAR 14: can't allocate resource +[ 0.216722] pci 0000:00:05.0: BAR 13: can't allocate resource +[ 0.216724] pci 0000:00:05.0: BAR 14: can't allocate resource +[ 0.216944] NetLabel: Initializing +[ 0.216947] NetLabel: domain hash size = 128 +[ 0.216949] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.216966] NetLabel: unlabeled traffic allowed by default +[ 0.217016] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.217022] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.219042] Switching to clocksource tsc +[ 0.219996] AppArmor: AppArmor Filesystem Enabled +[ 0.219996] pnp: PnP ACPI init +[ 0.219996] ACPI: bus type pnp registered +[ 0.219996] pnp: PnP ACPI: found 11 devices +[ 0.219996] ACPI: ACPI bus type pnp unregistered +[ 0.219996] system 00:01: iomem range 0xfec00000-0xfec00fff could not be reserved +[ 0.219996] system 00:01: iomem range 0xfee00000-0xfee00fff has been reserved +[ 0.219996] system 00:08: ioport range 0x1080-0x1080 has been reserved +[ 0.219996] system 00:08: ioport range 0x220-0x22f has been reserved +[ 0.219996] system 00:08: ioport range 0x40b-0x40b has been reserved +[ 0.219996] system 00:08: ioport range 0x4d0-0x4d1 has been reserved +[ 0.219996] system 00:08: ioport range 0x4d6-0x4d6 has been reserved +[ 0.219996] system 00:08: ioport range 0x530-0x537 has been reserved +[ 0.219996] system 00:08: ioport range 0xc00-0xc01 has been reserved +[ 0.219996] system 00:08: ioport range 0xc14-0xc14 has been reserved +[ 0.219996] system 00:08: ioport range 0xc50-0xc52 has been reserved +[ 0.219996] system 00:08: ioport range 0xc6c-0xc6c has been reserved +[ 0.219996] system 00:08: ioport range 0xc6f-0xc6f has been reserved +[ 0.219996] system 00:08: ioport range 0xcd0-0xcd1 has been reserved +[ 0.219996] system 00:08: ioport range 0xcd2-0xcd3 has been reserved +[ 0.219996] system 00:08: ioport range 0xcd4-0xcd5 has been reserved +[ 0.219996] system 00:08: ioport range 0xcd6-0xcd7 has been reserved +[ 0.219996] system 00:08: ioport range 0xcd8-0xcdf has been reserved +[ 0.219996] system 00:08: ioport range 0x8000-0x805f has been reserved +[ 0.219996] system 00:08: ioport range 0xf40-0xf47 has been reserved +[ 0.219996] system 00:08: ioport range 0x87f-0x87f has been reserved +[ 0.219996] system 00:09: iomem range 0xe0000-0xfffff could not be reserved +[ 0.219996] system 00:09: iomem range 0xfff00000-0xffffffff has been reserved +[ 0.222378] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01 +[ 0.222382] pci 0000:00:01.0: IO window: 0x9000-0x9fff +[ 0.222386] pci 0000:00:01.0: MEM window: 0xf0000000-0xf01fffff +[ 0.222391] pci 0000:00:01.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +[ 0.222396] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +[ 0.222398] pci 0000:00:02.0: IO window: disabled +[ 0.222402] pci 0000:00:02.0: MEM window: disabled +[ 0.222405] pci 0000:00:02.0: PREFETCH window: disabled +[ 0.222410] pci 0000:00:04.0: PCI bridge, secondary bus 0000:03 +[ 0.222412] pci 0000:00:04.0: IO window: disabled +[ 0.222415] pci 0000:00:04.0: MEM window: disabled +[ 0.222418] pci 0000:00:04.0: PREFETCH window: disabled +[ 0.222423] pci 0000:00:05.0: PCI bridge, secondary bus 0000:09 +[ 0.222425] pci 0000:00:05.0: IO window: disabled +[ 0.222428] pci 0000:00:05.0: MEM window: disabled +[ 0.222431] pci 0000:00:05.0: PREFETCH window: disabled +[ 0.222436] pci 0000:00:06.0: PCI bridge, secondary bus 0000:0f +[ 0.222439] pci 0000:00:06.0: IO window: 0xa000-0xafff +[ 0.222443] pci 0000:00:06.0: MEM window: 0xf0200000-0xf02fffff +[ 0.222446] pci 0000:00:06.0: PREFETCH window: disabled +[ 0.222452] pci 0000:00:07.0: PCI bridge, secondary bus 0000:15 +[ 0.222455] pci 0000:00:07.0: IO window: 0xb000-0xbfff +[ 0.222459] pci 0000:00:07.0: MEM window: 0xf0300000-0xf03fffff +[ 0.222462] pci 0000:00:07.0: PREFETCH window: disabled +[ 0.222467] pci 0000:00:14.4: PCI bridge, secondary bus 0000:1b +[ 0.222469] pci 0000:00:14.4: IO window: disabled +[ 0.222478] pci 0000:00:14.4: MEM window: disabled +[ 0.222483] pci 0000:00:14.4: PREFETCH window: disabled +[ 0.222500] pci 0000:00:02.0: setting latency timer to 64 +[ 0.222507] pci 0000:00:04.0: setting latency timer to 64 +[ 0.222514] pci 0000:00:05.0: setting latency timer to 64 +[ 0.222520] pci 0000:00:06.0: setting latency timer to 64 +[ 0.222527] pci 0000:00:07.0: setting latency timer to 64 +[ 0.222541] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 0.222545] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +[ 0.222549] pci_bus 0000:01: resource 0 io: [0x9000-0x9fff] +[ 0.222552] pci_bus 0000:01: resource 1 mem: [0xf0000000-0xf01fffff] +[ 0.222555] pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff] +[ 0.222559] pci_bus 0000:03: resource 0 mem: [0x0-0xfff] +[ 0.222562] pci_bus 0000:03: resource 1 mem: [0x0-0xfffff] +[ 0.222566] pci_bus 0000:09: resource 0 mem: [0x0-0xfff] +[ 0.222569] pci_bus 0000:09: resource 1 mem: [0x0-0xfffff] +[ 0.222572] pci_bus 0000:0f: resource 0 io: [0xa000-0xafff] +[ 0.222576] pci_bus 0000:0f: resource 1 mem: [0xf0200000-0xf02fffff] +[ 0.222579] pci_bus 0000:15: resource 0 io: [0xb000-0xbfff] +[ 0.222583] pci_bus 0000:15: resource 1 mem: [0xf0300000-0xf03fffff] +[ 0.222586] pci_bus 0000:1b: resource 3 io: [0x00-0xffff] +[ 0.222590] pci_bus 0000:1b: resource 4 mem: [0x000000-0xffffffffffffffff] +[ 0.222641] NET: Registered protocol family 2 +[ 0.222811] IP route cache hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.223983] TCP established hash table entries: 262144 (order: 10, 4194304 bytes) +[ 0.226551] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.227231] TCP: Hash tables configured (established 262144 bind 65536) +[ 0.227235] TCP reno registered +[ 0.227359] NET: Registered protocol family 1 +[ 0.227490] pci 0000:01:05.0: Boot video device +[ 0.227995] Scanning for low memory corruption every 60 seconds +[ 0.228157] audit: initializing netlink socket (disabled) +[ 0.228173] type=2000 audit(1273005836.220:1): initialized +[ 0.239916] Trying to unpack rootfs image as initramfs... +[ 0.261064] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.262891] VFS: Disk quotas dquot_6.5.2 +[ 0.262967] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.263820] fuse init (API version 7.13) +[ 0.263929] msgmni has been set to 3480 +[ 0.264209] alg: No test for stdrng (krng) +[ 0.264283] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.264286] io scheduler noop registered +[ 0.264289] io scheduler anticipatory registered +[ 0.264291] io scheduler deadline registered +[ 0.264335] io scheduler cfq registered (default) +[ 0.271081] alloc irq_desc for 24 on node 0 +[ 0.271086] alloc kstat_irqs on node 0 +[ 0.271099] pcieport 0000:00:02.0: irq 24 for MSI/MSI-X +[ 0.271106] pcieport 0000:00:02.0: setting latency timer to 64 +[ 0.271296] alloc irq_desc for 25 on node 0 +[ 0.271299] alloc kstat_irqs on node 0 +[ 0.271305] pcieport 0000:00:04.0: irq 25 for MSI/MSI-X +[ 0.271311] pcieport 0000:00:04.0: setting latency timer to 64 +[ 0.271429] alloc irq_desc for 26 on node 0 +[ 0.271431] alloc kstat_irqs on node 0 +[ 0.271437] pcieport 0000:00:05.0: irq 26 for MSI/MSI-X +[ 0.271443] pcieport 0000:00:05.0: setting latency timer to 64 +[ 0.271568] alloc irq_desc for 27 on node 0 +[ 0.271571] alloc kstat_irqs on node 0 +[ 0.271577] pcieport 0000:00:06.0: irq 27 for MSI/MSI-X +[ 0.271582] pcieport 0000:00:06.0: setting latency timer to 64 +[ 0.271698] alloc irq_desc for 28 on node 0 +[ 0.271701] alloc kstat_irqs on node 0 +[ 0.271707] pcieport 0000:00:07.0: irq 28 for MSI/MSI-X +[ 0.271713] pcieport 0000:00:07.0: setting latency timer to 64 +[ 0.271802] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.271833] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.321638] ACPI: AC Adapter [AC] (on-line) +[ 0.321755] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0 +[ 0.321767] ACPI: Sleep Button [SLPB] +[ 0.321826] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 0.322514] ACPI: Lid Switch [LID] +[ 0.322572] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 +[ 0.322576] ACPI: Power Button [PWRB] +[ 0.322647] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.322650] ACPI: Power Button [PWRF] +[ 0.323008] Marking TSC unstable due to TSC halts in idle +[ 0.323069] processor LNXCPU:00: registered as cooling_device0 +[ 0.333399] Switching to clocksource hpet +[ 0.669498] Freeing initrd memory: 13713k freed +[ 1.333518] thermal LNXTHERM:01: registered as thermal_zone0 +[ 1.333531] ACPI: Thermal Zone [THRM] (53 C) +[ 1.335563] Linux agpgart interface v0.103 +[ 1.335612] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.337141] brd: module loaded +[ 1.337734] loop: module loaded +[ 1.337857] input: Macintosh mouse button emulation as /devices/virtual/input/input4 +[ 1.338220] alloc irq_desc for 16 on node 0 +[ 1.338223] alloc kstat_irqs on node 0 +[ 1.338233] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.338288] pata_acpi 0000:00:14.1: setting latency timer to 64 +[ 1.338794] Fixed MDIO Bus: probed +[ 1.338840] PPP generic driver version 2.4.2 +[ 1.338900] tun: Universal TUN/TAP device driver, 1.6 +[ 1.338902] tun: (C) 1999-2004 Max Krasnyansky +[ 1.339012] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.339097] ACPI: Battery Slot [BAT0] (battery absent) +[ 1.339151] alloc irq_desc for 19 on node 0 +[ 1.339154] alloc kstat_irqs on node 0 +[ 1.339161] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 1.339184] ehci_hcd 0000:00:13.5: EHCI Host Controller +[ 1.339238] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +[ 1.339282] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +[ 1.339298] ehci_hcd 0000:00:13.5: debug port 1 +[ 1.339330] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0609400 +[ 1.350029] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +[ 1.350156] usb usb1: configuration #1 chosen from 1 choice +[ 1.350192] hub 1-0:1.0: USB hub found +[ 1.350203] hub 1-0:1.0: 10 ports detected +[ 1.350304] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.350358] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.350374] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 1.350419] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +[ 1.350449] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0404000 +[ 1.410130] usb usb2: configuration #1 chosen from 1 choice +[ 1.410160] hub 2-0:1.0: USB hub found +[ 1.410175] hub 2-0:1.0: 2 ports detected +[ 1.410265] alloc irq_desc for 17 on node 0 +[ 1.410267] alloc kstat_irqs on node 0 +[ 1.410273] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 1.410286] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 1.410328] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +[ 1.410356] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0405000 +[ 1.470125] usb usb3: configuration #1 chosen from 1 choice +[ 1.470155] hub 3-0:1.0: USB hub found +[ 1.470169] hub 3-0:1.0: 2 ports detected +[ 1.470258] alloc irq_desc for 18 on node 0 +[ 1.470260] alloc kstat_irqs on node 0 +[ 1.470266] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.470279] ohci_hcd 0000:00:13.2: OHCI Host Controller +[ 1.470322] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +[ 1.470356] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0406000 +[ 1.530130] usb usb4: configuration #1 chosen from 1 choice +[ 1.530159] hub 4-0:1.0: USB hub found +[ 1.530173] hub 4-0:1.0: 2 ports detected +[ 1.530257] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 1.530271] ohci_hcd 0000:00:13.3: OHCI Host Controller +[ 1.530323] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +[ 1.530344] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0407000 +[ 1.590129] usb usb5: configuration #1 chosen from 1 choice +[ 1.590163] hub 5-0:1.0: USB hub found +[ 1.590177] hub 5-0:1.0: 2 ports detected +[ 1.590264] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.590280] ohci_hcd 0000:00:13.4: OHCI Host Controller +[ 1.590330] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +[ 1.590351] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0408000 +[ 1.650134] usb usb6: configuration #1 chosen from 1 choice +[ 1.650167] hub 6-0:1.0: USB hub found +[ 1.650181] hub 6-0:1.0: 2 ports detected +[ 1.650247] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.650351] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 +[ 1.654442] i8042.c: Detected active multiplexing controller, rev 1.1. +[ 1.657058] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.657065] serio: i8042 AUX0 port at 0x60,0x64 irq 12 +[ 1.657098] serio: i8042 AUX1 port at 0x60,0x64 irq 12 +[ 1.657126] serio: i8042 AUX2 port at 0x60,0x64 irq 12 +[ 1.657157] serio: i8042 AUX3 port at 0x60,0x64 irq 12 +[ 1.657304] mice: PS/2 mouse device common for all mice +[ 1.657563] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 1.657594] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs +[ 1.657761] device-mapper: uevent: version 1.0.3 +[ 1.657898] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 1.657965] device-mapper: multipath: version 1.1.0 loaded +[ 1.657969] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.658177] cpuidle: using governor ladder +[ 1.658242] cpuidle: using governor menu +[ 1.658718] TCP cubic registered +[ 1.658870] NET: Registered protocol family 10 +[ 1.659447] lo: Disabled Privacy Extensions +[ 1.659853] NET: Registered protocol family 17 +[ 1.659894] powernow-k8: Found 1 AMD Athlon(tm) Processor TF-20 processors (1 cpu cores) (version 2.20.00) +[ 1.659940] powernow-k8: 0 : fid 0x8 (1600 MHz), vid 0x16 +[ 1.659943] powernow-k8: 1 : fid 0x0 (800 MHz), vid 0x16 +[ 1.660134] PM: Resume from disk failed. +[ 1.660150] registered taskstats version 1 +[ 1.660646] Magic number: 10:100:750 +[ 1.660673] tty ttyS1: hash matches +[ 1.660757] rtc_cmos 00:04: setting system clock to 2010-05-04 20:43:59 UTC (1273005839) +[ 1.660761] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.660763] EDD information not available. +[ 1.660843] Freeing unused kernel memory: 876k freed +[ 1.661406] Write protecting the kernel read-only data: 7680k +[ 1.689967] udev: starting version 151 +[ 1.692967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5 +[ 1.730059] usb 1-10: new high speed USB device using ehci_hcd and address 3 +[ 2.022475] scsi0 : pata_atiixp +[ 2.022901] scsi1 : pata_atiixp +[ 2.024178] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x8420 irq 14 +[ 2.024201] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x8428 irq 15 +[ 2.024694] ahci 0000:00:12.0: version 3.0 +[ 2.024712] alloc irq_desc for 22 on node 0 +[ 2.024715] alloc kstat_irqs on node 0 +[ 2.024724] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 2.024766] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +[ 2.024888] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +[ 2.024912] ahci 0000:00:12.0: flags: ncq sntf ilck led clo pmp pio ccc +[ 2.025235] acpi device:28: registered as cooling_device1 +[ 2.025375] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:25/LNXVIDEO:00/input/input6 +[ 2.025444] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 2.026467] scsi2 : ahci +[ 2.026947] scsi3 : ahci +[ 2.027086] scsi4 : ahci +[ 2.027221] scsi5 : ahci +[ 2.027388] ata3: SATA max UDMA/133 abar m1024@0xf0609000 port 0xf0609100 irq 22 +[ 2.027393] ata4: SATA max UDMA/133 abar m1024@0xf0609000 port 0xf0609180 irq 22 +[ 2.027398] ata5: SATA max UDMA/133 abar m1024@0xf0609000 port 0xf0609200 irq 22 +[ 2.027402] ata6: SATA max UDMA/133 abar m1024@0xf0609000 port 0xf0609280 irq 22 +[ 2.028442] [drm] Initialized drm 1.1.0 20060810 +[ 2.063075] usb 1-10: configuration #1 chosen from 1 choice +[ 2.370060] ata4: SATA link down (SStatus 0 SControl 300) +[ 2.370139] ata6: SATA link down (SStatus 0 SControl 300) +[ 2.410038] usb 2-1: new low speed USB device using ohci_hcd and address 2 +[ 2.550036] ata5: softreset failed (device not ready) +[ 2.550040] ata5: applying SB600 PMP SRST workaround and retrying +[ 2.550057] ata3: softreset failed (device not ready) +[ 2.550061] ata3: applying SB600 PMP SRST workaround and retrying +[ 2.601596] usb 2-1: configuration #1 chosen from 1 choice +[ 2.730047] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.730080] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.732744] ata5.00: ATAPI: MATSHITADVD-RAM UJ890AS, 1.00, max UDMA/100, ATAPI AN +[ 2.732770] ata5.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 2.735736] ata5.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 2.735739] ata5.00: configured for UDMA/100 +[ 2.784494] ata3.00: ATA-8: WDC WD2500BEVT-00ZCT0, 11.01A11, max UDMA/133 +[ 2.784498] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 2.784524] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 2.786471] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 2.786474] ata3.00: configured for UDMA/133 +[ 2.786606] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEVT-0 11.0 PQ: 0 ANSI: 5 +[ 2.786811] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 2.787163] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 2.787222] sd 2:0:0:0: [sda] Write Protect is off +[ 2.787226] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.787255] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.787422] sda: +[ 2.789723] scsi 4:0:0:0: CD-ROM MATSHITA DVD-RAM UJ890AS 1.00 PQ: 0 ANSI: 5 +[ 2.791428] sda1 sda2 +[ 2.792010] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.795609] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.795613] Uniform CD-ROM driver Revision: 3.20 +[ 2.795736] sr 4:0:0:0: Attached scsi CD-ROM sr0 +[ 2.795823] sr 4:0:0:0: Attached scsi generic sg1 type 5 +[ 2.837887] usbcore: registered new interface driver hiddev +[ 2.842505] input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input7 +[ 2.842652] generic-usb 0003:046D:C016.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:13.0-1/input0 +[ 2.842701] usbcore: registered new interface driver usbhid +[ 2.842705] usbhid: v2.6:USB HID core driver +[ 2.870726] [drm] radeon defaulting to kernel modesetting. +[ 2.870732] [drm] radeon kernel modesetting enabled. +[ 2.873112] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 2.876842] [drm] radeon: Initializing kernel modesetting. +[ 2.876937] [drm] register mmio base: 0xF0100000 +[ 2.876940] [drm] register mmio size: 65536 +[ 2.877050] ATOM BIOS: ATI +[ 2.877267] [drm] GPU reset succeed (RBBM_STATUS=0x10000140) +[ 2.877290] [drm] radeon: VRAM 256M +[ 2.877292] [drm] radeon: VRAM from 0x70000000 to 0x7FFFFFFF +[ 2.877295] [drm] radeon: GTT 512M +[ 2.877297] [drm] radeon: GTT from 0x80000000 to 0x9FFFFFFF +[ 2.877332] alloc irq_desc for 29 on node 0 +[ 2.877334] alloc kstat_irqs on node 0 +[ 2.877346] radeon 0000:01:05.0: irq 29 for MSI/MSI-X +[ 2.877350] [drm] radeon: using MSI. +[ 2.877377] [drm] radeon: irq initialized. +[ 2.877520] [drm] Detected VRAM RAM=256M, BAR=256M +[ 2.877526] [drm] RAM width 128bits DDR +[ 2.877639] [TTM] Zone kernel: Available graphics memory: 898306 kiB. +[ 2.877662] [drm] radeon: 256M of VRAM memory ready +[ 2.877664] [drm] radeon: 512M of GTT memory ready. +[ 2.877694] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 2.881803] [drm] radeon: 1 quad pipes, 1 z pipes initialized. +[ 2.881916] [drm] radeon: cp idle (0x10000C03) +[ 2.881968] [drm] Loading RS690/RS740 Microcode +[ 2.882381] platform radeon_cp.0: firmware: requesting radeon/RS690_cp.bin +[ 2.886755] [drm] radeon: ring at 0x0000000080000000 +[ 2.886778] [drm] ring test succeeded in 1 usecs +[ 2.886979] [drm] radeon: ib pool ready. +[ 2.887065] [drm] ib test succeeded in 0 usecs +[ 2.887297] [drm] Radeon Display Connectors +[ 2.887300] [drm] Connector 0: +[ 2.887301] [drm] VGA +[ 2.887305] [drm] DDC: 0x7e50 0x7e40 0x7e54 0x7e44 0x7e58 0x7e48 0x7e5c 0x7e4c +[ 2.887307] [drm] Encoders: +[ 2.887309] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 2.887312] [drm] Connector 1: +[ 2.887313] [drm] LVDS +[ 2.887316] [drm] DDC: 0x7e40 0x7e50 0x7e44 0x7e54 0x7e48 0x7e58 0x7e4c 0x7e5c +[ 2.887319] [drm] Encoders: +[ 2.887321] [drm] LCD1: INTERNAL_LVTM1 +[ 2.887323] [drm] Connector 2: +[ 2.887324] [drm] HDMI-A +[ 2.887326] [drm] HPD2 +[ 2.887329] [drm] DDC: 0x7e40 0x7e60 0x7e44 0x7e64 0x7e48 0x7e68 0x7e4c 0x7e6c +[ 2.887331] [drm] Encoders: +[ 2.887333] [drm] DFP2: INTERNAL_DDI +[ 3.404100] [drm] fb mappable at 0xD0040000 +[ 3.404104] [drm] vram apper at 0xD0000000 +[ 3.404106] [drm] size 5299200 +[ 3.404108] [drm] fb depth is 24 +[ 3.404110] [drm] pitch is 5888 +[ 3.404293] fb0: radeondrmfb frame buffer device +[ 3.404295] registered panic notifier +[ 3.404302] [drm] Initialized radeon 2.0.0 20080528 for 0000:01:05.0 on minor 0 +[ 3.406751] vga16fb: initializing +[ 3.406759] vga16fb: mapped to 0xffff8800000a0000 +[ 3.406766] vga16fb: not registering due to another framebuffer present +[ 3.463104] Console: switching to colour frame buffer device 180x56 +[ 4.191086] kjournald starting. Commit interval 5 seconds +[ 4.191104] EXT3-fs: mounted filesystem with ordered data mode. +[ 17.254428] udev: starting version 151 +[ 17.327549] EXT3 FS on sda1, internal journal +[ 17.509645] lp: driver loaded but no devices found +[ 17.538852] jme: JMicron JMC2XX ethernet driver version 1.0.5 +[ 17.538952] sdhci: Secure Digital Host Controller Interface driver +[ 17.538955] sdhci: Copyright(c) Pierre Ossman +[ 17.575662] jme 0000:15:00.5: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 17.575681] jme 0000:15:00.5: setting latency timer to 64 +[ 17.576962] eth0: JMC260 Fast Ethernet ver:22 rev:2 macaddr:00:90:f5:9b:3f:c4 +[ 17.577039] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 17.605505] sdhci-pci 0000:15:00.0: SDHCI controller found [197b:2382] (rev 80) +[ 17.605530] sdhci-pci 0000:15:00.0: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 17.605589] sdhci-pci 0000:15:00.0: setting latency timer to 64 +[ 17.605666] Registered led device: mmc0:: +[ 17.605712] mmc0: SDHCI controller on PCI [0000:15:00.0] using ADMA +[ 17.664938] sdhci-pci 0000:15:00.2: SDHCI controller found [197b:2381] (rev 80) +[ 17.664965] sdhci-pci 0000:15:00.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 17.664980] sdhci-pci 0000:15:00.2: Refusing to bind to secondary interface. +[ 17.664987] sdhci-pci 0000:15:00.2: PCI INT B disabled +[ 17.908647] EDAC MC: Ver: 2.1.0 Apr 16 2010 +[ 17.955420] Linux video capture interface: v2.00 +[ 17.959946] uvcvideo: Found UVC 1.00 device BisonCam, NB Pro (5986:0241) +[ 17.962197] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0x8410, revision 0 +[ 17.962537] jmb38x_ms 0000:15:00.3: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 17.962546] jmb38x_ms 0000:15:00.3: setting latency timer to 64 +[ 17.967851] EDAC amd64_edac: Ver: 3.2.0 Apr 16 2010 +[ 18.024861] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 18.027377] BUG: unable to handle kernel NULL pointer dereference at 00000000000003a7 +[ 18.027387] IP: [] con_insert_unipair+0x4b/0x250 +[ 18.027399] PGD 60954067 PUD 60220067 PMD 0 +[ 18.027404] Oops: 0000 [#1] SMP +[ 18.027408] last sysfs file: /sys/module/soundcore/initstate +[ 18.027412] CPU 0 +[ 18.027415] Modules linked in: amd64_edac_mod(+) uvcvideo(+) videodev v4l1_compat v4l2_compat_ioctl32 soundcore psmouse serio_raw jmb38x_ms k8temp snd_page_alloc i2c_piix4 edac_core edac_mce_amd sdhci_pci jme memstick sdhci mii led_class shpchp lp parport fbcon tileblit font bitblit softcursor vga16fb vgastate radeon ttm usbhid drm_kms_helper hid drm i2c_algo_bit ahci pata_atiixp video output +[ 18.027453] Pid: 638, comm: setfont Not tainted 2.6.32-21-generic #32-Ubuntu M77xK +[ 18.027457] RIP: 0010:[] [] con_insert_unipair+0x4b/0x250 +[ 18.027464] RSP: 0018:ffff880060a99cd8 EFLAGS: 00010206 +[ 18.027467] RAX: 000000000000037f RBX: 0000000000000153 RCX: ffffffff8133aee6 +[ 18.027469] RDX: 0000000000000005 RSI: 0000000000000153 RDI: ffff880060230a00 +[ 18.027472] RBP: ffff880060a99d18 R08: 0000000000000000 R09: 0000000000000080 +[ 18.027475] R10: 0000000000000001 R11: 0000000000000000 R12: ffff880060230a00 +[ 18.027478] R13: 00000000000000e1 R14: 00000000000003a7 R15: 0000000000000000 +[ 18.027482] FS: 00007f58fd4a5700(0000) GS:ffff880001c00000(0000) knlGS:0000000000000000 +[ 18.027486] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 18.027488] CR2: 00000000000003a7 CR3: 0000000060bf1000 CR4: 00000000000006f0 +[ 18.027491] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 18.027495] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 18.027498] Process setfont (pid: 638, threadinfo ffff880060a98000, task ffff880060cf44d0) +[ 18.027500] Stack: +[ 18.027502] 0000004001c0ea78 ffff880000014100 ffff880000012a90 000000000000001f +[ 18.027507] <0> 0000000000000000 0000000000bb4280 ffff880060230a00 0000000000000000 +[ 18.027512] <0> ffff880060a99d98 ffffffff8133b365 0000000000000002 ffff88006d2e0800 +[ 18.027517] Call Trace: +[ 18.027524] [] con_set_unimap+0x185/0x220 +[ 18.027529] [] vt_ioctl+0x159e/0x1820 +[ 18.027535] [] ? unlock_page+0x27/0x30 +[ 18.027540] [] ? __do_fault+0x439/0x500 +[ 18.027546] [] tty_ioctl+0xa2/0x6e0 +[ 18.027552] [] vfs_ioctl+0x22/0xa0 +[ 18.027558] [] ? __up_read+0x9a/0xc0 +[ 18.027562] [] do_vfs_ioctl+0x81/0x380 +[ 18.027569] [] ? up_read+0xe/0x10 +[ 18.027576] [] ? do_page_fault+0x158/0x3b0 +[ 18.027580] [] sys_ioctl+0x81/0xa0 +[ 18.027586] [] system_call_fastpath+0x16/0x1b +[ 18.027589] Code: 00 41 89 f6 49 89 fc 89 f3 66 41 c1 ee 0b 41 89 d5 41 83 e6 1f 4a 8b 04 f7 48 85 c0 74 53 89 da 66 c1 ea 06 83 e2 1f 4c 8d 34 d0 <49> 8b 06 48 85 c0 0f 84 8e 00 00 00 48 89 da 0f b7 db 83 e2 3f +[ 18.027624] RIP [] con_insert_unipair+0x4b/0x250 +[ 18.027629] RSP +[ 18.027631] CR2: 00000000000003a7 +[ 18.027635] ---[ end trace 8b4d5f7507c30e48 ]--- +[ 18.062178] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 18.062187] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 18.062189] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 18.062192] (Note that use of the override may cause unknown side effects.) +[ 18.062221] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 18.110662] input: BisonCam, NB Pro as /devices/pci0000:00/0000:00:13.5/usb1/1-10/1-10:1.0/input/input8 +[ 18.110871] usbcore: registered new interface driver uvcvideo +[ 18.111180] USB Video Class driver (v0.1.0) +[ 18.288677] type=1505 audit(1273005856.119:2): operation="profile_load" pid=709 name="/sbin/dhclient3" +[ 18.289038] type=1505 audit(1273005856.119:3): operation="profile_load" pid=709 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 18.289238] type=1505 audit(1273005856.119:4): operation="profile_load" pid=709 name="/usr/lib/connman/scripts/dhclient-script" +[ 18.536839] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 18.683393] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa42000 +[ 18.684924] hda_codec: ALC272: BIOS auto-probing. +[ 18.686755] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input9 +[ 18.702753] HDA Intel 0000:01:05.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 18.720704] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input10 +[ 19.750399] hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000 +[ 20.760015] hda-intel: Codec #0 probe error; disabling it... +[ 21.810017] hda_intel: azx_get_response timeout, switching to single_cmd mode: last cmd=0x000f0000 +[ 37.563537] padlock: VIA PadLock Hash Engine not detected. +[ 38.862787] kjournald starting. Commit interval 5 seconds +[ 38.870310] EXT3 FS on dm-0, internal journal +[ 38.870318] EXT3-fs: mounted filesystem with ordered data mode. +[ 40.617556] type=1505 audit(1273005878.449:5): operation="profile_load" pid=993 name="/usr/share/gdm/guest-session/Xsession" +[ 40.622524] type=1505 audit(1273005878.459:6): operation="profile_replace" pid=995 name="/sbin/dhclient3" +[ 40.622902] type=1505 audit(1273005878.459:7): operation="profile_replace" pid=995 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 40.623110] type=1505 audit(1273005878.459:8): operation="profile_replace" pid=995 name="/usr/lib/connman/scripts/dhclient-script" +[ 40.634678] type=1505 audit(1273005878.469:9): operation="profile_load" pid=997 name="/usr/bin/evince" +[ 40.639284] type=1505 audit(1273005878.469:10): operation="profile_load" pid=997 name="/usr/bin/evince-previewer" +[ 40.652112] type=1505 audit(1273005878.489:11): operation="profile_load" pid=997 name="/usr/bin/evince-thumbnailer" +[ 40.658767] type=1505 audit(1273005878.489:12): operation="profile_load" pid=1061 name="/usr/lib/cups/backend/cups-pdf" +[ 40.659226] type=1505 audit(1273005878.489:13): operation="profile_load" pid=1061 name="/usr/sbin/cupsd" +[ 40.661907] type=1505 audit(1273005878.499:14): operation="profile_load" pid=1062 name="/usr/sbin/tcpdump" +[ 40.746355] alloc irq_desc for 30 on node 0 +[ 40.746362] alloc kstat_irqs on node 0 +[ 40.746378] jme 0000:15:00.5: irq 30 for MSI/MSI-X +[ 40.746443] eth0: Link is down. +[ 40.746721] eth0: Link is down. +[ 40.747165] ADDRCONF(NETDEV_UP): eth0: link is not ready + +Bug: 594965 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-22-generic (buildd@palmer) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #36-Ubuntu SMP Thu Jun 3 22:02:19 UTC 2010 (Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2) +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] NSC Geode by NSC +[ 0.000000] Cyrix CyrixInstead +[ 0.000000] Centaur CentaurHauls +[ 0.000000] Transmeta GenuineTMx86 +[ 0.000000] Transmeta TransmetaCPU +[ 0.000000] UMC UMC UMC UMC +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 00000000000a0000 (usable) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000005fff0000 (usable) +[ 0.000000] BIOS-e820: 000000005fff0000 - 000000005fff3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000005fff3000 - 0000000060000000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved) +[ 0.000000] DMI 2.2 present. +[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0x5fff0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-AFFFF uncachable +[ 0.000000] B0000-BFFFF write-combining +[ 0.000000] C0000-C7FFF write-protect +[ 0.000000] C8000-FFFFF uncachable +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask FC0000000 write-back +[ 0.000000] 1 base 040000000 mask FE0000000 write-back +[ 0.000000] 2 base 0D0000000 mask FF8000000 write-combining +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 00000000000a0000 (usable) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000005fff0000 (usable) +[ 0.000000] modified: 000000005fff0000 - 000000005fff3000 (ACPI NVS) +[ 0.000000] modified: 000000005fff3000 - 0000000060000000 (ACPI data) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffff0000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] Using x86 segment limits to approximate NX protection +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 10000-15000 +[ 0.000000] RAMDISK: 37329000 - 37fef514 +[ 0.000000] Allocated new RAMDISK: 008de000 - 015a4514 +[ 0.000000] Move RAMDISK from 0000000037329000 - 0000000037fef513 to 008de000 - 015a4513 +[ 0.000000] ACPI: RSDP 000f6fc0 00014 (v00 Nvidia) +[ 0.000000] ACPI: RSDT 5fff3000 0002C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: FACP 5fff3040 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: DSDT 5fff30c0 04C22 (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E) +[ 0.000000] ACPI: FACS 5fff0000 00040 +[ 0.000000] ACPI: APIC 5fff7d00 0006E (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 647MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] node 0 low ram: 00000000 - 377fe000 +[ 0.000000] node 0 bootmap 00011000 - 00017f00 +[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +[ 0.000000] #3 [0000100000 - 00008d9e98] TEXT DATA BSS ==> [0000100000 - 00008d9e98] +[ 0.000000] #4 [000009f000 - 0000100000] BIOS reserved ==> [000009f000 - 0000100000] +[ 0.000000] #5 [00008da000 - 00008dd08c] BRK ==> [00008da000 - 00008dd08c] +[ 0.000000] #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000] +[ 0.000000] #7 [00008de000 - 00015a4514] NEW RAMDISK ==> [00008de000 - 00015a4514] +[ 0.000000] #8 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000] +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0005fff0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x000000a0 +[ 0.000000] 0: 0x00000100 -> 0x0005fff0 +[ 0.000000] On node 0 totalpages: 393088 +[ 0.000000] free_area_init_node: node 0, pgdat c0798720, node_mem_map c15a6200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3952 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 1296 pages used for memmap +[ 0.000000] HighMem zone: 164578 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] Nvidia board detected. Ignoring ACPI timer override. +[ 0.000000] If you got timer trouble try acpi_use_timer_override +[ 0.000000] ACPI: PM-Timer IO Port: 0x4008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored. +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge) +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] ACPI: IRQ14 used by override. +[ 0.000000] ACPI: IRQ15 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 24 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 60000000 (gap: 60000000:9ec00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2400000 s36024 r0 d21320 u4194304 +[ 0.000000] pcpu-alloc: s36024 r0 d21320 u4194304 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 390016 +[ 0.000000] Kernel command line: root=UUID=ad296f33-5e9a-4109-8265-6631f750be25 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 7863680 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Initializing HighMem for node 0 (000377fe:0005fff0) +[ 0.000000] Memory: 1529380k/1572800k available (4673k kernel code, 42016k reserved, 2121k data, 656k init, 663496k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc07a3000 - 0xc0847000 ( 656 kB) +[ 0.000000] .data : 0xc0590663 - 0xc07a2e48 (2121 kB) +[ 0.000000] .text : 0xc0100000 - 0xc0590663 (4673 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:2304 nr_irqs:256 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1920.694 MHz processor. +[ 0.008006] Calibrating delay loop (skipped), value calculated using timer frequency.. 3841.38 BogoMIPS (lpj=7682776) +[ 0.008032] Security Framework initialized +[ 0.008066] AppArmor: AppArmor initialized +[ 0.008077] Mount-cache hash table entries: 512 +[ 0.008244] Initializing cgroup subsys ns +[ 0.008249] Initializing cgroup subsys cpuacct +[ 0.008254] Initializing cgroup subsys memory +[ 0.008266] Initializing cgroup subsys devices +[ 0.008270] Initializing cgroup subsys freezer +[ 0.008272] Initializing cgroup subsys net_cls +[ 0.008296] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.008300] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.008305] mce: CPU supports 4 MCE banks +[ 0.008326] Performance Events: AMD PMU driver. +[ 0.008334] ... version: 0 +[ 0.008336] ... bit width: 48 +[ 0.008338] ... generic registers: 4 +[ 0.008341] ... value mask: 0000ffffffffffff +[ 0.008343] ... max period: 00007fffffffffff +[ 0.008346] ... fixed-purpose events: 0 +[ 0.008348] ... event mask: 000000000000000f +[ 0.008353] Checking 'hlt' instruction... OK. +[ 0.024560] SMP alternatives: switching to UP code +[ 0.030543] Freeing SMP alternatives: 19k freed +[ 0.030569] ACPI: Core revision 20090903 +[ 0.039392] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.039401] ftrace: allocating 21771 entries in 43 pages +[ 0.040135] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.040523] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1 +[ 0.081544] CPU0: AMD Athlon(tm) XP 2600+ stepping 00 +[ 0.084001] Brought up 1 CPUs +[ 0.084001] Total of 1 processors activated (3841.38 BogoMIPS). +[ 0.084001] CPU0 attaching NULL sched-domain. +[ 0.084001] devtmpfs: initialized +[ 0.084001] regulator: core version 0.5 +[ 0.084001] Time: 3:20:39 Date: 06/16/10 +[ 0.084001] NET: Registered protocol family 16 +[ 0.084001] EISA bus registered +[ 0.084001] ACPI: bus type pci registered +[ 0.116103] PCI: PCI BIOS revision 2.10 entry at 0xfb450, last bus=2 +[ 0.116106] PCI: Using configuration type 1 for base access +[ 0.117189] bio: create slab at 0 +[ 0.118180] ACPI: EC: Look up EC in DSDT +[ 0.125890] ACPI: Interpreter enabled +[ 0.125896] ACPI: (supports S0 S1 S4 S5) +[ 0.125924] ACPI: Using IOAPIC for interrupt routing +[ 0.134917] ACPI: No dock devices found. +[ 0.135041] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 0.135091] pci 0000:00:00.0: reg 10 32bit mmio pref: [0xd0000000-0xd7ffffff] +[ 0.135109] pci 0000:00:00.0: nForce2 C1 Halt Disconnect fixup +[ 0.135325] pci 0000:00:01.1: reg 10 io port: [0xe400-0xe41f] +[ 0.135362] pci 0000:00:01.1: PME# supported from D3hot D3cold +[ 0.135366] pci 0000:00:01.1: PME# disabled +[ 0.135399] pci 0000:00:02.0: reg 10 32bit mmio: [0xe2004000-0xe2004fff] +[ 0.135435] pci 0000:00:02.0: supports D1 D2 +[ 0.135438] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.135442] pci 0000:00:02.0: PME# disabled +[ 0.135470] pci 0000:00:02.1: reg 10 32bit mmio: [0xe2005000-0xe2005fff] +[ 0.135505] pci 0000:00:02.1: supports D1 D2 +[ 0.135508] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.135512] pci 0000:00:02.1: PME# disabled +[ 0.135546] pci 0000:00:02.2: reg 10 32bit mmio: [0xe2000000-0xe20000ff] +[ 0.135588] pci 0000:00:02.2: supports D1 D2 +[ 0.135591] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.135595] pci 0000:00:02.2: PME# disabled +[ 0.135631] pci 0000:00:04.0: reg 10 32bit mmio: [0xe2001000-0xe2001fff] +[ 0.135637] pci 0000:00:04.0: reg 14 io port: [0xd000-0xd007] +[ 0.135669] pci 0000:00:04.0: supports D1 D2 +[ 0.135672] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.135676] pci 0000:00:04.0: PME# disabled +[ 0.135705] pci 0000:00:06.0: reg 10 io port: [0xd400-0xd4ff] +[ 0.135711] pci 0000:00:06.0: reg 14 io port: [0xd800-0xd87f] +[ 0.135718] pci 0000:00:06.0: reg 18 32bit mmio: [0xe2002000-0xe2002fff] +[ 0.135747] pci 0000:00:06.0: supports D1 D2 +[ 0.135814] pci 0000:00:09.0: reg 20 io port: [0xf000-0xf00f] +[ 0.135968] pci 0000:02:00.0: reg 10 32bit mmio pref: [0xd8000000-0xdfffffff] +[ 0.135976] pci 0000:02:00.0: reg 14 io port: [0xc000-0xc0ff] +[ 0.135982] pci 0000:02:00.0: reg 18 32bit mmio: [0xe1000000-0xe100ffff] +[ 0.136006] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +[ 0.136027] pci 0000:02:00.0: supports D1 D2 +[ 0.136066] pci 0000:00:1e.0: bridge io port: [0xc000-0xcfff] +[ 0.136070] pci 0000:00:1e.0: bridge 32bit mmio: [0xe0000000-0xe1ffffff] +[ 0.136075] pci 0000:00:1e.0: bridge 32bit mmio pref: [0xd8000000-0xdfffffff] +[ 0.136085] pci_bus 0000:00: on NUMA node 0 +[ 0.136091] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.136251] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT] +[ 0.136521] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT] +[ 0.194017] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11 *12 14 15) +[ 0.194183] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.194349] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.194517] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 *10 11 12 14 15) +[ 0.194683] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.194852] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 *10 11 12 14 15) +[ 0.195031] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 10 *11 12 14 15) +[ 0.195198] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 10 *11 12 14 15) +[ 0.195367] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.195534] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 10 11 *12 14 15) +[ 0.195703] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.195868] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.196040] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 *5 6 7 10 11 12 14 15) +[ 0.196212] ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.196377] ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.196541] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.196691] ACPI: PCI Interrupt Link [APC1] (IRQs *16) +[ 0.196824] ACPI: PCI Interrupt Link [APC2] (IRQs *17), disabled. +[ 0.196956] ACPI: PCI Interrupt Link [APC3] (IRQs *18), disabled. +[ 0.197088] ACPI: PCI Interrupt Link [APC4] (IRQs *19) +[ 0.197220] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled. +[ 0.197415] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22) *0 +[ 0.197611] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22) *0 +[ 0.197805] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22) *0 +[ 0.197999] ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22) *0, disabled. +[ 0.198194] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22) *0 +[ 0.198388] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22) *0, disabled. +[ 0.198522] ACPI: PCI Interrupt Link [APCS] (IRQs *23), disabled. +[ 0.198715] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22) *0 +[ 0.198909] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22) *0, disabled. +[ 0.199114] ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22) *0, disabled. +[ 0.199309] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22) *0, disabled. +[ 0.199464] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.199468] vgaarb: loaded +[ 0.199619] SCSI subsystem initialized +[ 0.199724] libata version 3.00 loaded. +[ 0.199830] usbcore: registered new interface driver usbfs +[ 0.199845] usbcore: registered new interface driver hub +[ 0.199881] usbcore: registered new device driver usb +[ 0.200058] ACPI: WMI: Mapper loaded +[ 0.200060] PCI: Using ACPI for IRQ routing +[ 0.200220] NetLabel: Initializing +[ 0.200223] NetLabel: domain hash size = 128 +[ 0.200225] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.200242] NetLabel: unlabeled traffic allowed by default +[ 0.200278] Switching to clocksource tsc +[ 0.202734] AppArmor: AppArmor Filesystem Enabled +[ 0.202767] pnp: PnP ACPI init +[ 0.202793] ACPI: bus type pnp registered +[ 0.208236] pnp: PnP ACPI: found 14 devices +[ 0.208240] ACPI: ACPI bus type pnp unregistered +[ 0.208244] PnPBIOS: Disabled by ACPI PNP +[ 0.208260] system 00:00: ioport range 0x4000-0x407f has been reserved +[ 0.208264] system 00:00: ioport range 0x4080-0x40ff has been reserved +[ 0.208268] system 00:00: ioport range 0x4400-0x447f has been reserved +[ 0.208271] system 00:00: ioport range 0x4480-0x44ff has been reserved +[ 0.208275] system 00:00: ioport range 0x4200-0x427f has been reserved +[ 0.208278] system 00:00: ioport range 0x4280-0x42ff has been reserved +[ 0.208286] system 00:01: ioport range 0x5000-0x503f has been reserved +[ 0.208289] system 00:01: ioport range 0x5100-0x513f has been reserved +[ 0.208297] system 00:02: iomem range 0xf0000-0xf3fff could not be reserved +[ 0.208301] system 00:02: iomem range 0xf4000-0xf7fff could not be reserved +[ 0.208306] system 00:02: iomem range 0xf8000-0xfbfff could not be reserved +[ 0.208309] system 00:02: iomem range 0xfc000-0xfffff could not be reserved +[ 0.208313] system 00:02: iomem range 0x5fff0000-0x5fffffff could not be reserved +[ 0.208318] system 00:02: iomem range 0xffff0000-0xffffffff has been reserved +[ 0.208322] system 00:02: iomem range 0x0-0x9ffff could not be reserved +[ 0.208326] system 00:02: iomem range 0x100000-0x5ffeffff could not be reserved +[ 0.208330] system 00:02: iomem range 0xfec00000-0xfec00fff could not be reserved +[ 0.208334] system 00:02: iomem range 0xfee00000-0xfee00fff has been reserved +[ 0.208346] system 00:04: ioport range 0xb78-0xb7b has been reserved +[ 0.208350] system 00:04: ioport range 0xf78-0xf7b has been reserved +[ 0.208353] system 00:04: ioport range 0xa78-0xa7b has been reserved +[ 0.208357] system 00:04: ioport range 0xe78-0xe7b has been reserved +[ 0.208360] system 00:04: ioport range 0xbbc-0xbbf has been reserved +[ 0.208370] system 00:04: ioport range 0xfbc-0xfbf has been reserved +[ 0.208374] system 00:04: ioport range 0x4d0-0x4d1 has been reserved +[ 0.208377] system 00:04: ioport range 0x294-0x297 has been reserved +[ 0.243130] pci 0000:00:08.0: PCI bridge, secondary bus 0000:01 +[ 0.243133] pci 0000:00:08.0: IO window: disabled +[ 0.243139] pci 0000:00:08.0: MEM window: disabled +[ 0.243144] pci 0000:00:08.0: PREFETCH window: disabled +[ 0.243154] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:02 +[ 0.243157] pci 0000:00:1e.0: IO window: 0xc000-0xcfff +[ 0.243163] pci 0000:00:1e.0: MEM window: 0xe0000000-0xe1ffffff +[ 0.243167] pci 0000:00:1e.0: PREFETCH window: 0xd8000000-0xdfffffff +[ 0.243181] pci 0000:00:08.0: setting latency timer to 64 +[ 0.243190] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 0.243194] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff] +[ 0.243197] pci_bus 0000:02: resource 0 io: [0xc000-0xcfff] +[ 0.243201] pci_bus 0000:02: resource 1 mem: [0xe0000000-0xe1ffffff] +[ 0.243204] pci_bus 0000:02: resource 2 pref mem [0xd8000000-0xdfffffff] +[ 0.243247] NET: Registered protocol family 2 +[ 0.243355] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.243817] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.245105] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.245750] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.245753] TCP reno registered +[ 0.245876] NET: Registered protocol family 1 +[ 0.279738] pci 0000:02:00.0: Boot video device +[ 0.279976] cpufreq-nforce2: Detected nForce2 chipset revision C1 +[ 0.279979] cpufreq-nforce2: FSB changing is maybe unstable and can lead to crashes and data loss. +[ 0.279988] cpufreq-nforce2: FSB currently at 167 MHz, FID 11.5 +[ 0.280055] Scanning for low memory corruption every 60 seconds +[ 0.280186] audit: initializing netlink socket (disabled) +[ 0.280203] type=2000 audit(1276658438.279:1): initialized +[ 0.290365] Trying to unpack rootfs image as initramfs... +[ 0.304123] highmem bounce pool size: 64 pages +[ 0.304131] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.306067] VFS: Disk quotas dquot_6.5.2 +[ 0.306149] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.306832] fuse init (API version 7.13) +[ 0.306934] msgmni has been set to 1693 +[ 0.312083] alg: No test for stdrng (krng) +[ 0.312163] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.312167] io scheduler noop registered +[ 0.312170] io scheduler anticipatory registered +[ 0.312172] io scheduler deadline registered +[ 0.312228] io scheduler cfq registered (default) +[ 0.312370] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.312398] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.312535] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.312541] ACPI: Power Button [PWRB] +[ 0.312614] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.312617] ACPI: Power Button [PWRF] +[ 0.312676] fan PNP0C0B:00: registered as cooling_device0 +[ 0.312682] ACPI: Fan [FAN] (on) +[ 0.313122] processor LNXCPU:00: registered as cooling_device1 +[ 0.318096] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.318106] ACPI: Thermal Zone [THRM] (43 C) +[ 0.323841] isapnp: Scanning for PnP cards... +[ 0.331111] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.331229] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.331340] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 0.331681] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.331845] 00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 0.333121] brd: module loaded +[ 0.333688] loop: module loaded +[ 0.333798] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +[ 0.334027] pata_acpi 0000:00:09.0: setting latency timer to 64 +[ 0.334406] Fixed MDIO Bus: probed +[ 0.334448] PPP generic driver version 2.4.2 +[ 0.334496] tun: Universal TUN/TAP device driver, 1.6 +[ 0.334499] tun: (C) 1999-2004 Max Krasnyansky +[ 0.334593] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.334973] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22 +[ 0.334980] alloc irq_desc for 22 on node -1 +[ 0.334983] alloc kstat_irqs on node -1 +[ 0.334993] ehci_hcd 0000:00:02.2: PCI INT C -> Link[APCL] -> GSI 22 (level, high) -> IRQ 22 +[ 0.335018] ehci_hcd 0000:00:02.2: setting latency timer to 64 +[ 0.335022] ehci_hcd 0000:00:02.2: EHCI Host Controller +[ 0.335066] ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1 +[ 0.335102] ehci_hcd 0000:00:02.2: debug port 1 +[ 0.335112] ehci_hcd 0000:00:02.2: cache line size of 64 is not supported +[ 0.335132] ehci_hcd 0000:00:02.2: irq 22, io mem 0xe2000000 +[ 0.383599] ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00 +[ 0.383790] usb usb1: configuration #1 chosen from 1 choice +[ 0.383835] hub 1-0:1.0: USB hub found +[ 0.383851] hub 1-0:1.0: 6 ports detected +[ 0.383930] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.384314] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 21 +[ 0.384321] alloc irq_desc for 21 on node -1 +[ 0.384324] alloc kstat_irqs on node -1 +[ 0.384333] ohci_hcd 0000:00:02.0: PCI INT A -> Link[APCF] -> GSI 21 (level, high) -> IRQ 21 +[ 0.384353] ohci_hcd 0000:00:02.0: setting latency timer to 64 +[ 0.384357] ohci_hcd 0000:00:02.0: OHCI Host Controller +[ 0.384417] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2 +[ 0.384452] ohci_hcd 0000:00:02.0: irq 21, io mem 0xe2004000 +[ 0.473520] usb usb2: configuration #1 chosen from 1 choice +[ 0.473560] hub 2-0:1.0: USB hub found +[ 0.473577] hub 2-0:1.0: 3 ports detected +[ 0.474043] ACPI: PCI Interrupt Link [APCG] enabled at IRQ 20 +[ 0.474050] alloc irq_desc for 20 on node -1 +[ 0.474053] alloc kstat_irqs on node -1 +[ 0.474063] ohci_hcd 0000:00:02.1: PCI INT B -> Link[APCG] -> GSI 20 (level, high) -> IRQ 20 +[ 0.474085] ohci_hcd 0000:00:02.1: setting latency timer to 64 +[ 0.474088] ohci_hcd 0000:00:02.1: OHCI Host Controller +[ 0.474141] ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 3 +[ 0.474177] ohci_hcd 0000:00:02.1: irq 20, io mem 0xe2005000 +[ 0.561824] usb usb3: configuration #1 chosen from 1 choice +[ 0.561864] hub 3-0:1.0: USB hub found +[ 0.561881] hub 3-0:1.0: 3 ports detected +[ 0.561952] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.562083] PNP: No PS/2 controller found. Probing ports directly. +[ 0.827977] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.828156] mice: PS/2 mouse device common for all mice +[ 0.828296] rtc_cmos 00:06: RTC can wake from S4 +[ 0.828347] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0 +[ 0.828376] rtc0: alarms up to one year, y3k, 242 bytes nvram +[ 0.828498] device-mapper: uevent: version 1.0.3 +[ 0.832024] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 0.835867] device-mapper: multipath: version 1.1.0 loaded +[ 0.835872] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.836110] EISA: Probing bus 0 at eisa.0 +[ 0.836133] Cannot allocate resource for EISA slot 4 +[ 0.836136] Cannot allocate resource for EISA slot 5 +[ 0.836153] EISA: Detected 0 cards. +[ 0.836239] cpuidle: using governor ladder +[ 0.836241] cpuidle: using governor menu +[ 0.836734] TCP cubic registered +[ 0.836916] NET: Registered protocol family 10 +[ 0.837419] lo: Disabled Privacy Extensions +[ 0.837766] NET: Registered protocol family 17 +[ 0.837806] powernow-k8: Processor cpuid 6a0 not supported +[ 0.837828] Using IPI No-Shortcut mode +[ 0.837953] PM: Resume from disk failed. +[ 0.837976] registered taskstats version 1 +[ 0.838198] Magic number: 14:786:310 +[ 0.838234] tty tty39: hash matches +[ 0.838315] rtc_cmos 00:06: setting system clock to 2010-06-16 03:20:39 UTC (1276658439) +[ 0.838319] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.838321] EDD information not available. +[ 1.003736] isapnp: No Plug & Play device found +[ 1.056021] usb 2-2: new low speed USB device using ohci_hcd and address 2 +[ 1.073679] Freeing initrd memory: 13081k freed +[ 1.088946] Freeing unused kernel memory: 656k freed +[ 1.089822] Write protecting the kernel text: 4676k +[ 1.089858] Write protecting the kernel read-only data: 1840k +[ 1.115203] udev: starting version 151 +[ 1.271716] usb 2-2: configuration #1 chosen from 1 choice +[ 1.331636] Floppy drive(s): fd0 is 1.44M +[ 1.355802] FDC 0 is a post-1991 82077 +[ 1.378370] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64. +[ 1.378744] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22 +[ 1.378752] forcedeth 0000:00:04.0: PCI INT A -> Link[APCH] -> GSI 22 (level, high) -> IRQ 22 +[ 1.378759] forcedeth 0000:00:04.0: setting latency timer to 64 +[ 1.378816] nv_probe: set workaround bit for reversed mac addr +[ 1.378820] forcedeth 0000:00:04.0: Invalid Mac address detected: 19:21:23:45:67:89 +[ 1.378823] forcedeth 0000:00:04.0: Please complain to your hardware vendor. Switching to a random MAC. +[ 1.380162] Linux agpgart interface v0.103 +[ 1.400825] usbcore: registered new interface driver hiddev +[ 1.401294] usbcore: registered new interface driver usbhid +[ 1.401398] usbhid: v2.6:USB HID core driver +[ 1.410286] input: MLK 2.4Ghz wireless combo sets as /devices/pci0000:00/0000:00:02.0/usb2/2-2/2-2:1.0/input/input3 +[ 1.410500] sunplus 0003:04FC:05D8.0001: input,hidraw0: USB HID v1.00 Keyboard [MLK 2.4Ghz wireless combo sets] on usb-0000:00:02.0-2/input0 +[ 1.418609] sunplus 0003:04FC:05D8.0002: fixing up Sunplus Wireless Desktop report descriptor +[ 1.420077] input: MLK 2.4Ghz wireless combo sets as /devices/pci0000:00/0000:00:02.0/usb2/2-2/2-2:1.1/input/input4 +[ 1.420601] sunplus 0003:04FC:05D8.0002: input,hiddev96,hidraw1: USB HID v1.00 Mouse [MLK 2.4Ghz wireless combo sets] on usb-0000:00:02.0-2/input1 +[ 1.511797] [drm] Initialized drm 1.1.0 20060810 +[ 1.562319] [drm] radeon defaulting to kernel modesetting. +[ 1.562323] [drm] radeon kernel modesetting enabled. +[ 1.562611] ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19 +[ 1.562618] alloc irq_desc for 19 on node -1 +[ 1.562621] alloc kstat_irqs on node -1 +[ 1.562631] radeon 0000:02:00.0: PCI INT A -> Link[APC4] -> GSI 19 (level, high) -> IRQ 19 +[ 1.566225] [drm] radeon: Initializing kernel modesetting. +[ 1.566319] [drm] register mmio base: 0xE1000000 +[ 1.566322] [drm] register mmio size: 65536 +[ 1.566932] [drm] GPU reset succeed (RBBM_STATUS=0x00000140) +[ 1.566962] BUG: unable to handle kernel NULL pointer dereference at 00000040 +[ 1.567107] IP: [] radeon_agp_init+0x19/0x3d0 [radeon] +[ 1.567268] *pde = 00000000 +[ 1.567359] Oops: 0000 [#1] SMP +[ 1.567493] last sysfs file: /sys/module/usbhid/initstate +[ 1.567546] Modules linked in: radeon(+) ttm drm_kms_helper drm hid_sunplus usbhid hid nvidia_agp(+) i2c_algo_bit forcedeth(+) pata_amd(+) agpgart floppy +[ 1.568017] +[ 1.568017] Pid: 228, comm: modprobe Not tainted (2.6.32-22-generic #36-Ubuntu) +[ 1.568017] EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +[ 1.568017] EIP is at radeon_agp_init+0x19/0x3d0 [radeon] +[ 1.568017] EAX: f69a2c00 EBX: f68f5000 ECX: d8000000 EDX: 00000000 +[ 1.568017] ESI: f69a2c00 EDI: 00000001 EBP: f69e1d48 ESP: f69e1cf4 +[ 1.568017] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 1.568017] Process modprobe (pid: 228, ti=f69e0000 task=f6998cd0 task.ti=f69e0000) +[ 1.568017] Stack: +[ 1.568017] f69e1d00 00000292 00000000 f69e1d28 c035d2b0 00000001 f69e1d18 0000000e +[ 1.568017] <0> 00000292 00000000 f68f5000 04000000 00000001 f69e1d40 f8333f85 f69e1d37 +[ 1.568017] <0> 009a2c00 f68f5000 f68f5000 f69a2c00 00000001 f69e1d54 f833186f f68f5000 +[ 1.568017] Call Trace: +[ 1.568017] [] ? pci_bus_read_config_byte+0x60/0x70 +[ 1.568017] [] ? r100_get_accessible_vram+0x55/0x150 [radeon] +[ 1.568017] [] ? r100_mc_init+0x9f/0xe0 [radeon] +[ 1.568017] [] ? r100_init+0xd2/0x270 [radeon] +[ 1.568017] [] ? _spin_lock_irqsave+0x2f/0x50 +[ 1.568017] [] ? vga_client_register+0x6b/0x80 +[ 1.568017] [] ? radeon_device_init+0x22f/0x2f0 [radeon] +[ 1.568017] [] ? radeon_vga_set_decode+0x0/0x30 [radeon] +[ 1.568017] [] ? radeon_driver_load_kms+0x7a/0x190 [radeon] +[ 1.568017] [] ? drm_get_dev+0x125/0x230 [drm] +[ 1.568017] [] ? sysfs_addrm_start+0x60/0xa0 +[ 1.568017] [] ? radeon_pci_probe+0x12/0x17f [radeon] +[ 1.568017] [] ? local_pci_probe+0x13/0x20 +[ 1.568017] [] ? pci_device_probe+0x68/0x90 +[ 1.568017] [] ? really_probe+0x4d/0x140 +[ 1.568017] [] ? pm_runtime_barrier+0x4e/0xc0 +[ 1.568017] [] ? driver_probe_device+0x3c/0x60 +[ 1.568017] [] ? __driver_attach+0x81/0x90 +[ 1.568017] [] ? bus_for_each_dev+0x53/0x80 +[ 1.568017] [] ? driver_attach+0x1e/0x20 +[ 1.568017] [] ? __driver_attach+0x0/0x90 +[ 1.568017] [] ? bus_add_driver+0xd5/0x280 +[ 1.568017] [] ? pci_device_remove+0x0/0x40 +[ 1.568017] [] ? driver_register+0x6a/0x130 +[ 1.568017] [] ? __pci_register_driver+0x45/0xb0 +[ 1.568017] [] ? drm_init+0xf3/0x100 [drm] +[ 1.568017] [] ? radeon_init+0xdf/0xe1 [radeon] +[ 1.568017] [] ? do_one_initcall+0x31/0x190 +[ 1.568017] [] ? radeon_init+0x0/0xe1 [radeon] +[ 1.568017] [] ? sys_init_module+0xb0/0x210 +[ 1.568017] [] ? syscall_call+0x7/0xb +[ 1.568017] Code: 66 90 e8 eb db e9 ff 5d 66 90 c3 8d b4 26 00 00 00 00 55 89 e5 57 56 53 83 ec 48 0f 1f 44 00 00 89 c3 8b 40 04 8b 90 28 02 00 00 <8b> 4a 40 85 c9 75 12 e8 2b db e9 ff 85 c0 89 c7 0f 85 51 03 00 +[ 1.568017] EIP: [] radeon_agp_init+0x19/0x3d0 [radeon] SS:ESP 0068:f69e1cf4 +[ 1.568017] CR2: 0000000000000040 +[ 1.575252] ---[ end trace 85249e87c11fe23d ]--- +[ 1.896879] forcedeth 0000:00:04.0: ifname eth0, PHY OUI 0x57d @ 1, addr 76:36:76:a0:57:7e +[ 1.896953] forcedeth 0000:00:04.0: timirq lnktim desc-v1 +[ 1.897036] pata_amd 0000:00:09.0: version 0.4.1 +[ 1.897157] pata_amd 0000:00:09.0: setting latency timer to 64 +[ 1.897825] scsi0 : pata_amd +[ 1.898067] scsi1 : pata_amd +[ 1.899122] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14 +[ 1.899184] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15 +[ 1.899378] agpgart: Detected NVIDIA nForce2 chipset +[ 1.907747] agpgart-nvidia 0000:00:00.0: AGP aperture is 128M @ 0xd0000000 +[ 2.124542] ata1.00: ATA-6: ST340014A, 3.16, max UDMA/100 +[ 2.124603] ata1.00: 78125000 sectors, multi 16: LBA48 +[ 2.124687] ata1: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc600c000) ACPI=0x3f01f (20:600:0x13) +[ 2.156450] ata1.00: configured for UDMA/100 +[ 2.156641] scsi 0:0:0:0: Direct-Access ATA ST340014A 3.16 PQ: 0 ANSI: 5 +[ 2.156893] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 2.157331] sd 0:0:0:0: [sda] 78125000 512-byte logical blocks: (40.0 GB/37.2 GiB) +[ 2.157463] sd 0:0:0:0: [sda] Write Protect is off +[ 2.157522] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.157612] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.157865] sda: sda1 sda2 < sda5 > +[ 2.198320] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.320344] ata2.00: ATAPI: COMPAQ DVD-ROM GD-8000, 0009, max UDMA/66 +[ 2.320432] ata2: nv_mode_filter: 0x1f39f&0x739f->0x739f, BIOS=0x7000 (0xc600c000) ACPI=0x701f (60:600:0x13) +[ 2.336277] ata2.00: configured for UDMA/33 +[ 2.343260] scsi 1:0:0:0: CD-ROM COMPAQ DVD-ROM GD-8000 0009 PQ: 0 ANSI: 5 +[ 2.356156] sr0: scsi3-mmc drive: 17x/40x cd/rw xa/form2 cdda tray +[ 2.356217] Uniform CD-ROM driver Revision: 3.20 +[ 2.356542] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 2.356749] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 2.900050] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 2.900204] IP: [] __mutex_lock_slowpath+0x8a/0x130 +[ 2.900314] *pde = 5dfad067 +[ 2.900412] Oops: 0002 [#2] SMP +[ 2.900553] last sysfs file: /sys/kernel/uevent_seqnum +[ 2.900613] Modules linked in: radeon(+) ttm drm_kms_helper drm hid_sunplus usbhid hid nvidia_agp i2c_algo_bit forcedeth pata_amd agpgart floppy +[ 2.901289] +[ 2.901345] Pid: 271, comm: plymouthd Tainted: G D (2.6.32-22-generic #36-Ubuntu) +[ 2.901415] EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +[ 2.901474] EIP is at __mutex_lock_slowpath+0x8a/0x130 +[ 2.901532] EAX: 00000000 EBX: f69a2e88 ECX: f69a2e90 EDX: f6b0fec0 +[ 2.901592] ESI: f69a2e8c EDI: f69a2e98 EBP: f6b0fed8 ESP: f6b0feb4 +[ 2.901651] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 2.901710] Process plymouthd (pid: 271, ti=f6b0e000 task=f6a4a670 task.ti=f6b0e000) +[ 2.901777] Stack: +[ 2.901830] 00000000 f69a2e90 f6a4a670 f69a2e90 00000000 f69a2c00 f69a2e88 f6819680 +[ 2.902191] <0> f69a2e88 f6b0fee8 c058a485 f6819680 f6819680 f6b0fefc f81afa53 f6819680 +[ 2.902644] <0> f68196e0 f69a2c00 f6b0ff44 f81a707f 00000001 f81b7265 f81b67c0 f81b87c4 +[ 2.903148] Call Trace: +[ 2.903206] [] ? mutex_lock+0x25/0x40 +[ 2.903291] [] ? drm_fb_release+0x23/0x70 [drm] +[ 2.903357] [] ? drm_release+0x3cf/0x490 [drm] +[ 2.903419] [] ? __fput+0xdf/0x1f0 +[ 2.903478] [] ? fput+0x1d/0x30 +[ 2.903539] [] ? filp_close+0x4c/0x80 +[ 2.903598] [] ? sys_close+0x75/0xc0 +[ 2.903658] [] ? syscall_call+0x7/0xb +[ 2.903715] Code: 18 63 7f bd 90 8d 74 26 00 8d 73 04 89 f0 e8 de 11 00 00 8d 55 e8 8d 43 08 89 45 e0 8b 43 0c 89 53 0c 8b 4d e0 89 45 ec 89 4d e8 <89> 10 8b 45 e4 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +[ 2.904007] EIP: [] __mutex_lock_slowpath+0x8a/0x130 SS:ESP 0068:f6b0feb4 +[ 2.904007] CR2: 0000000000000000 +[ 2.906806] ---[ end trace 85249e87c11fe23e ]--- +[ 2.916790] xor: automatically using best checksumming function: pIII_sse +[ 2.936007] pIII_sse : 1602.000 MB/sec +[ 2.936064] xor: using function: pIII_sse (1602.000 MB/sec) +[ 2.940053] device-mapper: dm-raid45: initialized v0.2594b +[ 3.032322] EXT3-fs: INFO: recovery required on readonly filesystem. +[ 3.032389] EXT3-fs: write access will be enabled during recovery. +[ 7.132886] kjournald starting. Commit interval 5 seconds +[ 7.132972] EXT3-fs: sda1: orphan cleanup on readonly fs +[ 7.133037] ext3_orphan_cleanup: deleting unreferenced inode 2122721 +[ 7.154789] ext3_orphan_cleanup: deleting unreferenced inode 2122720 +[ 7.159625] ext3_orphan_cleanup: deleting unreferenced inode 2122719 +[ 7.165046] ext3_orphan_cleanup: deleting unreferenced inode 2122716 +[ 7.165121] ext3_orphan_cleanup: deleting unreferenced inode 2122714 +[ 7.165196] ext3_orphan_cleanup: deleting unreferenced inode 2122704 +[ 7.165266] ext3_orphan_cleanup: deleting unreferenced inode 2122703 +[ 7.171569] ext3_orphan_cleanup: deleting unreferenced inode 2122701 +[ 7.179147] ext3_orphan_cleanup: deleting unreferenced inode 2122700 +[ 7.179218] ext3_orphan_cleanup: deleting unreferenced inode 2122696 +[ 7.199331] ext3_orphan_cleanup: deleting unreferenced inode 1860272 +[ 7.215190] ext3_orphan_cleanup: deleting unreferenced inode 942395 +[ 7.244051] EXT3-fs: sda1: 12 orphan inodes deleted +[ 7.244110] EXT3-fs: recovery complete. +[ 7.325286] EXT3-fs: mounted filesystem with ordered data mode. +[ 30.927883] Adding 1485972k swap on /dev/sda5. Priority:-1 extents:1 across:1485972k +[ 30.967991] udev: starting version 151 +[ 31.572068] parport_pc 00:0c: reported by Plug and Play ACPI +[ 31.572129] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] +[ 31.602440] lp: driver loaded but no devices found +[ 31.650714] ppdev: user-space parallel port driver +[ 31.664882] lp0: using parport0 (interrupt-driven). +[ 31.689067] type=1505 audit(1276658470.349:2): operation="profile_load" pid=606 name="/sbin/dhclient3" +[ 31.689411] type=1505 audit(1276658470.349:3): operation="profile_load" pid=606 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 31.689605] type=1505 audit(1276658470.349:4): operation="profile_load" pid=606 name="/usr/lib/connman/scripts/dhclient-script" +[ 31.770418] gameport: NS558 PnP Gameport is pnp00:0d/gameport0, io 0x201, speed 59659kHz +[ 32.056527] EXT3 FS on sda1, internal journal +[ 32.626600] type=1505 audit(1276658471.285:5): operation="profile_load" pid=747 name="/usr/share/gdm/guest-session/Xsession" +[ 32.631303] type=1505 audit(1276658471.289:6): operation="profile_replace" pid=748 name="/sbin/dhclient3" +[ 32.631653] type=1505 audit(1276658471.289:7): operation="profile_replace" pid=748 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 32.631858] type=1505 audit(1276658471.289:8): operation="profile_replace" pid=748 name="/usr/lib/connman/scripts/dhclient-script" +[ 32.660832] type=1505 audit(1276658471.321:9): operation="profile_load" pid=749 name="/usr/bin/evince" +[ 32.670326] type=1505 audit(1276658471.329:10): operation="profile_load" pid=749 name="/usr/bin/evince-previewer" +[ 32.688760] type=1505 audit(1276658471.349:11): operation="profile_load" pid=749 name="/usr/bin/evince-thumbnailer" +[ 32.966738] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac) +[ 32.966743] apm: overridden by ACPI. + +Bug: 601229 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-6-generic (buildd@yellow) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu2) ) #9-Ubuntu SMP Thu Jul 1 03:01:23 UTC 2010 (Ubuntu 2.6.35-6.9-generic 2.6.35-rc3) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-2.6.35-6-generic root=UUID=799e9cf3-ccb9-48e0-ba0e-22b50bb09faf ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e000 (usable) +[ 0.000000] BIOS-e820: 000000000009e000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000ce000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bff50000 (usable) +[ 0.000000] BIOS-e820: 00000000bff50000 - 00000000bff65000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bff65000 - 00000000bff66000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bff66000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0xbff50 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-CEFFF write-protect +[ 0.000000] CF000-E3FFF uncachable +[ 0.000000] E4000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FF80000000 write-back +[ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +[ 0.000000] 2 disabled +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009e000 (usable) +[ 0.000000] modified: 000000000009e000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000ce000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bff50000 (usable) +[ 0.000000] modified: 00000000bff50000 - 00000000bff65000 (ACPI data) +[ 0.000000] modified: 00000000bff65000 - 00000000bff66000 (ACPI NVS) +[ 0.000000] modified: 00000000bff66000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff80000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000f7c90] f7c90 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bff50000 +[ 0.000000] 0000000000 - 00bfe00000 page 2M +[ 0.000000] 00bfe00000 - 00bff50000 page 4k +[ 0.000000] kernel direct mapping tables up to bff50000 @ 16000-1b000 +[ 0.000000] RAMDISK: 3759c000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000f7ca0 00024 (v02 ACRSYS) +[ 0.000000] ACPI: XSDT 00000000bff5e48d 00054 (v01 ACRSYS ACRPRDCT 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 00000000bff64c02 000F4 (v03 NVIDIA MCP67-M 06040000 PTL_ 000F4240) +[ 0.000000] ACPI: DSDT 00000000bff5e4e1 066AD (v01 NVIDIA MCP67 06040000 MSFT 03000000) +[ 0.000000] ACPI: FACS 00000000bff65fc0 00040 +[ 0.000000] ACPI: SSDT 00000000bff64cf6 00206 (v01 PTLTD POWERNOW 06040000 LTP 00000001) +[ 0.000000] ACPI: MCFG 00000000bff64efc 0003C (v01 Nvidia NVDAACPI 06040000 NVDA 00000000) +[ 0.000000] ACPI: HPET 00000000bff64f38 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001) +[ 0.000000] ACPI: APIC 00000000bff64f70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 00000000bff64fd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] Scanning NUMA topology in Northbridge 24 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000000bff50000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000000bff50000 +[ 0.000000] NODE_DATA [0000000001d1f100 - 0000000001d240ff] +[ 0.000000] [ffffea0000000000-ffffea00029fffff] PMD -> [ffff880002600000-ffff880004ffffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009e +[ 0.000000] 0: 0x00000100 -> 0x000bff50 +[ 0.000000] On node 0 totalpages: 786142 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3926 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 10694 pages used for memmap +[ 0.000000] DMA32 zone: 771466 pages, LIFO batch:31 +[ 0.000000] Detected use of extended apic ids on hypertransport bus +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [19000 - 197ff] +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ce000 +[ 0.000000] PM: Registered nosave memory: 00000000000ce000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91456 r8192 d23232 u1048576 +[ 0.000000] pcpu-alloc: s91456 r8192 d23232 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 775392 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.35-6-generic root=UUID=799e9cf3-ccb9-48e0-ba0e-22b50bb09faf ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Node 0: aperture @ ffa6000000 size 32 MB +[ 0.000000] Aperture beyond 4GB. Ignoring. +[ 0.000000] Subtract (48 early reservations) +[ 0.000000] #1 [0001000000 - 0001d1e314] TEXT DATA BSS +[ 0.000000] #2 [003759c000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [0001d1f000 - 0001d1f0ed] BRK +[ 0.000000] #4 [00000f7ca0 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000f7c90 - 00000f7ca0] MP-table mpf +[ 0.000000] #6 [000009e000 - 000009e571] BIOS reserved +[ 0.000000] #7 [000009e6c5 - 00000f7c90] BIOS reserved +[ 0.000000] #8 [000009e571 - 000009e6c5] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000019000] PGTABLE +[ 0.000000] #12 [0001d1f100 - 0001d24100] NODE_DATA +[ 0.000000] #13 [0001d24100 - 0001d25100] BOOTMEM +[ 0.000000] #14 [0001d1e340 - 0001d1e580] BOOTMEM +[ 0.000000] #15 [0002526000 - 0002527000] BOOTMEM +[ 0.000000] #16 [0002527000 - 0002528000] BOOTMEM +[ 0.000000] #17 [0002600000 - 0005000000] MEMMAP 0 +[ 0.000000] #18 [0001d1e580 - 0001d1e700] BOOTMEM +[ 0.000000] #19 [0001d25100 - 0001d3d100] BOOTMEM +[ 0.000000] #20 [0001d3e000 - 0001d3f000] BOOTMEM +[ 0.000000] #21 [0001d1e700 - 0001d1e741] BOOTMEM +[ 0.000000] #22 [0001d1e780 - 0001d1e7c3] BOOTMEM +[ 0.000000] #23 [0001d1e800 - 0001d1eaa0] BOOTMEM +[ 0.000000] #24 [0001d1eac0 - 0001d1eb28] BOOTMEM +[ 0.000000] #25 [0001d1eb40 - 0001d1eba8] BOOTMEM +[ 0.000000] #26 [0001d1ebc0 - 0001d1ec28] BOOTMEM +[ 0.000000] #27 [0001d1ec40 - 0001d1eca8] BOOTMEM +[ 0.000000] #28 [0001d1ecc0 - 0001d1ed28] BOOTMEM +[ 0.000000] #29 [0001d1ed40 - 0001d1eda8] BOOTMEM +[ 0.000000] #30 [0001d1edc0 - 0001d1ee28] BOOTMEM +[ 0.000000] #31 [0001d1ee40 - 0001d1eea8] BOOTMEM +[ 0.000000] #32 [0001d1eec0 - 0001d1ef28] BOOTMEM +[ 0.000000] #33 [0001d1ef40 - 0001d1efa8] BOOTMEM +[ 0.000000] #34 [0001d3d100 - 0001d3d168] BOOTMEM +[ 0.000000] #35 [0001d1efc0 - 0001d1efe0] BOOTMEM +[ 0.000000] #36 [0001d3d180 - 0001d3d1e4] BOOTMEM +[ 0.000000] #37 [0001d3d200 - 0001d3d264] BOOTMEM +[ 0.000000] #38 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #39 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #40 [0001d3d280 - 0001d3d288] BOOTMEM +[ 0.000000] #41 [0001d3d2c0 - 0001d3d2c8] BOOTMEM +[ 0.000000] #42 [0001d3d300 - 0001d3d308] BOOTMEM +[ 0.000000] #43 [0001d3d340 - 0001d3d350] BOOTMEM +[ 0.000000] #44 [0001d3d380 - 0001d3d4c0] BOOTMEM +[ 0.000000] #45 [0001d3d4c0 - 0001d3d520] BOOTMEM +[ 0.000000] #46 [0001d3d540 - 0001d3d5a0] BOOTMEM +[ 0.000000] #47 [0001d3f000 - 0001d47000] BOOTMEM +[ 0.000000] Memory: 3077104k/3145024k available (5705k kernel code, 456k absent, 67464k reserved, 5422k data, 904k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:512 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 31457280 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1900.274 MHz processor. +[ 0.010009] Calibrating delay loop (skipped), value calculated using timer frequency.. 3800.54 BogoMIPS (lpj=19002740) +[ 0.010015] pid_max: default: 32768 minimum: 301 +[ 0.010044] Security Framework initialized +[ 0.010066] AppArmor: AppArmor initialized +[ 0.010670] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.014343] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.016051] Mount-cache hash table entries: 256 +[ 0.016222] Initializing cgroup subsys ns +[ 0.016227] Initializing cgroup subsys cpuacct +[ 0.016232] Initializing cgroup subsys memory +[ 0.016244] Initializing cgroup subsys devices +[ 0.016247] Initializing cgroup subsys freezer +[ 0.016249] Initializing cgroup subsys net_cls +[ 0.016279] tseg: 00bff80000 +[ 0.016282] CPU: Physical Processor ID: 0 +[ 0.016284] CPU: Processor Core ID: 0 +[ 0.016287] mce: CPU supports 5 MCE banks +[ 0.016298] using C1E aware idle routine +[ 0.016301] Performance Events: AMD PMU driver. +[ 0.016306] ... version: 0 +[ 0.016309] ... bit width: 48 +[ 0.016310] ... generic registers: 4 +[ 0.016312] ... value mask: 0000ffffffffffff +[ 0.016315] ... max period: 00007fffffffffff +[ 0.016317] ... fixed-purpose events: 0 +[ 0.016319] ... event mask: 000000000000000f +[ 0.021719] ACPI: Core revision 20100428 +[ 0.030014] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.030021] ftrace: allocating 22639 entries in 89 pages +[ 0.040100] Setting APIC routing to flat +[ 0.040578] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.146622] CPU0: AMD Athlon(tm) 64 X2 Dual-Core Processor TK-57 stepping 02 +[ 0.150000] Booting Node 0, Processors #1 Ok. +[ 0.020000] System has AMD C1E enabled +[ 0.020000] Switch to broadcast mode on CPU1 +[ 0.300097] Brought up 2 CPUs +[ 0.300100] Total of 2 processors activated (7601.09 BogoMIPS). +[ 0.300364] Switch to broadcast mode on CPU0 +[ 0.300364] devtmpfs: initialized +[ 0.300940] regulator: core version 0.5 +[ 0.300983] Time: 23:20:07 Date: 07/02/10 +[ 0.301039] NET: Registered protocol family 16 +[ 0.301192] node 0 link 0: io port [1000, fffff] +[ 0.301196] TOM: 00000000c0000000 aka 3072M +[ 0.301200] node 0 link 0: mmio [a0000, bffff] +[ 0.301203] node 0 link 0: mmio [c0000000, dfffffff] +[ 0.301207] node 0 link 0: mmio [e0000000, efffffff] +[ 0.301211] node 0 link 0: mmio [f0000000, fe0bffff] +[ 0.301215] bus: [00, ff] on node 0 link 0 +[ 0.301219] bus: 00 index 0 [io 0x0000-0xffff] +[ 0.301222] bus: 00 index 1 [mem 0x000a0000-0x000bffff] +[ 0.301225] bus: 00 index 2 [mem 0xc0000000-0xfcffffffff] +[ 0.301233] ACPI: bus type pci registered +[ 0.301314] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.301318] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.320072] Trying to unpack rootfs image as initramfs... +[ 0.320000] PCI: Using configuration type 1 for base access +[ 0.330169] bio: create slab at 0 +[ 0.331522] ACPI: EC: Look up EC in DSDT +[ 0.336492] ACPI: Interpreter enabled +[ 0.336496] ACPI: (supports S0 S3 S4 S5) +[ 0.336520] ACPI: Using IOAPIC for interrupt routing +[ 0.626538] Freeing initrd memory: 10576k freed +[ 0.673855] ACPI: EC: GPE = 0x10, I/O: command/status = 0x66, data = 0x62 +[ 0.674173] ACPI: No dock devices found. +[ 0.674178] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.674473] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.674771] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.674774] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.674777] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.674781] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] +[ 0.674784] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] +[ 0.674787] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] +[ 0.674791] pci_root PNP0A08:00: address space collision: host bridge window [mem 0x000cc000-0x000cffff] conflicts with reserved [mem 0x000ce000-0x000fffff] +[ 0.674795] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] +[ 0.674798] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.674801] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.674804] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.674807] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] +[ 0.674810] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] +[ 0.674813] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] +[ 0.674816] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] +[ 0.674819] pci_root PNP0A08:00: host bridge window [mem 0x000f0000-0x000fffff] +[ 0.674822] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff] +[ 0.674826] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff] +[ 0.674975] pci 0000:00:01.0: reg 10: [io 0x1d00-0x1dff] +[ 0.675013] pci 0000:00:01.1: reg 10: [io 0x3080-0x30bf] +[ 0.675024] pci 0000:00:01.1: reg 20: [io 0x3040-0x307f] +[ 0.675028] pci 0000:00:01.1: reg 24: [io 0x3000-0x303f] +[ 0.675049] pci 0000:00:01.1: PME# supported from D3hot D3cold +[ 0.675055] pci 0000:00:01.1: PME# disabled +[ 0.675116] pci 0000:00:01.3: reg 10: [mem 0xd0600000-0xd067ffff] +[ 0.675195] pci 0000:00:02.0: reg 10: [mem 0xd0886000-0xd0886fff] +[ 0.675218] pci 0000:00:02.0: supports D1 D2 +[ 0.675221] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675225] pci 0000:00:02.0: PME# disabled +[ 0.675246] pci 0000:00:02.1: reg 10: [mem 0xd0889000-0xd08890ff] +[ 0.675275] pci 0000:00:02.1: supports D1 D2 +[ 0.675278] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675282] pci 0000:00:02.1: PME# disabled +[ 0.675308] pci 0000:00:04.0: reg 10: [mem 0xd0887000-0xd0887fff] +[ 0.675332] pci 0000:00:04.0: supports D1 D2 +[ 0.675334] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675338] pci 0000:00:04.0: PME# disabled +[ 0.675359] pci 0000:00:04.1: reg 10: [mem 0xd0889400-0xd08894ff] +[ 0.675387] pci 0000:00:04.1: supports D1 D2 +[ 0.675390] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675394] pci 0000:00:04.1: PME# disabled +[ 0.675428] pci 0000:00:06.0: reg 20: [io 0x30c0-0x30cf] +[ 0.675465] pci 0000:00:07.0: reg 10: [mem 0xd0880000-0xd0883fff] +[ 0.675493] pci 0000:00:07.0: PME# supported from D3hot D3cold +[ 0.675497] pci 0000:00:07.0: PME# disabled +[ 0.675560] pci 0000:00:09.0: reg 10: [io 0x30f0-0x30f7] +[ 0.675564] pci 0000:00:09.0: reg 14: [io 0x30e4-0x30e7] +[ 0.675569] pci 0000:00:09.0: reg 18: [io 0x30e8-0x30ef] +[ 0.675573] pci 0000:00:09.0: reg 1c: [io 0x30e0-0x30e3] +[ 0.675578] pci 0000:00:09.0: reg 20: [io 0x30d0-0x30df] +[ 0.675583] pci 0000:00:09.0: reg 24: [mem 0xd0884000-0xd0885fff] +[ 0.675628] pci 0000:00:0a.0: reg 10: [mem 0xd0888000-0xd0888fff] +[ 0.675632] pci 0000:00:0a.0: reg 14: [io 0x30f8-0x30ff] +[ 0.675637] pci 0000:00:0a.0: reg 18: [mem 0xd0889c00-0xd0889cff] +[ 0.675642] pci 0000:00:0a.0: reg 1c: [mem 0xd0889800-0xd088980f] +[ 0.675665] pci 0000:00:0a.0: supports D1 D2 +[ 0.675667] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675672] pci 0000:00:0a.0: PME# disabled +[ 0.675708] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675711] pci 0000:00:0b.0: PME# disabled +[ 0.675746] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675750] pci 0000:00:0c.0: PME# disabled +[ 0.675783] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.675787] pci 0000:00:0d.0: PME# disabled +[ 0.675918] pci 0000:01:04.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 0.675921] pci 0000:01:04.0: MMC cards are now supported by standard SDHCI controller +[ 0.675929] pci 0000:01:04.0: reg 10: [mem 0xd0500000-0xd05007ff] +[ 0.675963] pci 0000:01:04.0: PME# supported from D0 D3hot D3cold +[ 0.675967] pci 0000:01:04.0: PME# disabled +[ 0.675991] pci 0000:01:04.1: reg 10: [mem 0xd0500800-0xd05008ff] +[ 0.676025] pci 0000:01:04.1: supports D1 D2 +[ 0.676028] pci 0000:01:04.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.676032] pci 0000:01:04.1: PME# disabled +[ 0.676055] pci 0000:01:04.2: reg 10: [mem 0xd0501000-0xd05010ff] +[ 0.676088] pci 0000:01:04.2: supports D1 D2 +[ 0.676091] pci 0000:01:04.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.676095] pci 0000:01:04.2: PME# disabled +[ 0.676118] pci 0000:01:04.3: reg 10: [mem 0xd0501400-0xd05014ff] +[ 0.676152] pci 0000:01:04.3: supports D1 D2 +[ 0.676154] pci 0000:01:04.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.676158] pci 0000:01:04.3: PME# disabled +[ 0.676194] pci 0000:00:08.0: PCI bridge to [bus 01-01] (subtractive decode) +[ 0.676198] pci 0000:00:08.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.676202] pci 0000:00:08.0: bridge window [mem 0xd0500000-0xd05fffff] +[ 0.676207] pci 0000:00:08.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.676210] pci 0000:00:08.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.676213] pci 0000:00:08.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.676217] pci 0000:00:08.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.676220] pci 0000:00:08.0: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode) +[ 0.676224] pci 0000:00:08.0: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode) +[ 0.676227] pci 0000:00:08.0: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode) +[ 0.676230] pci 0000:00:08.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) +[ 0.676233] pci 0000:00:08.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.676236] pci 0000:00:08.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.676239] pci 0000:00:08.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.676243] pci 0000:00:08.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode) +[ 0.676246] pci 0000:00:08.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode) +[ 0.676249] pci 0000:00:08.0: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode) +[ 0.676252] pci 0000:00:08.0: bridge window [mem 0x000ec000-0x000effff] (subtractive decode) +[ 0.676256] pci 0000:00:08.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive decode) +[ 0.676259] pci 0000:00:08.0: bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode) +[ 0.676262] pci 0000:00:08.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode) +[ 0.676305] pci 0000:02:00.0: reg 10: [mem 0xd1000000-0xd1ffffff] +[ 0.676313] pci 0000:02:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.676322] pci 0000:02:00.0: reg 1c: [mem 0xd2000000-0xd3ffffff 64bit] +[ 0.676327] pci 0000:02:00.0: reg 24: [io 0x4000-0x407f] +[ 0.676333] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] +[ 0.700016] pci 0000:00:0b.0: PCI bridge to [bus 02-02] +[ 0.700020] pci 0000:00:0b.0: bridge window [io 0x4000-0x4fff] +[ 0.700024] pci 0000:00:0b.0: bridge window [mem 0xd1000000-0xd3ffffff] +[ 0.700029] pci 0000:00:0b.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.700054] pci 0000:00:0c.0: PCI bridge to [bus 03-04] +[ 0.700058] pci 0000:00:0c.0: bridge window [io 0x5000-0x5fff] +[ 0.700062] pci 0000:00:0c.0: bridge window [mem 0xd0200000-0xd03fffff] +[ 0.700066] pci 0000:00:0c.0: bridge window [mem 0xd0000000-0xd01fffff 64bit pref] +[ 0.700115] pci 0000:05:00.0: reg 10: [mem 0xd0400000-0xd040ffff 64bit] +[ 0.700173] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.700185] pci 0000:00:0d.0: PCI bridge to [bus 05-05] +[ 0.700189] pci 0000:00:0d.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.700193] pci 0000:00:0d.0: bridge window [mem 0xd0400000-0xd04fffff] +[ 0.700198] pci 0000:00:0d.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.700213] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.700342] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT] +[ 0.700366] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR0._PRT] +[ 0.700413] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT] +[ 0.700453] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT] +[ 0.735816] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 11) *10 +[ 0.736049] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 *11) +[ 0.736274] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 11) *0, disabled. +[ 0.736500] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 11) *0, disabled. +[ 0.736732] ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled. +[ 0.736964] ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *10 +[ 0.737187] ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *0, disabled. +[ 0.737413] ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *10 +[ 0.737637] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *10 +[ 0.737864] ACPI: PCI Interrupt Link [LUS0] (IRQs 20 21 22 23) *11 +[ 0.738094] ACPI: PCI Interrupt Link [LUS2] (IRQs 20 21 22 23) *7 +[ 0.738328] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *11 +[ 0.738555] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *10 +[ 0.738786] ACPI: PCI Interrupt Link [LGPU] (IRQs 17) *0, disabled. +[ 0.739013] ACPI: PCI Interrupt Link [LPID] (IRQs 20 21 22 23) *0, disabled. +[ 0.739239] ACPI: PCI Interrupt Link [LSI0] (IRQs 20 21 22 23) *5 +[ 0.739475] ACPI: PCI Interrupt Link [Z00N] (IRQs 20 21 22 23) *10 +[ 0.739712] ACPI: PCI Interrupt Link [Z00O] (IRQs 20 21 22 23) *11 +[ 0.739939] ACPI: PCI Interrupt Link [LPMU] (IRQs 18) *11 +[ 0.740018] HEST: Table is not found! +[ 0.740152] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.740156] vgaarb: loaded +[ 0.740360] SCSI subsystem initialized +[ 0.750052] libata version 3.00 loaded. +[ 0.750073] usbcore: registered new interface driver usbfs +[ 0.750087] usbcore: registered new interface driver hub +[ 0.750096] usbcore: registered new device driver usb +[ 0.750182] ACPI: WMI: Skipping duplicate GUID 05901221-D566-11D1-B2F0-00A0C9062910 +[ 0.750507] ACPI: WMI: Mapper loaded +[ 0.750510] PCI: Using ACPI for IRQ routing +[ 0.750514] PCI: pci_cache_line_size set to 64 bytes +[ 0.750642] reserve RAM buffer: 000000000009e000 - 000000000009ffff +[ 0.750645] reserve RAM buffer: 00000000bff50000 - 00000000bfffffff +[ 0.750768] NetLabel: Initializing +[ 0.750771] NetLabel: domain hash size = 128 +[ 0.750772] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.750788] NetLabel: unlabeled traffic allowed by default +[ 0.750838] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.750845] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31 +[ 0.750851] hpet0: 3 comparators, 32-bit 25.000000 MHz counter +[ 0.770058] Switching to clocksource hpet +[ 0.782445] AppArmor: AppArmor Filesystem Enabled +[ 0.782468] pnp: PnP ACPI init +[ 0.782491] ACPI: bus type pnp registered +[ 0.872275] pnp: PnP ACPI: found 13 devices +[ 0.872279] ACPI: ACPI bus type pnp unregistered +[ 0.872296] system 00:01: [io 0x0360-0x0361] has been reserved +[ 0.872301] system 00:01: [io 0x04d0-0x04d1] has been reserved +[ 0.872311] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.872318] system 00:0a: [io 0x1000-0x107f] has been reserved +[ 0.872321] system 00:0a: [io 0x1080-0x10ff] has been reserved +[ 0.872325] system 00:0a: [io 0x1400-0x147f] has been reserved +[ 0.872329] system 00:0a: [io 0x1480-0x14ff] has been reserved +[ 0.872332] system 00:0a: [io 0x1800-0x187f] has been reserved +[ 0.872336] system 00:0a: [io 0x1880-0x18ff] has been reserved +[ 0.872343] system 00:0c: [mem 0xffc00000-0xffffffff] could not be reserved +[ 0.872347] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.872351] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 0.872355] system 00:0c: [mem 0xfed00000-0xfed00fff] has been reserved +[ 0.872358] system 00:0c: [mem 0xfef00000-0xfef00fff] has been reserved +[ 0.877147] pci 0000:00:08.0: PCI bridge to [bus 01-01] +[ 0.877150] pci 0000:00:08.0: bridge window [io disabled] +[ 0.877154] pci 0000:00:08.0: bridge window [mem 0xd0500000-0xd05fffff] +[ 0.877158] pci 0000:00:08.0: bridge window [mem pref disabled] +[ 0.877167] pci 0000:02:00.0: BAR 6: can't assign mem pref (size 0x20000) +[ 0.877170] pci 0000:00:0b.0: PCI bridge to [bus 02-02] +[ 0.877173] pci 0000:00:0b.0: bridge window [io 0x4000-0x4fff] +[ 0.877177] pci 0000:00:0b.0: bridge window [mem 0xd1000000-0xd3ffffff] +[ 0.877181] pci 0000:00:0b.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.877186] pci 0000:00:0c.0: PCI bridge to [bus 03-04] +[ 0.877189] pci 0000:00:0c.0: bridge window [io 0x5000-0x5fff] +[ 0.877193] pci 0000:00:0c.0: bridge window [mem 0xd0200000-0xd03fffff] +[ 0.877197] pci 0000:00:0c.0: bridge window [mem 0xd0000000-0xd01fffff 64bit pref] +[ 0.877201] pci 0000:00:0d.0: PCI bridge to [bus 05-05] +[ 0.877204] pci 0000:00:0d.0: bridge window [io disabled] +[ 0.877209] pci 0000:00:0d.0: bridge window [mem 0xd0400000-0xd04fffff] +[ 0.877212] pci 0000:00:0d.0: bridge window [mem pref disabled] +[ 0.877223] pci 0000:00:08.0: setting latency timer to 64 +[ 0.877230] pci 0000:00:0b.0: setting latency timer to 64 +[ 0.877236] pci 0000:00:0c.0: setting latency timer to 64 +[ 0.877242] pci 0000:00:0d.0: setting latency timer to 64 +[ 0.877246] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.877249] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.877252] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.877255] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.877258] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.877261] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.877264] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff] +[ 0.877268] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff] +[ 0.877271] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff] +[ 0.877274] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff] +[ 0.877277] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff] +[ 0.877280] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff] +[ 0.877283] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff] +[ 0.877286] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff] +[ 0.877289] pci_bus 0000:00: resource 18 [mem 0x000f0000-0x000fffff] +[ 0.877292] pci_bus 0000:00: resource 19 [mem 0xfed40000-0xfed44fff] +[ 0.877295] pci_bus 0000:00: resource 20 [mem 0xc0000000-0xfebfffff] +[ 0.877298] pci_bus 0000:01: resource 1 [mem 0xd0500000-0xd05fffff] +[ 0.877301] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7] +[ 0.877304] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff] +[ 0.877308] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.877311] pci_bus 0000:01: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.877314] pci_bus 0000:01: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.877316] pci_bus 0000:01: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.877319] pci_bus 0000:01: resource 10 [mem 0x000d0000-0x000d3fff] +[ 0.877323] pci_bus 0000:01: resource 11 [mem 0x000d4000-0x000d7fff] +[ 0.877326] pci_bus 0000:01: resource 12 [mem 0x000d8000-0x000dbfff] +[ 0.877329] pci_bus 0000:01: resource 13 [mem 0x000dc000-0x000dffff] +[ 0.877332] pci_bus 0000:01: resource 14 [mem 0x000e0000-0x000e3fff] +[ 0.877335] pci_bus 0000:01: resource 15 [mem 0x000e4000-0x000e7fff] +[ 0.877338] pci_bus 0000:01: resource 16 [mem 0x000e8000-0x000ebfff] +[ 0.877341] pci_bus 0000:01: resource 17 [mem 0x000ec000-0x000effff] +[ 0.877344] pci_bus 0000:01: resource 18 [mem 0x000f0000-0x000fffff] +[ 0.877348] pci_bus 0000:01: resource 19 [mem 0xfed40000-0xfed44fff] +[ 0.877351] pci_bus 0000:01: resource 20 [mem 0xc0000000-0xfebfffff] +[ 0.877354] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff] +[ 0.877357] pci_bus 0000:02: resource 1 [mem 0xd1000000-0xd3ffffff] +[ 0.877360] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.877363] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff] +[ 0.877367] pci_bus 0000:03: resource 1 [mem 0xd0200000-0xd03fffff] +[ 0.877370] pci_bus 0000:03: resource 2 [mem 0xd0000000-0xd01fffff 64bit pref] +[ 0.877373] pci_bus 0000:05: resource 1 [mem 0xd0400000-0xd04fffff] +[ 0.877415] NET: Registered protocol family 2 +[ 0.877627] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.879890] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.886395] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.887171] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.887175] TCP reno registered +[ 0.887194] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.887259] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.887408] NET: Registered protocol family 1 +[ 0.887587] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887642] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887702] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887769] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887838] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887913] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.887992] pci 0000:00:00.0: Found enabled HT MSI Mapping +[ 0.888024] pci 0000:02:00.0: Boot video device +[ 0.888031] PCI: CLS 64 bytes, default 64 +[ 0.889755] Simple Boot Flag at 0x36 set to 0x1 +[ 0.890010] Scanning for low memory corruption every 60 seconds +[ 0.890209] audit: initializing netlink socket (disabled) +[ 0.890223] type=2000 audit(1278112806.890:1): initialized +[ 0.905996] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.907893] VFS: Disk quotas dquot_6.5.2 +[ 0.907975] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.908764] fuse init (API version 7.14) +[ 0.908904] msgmni has been set to 6030 +[ 0.909274] alg: No test for stdrng (krng) +[ 0.909354] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.909358] io scheduler noop registered +[ 0.909361] io scheduler deadline registered +[ 0.909414] io scheduler cfq registered (default) +[ 0.909615] pcieport 0000:00:0b.0: setting latency timer to 64 +[ 0.909636] alloc irq_desc for 40 on node 0 +[ 0.909639] alloc kstat_irqs on node 0 +[ 0.909649] pcieport 0000:00:0b.0: irq 40 for MSI/MSI-X +[ 0.909765] pcieport 0000:00:0c.0: setting latency timer to 64 +[ 0.909782] alloc irq_desc for 41 on node 0 +[ 0.909784] alloc kstat_irqs on node 0 +[ 0.909789] pcieport 0000:00:0c.0: irq 41 for MSI/MSI-X +[ 0.909911] pcieport 0000:00:0d.0: setting latency timer to 64 +[ 0.909927] alloc irq_desc for 42 on node 0 +[ 0.909929] alloc kstat_irqs on node 0 +[ 0.909935] pcieport 0000:00:0d.0: irq 42 for MSI/MSI-X +[ 0.910036] pcieport 0000:00:0b.0: Requesting control of PCIe PME from ACPI BIOS +[ 0.910044] Firmware did not grant requested _OSC control +[ 0.910047] pcieport 0000:00:0b.0: Failed to receive control of PCIe PME service: no _OSC support +[ 0.910053] pcie_pme: probe of 0000:00:0b.0:pcie01 failed with error -13 +[ 0.910059] pcieport 0000:00:0c.0: Requesting control of PCIe PME from ACPI BIOS +[ 0.910062] Firmware did not grant requested _OSC control +[ 0.910064] pcieport 0000:00:0c.0: Failed to receive control of PCIe PME service: no _OSC support +[ 0.910068] pcie_pme: probe of 0000:00:0c.0:pcie01 failed with error -13 +[ 0.910074] pcieport 0000:00:0d.0: Requesting control of PCIe PME from ACPI BIOS +[ 0.910077] Firmware did not grant requested _OSC control +[ 0.910080] pcieport 0000:00:0d.0: Failed to receive control of PCIe PME service: no _OSC support +[ 0.910084] pcie_pme: probe of 0000:00:0d.0:pcie01 failed with error -13 +[ 0.910114] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.910142] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.982602] ACPI: AC Adapter [ACAD] (on-line) +[ 0.982699] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 +[ 1.052560] ACPI: Lid Switch [LID] +[ 1.052642] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1 +[ 1.052646] ACPI: Sleep Button [SLPB] +[ 1.052724] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 +[ 1.052728] ACPI: Power Button [PWRB] +[ 1.052776] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 1.052779] ACPI: Power Button [PWRF] +[ 1.053131] ACPI: acpi_idle registered with cpuidle +[ 1.053194] ACPI: processor limited to max C-state 1 +[ 1.114366] ACPI: Invalid active0 threshold +[ 1.130887] thermal LNXTHERM:01: registered as thermal_zone0 +[ 1.130898] ACPI: Thermal Zone [THRM] (58 C) +[ 1.131004] ERST: Table is not found! +[ 1.132992] Linux agpgart interface v0.103 +[ 1.133107] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.134845] brd: module loaded +[ 1.135635] loop: module loaded +[ 1.136208] pata_acpi 0000:00:06.0: setting latency timer to 64 +[ 1.136685] ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 23 +[ 1.136692] alloc irq_desc for 23 on node 0 +[ 1.136694] alloc kstat_irqs on node 0 +[ 1.136707] pata_acpi 0000:00:09.0: PCI INT A -> Link[LSI0] -> GSI 23 (level, low) -> IRQ 23 +[ 1.136738] pata_acpi 0000:00:09.0: setting latency timer to 64 +[ 1.136747] pata_acpi 0000:00:09.0: PCI INT A disabled +[ 1.137238] Fixed MDIO Bus: probed +[ 1.137279] PPP generic driver version 2.4.2 +[ 1.137336] tun: Universal TUN/TAP device driver, 1.6 +[ 1.137338] tun: (C) 1999-2004 Max Krasnyansky +[ 1.137433] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.137874] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22 +[ 1.137878] alloc irq_desc for 22 on node 0 +[ 1.137880] alloc kstat_irqs on node 0 +[ 1.137889] ehci_hcd 0000:00:02.1: PCI INT B -> Link[LUS2] -> GSI 22 (level, low) -> IRQ 22 +[ 1.137912] ehci_hcd 0000:00:02.1: setting latency timer to 64 +[ 1.137916] ehci_hcd 0000:00:02.1: EHCI Host Controller +[ 1.138012] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1 +[ 1.138043] ehci_hcd 0000:00:02.1: debug port 1 +[ 1.138052] ehci_hcd 0000:00:02.1: cache line size of 64 is not supported +[ 1.138081] ehci_hcd 0000:00:02.1: irq 22, io mem 0xd0889000 +[ 1.138852] ACPI: EC: GPE storm detected, transactions will use polling mode +[ 1.160042] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00 +[ 1.160184] hub 1-0:1.0: USB hub found +[ 1.160191] hub 1-0:1.0: 5 ports detected +[ 1.160769] ACPI: PCI Interrupt Link [Z00O] enabled at IRQ 21 +[ 1.160776] alloc irq_desc for 21 on node 0 +[ 1.160778] alloc kstat_irqs on node 0 +[ 1.160791] ehci_hcd 0000:00:04.1: PCI INT B -> Link[Z00O] -> GSI 21 (level, low) -> IRQ 21 +[ 1.160815] ehci_hcd 0000:00:04.1: setting latency timer to 64 +[ 1.160818] ehci_hcd 0000:00:04.1: EHCI Host Controller +[ 1.160901] ehci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 2 +[ 1.160932] ehci_hcd 0000:00:04.1: debug port 1 +[ 1.160940] ehci_hcd 0000:00:04.1: cache line size of 64 is not supported +[ 1.160966] ehci_hcd 0000:00:04.1: irq 21, io mem 0xd0889400 +[ 1.180034] ehci_hcd 0000:00:04.1: USB 2.0 started, EHCI 1.00 +[ 1.180173] hub 2-0:1.0: USB hub found +[ 1.180179] hub 2-0:1.0: 5 ports detected +[ 1.180296] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.180799] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 20 +[ 1.180806] alloc irq_desc for 20 on node 0 +[ 1.180808] alloc kstat_irqs on node 0 +[ 1.180820] ohci_hcd 0000:00:02.0: PCI INT A -> Link[LUS0] -> GSI 20 (level, low) -> IRQ 20 +[ 1.180846] ohci_hcd 0000:00:02.0: setting latency timer to 64 +[ 1.180850] ohci_hcd 0000:00:02.0: OHCI Host Controller +[ 1.180939] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 3 +[ 1.180975] ohci_hcd 0000:00:02.0: irq 20, io mem 0xd0886000 +[ 1.242179] hub 3-0:1.0: USB hub found +[ 1.242186] hub 3-0:1.0: 5 ports detected +[ 1.242778] ACPI: PCI Interrupt Link [Z00N] enabled at IRQ 23 +[ 1.242784] ohci_hcd 0000:00:04.0: PCI INT A -> Link[Z00N] -> GSI 23 (level, low) -> IRQ 23 +[ 1.242809] ohci_hcd 0000:00:04.0: setting latency timer to 64 +[ 1.242812] ohci_hcd 0000:00:04.0: OHCI Host Controller +[ 1.242884] ohci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 4 +[ 1.242921] ohci_hcd 0000:00:04.0: irq 23, io mem 0xd0887000 +[ 1.302164] hub 4-0:1.0: USB hub found +[ 1.302171] hub 4-0:1.0: 5 ports detected +[ 1.302283] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.302436] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 +[ 1.332239] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.332259] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.332359] mice: PS/2 mouse device common for all mice +[ 1.332549] rtc_cmos 00:04: RTC can wake from S4 +[ 1.332605] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 1.332648] rtc0: alarms up to one year, y3k, 114 bytes nvram, hpet irqs +[ 1.332782] device-mapper: uevent: version 1.0.3 +[ 1.332922] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.333013] device-mapper: multipath: version 1.1.1 loaded +[ 1.333016] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.333205] cpuidle: using governor ladder +[ 1.333208] cpuidle: using governor menu +[ 1.333510] TCP cubic registered +[ 1.333670] NET: Registered protocol family 10 +[ 1.334125] lo: Disabled Privacy Extensions +[ 1.334370] NET: Registered protocol family 17 +[ 1.334422] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual-Core Processor TK-57 (2 cpu cores) (version 2.20.00) +[ 1.334486] powernow-k8: 0 : fid 0xb (1900 MHz), vid 0x13 +[ 1.334488] powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x14 +[ 1.334491] powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x15 +[ 1.334493] powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x1a +[ 1.334699] PM: Resume from disk failed. +[ 1.334714] registered taskstats version 1 +[ 1.335034] Magic number: 2:866:351 +[ 1.335162] rtc_cmos 00:04: setting system clock to 2010-07-02 23:20:08 UTC (1278112808) +[ 1.335166] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.335168] EDD information not available. +[ 1.335293] Freeing unused kernel memory: 904k freed +[ 1.335890] Write protecting the kernel read-only data: 10240k +[ 1.336087] Freeing unused kernel memory: 420k freed +[ 1.336519] Freeing unused kernel memory: 1604k freed +[ 1.362710] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 1.363683] udev: starting version 151 +[ 1.491483] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64. +[ 1.491959] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 22 +[ 1.491967] forcedeth 0000:00:0a.0: PCI INT A -> Link[LMAC] -> GSI 22 (level, low) -> IRQ 22 +[ 1.491972] forcedeth 0000:00:0a.0: setting latency timer to 64 +[ 1.506009] sdhci: Secure Digital Host Controller Interface driver +[ 1.506014] sdhci: Copyright(c) Pierre Ossman +[ 1.527489] ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11 +[ 1.527508] firewire_ohci 0000:01:04.0: PCI INT A -> Link[LNK1] -> GSI 11 (level, low) -> IRQ 11 +[ 1.780038] firewire_ohci: Added fw-ohci device 0000:01:04.0, OHCI v1.0, 4 IR + 4 IT contexts, quirks 0x0 +[ 1.780146] sdhci-pci 0000:01:04.1: SDHCI controller found [1180:0822] (rev 22) +[ 1.780670] ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11 +[ 1.780677] sdhci-pci 0000:01:04.1: PCI INT B -> Link[LNK2] -> GSI 11 (level, low) -> IRQ 11 +[ 1.781723] sdhci-pci 0000:01:04.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.782783] Registered led device: mmc0:: +[ 1.783825] mmc0: SDHCI controller on PCI [0000:01:04.1] using DMA +[ 1.841680] usb 4-3: new full speed USB device using ohci_hcd and address 2 +[ 2.031184] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:1b:38:cd:e1:bd +[ 2.031190] forcedeth 0000:00:0a.0: highdma pwrctl mgmt gbit lnktim msi desc-v3 +[ 2.031287] pata_amd 0000:00:06.0: version 0.4.1 +[ 2.031342] pata_amd 0000:00:06.0: setting latency timer to 64 +[ 2.031431] scsi0 : pata_amd +[ 2.031783] scsi1 : pata_amd +[ 2.032343] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x30c0 irq 14 +[ 2.032346] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x30c8 irq 15 +[ 2.032630] ahci 0000:00:09.0: version 3.0 +[ 2.032645] ahci 0000:00:09.0: PCI INT A -> Link[LSI0] -> GSI 23 (level, low) -> IRQ 23 +[ 2.032682] ahci 0000:00:09.0: controller can do NCQ, turning on CAP_NCQ +[ 2.032684] ahci 0000:00:09.0: controller can't do PMP, turning off CAP_PMP +[ 2.032745] ahci 0000:00:09.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl IDE mode +[ 2.032750] ahci 0000:00:09.0: flags: 64bit ncq sntf led clo pio slum part +[ 2.032755] ahci 0000:00:09.0: setting latency timer to 64 +[ 2.033233] scsi2 : ahci +[ 2.033384] scsi3 : ahci +[ 2.033492] scsi4 : ahci +[ 2.033584] scsi5 : ahci +[ 2.033757] ata3: SATA max UDMA/133 irq 23, connection status changed +[ 2.033761] ata4: SATA max UDMA/133 abar m8192@0xd0884000 port 0xd0884180 irq 23 +[ 2.033765] ata5: SATA max UDMA/133 abar m8192@0xd0884000 port 0xd0884200 irq 23 +[ 2.033769] ata6: SATA max UDMA/133 abar m8192@0xd0884000 port 0xd0884280 irq 23 +[ 2.210324] ata1.00: ATAPI: Optiarc DVD RW AD-7530B, NX09, max UDMA/33 +[ 2.210354] ata1: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc000c700) ACPI=0x701f (60:600:0x13) +[ 2.250266] ata1.00: configured for UDMA/33 +[ 2.252126] scsi 0:0:0:0: CD-ROM Optiarc DVD RW AD-7530B NX09 PQ: 0 ANSI: 5 +[ 2.261599] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.261603] Uniform CD-ROM driver Revision: 3.20 +[ 2.261759] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 2.261847] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 2.261956] ata2: port disabled. ignoring. +[ 2.262640] firewire_core: created device fw0: GUID 00023f81ba404d76, S400 +[ 2.370029] ata6: SATA link down (SStatus 0 SControl 300) +[ 2.370051] ata5: SATA link down (SStatus 0 SControl 300) +[ 2.382536] ata4: SATA link down (SStatus 0 SControl 300) +[ 2.592735] ACPI: Battery Slot [BAT1] (battery present) +[ 2.780032] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.826474] ata3.00: ATA-8: WDC WD2500BEVS-22UST0, 01.01A01, max UDMA/133 +[ 2.826478] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 2.827348] ata3.00: configured for UDMA/133 +[ 2.827525] scsi 2:0:0:0: Direct-Access ATA WDC WD2500BEVS-2 01.0 PQ: 0 ANSI: 5 +[ 2.827754] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 2.827758] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 2.827940] sd 2:0:0:0: [sda] Write Protect is off +[ 2.827944] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.827996] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.828274] sda: sda1 sda2 < sda5 sda6 sda7 > +[ 2.871454] sd 2:0:0:0: [sda] Attached SCSI disk +[ 3.299857] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) +[ 5.038697] Adding 4881404k swap on /dev/sda5. Priority:-1 extents:1 across:4881404k +[ 5.624488] udev: starting version 151 +[ 6.133074] lirc_dev: IR Remote Control driver registered, major 61 +[ 6.161908] lp: driver loaded but no devices found +[ 6.171026] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 6.171197] IP: [] kfifo_alloc+0x2e/0xb0 +[ 6.171314] PGD 9a43b067 PUD 9aba3067 PMD 0 +[ 6.171529] Oops: 0002 [#1] SMP +[ 6.171689] last sysfs file: /sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/name +[ 6.171753] CPU 1 +[ 6.171808] Modules linked in: lirc_ene0100(+) lirc_dev lp parport ahci sdhci_pci firewire_ohci firewire_core sdhci led_class libahci crc_itu_t pata_amd forcedeth +[ 6.172709] +[ 6.172766] Pid: 511, comm: modprobe Not tainted 2.6.35-6-generic #9-Ubuntu Fuquene/Aspire 5520 +[ 6.172830] RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +[ 6.172946] RSP: 0018:ffff88009a579d08 EFLAGS: 00010286 +[ 6.173005] RAX: ffff8800b9477000 RBX: 0000000000000000 RCX: ffffffff8107f229 +[ 6.173067] RDX: 0000000000000000 RSI: 00000000000000d0 RDI: 0000000000000246 +[ 6.173128] RBP: ffff88009a579d18 R08: 0000000000000000 R09: 0000000000000246 +[ 6.173189] R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +[ 6.173251] R13: ffff88003787d800 R14: ffff8800bbc44c00 R15: 00000000fffffff4 +[ 6.173313] FS: 00007f3022b1c700(0000) GS:ffff880001f00000(0000) knlGS:0000000000000000 +[ 6.173376] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 6.173435] CR2: 0000000000000000 CR3: 000000009a43d000 CR4: 00000000000006e0 +[ 6.173506] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 6.173578] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 6.173649] Process modprobe (pid: 511, threadinfo ffff88009a578000, task ffff88009b2edb80) +[ 6.173730] Stack: +[ 6.173795] ffff88009abc7b40 ffff8800bbc58660 ffff88009a579d58 ffffffffa009ee4f +[ 6.174020] <0> ffff88009a579d38 ffffffffa009f060 ffff88003787d800 ffffffffa009f580 +[ 6.174357] <0> ffffffffa009f540 00000000fffffff4 ffff88009a579d98 ffffffff8132a475 +[ 6.174755] Call Trace: +[ 6.174825] [] ene_probe+0x17f/0x350 [lirc_ene0100] +[ 6.174899] [] pnp_device_probe+0x95/0x100 +[ 6.174971] [] ? driver_sysfs_add+0x62/0x90 +[ 6.175041] [] really_probe+0x68/0x190 +[ 6.175111] [] driver_probe_device+0x45/0x70 +[ 6.175182] [] __driver_attach+0x9b/0xa0 +[ 6.175252] [] ? __driver_attach+0x0/0xa0 +[ 6.175322] [] bus_for_each_dev+0x68/0x90 +[ 6.175392] [] driver_attach+0x1e/0x20 +[ 6.175461] [] bus_add_driver+0xde/0x280 +[ 6.175531] [] driver_register+0x80/0x150 +[ 6.175603] [] ? ene_init+0x0/0x3e [lirc_ene0100] +[ 6.175675] [] pnp_register_driver+0x21/0x30 +[ 6.175746] [] ene_init+0x3c/0x3e [lirc_ene0100] +[ 6.175819] [] do_one_initcall+0x3c/0x1a0 +[ 6.175890] [] sys_init_module+0xbb/0x200 +[ 6.175962] [] system_call_fastpath+0x16/0x1b +[ 6.176032] Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 b7 33 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +[ 6.179475] RIP [] kfifo_alloc+0x2e/0xb0 +[ 6.179596] RSP +[ 6.179662] CR2: 0000000000000000 +[ 6.179763] ---[ end trace 0f811dc89fd018c0 ]--- +[ 6.219306] [Firmware Bug]: ACPI(Z00P) defines _DOD but not _DOS +[ 6.532782] ACPI Warning: _BQC returned an invalid level (20100428/video-640) +[ 6.582743] acpi device:0f: registered as cooling_device2 +[ 6.582964] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:01/input/input5 +[ 6.583127] ACPI: Video Device [Z00P] (multi-head: yes rom: no post: no) +[ 6.887775] vga16fb: initializing +[ 6.887850] vga16fb: mapped to 0xffff8800000a0000 +[ 7.034514] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 7.089491] i2c i2c-0: nForce2 SMBus adapter at 0x3040 +[ 7.089681] i2c i2c-1: nForce2 SMBus adapter at 0x3000 +[ 7.095383] Console: switching to colour frame buffer device 80x30 +[ 7.152038] fb0: VGA16 VGA frame buffer device +[ 7.216274] Bluetooth: Core ver 2.15 +[ 7.216596] NET: Registered protocol family 31 +[ 7.219141] Bluetooth: HCI device and connection manager initialized +[ 7.222029] Bluetooth: HCI socket layer initialized +[ 7.309732] cfg80211: Calling CRDA to update world regulatory domain +[ 7.315131] r852 0000:01:04.3: PCI INT B -> Link[LNK2] -> GSI 11 (level, low) -> IRQ 11 +[ 7.323846] r852: driver loaded succesfully +[ 7.470757] EDAC MC: Ver: 2.1.0 Jul 1 2010 +[ 7.527328] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 7.533683] usbcore: registered new interface driver btusb +[ 7.690196] EDAC amd64_edac: Ver: 3.3.0 Jul 1 2010 +[ 7.696807] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 7.711079] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 7.711081] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 7.711083] (Note that use of the override may cause unknown side effects.) +[ 7.754003] input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input6 +[ 7.770481] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 7.788376] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input7 +[ 8.171356] cfg80211: World regulatory domain updated: +[ 8.184550] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 8.211848] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.226306] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.240635] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 8.254774] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.254777] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 8.440509] ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19 +[ 8.454641] alloc irq_desc for 19 on node 0 +[ 8.466196] alloc kstat_irqs on node 0 +[ 8.483087] ath5k 0000:05:00.0: PCI INT A -> Link[LK4E] -> GSI 19 (level, low) -> IRQ 19 +[ 8.511673] ath5k 0000:05:00.0: setting latency timer to 64 +[ 8.526427] ath5k 0000:05:00.0: registered as 'phy0' +[ 9.035029] ath: EEPROM regdomain: 0x65 +[ 9.049661] ath: EEPROM indicates we should expect a direct regpair map +[ 9.064542] ath: Country alpha2 being used: 00 +[ 9.070149] type=1400 audit(1278112816.223:2): operation="profile_load" pid=664 name="/sbin/dhclient3" pid=664 comm="apparmor_parser" +[ 9.070450] type=1400 audit(1278112816.223:3): operation="profile_load" pid=664 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=664 comm="apparmor_parser" +[ 9.070663] type=1400 audit(1278112816.223:4): operation="profile_load" pid=664 name="/usr/lib/connman/scripts/dhclient-script" pid=664 comm="apparmor_parser" +[ 9.189455] ath: Regpair used: 0x65 +[ 9.249492] phy0: Selected rate control algorithm 'minstrel' +[ 9.262973] Registered led device: ath5k-phy0::rx +[ 9.275509] Registered led device: ath5k-phy0::tx +[ 9.287559] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) +[ 9.301046] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21 +[ 9.313023] HDA Intel 0000:00:07.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21 +[ 9.336581] hda_intel: Disable MSI for Nvidia chipset +[ 9.348949] HDA Intel 0000:00:07.0: setting latency timer to 64 +[ 9.439164] nvidia: module license 'NVIDIA' taints kernel. +[ 10.299777] ACPI: PCI Interrupt Link [LK2E] enabled at IRQ 17 +[ 10.312575] alloc irq_desc for 17 on node 0 +[ 10.322553] alloc kstat_irqs on node 0 +[ 10.338112] nvidia 0000:02:00.0: PCI INT A -> Link[LK2E] -> GSI 17 (level, low) -> IRQ 17 +[ 10.363826] nvidia 0000:02:00.0: setting latency timer to 64 +[ 10.376644] vgaarb: device changed decodes: PCI:0000:02:00.0,olddecodes=io+mem,decodes=none:owns=io+mem +[ 10.402152] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 256.35 Wed Jun 16 18:42:44 PDT 2010 +[ 12.571513] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro +[ 13.076321] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 13.273874] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null) +[ 14.442177] type=1400 audit(1278112821.593:5): operation="profile_load" pid=946 name="/usr/share/gdm/guest-session/Xsession" pid=946 comm="apparmor_parser" +[ 14.444737] type=1400 audit(1278112821.603:6): operation="profile_replace" pid=949 name="/sbin/dhclient3" pid=949 comm="apparmor_parser" +[ 14.445059] type=1400 audit(1278112821.603:7): operation="profile_replace" pid=949 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=949 comm="apparmor_parser" +[ 14.445238] type=1400 audit(1278112821.603:8): operation="profile_replace" pid=949 name="/usr/lib/connman/scripts/dhclient-script" pid=949 comm="apparmor_parser" +[ 14.495999] type=1400 audit(1278112821.653:9): operation="profile_load" pid=950 name="/usr/bin/evince" pid=950 comm="apparmor_parser" +[ 14.499897] type=1400 audit(1278112821.653:10): operation="profile_load" pid=950 name="/usr/bin/evince-previewer" pid=950 comm="apparmor_parser" +[ 14.502386] type=1400 audit(1278112821.653:11): operation="profile_load" pid=950 name="/usr/bin/evince-thumbnailer" pid=950 comm="apparmor_parser" +[ 14.572322] type=1400 audit(1278112821.723:12): operation="profile_load" pid=958 name="/usr/lib/libvirt/virt-aa-helper" pid=958 comm="apparmor_parser" +[ 14.702129] type=1400 audit(1278112821.853:13): operation="profile_load" pid=959 name="/usr/lib/cups/backend/cups-pdf" pid=959 comm="apparmor_parser" +[ 14.702552] type=1400 audit(1278112821.863:14): operation="profile_load" pid=959 name="/usr/sbin/cupsd" pid=959 comm="apparmor_parser" +[ 15.593760] alloc irq_desc for 43 on node 0 +[ 15.593767] alloc kstat_irqs on node 0 +[ 15.593779] forcedeth 0000:00:0a.0: irq 43 for MSI/MSI-X +[ 15.593990] eth0: no link during initialization. +[ 15.595214] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 15.656227] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 16.658936] kvm: Nested Virtualization enabled +[ 17.309430] teredo: Disabled Privacy Extensions + +Bug: 601311 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-6-generic (buildd@vernadsky) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu1) ) #8-Ubuntu SMP Mon Jun 28 03:15:21 UTC 2010 (Ubuntu 2.6.35-6.8-generic 2.6.35-rc3) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000005ffc0000 (usable) +[ 0.000000] BIOS-e820: 000000005ffc0000 - 000000005ffd0000 (ACPI data) +[ 0.000000] BIOS-e820: 000000005ffd0000 - 0000000060000000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff7c0000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.3 present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x5ffc0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-EFFFF uncachable +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FFC0000000 write-back +[ 0.000000] 1 base 0040000000 mask FFE0000000 write-back +[ 0.000000] 2 disabled +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e4000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000005ffc0000 (usable) +[ 0.000000] modified: 000000005ffc0000 - 000000005ffd0000 (ACPI data) +[ 0.000000] modified: 000000005ffd0000 - 0000000060000000 (ACPI NVS) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ff7c0000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00ff780] ff780 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 5f4e9000 - 5ff90000 +[ 0.000000] Allocated new RAMDISK: 009ba000 - 01460ceb +[ 0.000000] Move RAMDISK from 000000005f4e9000 - 000000005ff8fcea to 009ba000 - 01460cea +[ 0.000000] ACPI: RSDP 000f9cb0 00021 (v02 ACPIAM) +[ 0.000000] ACPI: XSDT 5ffc0100 0003C (v01 A M I OEMXSDT 06000529 MSFT 00000097) +[ 0.000000] ACPI: FACP 5ffc0290 000F4 (v03 A M I OEMFACP 06000529 MSFT 00000097) +[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20100428/tbfadt-526) +[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x00000000000044A0/0x0 (20100428/tbfadt-557) +[ 0.000000] ACPI: DSDT 5ffc0400 04524 (v01 A0055 A0055003 00000003 INTL 02002026) +[ 0.000000] ACPI: FACS 5ffd0000 00040 +[ 0.000000] ACPI: APIC 5ffc0390 00068 (v01 A M I OEMAPIC 06000529 MSFT 00000097) +[ 0.000000] ACPI: OEMB 5ffd0040 00041 (v01 A M I OEMBIOS 06000529 MSFT 00000097) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 647MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0005ffc0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0005ffc0 +[ 0.000000] On node 0 totalpages: 393039 +[ 0.000000] free_area_init_node: node 0, pgdat c08156c0, node_mem_map c1462200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 1296 pages used for memmap +[ 0.000000] HighMem zone: 164530 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] Nvidia board detected. Ignoring ACPI timer override. +[ 0.000000] If you got timer trouble try acpi_use_timer_override +[ 0.000000] ACPI: PM-Timer IO Port: 0x4008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: BIOS IRQ0 pin2 override ignored. +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge) +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] ACPI: IRQ14 used by override. +[ 0.000000] ACPI: IRQ15 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000 +[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 60000000 (gap: 60000000:9ec00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2400000 s36480 r0 d20864 u4194304 +[ 0.000000] pcpu-alloc: s36480 r0 d20864 u4194304 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 389967 +[ 0.000000] Kernel command line: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 7862720 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (46 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009b591c] TEXT DATA BSS +[ 0.000000] #3 [00009b6000 - 00009b918c] BRK +[ 0.000000] #4 [00000ff790 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000ff780 - 00000ff790] MP-table mpf +[ 0.000000] #6 [000009fc00 - 00000f0ed0] BIOS reserved +[ 0.000000] #7 [00000f0fc8 - 00000ff780] BIOS reserved +[ 0.000000] #8 [00000f0ed0 - 00000f0fc8] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #10 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #11 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #12 [00009ba000 - 0001461000] NEW RAMDISK +[ 0.000000] #13 [0001461000 - 0001462000] BOOTMEM +[ 0.000000] #14 [0001462000 - 0002062000] BOOTMEM +[ 0.000000] #15 [0002062000 - 0002062004] BOOTMEM +[ 0.000000] #16 [0002062040 - 0002062100] BOOTMEM +[ 0.000000] #17 [0002062100 - 0002062154] BOOTMEM +[ 0.000000] #18 [0002062180 - 0002065180] BOOTMEM +[ 0.000000] #19 [0002065180 - 00020651c0] BOOTMEM +[ 0.000000] #20 [00020651c0 - 00020681c0] BOOTMEM +[ 0.000000] #21 [00020681c0 - 00020681e7] BOOTMEM +[ 0.000000] #22 [0002068200 - 0002068318] BOOTMEM +[ 0.000000] #23 [0002068340 - 0002068380] BOOTMEM +[ 0.000000] #24 [0002068380 - 00020683c0] BOOTMEM +[ 0.000000] #25 [00020683c0 - 0002068400] BOOTMEM +[ 0.000000] #26 [0002068400 - 0002068440] BOOTMEM +[ 0.000000] #27 [0002068440 - 0002068480] BOOTMEM +[ 0.000000] #28 [0002068480 - 00020684c0] BOOTMEM +[ 0.000000] #29 [00020684c0 - 0002068500] BOOTMEM +[ 0.000000] #30 [0002068500 - 0002068540] BOOTMEM +[ 0.000000] #31 [0002068540 - 0002068580] BOOTMEM +[ 0.000000] #32 [0002068580 - 0002068590] BOOTMEM +[ 0.000000] #33 [00020685c0 - 000206863f] BOOTMEM +[ 0.000000] #34 [0002068640 - 00020686bf] BOOTMEM +[ 0.000000] #35 [0002400000 - 000240e000] BOOTMEM +[ 0.000000] #36 [000206a6c0 - 000206a6c4] BOOTMEM +[ 0.000000] #37 [000206a700 - 000206a704] BOOTMEM +[ 0.000000] #38 [000206a740 - 000206a744] BOOTMEM +[ 0.000000] #39 [000206a780 - 000206a784] BOOTMEM +[ 0.000000] #40 [000206a7c0 - 000206a870] BOOTMEM +[ 0.000000] #41 [000206a880 - 000206a928] BOOTMEM +[ 0.000000] #42 [000206a940 - 000206e940] BOOTMEM +[ 0.000000] #43 [000206e940 - 00020ee940] BOOTMEM +[ 0.000000] #44 [00020ee940 - 000212e940] BOOTMEM +[ 0.000000] #45 [000240e000 - 0002b8d9c0] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0005ffc0) +[ 0.000000] Memory: 1531444k/1572608k available (4947k kernel code, 40712k reserved, 2404k data, 684k init, 663304k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc082e000 - 0xc08d9000 ( 684 kB) +[ 0.000000] .data : 0xc05d4f72 - 0xc082dfe8 (2404 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d4f72 (4947 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:256 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2114.886 MHz processor. +[ 0.004005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4229.77 BogoMIPS (lpj=8459544) +[ 0.004011] pid_max: default: 32768 minimum: 301 +[ 0.004038] Security Framework initialized +[ 0.004064] AppArmor: AppArmor initialized +[ 0.004115] Mount-cache hash table entries: 512 +[ 0.004254] Initializing cgroup subsys ns +[ 0.004259] Initializing cgroup subsys cpuacct +[ 0.004263] Initializing cgroup subsys memory +[ 0.004272] Initializing cgroup subsys devices +[ 0.004274] Initializing cgroup subsys freezer +[ 0.004277] Initializing cgroup subsys net_cls +[ 0.004305] mce: CPU supports 5 MCE banks +[ 0.004326] Performance Events: AMD PMU driver. +[ 0.004333] ... version: 0 +[ 0.004335] ... bit width: 48 +[ 0.004337] ... generic registers: 4 +[ 0.004339] ... value mask: 0000ffffffffffff +[ 0.004342] ... max period: 00007fffffffffff +[ 0.004344] ... fixed-purpose events: 0 +[ 0.004346] ... event mask: 000000000000000f +[ 0.005188] SMP alternatives: switching to UP code +[ 0.012513] Freeing SMP alternatives: 24k freed +[ 0.012538] ACPI: Core revision 20100428 +[ 0.017139] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.017147] ftrace: allocating 21765 entries in 43 pages +[ 0.020099] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.020426] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1 +[ 0.063238] CPU0: AMD Athlon(tm) 64 Processor 2800+ stepping 08 +[ 0.064000] Brought up 1 CPUs +[ 0.064000] Total of 1 processors activated (4229.77 BogoMIPS). +[ 0.064000] devtmpfs: initialized +[ 0.064000] regulator: core version 0.5 +[ 0.064000] Time: 11:42:15 Date: 07/03/10 +[ 0.064000] NET: Registered protocol family 16 +[ 0.064000] EISA bus registered +[ 0.064000] node 0 link 0: io port [1000, ffffff] +[ 0.064000] TOM: 0000000060000000 aka 1536M +[ 0.064000] node 0 link 0: mmio [a0000, bffff] +[ 0.064000] node 0 link 0: mmio [60000000, fe0bffff] +[ 0.064000] bus: [00, ff] on node 0 link 0 +[ 0.064000] bus: 00 index 0 [io 0x0000-0xffff] +[ 0.064000] bus: 00 index 1 [mem 0x000a0000-0x000bffff] +[ 0.064000] bus: 00 index 2 [mem 0x60000000-0xffffffff] +[ 0.064000] ACPI: bus type pci registered +[ 0.064000] PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=2 +[ 0.064000] PCI: Using configuration type 1 for base access +[ 0.064000] bio: create slab at 0 +[ 0.064629] ACPI: EC: Look up EC in DSDT +[ 0.066060] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.066389] ACPI: Actual Package length (266) is larger than NumElements field (2), truncated +[ 0.066393] +[ 0.069018] ACPI: Interpreter enabled +[ 0.069022] ACPI: (supports S0 S1 S3 S4 S5) +[ 0.069045] ACPI: Using IOAPIC for interrupt routing +[ 0.077106] ACPI: Power Resource [ISAV] (on) +[ 0.077157] ACPI Warning: Incorrect checksum in table [OEMB] - 0x4C, should be 0x21 (20100428/tbutils-314) +[ 0.077282] ACPI: No dock devices found. +[ 0.077286] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.077385] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.077575] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.077578] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.077581] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.077584] pci_root PNP0A03:00: host bridge window [mem 0x60000000-0xff7bffff] (ignored) +[ 0.077605] pci 0000:00:00.0: reg 10: [mem 0xf0000000-0xf7ffffff pref] +[ 0.077671] pci 0000:00:01.1: reg 10: [io 0x5080-0x509f] +[ 0.077679] pci 0000:00:01.1: reg 20: [io 0x5000-0x503f] +[ 0.077683] pci 0000:00:01.1: reg 24: [io 0x5040-0x507f] +[ 0.077693] pci 0000:00:01.1: PME# supported from D3hot D3cold +[ 0.077696] pci 0000:00:01.1: PME# disabled +[ 0.077713] pci 0000:00:02.0: reg 10: [mem 0xfebfd000-0xfebfdfff] +[ 0.077728] pci 0000:00:02.0: supports D1 D2 +[ 0.077731] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.077734] pci 0000:00:02.0: PME# disabled +[ 0.077747] pci 0000:00:02.1: reg 10: [mem 0xfebfe000-0xfebfefff] +[ 0.077762] pci 0000:00:02.1: supports D1 D2 +[ 0.077764] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.077767] pci 0000:00:02.1: PME# disabled +[ 0.077784] pci 0000:00:02.2: reg 10: [mem 0xfebffc00-0xfebffcff] +[ 0.077803] pci 0000:00:02.2: supports D1 D2 +[ 0.077805] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.077808] pci 0000:00:02.2: PME# disabled +[ 0.077827] pci 0000:00:05.0: reg 10: [mem 0xfebfc000-0xfebfcfff] +[ 0.077831] pci 0000:00:05.0: reg 14: [io 0xec00-0xec07] +[ 0.077845] pci 0000:00:05.0: supports D1 D2 +[ 0.077847] pci 0000:00:05.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.077850] pci 0000:00:05.0: PME# disabled +[ 0.077863] pci 0000:00:06.0: reg 10: [io 0xe800-0xe8ff] +[ 0.077867] pci 0000:00:06.0: reg 14: [io 0xe400-0xe47f] +[ 0.077871] pci 0000:00:06.0: reg 18: [mem 0xfebfb000-0xfebfbfff] +[ 0.077884] pci 0000:00:06.0: supports D1 D2 +[ 0.077902] pci 0000:00:08.0: reg 20: [io 0xffa0-0xffaf] +[ 0.077924] pci 0000:00:0a.0: reg 10: [io 0x09f0-0x09f7] +[ 0.077928] pci 0000:00:0a.0: reg 14: [io 0x0bf0-0x0bf3] +[ 0.077932] pci 0000:00:0a.0: reg 18: [io 0x0970-0x0977] +[ 0.077936] pci 0000:00:0a.0: reg 1c: [io 0x0b70-0x0b73] +[ 0.077940] pci 0000:00:0a.0: reg 20: [io 0xc800-0xc80f] +[ 0.077944] pci 0000:00:0a.0: reg 24: [io 0xc400-0xc47f] +[ 0.078044] PCI: peer root bus 00 res updated from pci conf +[ 0.078073] pci 0000:01:00.0: reg 10: [mem 0xfd000000-0xfdffffff] +[ 0.078079] pci 0000:01:00.0: reg 14: [mem 0xe0000000-0xe7ffffff pref] +[ 0.078085] pci 0000:01:00.0: reg 18: [mem 0xfc000000-0xfcffffff] +[ 0.078099] pci 0000:01:00.0: reg 30: [mem 0xfeae0000-0xfeafffff pref] +[ 0.078145] pci 0000:00:0b.0: PCI bridge to [bus 01-01] +[ 0.078149] pci 0000:00:0b.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.078153] pci 0000:00:0b.0: bridge window [mem 0xfaa00000-0xfeafffff] +[ 0.078157] pci 0000:00:0b.0: bridge window [mem 0xda900000-0xea8fffff pref] +[ 0.078186] pci 0000:00:0e.0: PCI bridge to [bus 02-02] +[ 0.078189] pci 0000:00:0e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.078193] pci 0000:00:0e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.078196] pci 0000:00:0e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.078203] pci_bus 0000:00: on NUMA node 0 +[ 0.078207] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.078343] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 0.083723] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled. +[ 0.083875] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled. +[ 0.084029] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled. +[ 0.084179] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled. +[ 0.084329] ACPI: PCI Interrupt Link [LNKE] (IRQs 16 17 18 19) *11 +[ 0.084474] ACPI: PCI Interrupt Link [LUS0] (IRQs 20 21 22) *7 +[ 0.084620] ACPI: PCI Interrupt Link [LUS1] (IRQs 20 21 22) *9 +[ 0.084768] ACPI: PCI Interrupt Link [LUS2] (IRQs 20 21 22) *10 +[ 0.084914] ACPI: PCI Interrupt Link [LKLN] (IRQs 20 21 22) *11 +[ 0.085060] ACPI: PCI Interrupt Link [LAUI] (IRQs 20 21 22) *11 +[ 0.085210] ACPI: PCI Interrupt Link [LKMO] (IRQs 20 21 22) *0, disabled. +[ 0.085356] ACPI: PCI Interrupt Link [LKSM] (IRQs 20 21 22) *0, disabled. +[ 0.085502] ACPI: PCI Interrupt Link [LTID] (IRQs 20 21 22) *0 +[ 0.085657] ACPI: PCI Interrupt Link [LTIE] (IRQs 20 21 22) *0, disabled. +[ 0.085837] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22) *14 +[ 0.085877] HEST: Table is not found! +[ 0.085960] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.085963] vgaarb: loaded +[ 0.086150] SCSI subsystem initialized +[ 0.086215] libata version 3.00 loaded. +[ 0.086269] usbcore: registered new interface driver usbfs +[ 0.086282] usbcore: registered new interface driver hub +[ 0.086308] usbcore: registered new device driver usb +[ 0.086440] ACPI: WMI: Mapper loaded +[ 0.086443] PCI: Using ACPI for IRQ routing +[ 0.086446] PCI: pci_cache_line_size set to 64 bytes +[ 0.086488] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.086491] reserve RAM buffer: 000000005ffc0000 - 000000005fffffff +[ 0.086593] NetLabel: Initializing +[ 0.086595] NetLabel: domain hash size = 128 +[ 0.086596] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.086610] NetLabel: unlabeled traffic allowed by default +[ 0.086657] Switching to clocksource tsc +[ 0.094570] AppArmor: AppArmor Filesystem Enabled +[ 0.094590] pnp: PnP ACPI init +[ 0.094608] ACPI: bus type pnp registered +[ 0.099031] pnp: PnP ACPI: found 14 devices +[ 0.099033] ACPI: ACPI bus type pnp unregistered +[ 0.099037] PnPBIOS: Disabled by ACPI PNP +[ 0.099051] system 00:07: [io 0x0190-0x0193] has been reserved +[ 0.099055] system 00:07: [io 0x04d0-0x04d1] has been reserved +[ 0.099058] system 00:07: [io 0x4000-0x40ff window] has been reserved +[ 0.099061] system 00:07: [io 0x4400-0x44ff window] has been reserved +[ 0.099064] system 00:07: [io 0x4800-0x48ff window] has been reserved +[ 0.099070] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.099074] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 0.099077] system 00:08: [mem 0xff780000-0xff7bffff] has been reserved +[ 0.099082] system 00:0a: [io 0x0480-0x0487] has been reserved +[ 0.099085] system 00:0a: [io 0x0d00-0x0d07] has been reserved +[ 0.099091] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.099094] system 00:0d: [mem 0x000c0000-0x000dffff] could not be reserved +[ 0.099097] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.099101] system 00:0d: [mem 0x00100000-0x5fffffff] could not be reserved +[ 0.099104] system 00:0d: [mem 0xff7c0000-0xffffffff] has been reserved +[ 0.133819] pci 0000:00:0b.0: PCI bridge to [bus 01-01] +[ 0.133822] pci 0000:00:0b.0: bridge window [io disabled] +[ 0.133827] pci 0000:00:0b.0: bridge window [mem 0xfaa00000-0xfeafffff] +[ 0.133831] pci 0000:00:0b.0: bridge window [mem 0xda900000-0xea8fffff pref] +[ 0.133836] pci 0000:00:0e.0: PCI bridge to [bus 02-02] +[ 0.133838] pci 0000:00:0e.0: bridge window [io disabled] +[ 0.133841] pci 0000:00:0e.0: bridge window [mem disabled] +[ 0.133844] pci 0000:00:0e.0: bridge window [mem pref disabled] +[ 0.133856] pci 0000:00:0e.0: setting latency timer to 64 +[ 0.133860] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] +[ 0.133862] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff] +[ 0.133865] pci_bus 0000:00: resource 6 [mem 0x60000000-0xffffffff] +[ 0.133868] pci_bus 0000:01: resource 1 [mem 0xfaa00000-0xfeafffff] +[ 0.133871] pci_bus 0000:01: resource 2 [mem 0xda900000-0xea8fffff pref] +[ 0.133915] NET: Registered protocol family 2 +[ 0.133975] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.134296] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.135419] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.135976] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.135978] TCP reno registered +[ 0.135982] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.136001] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.136104] NET: Registered protocol family 1 +[ 0.609438] pci 0000:01:00.0: Boot video device +[ 0.609442] PCI: CLS 0 bytes, default 64 +[ 0.609638] cpufreq-nforce2: No nForce2 chipset. +[ 0.609668] Scanning for low memory corruption every 60 seconds +[ 0.609781] audit: initializing netlink socket (disabled) +[ 0.609791] type=2000 audit(1278157335.608:1): initialized +[ 0.620505] Trying to unpack rootfs image as initramfs... +[ 2.890228] highmem bounce pool size: 64 pages +[ 2.890234] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 2.891567] VFS: Disk quotas dquot_6.5.2 +[ 2.891620] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 2.892168] fuse init (API version 7.14) +[ 2.892247] msgmni has been set to 1695 +[ 2.892432] alg: No test for stdrng (krng) +[ 2.892489] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 2.892492] io scheduler noop registered +[ 2.892494] io scheduler deadline registered +[ 2.892506] io scheduler cfq registered (default) +[ 2.892640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 2.892663] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 2.892772] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 2.892777] ACPI: Power Button [PWRB] +[ 2.892824] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 2.892827] ACPI: Power Button [PWRF] +[ 2.893019] ACPI: acpi_idle registered with cpuidle +[ 2.893044] ACPI: processor limited to max C-state 1 +[ 2.896515] ERST: Table is not found! +[ 2.897949] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 2.898035] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 2.898116] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 2.898391] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 2.898506] 00:0c: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 2.899593] brd: module loaded +[ 2.900045] isapnp: Scanning for PnP cards... +[ 2.905642] loop: module loaded +[ 2.905938] pata_acpi 0000:00:08.0: power state changed by ACPI to D0 +[ 2.905965] pata_acpi 0000:00:08.0: power state changed by ACPI to D0 +[ 2.906016] pata_acpi 0000:00:08.0: setting latency timer to 64 +[ 2.906307] ACPI: PCI Interrupt Link [LTID] BIOS reported IRQ 0, using IRQ 22 +[ 2.906310] ACPI: PCI Interrupt Link [LTID] enabled at IRQ 22 +[ 2.906315] alloc irq_desc for 22 on node -1 +[ 2.906318] alloc kstat_irqs on node -1 +[ 2.906328] pata_acpi 0000:00:0a.0: PCI INT A -> Link[LTID] -> GSI 22 (level, low) -> IRQ 22 +[ 2.906344] pata_acpi 0000:00:0a.0: setting latency timer to 64 +[ 2.906351] pata_acpi 0000:00:0a.0: PCI INT A disabled +[ 2.906686] Fixed MDIO Bus: probed +[ 2.906730] PPP generic driver version 2.4.2 +[ 2.906773] tun: Universal TUN/TAP device driver, 1.6 +[ 2.906775] tun: (C) 1999-2004 Max Krasnyansky +[ 2.906843] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 2.907046] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 21 +[ 2.907050] alloc irq_desc for 21 on node -1 +[ 2.907051] alloc kstat_irqs on node -1 +[ 2.907058] ehci_hcd 0000:00:02.2: PCI INT C -> Link[LUS2] -> GSI 21 (level, low) -> IRQ 21 +[ 2.907075] ehci_hcd 0000:00:02.2: setting latency timer to 64 +[ 2.907078] ehci_hcd 0000:00:02.2: EHCI Host Controller +[ 2.907113] ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1 +[ 2.907144] ehci_hcd 0000:00:02.2: debug port 1 +[ 2.907149] ehci_hcd 0000:00:02.2: cache line size of 64 is not supported +[ 2.907170] ehci_hcd 0000:00:02.2: irq 21, io mem 0xfebffc00 +[ 2.950699] ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00 +[ 2.950819] hub 1-0:1.0: USB hub found +[ 2.950825] hub 1-0:1.0: 8 ports detected +[ 2.950887] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 2.951088] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 20 +[ 2.951091] alloc irq_desc for 20 on node -1 +[ 2.951093] alloc kstat_irqs on node -1 +[ 2.951099] ohci_hcd 0000:00:02.0: PCI INT A -> Link[LUS0] -> GSI 20 (level, low) -> IRQ 20 +[ 2.951107] ohci_hcd 0000:00:02.0: setting latency timer to 64 +[ 2.951110] ohci_hcd 0000:00:02.0: OHCI Host Controller +[ 2.951140] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2 +[ 2.951163] ohci_hcd 0000:00:02.0: irq 20, io mem 0xfebfd000 +[ 3.040278] hub 2-0:1.0: USB hub found +[ 3.040283] hub 2-0:1.0: 4 ports detected +[ 3.040516] ACPI: PCI Interrupt Link [LUS1] enabled at IRQ 22 +[ 3.040520] ohci_hcd 0000:00:02.1: PCI INT B -> Link[LUS1] -> GSI 22 (level, low) -> IRQ 22 +[ 3.040528] ohci_hcd 0000:00:02.1: setting latency timer to 64 +[ 3.040530] ohci_hcd 0000:00:02.1: OHCI Host Controller +[ 3.040564] ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 3 +[ 3.040588] ohci_hcd 0000:00:02.1: irq 22, io mem 0xfebfe000 +[ 3.129721] hub 3-0:1.0: USB hub found +[ 3.129726] hub 3-0:1.0: 4 ports detected +[ 3.129774] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.129861] PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12 +[ 3.129864] PNP: PS/2 controller doesn't have KBD irq; using default 1 +[ 3.175300] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.175306] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 3.175368] mice: PS/2 mouse device common for all mice +[ 3.175452] rtc_cmos 00:02: RTC can wake from S4 +[ 3.175492] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0 +[ 3.175515] rtc0: alarms up to one year, y3k, 114 bytes nvram +[ 3.175618] device-mapper: uevent: version 1.0.3 +[ 3.175788] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 3.175838] device-mapper: multipath: version 1.1.1 loaded +[ 3.175840] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 3.175961] EISA: Probing bus 0 at eisa.0 +[ 3.175965] EISA: Cannot allocate resource for mainboard +[ 3.175967] Cannot allocate resource for EISA slot 1 +[ 3.175969] Cannot allocate resource for EISA slot 2 +[ 3.175971] Cannot allocate resource for EISA slot 3 +[ 3.175974] Cannot allocate resource for EISA slot 4 +[ 3.175976] Cannot allocate resource for EISA slot 5 +[ 3.175978] Cannot allocate resource for EISA slot 6 +[ 3.175980] Cannot allocate resource for EISA slot 7 +[ 3.175982] Cannot allocate resource for EISA slot 8 +[ 3.175984] EISA: Detected 0 cards. +[ 3.176037] cpuidle: using governor ladder +[ 3.176040] cpuidle: using governor menu +[ 3.176316] TCP cubic registered +[ 3.176440] NET: Registered protocol family 10 +[ 3.176764] lo: Disabled Privacy Extensions +[ 3.176959] NET: Registered protocol family 17 +[ 3.176986] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 2800+ (1 cpu cores) (version 2.20.00) +[ 3.177071] powernow-k8: 0 : fid 0xa (1800 MHz), vid 0x2 +[ 3.177074] powernow-k8: 1 : fid 0x0 (800 MHz), vid 0xa +[ 3.177307] Using IPI No-Shortcut mode +[ 3.177387] PM: Resume from disk failed. +[ 3.177399] registered taskstats version 1 +[ 3.177538] Magic number: 2:81:731 +[ 3.177634] rtc_cmos 00:02: setting system clock to 2010-07-03 11:42:18 UTC (1278157338) +[ 3.177637] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 3.177639] EDD information not available. +[ 3.264715] isapnp: No Plug & Play device found +[ 3.568590] usb 1-3: new high speed USB device using ehci_hcd and address 3 +[ 3.580535] Freeing initrd memory: 10908k freed +[ 3.591803] Freeing unused kernel memory: 684k freed +[ 3.592677] Write protecting the kernel text: 4948k +[ 3.592707] Write protecting the kernel read-only data: 2020k +[ 3.640136] udev: starting version 151 +[ 3.812037] usb 1-5: new high speed USB device using ehci_hcd and address 4 +[ 3.819246] pata_amd 0000:00:08.0: version 0.4.1 +[ 3.819318] pata_amd 0000:00:08.0: power state changed by ACPI to D0 +[ 3.819346] pata_amd 0000:00:08.0: power state changed by ACPI to D0 +[ 3.819391] pata_amd 0000:00:08.0: setting latency timer to 64 +[ 3.856931] scsi0 : pata_amd +[ 3.857285] Linux agpgart interface v0.103 +[ 3.885799] scsi1 : pata_amd +[ 3.886547] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 +[ 3.886550] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 +[ 3.886713] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64. +[ 3.886933] ACPI: PCI Interrupt Link [LKLN] enabled at IRQ 21 +[ 3.886938] forcedeth 0000:00:05.0: PCI INT A -> Link[LKLN] -> GSI 21 (level, low) -> IRQ 21 +[ 3.886943] forcedeth 0000:00:05.0: setting latency timer to 64 +[ 3.886990] nv_probe: set workaround bit for reversed mac addr +[ 3.909350] [drm] Initialized drm 1.1.0 20060810 +[ 3.912707] FDC 0 is a post-1991 82077 +[ 3.973511] Initializing USB Mass Storage driver... +[ 3.973631] scsi2 : usb-storage 1-5:1.0 +[ 3.973766] usbcore: registered new interface driver usb-storage +[ 3.973768] USB Mass Storage support registered. +[ 4.048260] ata1.00: ATAPI: LITE-ON DVDRW SOHW-1213S, TS0J, max UDMA/66 +[ 4.048288] ata1: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13) +[ 4.064189] ata1.00: configured for UDMA/66 +[ 4.065299] scsi 0:0:0:0: CD-ROM LITE-ON DVDRW SOHW-1213S TS0J PQ: 0 ANSI: 5 +[ 4.067955] sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray +[ 4.067959] Uniform CD-ROM driver Revision: 3.20 +[ 4.068073] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 4.068133] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 4.277562] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 19 +[ 4.277569] alloc irq_desc for 19 on node -1 +[ 4.277571] alloc kstat_irqs on node -1 +[ 4.277582] nouveau 0000:01:00.0: PCI INT A -> Link[LNKE] -> GSI 19 (level, low) -> IRQ 19 +[ 4.281207] [drm] nouveau 0000:01:00.0: Detected an NV40 generation card (0x440100a1) +[ 4.282587] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PROM +[ 4.391723] [drm] nouveau 0000:01:00.0: ... appears to be valid +[ 4.391727] [drm] nouveau 0000:01:00.0: BIT BIOS found +[ 4.391731] [drm] nouveau 0000:01:00.0: Bios version 05.40.02.15 +[ 4.391735] [drm] nouveau 0000:01:00.0: BIT table 'd' not found +[ 4.391738] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 3.0 +[ 4.391742] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000310 00000028 +[ 4.391746] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 02011300 00000028 +[ 4.391748] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 01011302 00000000 +[ 4.391751] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 020223f1 0000c033 +[ 4.391755] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x30 5 3 2 +[ 4.391759] [drm] nouveau 0000:01:00.0: 0: 0x00001000: type 0x00 idx 0 tag 0x07 +[ 4.391762] [drm] nouveau 0000:01:00.0: 1: 0x00001130: type 0x30 idx 1 tag 0x07 +[ 4.391765] [drm] nouveau 0000:01:00.0: 2: 0x00000212: type 0x12 idx 2 tag 0xff +[ 4.391767] [drm] nouveau 0000:01:00.0: unknown type, using 0xff +[ 4.391781] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xE76E +[ 4.392284] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xEC16 +[ 4.392921] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xF284 +[ 4.392942] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xF3E1 +[ 4.408647] forcedeth 0000:00:05.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:11:d8:3d:70:91 +[ 4.408653] forcedeth 0000:00:05.0: csum timirq gbit lnktim desc-v2 +[ 4.408926] sata_nv 0000:00:0a.0: version 3.5 +[ 4.408942] sata_nv 0000:00:0a.0: PCI INT A -> Link[LTID] -> GSI 22 (level, low) -> IRQ 22 +[ 4.408985] sata_nv 0000:00:0a.0: setting latency timer to 64 +[ 4.409311] scsi3 : sata_nv +[ 4.409412] scsi4 : sata_nv +[ 4.410125] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xc800 irq 22 +[ 4.410129] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xc808 irq 22 +[ 4.410239] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1] +[ 4.410245] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB +[ 4.410250] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP +[ 4.410255] agpgart-amd64 0000:00:00.0: aperture base > 4G +[ 4.410284] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1] +[ 4.410289] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB +[ 4.410291] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP +[ 4.410294] agpgart-amd64 0000:00:00.0: aperture base > 4G +[ 4.416012] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xF483 +[ 4.416020] [drm] nouveau 0000:01:00.0: Detected 128MiB VRAM +[ 4.441708] [TTM] Zone kernel: Available graphics memory: 439878 kiB. +[ 4.441711] [TTM] Zone highmem: Available graphics memory: 771530 kiB. +[ 4.441713] [TTM] Initializing pool allocator. +[ 4.443353] [drm] nouveau 0000:01:00.0: 64 MiB GART (aperture) +[ 4.443965] [drm] nouveau 0000:01:00.0: Allocating FIFO number 0 +[ 4.446304] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 0 +[ 4.446312] [drm] nouveau 0000:01:00.0: Initial CRTC_OWNER is 0 +[ 4.446320] [drm] nouveau 0000:01:00.0: Saving VGA fonts +[ 4.518649] usb 2-1: new low speed USB device using ohci_hcd and address 2 +[ 4.520639] [drm] nouveau 0000:01:00.0: Detected a VGA connector +[ 4.520779] [drm] nouveau 0000:01:00.0: Detected a DVI-I connector +[ 4.520866] [drm] nouveau 0000:01:00.0: Detected a TV connector +[ 4.522857] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0) +[ 4.522862] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1) +[ 4.522865] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 2) +[ 4.522869] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 3) +[ 4.716507] [drm] nouveau 0000:01:00.0: allocated 1280x1024 fb: 0x49000, bo f6a28800 +[ 4.728386] [drm] nouveau 0000:01:00.0: Output DVI-I-1 is running on CRTC 0 using output A +[ 4.728391] [drm] nouveau 0000:01:00.0: 0xCD06: Parsing digital output script table +[ 4.784047] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on tmds encoder (output 2) +[ 4.784053] [drm] nouveau 0000:01:00.0: Output DVI-I-1 is running on CRTC 0 using output A +[ 4.785242] Console: switching to colour frame buffer device 160x64 +[ 4.786960] fb0: nouveaufb frame buffer device +[ 4.786962] drm: registered panic notifier +[ 4.786965] Slow work thread pool: Starting up +[ 4.789197] usbcore: registered new interface driver hiddev +[ 4.789616] usbcore: registered new interface driver usbhid +[ 4.789619] usbhid: USB HID core driver +[ 4.789629] Slow work thread pool: Ready +[ 4.789639] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0 +[ 4.884023] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 4.892195] ata3.00: ATA-7: SAMSUNG SP1614C, SW100-30, max UDMA7 +[ 4.892199] ata3.00: 312581808 sectors, multi 16: LBA48 +[ 4.900224] ata3.00: configured for UDMA/133 +[ 4.900327] scsi 3:0:0:0: Direct-Access ATA SAMSUNG SP1614C SW10 PQ: 0 ANSI: 5 +[ 4.900498] sd 3:0:0:0: Attached scsi generic sg1 type 0 +[ 4.901782] sd 3:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB) +[ 4.901835] sd 3:0:0:0: [sda] Write Protect is off +[ 4.901839] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 4.901861] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 4.902013] sda: sda1 sda2 < sda5 sda6 > +[ 4.945657] sd 3:0:0:0: [sda] Attached SCSI disk +[ 4.984865] scsi 2:0:0:0: Direct-Access SAMSUNG HM500JI PQ: 0 ANSI: 2 +[ 4.985261] sd 2:0:0:0: Attached scsi generic sg2 type 0 +[ 4.986973] sd 2:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 4.989216] sd 2:0:0:0: [sdb] Write Protect is off +[ 4.989219] sd 2:0:0:0: [sdb] Mode Sense: 38 00 00 00 +[ 4.989222] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 4.992339] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 4.992349] sdb: +[ 5.068021] usb 3-3: new full speed USB device using ohci_hcd and address 2 +[ 5.302520] input: Microsoft Microsoft® Nano Transceiver v1.0 as /devices/pci0000:00/0000:00:02.1/usb3/3-3/3-3:1.0/input/input2 +[ 5.302863] generic-usb 0003:045E:0745.0003: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® Nano Transceiver v1.0] on usb-0000:00:02.1-3/input0 +[ 5.313777] input: Microsoft Microsoft® Nano Transceiver v1.0 as /devices/pci0000:00/0000:00:02.1/usb3/3-3/3-3:1.1/input/input3 +[ 5.314180] generic-usb 0003:045E:0745.0004: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® Nano Transceiver v1.0] on usb-0000:00:02.1-3/input1 +[ 5.342329] input: Microsoft Microsoft® Nano Transceiver v1.0 as /devices/pci0000:00/0000:00:02.1/usb3/3-3/3-3:1.2/input/input4 +[ 5.342967] generic-usb 0003:045E:0745.0005: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® Nano Transceiver v1.0] on usb-0000:00:02.1-3/input2 +[ 5.368023] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 5.408850] ata4.00: ATA-7: ST3200827AS, 3.AAH, max UDMA/133 +[ 5.408854] ata4.00: 390721968 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 5.475505] ata4.00: configured for UDMA/133 +[ 5.475634] scsi 4:0:0:0: Direct-Access ATA ST3200827AS 3.AA PQ: 0 ANSI: 5 +[ 5.475796] sd 4:0:0:0: Attached scsi generic sg3 type 0 +[ 5.476047] sd 4:0:0:0: [sdc] 390721968 512-byte logical blocks: (200 GB/186 GiB) +[ 5.476097] sd 4:0:0:0: [sdc] Write Protect is off +[ 5.476100] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00 +[ 5.476122] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 5.476266] sdc: sdc1 +[ 5.516042] sd 4:0:0:0: [sdc] Attached SCSI disk +[ 8.255289] sdb1 +[ 8.259147] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 8.259153] sd 2:0:0:0: [sdb] Attached SCSI disk +[ 8.261079] vga16fb: initializing +[ 8.261085] vga16fb: mapped to 0xc00a0000 +[ 8.261154] fb1: VGA16 VGA frame buffer device +[ 8.288000] input: Microsoft Natural® Ergonomic Keyboard 4000 as /devices/pci0000:00/0000:00:02.0/usb2/2-1/2-1:1.0/input/input5 +[ 8.288111] microsoft 0003:045E:00DB.0001: input,hidraw3: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-1/input0 +[ 8.305829] input: Microsoft Natural® Ergonomic Keyboard 4000 as /devices/pci0000:00/0000:00:02.0/usb2/2-1/2-1:1.1/input/input6 +[ 8.306012] microsoft 0003:045E:00DB.0002: input,hidraw4: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-1/input1 +[ 8.970296] xor: automatically using best checksumming function: pIII_sse +[ 8.988005] pIII_sse : 6401.000 MB/sec +[ 8.988008] xor: using function: pIII_sse (6401.000 MB/sec) +[ 8.992671] device-mapper: dm-raid45: initialized v0.2594b +[ 10.449079] EXT3-fs: barriers not enabled +[ 10.454195] kjournald starting. Commit interval 5 seconds +[ 10.454305] EXT3-fs (sdc1): mounted filesystem with ordered data mode +[ 11.478089] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.478095] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.478100] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.478107] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.478115] end_request: I/O error, dev sr0, sector 1407320 +[ 11.478120] Buffer I/O error on device sr0, logical block 175915 +[ 11.543593] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.543599] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.543603] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.543610] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.543618] end_request: I/O error, dev sr0, sector 1407320 +[ 11.543622] Buffer I/O error on device sr0, logical block 175915 +[ 11.609105] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.609110] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.609115] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.609121] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.609129] end_request: I/O error, dev sr0, sector 1407320 +[ 11.609133] Buffer I/O error on device sr0, logical block 175915 +[ 11.674627] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.674632] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.674637] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.674644] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.674651] end_request: I/O error, dev sr0, sector 1407320 +[ 11.674656] Buffer I/O error on device sr0, logical block 175915 +[ 11.740111] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.740116] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.740121] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.740127] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.740135] end_request: I/O error, dev sr0, sector 1407320 +[ 11.740139] Buffer I/O error on device sr0, logical block 175915 +[ 11.805668] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.805673] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.805678] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.805684] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.805692] end_request: I/O error, dev sr0, sector 1407320 +[ 11.805696] Buffer I/O error on device sr0, logical block 175915 +[ 11.871154] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.871160] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.871164] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.871171] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.871179] end_request: I/O error, dev sr0, sector 1407320 +[ 11.871183] Buffer I/O error on device sr0, logical block 175915 +[ 11.974095] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 11.974101] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 11.974105] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 11.974112] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 11.974120] end_request: I/O error, dev sr0, sector 1407320 +[ 11.974125] Buffer I/O error on device sr0, logical block 175915 +[ 12.042973] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 12.042979] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 12.042983] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 12.042990] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 12.042998] end_request: I/O error, dev sr0, sector 1407320 +[ 12.043002] Buffer I/O error on device sr0, logical block 175915 +[ 12.105100] sr 0:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE +[ 12.105105] sr 0:0:0:0: [sr0] Sense Key : Illegal Request [current] +[ 12.105110] sr 0:0:0:0: [sr0] Add. Sense: Illegal mode for this track +[ 12.105116] sr 0:0:0:0: [sr0] CDB: Read(10): 28 00 00 05 5e 56 00 00 02 00 +[ 12.105124] end_request: I/O error, dev sr0, sector 1407320 +[ 12.105128] Buffer I/O error on device sr0, logical block 175915 +[ 12.605817] ISO 9660 Extensions: Microsoft Joliet Level 3 +[ 12.634480] ISO 9660 Extensions: RRIP_1991A +[ 12.730259] aufs 2-standalone.tree-35-rcN-20100531 +[ 12.800385] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 51.794179] BUG: unable to handle kernel paging request at f815b540 +[ 51.794186] IP: [] driver_register+0xfe/0x130 +[ 51.794196] *pde = 3701b067 *pte = 00000000 +[ 51.794200] Oops: 0000 [#1] SMP +[ 51.794203] last sysfs file: /sys/devices/virtual/tty/tty40/uevent +[ 51.794207] Modules linked in: amd64_agp(+) squashfs aufs isofs nls_iso8859_1 nls_cp437 vfat fat dm_raid45 xor hid_microsoft vga16fb vgastate usbhid hid nouveau ttm drm_kms_helper usb_storage drm floppy forcedeth sata_nv pata_amd i2c_algo_bit agpgart +[ 51.794224] +[ 51.794228] Pid: 818, comm: modprobe Not tainted 2.6.35-6-generic #8-Ubuntu 'K8N-E-Deluxe'/K8N-E-Deluxe +[ 51.794232] EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +[ 51.794235] EIP is at driver_register+0xfe/0x130 +[ 51.794238] EAX: f815b510 EBX: 00000000 ECX: f801f419 EDX: f685eae0 +[ 51.794240] ESI: f801f510 EDI: c03716d0 EBP: f5471f34 ESP: f5471f18 +[ 51.794243] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 51.794246] Process modprobe (pid: 818, ti=f5470000 task=f689cc20 task.ti=f5470000) +[ 51.794248] Stack: +[ 51.794249] 00000001 f801f780 00000000 c07e0ce0 f801f4e0 f801f780 f801f510 f5471f48 +[ 51.794255] <0> c03719d5 b7779000 f801f780 00000000 f5471f54 f802202c 00000000 f5471f5c +[ 51.794261] <0> f80220a8 f5471f88 c0101131 f801f780 c07df060 b7779000 f801f780 08bdd1c0 +[ 51.794267] Call Trace: +[ 51.794273] [] ? __pci_register_driver+0x45/0xb0 +[ 51.794279] [] ? agp_amd64_init+0x2c/0xa0 [amd64_agp] +[ 51.794283] [] ? agp_amd64_mod_init+0x8/0xa [amd64_agp] +[ 51.794287] [] ? do_one_initcall+0x31/0x190 +[ 51.794292] [] ? agp_amd64_mod_init+0x0/0xa [amd64_agp] +[ 51.794298] [] ? sys_init_module+0x9b/0x1e0 +[ 51.794303] [] ? sys_close+0x75/0xc0 +[ 51.794307] [] ? syscall_call+0x7/0xb +[ 51.794310] Code: 89 f0 e8 86 ea ff ff 83 c4 10 89 f8 5b 5e 5f 5d c3 8b 06 c7 04 24 08 61 77 c0 89 44 24 04 e8 78 5b 1c 00 8b 56 04 e9 56 ff ff ff <8b> 40 30 bf f0 ff ff ff e8 f5 14 f5 ff 8b 06 c7 04 24 48 61 77 +[ 51.794339] EIP: [] driver_register+0xfe/0x130 SS:ESP 0068:f5471f18 +[ 51.794343] CR2: 00000000f815b540 +[ 51.794347] ---[ end trace b0e79d93b419a19b ]--- +[ 62.906860] udev: starting version 151 +[ 64.072496] WARNING! power/level is deprecated; use power/control instead +[ 65.457986] ACPI: resource nForce2_smbus [io 0x5000-0x503f] conflicts with ACPI region SMRG [??? 0x00005000-0x00005004 flags 0x47] +[ 65.457992] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver +[ 65.458069] i2c i2c-2: nForce2 SMBus adapter at 0x5040 +[ 65.681422] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 66.417809] psmouse serio1: ID: 10 00 64 +[ 67.022338] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7 +[ 69.484126] usblp0: USB Bidirectional printer dev 3 if 1 alt 0 proto 2 vid 0x04E8 pid 0x341B +[ 69.484573] usbcore: registered new interface driver usblp +[ 70.022782] ACPI: PCI Interrupt Link [LAUI] enabled at IRQ 20 +[ 70.022790] Intel ICH 0000:00:06.0: PCI INT A -> Link[LAUI] -> GSI 20 (level, low) -> IRQ 20 +[ 70.022825] Intel ICH 0000:00:06.0: setting latency timer to 64 +[ 70.344013] intel8x0_measure_ac97_clock: measured 52639 usecs (2584 samples) +[ 70.344017] intel8x0: clocking to 46935 + +Bug: 602373 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-6-generic (buildd@vernadsky) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu1) ) #9-Ubuntu SMP Wed Jun 30 23:09:46 UTC 2010 (Ubuntu 2.6.35-6.9-generic 2.6.35-rc3) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000007f4fd000 (usable) +[ 0.000000] BIOS-e820: 000000007f4fd000 - 000000007f508000 (reserved) +[ 0.000000] BIOS-e820: 000000007f508000 - 000000007f552000 (usable) +[ 0.000000] BIOS-e820: 000000007f552000 - 000000007f555000 (reserved) +[ 0.000000] BIOS-e820: 000000007f555000 - 000000007f5bb000 (usable) +[ 0.000000] BIOS-e820: 000000007f5bb000 - 000000007f5bf000 (reserved) +[ 0.000000] BIOS-e820: 000000007f5bf000 - 000000007f670000 (usable) +[ 0.000000] BIOS-e820: 000000007f670000 - 000000007f6bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000007f6bf000 - 000000007f700000 (ACPI data) +[ 0.000000] BIOS-e820: 000000007f700000 - 0000000080000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x7f670 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0FFFE0000 mask FFFFE0000 write-protect +[ 0.000000] 1 base 000000000 mask FC0000000 write-back +[ 0.000000] 2 base 040000000 mask FC0000000 write-back +[ 0.000000] 3 base 07F800000 mask FFF800000 uncachable +[ 0.000000] 4 base 07F700000 mask FFFF00000 uncachable +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000007f4fd000 (usable) +[ 0.000000] modified: 000000007f4fd000 - 000000007f508000 (reserved) +[ 0.000000] modified: 000000007f508000 - 000000007f552000 (usable) +[ 0.000000] modified: 000000007f552000 - 000000007f555000 (reserved) +[ 0.000000] modified: 000000007f555000 - 000000007f5bb000 (usable) +[ 0.000000] modified: 000000007f5bb000 - 000000007f5bf000 (reserved) +[ 0.000000] modified: 000000007f5bf000 - 000000007f670000 (usable) +[ 0.000000] modified: 000000007f670000 - 000000007f6bf000 (ACPI NVS) +[ 0.000000] modified: 000000007f6bf000 - 000000007f700000 (ACPI data) +[ 0.000000] modified: 000000007f700000 - 0000000080000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00fe1b0] fe1b0 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 375d0000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 009ba000 - 013d90b3 +[ 0.000000] Move RAMDISK from 00000000375d0000 - 0000000037fef0b2 to 009ba000 - 013d90b2 +[ 0.000000] ACPI: RSDP 000fe020 00024 (v02 ACRSYS) +[ 0.000000] ACPI: XSDT 7f6fe120 00064 (v01 ACRSYS ACRPRDCT 00000001 01000013) +[ 0.000000] ACPI: FACP 7f6fd000 000F4 (v04 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT 7f6f4000 08968 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS 7f675000 00040 +[ 0.000000] ACPI: APIC 7f6f3000 00068 (v02 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG 7f6f2000 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC 7f6f1000 00176 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: HPET 7f6f0000 00038 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 7f6ef000 004C4 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: SSDT 7f6ee000 00232 (v01 PmRef Cpu0Tst 00003000 INTL 20051117) +[ 0.000000] ACPI: SSDT 7f6ed000 000A0 (v01 PmRef Cpu1Tst 00003000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 1150MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0007f670 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[6] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0007f4fd +[ 0.000000] 0: 0x0007f508 -> 0x0007f552 +[ 0.000000] 0: 0x0007f555 -> 0x0007f5bb +[ 0.000000] 0: 0x0007f5bf -> 0x0007f670 +[ 0.000000] On node 0 totalpages: 521710 +[ 0.000000] free_area_init_node: node 0, pgdat c08156c0, node_mem_map c13db020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3952 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 2301 pages used for memmap +[ 0.000000] HighMem zone: 292195 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2400000 s36480 r0 d20864 u2097152 +[ 0.000000] pcpu-alloc: s36480 r0 d20864 u2097152 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] early_res array is doubled to 128 at [16800 - 177ff] +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517633 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-6-generic root=UUID=a0909540-5401-4b7b-ab97-d5ba7e129d27 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 10436780 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (59 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009b591c] TEXT DATA BSS +[ 0.000000] #3 [00009b6000 - 00009b91a8] BRK +[ 0.000000] #4 [000009fc00 - 00000fe1b0] BIOS reserved +[ 0.000000] #5 [00000fe1b0 - 00000fe1c0] MP-table mpf +[ 0.000000] #6 [00000fe1c0 - 00000feab0] BIOS reserved +[ 0.000000] #7 [00000febf8 - 0000100000] BIOS reserved +[ 0.000000] #8 [00000feab0 - 00000febf8] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #10 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #11 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #12 [00009ba000 - 00013da000] NEW RAMDISK +[ 0.000000] #13 [00013da000 - 00013db000] BOOTMEM +[ 0.000000] #14 [00013db000 - 00023cb000] BOOTMEM +[ 0.000000] #15 [00023cb000 - 00023cb004] BOOTMEM +[ 0.000000] #16 [00023cb040 - 00023cb100] BOOTMEM +[ 0.000000] #17 [00023cb100 - 00023cb154] BOOTMEM +[ 0.000000] #18 [00023cb180 - 00023ce180] BOOTMEM +[ 0.000000] #19 [00023ce180 - 00023ce1ec] BOOTMEM +[ 0.000000] #20 [00023ce200 - 00023d4200] BOOTMEM +[ 0.000000] #21 [00023d4200 - 00023d4225] BOOTMEM +[ 0.000000] #22 [00023d4240 - 00023d4267] BOOTMEM +[ 0.000000] #23 [00023d4280 - 00023d44e8] BOOTMEM +[ 0.000000] #24 [00023d4500 - 00023d4540] BOOTMEM +[ 0.000000] #25 [00023d4540 - 00023d4580] BOOTMEM +[ 0.000000] #26 [00023d4580 - 00023d45c0] BOOTMEM +[ 0.000000] #27 [00023d45c0 - 00023d4600] BOOTMEM +[ 0.000000] #28 [00023d4600 - 00023d4640] BOOTMEM +[ 0.000000] #29 [00023d4640 - 00023d4680] BOOTMEM +[ 0.000000] #30 [00023d4680 - 00023d46c0] BOOTMEM +[ 0.000000] #31 [00023d46c0 - 00023d4700] BOOTMEM +[ 0.000000] #32 [00023d4700 - 00023d4740] BOOTMEM +[ 0.000000] #33 [00023d4740 - 00023d4780] BOOTMEM +[ 0.000000] #34 [00023d4780 - 00023d47c0] BOOTMEM +[ 0.000000] #35 [00023d47c0 - 00023d4800] BOOTMEM +[ 0.000000] #36 [00023d4800 - 00023d4840] BOOTMEM +[ 0.000000] #37 [00023d4840 - 00023d4880] BOOTMEM +[ 0.000000] #38 [00023d4880 - 00023d48c0] BOOTMEM +[ 0.000000] #39 [00023d48c0 - 00023d4900] BOOTMEM +[ 0.000000] #40 [00023d4900 - 00023d4940] BOOTMEM +[ 0.000000] #41 [00023d4940 - 00023d4980] BOOTMEM +[ 0.000000] #42 [00023d4980 - 00023d49c0] BOOTMEM +[ 0.000000] #43 [00023d49c0 - 00023d49d0] BOOTMEM +[ 0.000000] #44 [00023d4a00 - 00023d4a10] BOOTMEM +[ 0.000000] #45 [00023d4a40 - 00023d4aa9] BOOTMEM +[ 0.000000] #46 [00023d4ac0 - 00023d4b29] BOOTMEM +[ 0.000000] #47 [0002400000 - 000240e000] BOOTMEM +[ 0.000000] #48 [0002600000 - 000260e000] BOOTMEM +[ 0.000000] #49 [00023d6b40 - 00023d6b44] BOOTMEM +[ 0.000000] #50 [00023d6b80 - 00023d6b84] BOOTMEM +[ 0.000000] #51 [00023d6bc0 - 00023d6bc8] BOOTMEM +[ 0.000000] #52 [00023d6c00 - 00023d6c08] BOOTMEM +[ 0.000000] #53 [00023d6c40 - 00023d6ce8] BOOTMEM +[ 0.000000] #54 [00023d6d00 - 00023d6d68] BOOTMEM +[ 0.000000] #55 [00023d6d80 - 00023dad80] BOOTMEM +[ 0.000000] #56 [000240e000 - 000248e000] BOOTMEM +[ 0.000000] #57 [000248e000 - 00024ce000] BOOTMEM +[ 0.000000] #58 [000260e000 - 00030020ac] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0007f670) +[ 0.000000] Memory: 2040048k/2087360k available (4947k kernel code, 46792k reserved, 2404k data, 684k init, 1177984k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc082e000 - 0xc08d9000 ( 684 kB) +[ 0.000000] .data : 0xc05d4f72 - 0xc082dfe8 (2404 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d4f72 (4947 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:512 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1595.742 MHz processor. +[ 0.004007] Calibrating delay loop (skipped), value calculated using timer frequency.. 3191.48 BogoMIPS (lpj=6382968) +[ 0.004014] pid_max: default: 32768 minimum: 301 +[ 0.004038] Security Framework initialized +[ 0.004061] AppArmor: AppArmor initialized +[ 0.004122] Mount-cache hash table entries: 512 +[ 0.004294] Initializing cgroup subsys ns +[ 0.004300] Initializing cgroup subsys cpuacct +[ 0.004306] Initializing cgroup subsys memory +[ 0.004317] Initializing cgroup subsys devices +[ 0.004320] Initializing cgroup subsys freezer +[ 0.004323] Initializing cgroup subsys net_cls +[ 0.004358] CPU: Physical Processor ID: 0 +[ 0.004361] CPU: Processor Core ID: 0 +[ 0.004364] mce: CPU supports 6 MCE banks +[ 0.004375] CPU0: Thermal monitoring enabled (TM1) +[ 0.004380] using mwait in idle threads. +[ 0.004389] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.004397] PEBS disabled due to CPU errata. +[ 0.004406] ... version: 2 +[ 0.004408] ... bit width: 40 +[ 0.004411] ... generic registers: 2 +[ 0.004413] ... value mask: 000000ffffffffff +[ 0.004416] ... max period: 000000007fffffff +[ 0.004419] ... fixed-purpose events: 3 +[ 0.004421] ... event mask: 0000000700000003 +[ 0.008154] ACPI: Core revision 20100428 +[ 0.024012] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.024018] ftrace: allocating 21765 entries in 43 pages +[ 0.028069] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.028460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.068697] CPU0: Intel(R) Pentium(R) Dual CPU T2330 @ 1.60GHz stepping 0d +[ 0.072000] Booting Node 0, Processors #1 Ok. +[ 0.008000] Initializing CPU#1 +[ 0.160020] Brought up 2 CPUs +[ 0.160024] Total of 2 processors activated (6383.44 BogoMIPS). +[ 0.160520] devtmpfs: initialized +[ 0.161283] regulator: core version 0.5 +[ 0.161321] Time: 13:37:31 Date: 07/06/10 +[ 0.161374] NET: Registered protocol family 16 +[ 0.161406] Trying to unpack rootfs image as initramfs... +[ 0.161548] EISA bus registered +[ 0.161559] ACPI: bus type pci registered +[ 0.161657] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.161662] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.161664] PCI: Using MMCONFIG for extended config space +[ 0.161667] PCI: Using configuration type 1 for base access +[ 0.168179] bio: create slab at 0 +[ 0.171124] ACPI: EC: Look up EC in DSDT +[ 0.177690] ACPI: BIOS _OSI(Linux) query ignored +[ 0.188602] ACPI: SSDT 7f674c90 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.189735] ACPI: Dynamic OEM Table Load: +[ 0.189740] ACPI: SSDT (null) 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.190161] ACPI: SSDT 7f673610 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.190927] ACPI: Dynamic OEM Table Load: +[ 0.190932] ACPI: SSDT (null) 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.191514] ACPI: SSDT 7f674f10 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117) +[ 0.192306] ACPI: Dynamic OEM Table Load: +[ 0.192311] ACPI: SSDT (null) 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117) +[ 0.192520] ACPI: SSDT 7f676d10 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117) +[ 0.193288] ACPI: Dynamic OEM Table Load: +[ 0.193293] ACPI: SSDT (null) 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117) +[ 0.212260] ACPI: Interpreter enabled +[ 0.212268] ACPI: (supports S0 S3 S4 S5) +[ 0.212307] ACPI: Using IOAPIC for interrupt routing +[ 0.438992] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.439490] ACPI: No dock devices found. +[ 0.439495] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.440405] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.440418] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.440420] _OSC request data:1 8 1f +[ 0.440428] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.441903] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.441908] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.441913] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.441919] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff] +[ 0.442016] pci 0000:00:02.0: reg 10: [mem 0x94000000-0x940fffff 64bit] +[ 0.442027] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff 64bit pref] +[ 0.442034] pci 0000:00:02.0: reg 20: [io 0x5110-0x5117] +[ 0.442091] pci 0000:00:02.1: reg 10: [mem 0x00000000-0x000fffff 64bit] +[ 0.442240] pci 0000:00:1a.0: reg 20: [io 0x50c0-0x50df] +[ 0.442320] pci 0000:00:1a.1: reg 20: [io 0x50a0-0x50bf] +[ 0.442400] pci 0000:00:1a.7: reg 10: [mem 0x98404c00-0x98404fff] +[ 0.442480] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.442488] pci 0000:00:1a.7: PME# disabled +[ 0.442544] pci 0000:00:1b.0: reg 10: [mem 0x98400000-0x98403fff 64bit] +[ 0.442624] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.442631] pci 0000:00:1b.0: PME# disabled +[ 0.442760] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.442766] pci 0000:00:1c.0: PME# disabled +[ 0.442897] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.442903] pci 0000:00:1c.1: PME# disabled +[ 0.443034] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.443040] pci 0000:00:1c.2: PME# disabled +[ 0.443176] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.443183] pci 0000:00:1c.3: PME# disabled +[ 0.443265] pci 0000:00:1d.0: reg 20: [io 0x5080-0x509f] +[ 0.443345] pci 0000:00:1d.1: reg 20: [io 0x5060-0x507f] +[ 0.443427] pci 0000:00:1d.2: reg 20: [io 0x5040-0x505f] +[ 0.443504] pci 0000:00:1d.7: reg 10: [mem 0x98404800-0x98404bff] +[ 0.443585] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.443592] pci 0000:00:1d.7: PME# disabled +[ 0.443796] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.443802] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO +[ 0.443810] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at ff2c (mask 0003) +[ 0.443816] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0068 (mask 0007) +[ 0.443881] pci 0000:00:1f.1: reg 10: [io 0x5108-0x510f] +[ 0.443892] pci 0000:00:1f.1: reg 14: [io 0x5124-0x5127] +[ 0.443902] pci 0000:00:1f.1: reg 18: [io 0x5100-0x5107] +[ 0.443912] pci 0000:00:1f.1: reg 1c: [io 0x5120-0x5123] +[ 0.443922] pci 0000:00:1f.1: reg 20: [io 0x50e0-0x50ef] +[ 0.444011] pci 0000:00:1f.2: reg 10: [io 0x50f8-0x50ff] +[ 0.444022] pci 0000:00:1f.2: reg 14: [io 0x511c-0x511f] +[ 0.444032] pci 0000:00:1f.2: reg 18: [io 0x50f0-0x50f7] +[ 0.444042] pci 0000:00:1f.2: reg 1c: [io 0x5118-0x511b] +[ 0.444052] pci 0000:00:1f.2: reg 20: [io 0x5020-0x503f] +[ 0.444062] pci 0000:00:1f.2: reg 24: [mem 0x98404000-0x984047ff] +[ 0.444116] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.444122] pci 0000:00:1f.2: PME# disabled +[ 0.444165] pci 0000:00:1f.3: reg 10: [mem 0x98405000-0x984050ff] +[ 0.444197] pci 0000:00:1f.3: reg 20: [io 0x5000-0x501f] +[ 0.444308] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.444315] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.444323] pci 0000:00:1c.0: bridge window [mem 0x97400000-0x983fffff] +[ 0.444333] pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.444410] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.444417] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.444424] pci 0000:00:1c.1: bridge window [mem 0x96400000-0x973fffff] +[ 0.444435] pci 0000:00:1c.1: bridge window [mem 0x91000000-0x91ffffff 64bit pref] +[ 0.444579] pci 0000:05:00.0: reg 10: [mem 0x95300000-0x9530ffff 64bit] +[ 0.444704] pci 0000:05:00.0: PME# supported from D3hot D3cold +[ 0.444711] pci 0000:05:00.0: PME# disabled +[ 0.452037] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.452046] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.452053] pci 0000:00:1c.2: bridge window [mem 0x95300000-0x963fffff] +[ 0.452064] pci 0000:00:1c.2: bridge window [mem 0x92000000-0x92ffffff 64bit pref] +[ 0.452201] pci 0000:06:00.0: reg 10: [mem 0x94200000-0x9420ffff 64bit] +[ 0.452350] pci 0000:06:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.452366] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.452373] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.452380] pci 0000:00:1c.3: bridge window [mem 0x94200000-0x952fffff] +[ 0.452390] pci 0000:00:1c.3: bridge window [mem 0x93000000-0x93ffffff 64bit pref] +[ 0.452469] pci 0000:07:00.0: reg 10: [mem 0x94100000-0x941007ff] +[ 0.452545] pci 0000:07:00.0: supports D1 D2 +[ 0.452548] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.452555] pci 0000:07:00.0: PME# disabled +[ 0.452601] pci 0000:07:00.1: reg 10: [mem 0x94100a00-0x94100aff] +[ 0.452677] pci 0000:07:00.1: supports D1 D2 +[ 0.452680] pci 0000:07:00.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.452686] pci 0000:07:00.1: PME# disabled +[ 0.452733] pci 0000:07:00.2: reg 10: [mem 0x94100900-0x941009ff] +[ 0.452811] pci 0000:07:00.2: supports D1 D2 +[ 0.452814] pci 0000:07:00.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.452820] pci 0000:07:00.2: PME# disabled +[ 0.452867] pci 0000:07:00.3: reg 10: [mem 0x94100800-0x941008ff] +[ 0.452942] pci 0000:07:00.3: supports D1 D2 +[ 0.452945] pci 0000:07:00.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.452952] pci 0000:07:00.3: PME# disabled +[ 0.453043] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode) +[ 0.453051] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.453058] pci 0000:00:1e.0: bridge window [mem 0x94100000-0x941fffff] +[ 0.453068] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.453072] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.453076] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.453080] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.453083] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode) +[ 0.453127] pci_bus 0000:00: on NUMA node 0 +[ 0.453143] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.453489] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT] +[ 0.453679] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT] +[ 0.453809] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT] +[ 0.453939] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT] +[ 0.454268] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.454280] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.454282] _OSC request data:1 1f 1f +[ 0.468538] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.468715] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.468888] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.469069] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.469242] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled. +[ 0.469416] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12) +[ 0.469588] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.469759] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.469857] HEST: Table is not found! +[ 0.469960] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.469988] vgaarb: loaded +[ 0.470219] SCSI subsystem initialized +[ 0.470336] libata version 3.00 loaded. +[ 0.470411] usbcore: registered new interface driver usbfs +[ 0.470428] usbcore: registered new interface driver hub +[ 0.470462] usbcore: registered new device driver usb +[ 0.471102] ACPI: WMI: Mapper loaded +[ 0.471106] PCI: Using ACPI for IRQ routing +[ 0.471110] PCI: pci_cache_line_size set to 64 bytes +[ 0.471283] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.471287] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.471290] reserve RAM buffer: 000000007f4fd000 - 000000007fffffff +[ 0.471295] reserve RAM buffer: 000000007f552000 - 000000007fffffff +[ 0.471300] reserve RAM buffer: 000000007f5bb000 - 000000007fffffff +[ 0.471304] reserve RAM buffer: 000000007f670000 - 000000007fffffff +[ 0.471432] NetLabel: Initializing +[ 0.471434] NetLabel: domain hash size = 128 +[ 0.471437] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.471453] NetLabel: unlabeled traffic allowed by default +[ 0.471503] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.471512] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.471518] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.480052] Switching to clocksource tsc +[ 0.495213] AppArmor: AppArmor Filesystem Enabled +[ 0.495238] pnp: PnP ACPI init +[ 0.495264] ACPI: bus type pnp registered +[ 0.496803] pnp 00:01: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.3 BAR 13 [io 0x1000-0x1fff] +[ 0.507980] Freeing initrd memory: 10368k freed +[ 0.604477] pnp: PnP ACPI: found 10 devices +[ 0.604482] ACPI: ACPI bus type pnp unregistered +[ 0.604488] PnPBIOS: Disabled by ACPI PNP +[ 0.604509] system 00:01: [io 0x0600-0x060f] has been reserved +[ 0.604514] system 00:01: [io 0x0610] has been reserved +[ 0.604517] system 00:01: [io 0x0800-0x080f] has been reserved +[ 0.604521] system 00:01: [io 0x0810-0x0817] has been reserved +[ 0.604525] system 00:01: [io 0x0400-0x047f] has been reserved +[ 0.604529] system 00:01: [io 0x0500-0x053f] has been reserved +[ 0.604536] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.604540] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.604544] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.604548] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.604552] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.604557] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.604561] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.604565] system 00:01: [mem 0x32000000-0x320000ff] could not be reserved +[ 0.639468] pci 0000:00:02.1: BAR 0: assigned [mem 0x98500000-0x985fffff 64bit] +[ 0.639477] pci 0000:00:02.1: BAR 0: set to [mem 0x98500000-0x985fffff 64bit] (PCI address [0x98500000-0x985fffff] +[ 0.639481] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.639486] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.639495] pci 0000:00:1c.0: bridge window [mem 0x97400000-0x983fffff] +[ 0.639501] pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.639511] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.639516] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.639524] pci 0000:00:1c.1: bridge window [mem 0x96400000-0x973fffff] +[ 0.639531] pci 0000:00:1c.1: bridge window [mem 0x91000000-0x91ffffff 64bit pref] +[ 0.639541] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.639547] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.639555] pci 0000:00:1c.2: bridge window [mem 0x95300000-0x963fffff] +[ 0.639562] pci 0000:00:1c.2: bridge window [mem 0x92000000-0x92ffffff 64bit pref] +[ 0.639572] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.639577] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.639585] pci 0000:00:1c.3: bridge window [mem 0x94200000-0x952fffff] +[ 0.639592] pci 0000:00:1c.3: bridge window [mem 0x93000000-0x93ffffff 64bit pref] +[ 0.639603] pci 0000:00:1e.0: PCI bridge to [bus 07-07] +[ 0.639605] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.639614] pci 0000:00:1e.0: bridge window [mem 0x94100000-0x941fffff] +[ 0.639620] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.639645] alloc irq_desc for 16 on node -1 +[ 0.639647] alloc kstat_irqs on node -1 +[ 0.639656] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.639664] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.639677] alloc irq_desc for 17 on node -1 +[ 0.639680] alloc kstat_irqs on node -1 +[ 0.639685] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.639692] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.639705] alloc irq_desc for 18 on node -1 +[ 0.639708] alloc kstat_irqs on node -1 +[ 0.639713] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.639719] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.639732] alloc irq_desc for 19 on node -1 +[ 0.639735] alloc kstat_irqs on node -1 +[ 0.639740] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.639746] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.639758] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.639771] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.639775] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.639778] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.639781] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff] +[ 0.639785] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff] +[ 0.639788] pci_bus 0000:02: resource 1 [mem 0x97400000-0x983fffff] +[ 0.639791] pci_bus 0000:02: resource 2 [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.639795] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.639798] pci_bus 0000:04: resource 1 [mem 0x96400000-0x973fffff] +[ 0.639801] pci_bus 0000:04: resource 2 [mem 0x91000000-0x91ffffff 64bit pref] +[ 0.639805] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff] +[ 0.639808] pci_bus 0000:05: resource 1 [mem 0x95300000-0x963fffff] +[ 0.639811] pci_bus 0000:05: resource 2 [mem 0x92000000-0x92ffffff 64bit pref] +[ 0.639815] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff] +[ 0.639818] pci_bus 0000:06: resource 1 [mem 0x94200000-0x952fffff] +[ 0.639821] pci_bus 0000:06: resource 2 [mem 0x93000000-0x93ffffff 64bit pref] +[ 0.639825] pci_bus 0000:07: resource 1 [mem 0x94100000-0x941fffff] +[ 0.639828] pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7] +[ 0.639831] pci_bus 0000:07: resource 5 [io 0x0d00-0xffff] +[ 0.639835] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.639838] pci_bus 0000:07: resource 7 [mem 0x80000000-0xfebfffff] +[ 0.639893] NET: Registered protocol family 2 +[ 0.639984] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.640320] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.640869] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.641251] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.641255] TCP reno registered +[ 0.641260] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.641276] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.641423] NET: Registered protocol family 1 +[ 0.641452] pci 0000:00:02.0: Boot video device +[ 0.641879] PCI: CLS 0 bytes, default 64 +[ 0.642152] cpufreq-nforce2: No nForce2 chipset. +[ 0.642196] Scanning for low memory corruption every 60 seconds +[ 0.642391] audit: initializing netlink socket (disabled) +[ 0.642410] type=2000 audit(1278423451.636:1): initialized +[ 0.656383] highmem bounce pool size: 64 pages +[ 0.656390] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.658382] VFS: Disk quotas dquot_6.5.2 +[ 0.658470] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.659277] fuse init (API version 7.14) +[ 0.659398] msgmni has been set to 1703 +[ 0.659670] alg: No test for stdrng (krng) +[ 0.659745] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.659749] io scheduler noop registered +[ 0.659752] io scheduler deadline registered +[ 0.659774] io scheduler cfq registered (default) +[ 0.659952] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.660013] alloc irq_desc for 40 on node -1 +[ 0.660016] alloc kstat_irqs on node -1 +[ 0.660031] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.660160] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.660217] alloc irq_desc for 41 on node -1 +[ 0.660220] alloc kstat_irqs on node -1 +[ 0.660231] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.660358] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.660416] alloc irq_desc for 42 on node -1 +[ 0.660418] alloc kstat_irqs on node -1 +[ 0.660429] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.660552] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.660609] alloc irq_desc for 43 on node -1 +[ 0.660611] alloc kstat_irqs on node -1 +[ 0.660622] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.660758] pcieport 0000:00:1c.0: Requesting control of PCIe PME from ACPI BIOS +[ 0.660934] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.660948] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.660950] _OSC request data:1 0 1f +[ 0.660956] pcieport 0000:00:1c.0: Failed to receive control of PCIe PME service: ACPI _OSC failed +[ 0.660962] pcie_pme: probe of 0000:00:1c.0:pcie01 failed with error -13 +[ 0.660969] pcieport 0000:00:1c.1: Requesting control of PCIe PME from ACPI BIOS +[ 0.661105] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661116] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661118] _OSC request data:1 0 1f +[ 0.661125] pcieport 0000:00:1c.1: Failed to receive control of PCIe PME service: ACPI _OSC failed +[ 0.661130] pcie_pme: probe of 0000:00:1c.1:pcie01 failed with error -13 +[ 0.661136] pcieport 0000:00:1c.2: Requesting control of PCIe PME from ACPI BIOS +[ 0.661269] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661281] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661283] _OSC request data:1 0 1f +[ 0.661289] pcieport 0000:00:1c.2: Failed to receive control of PCIe PME service: ACPI _OSC failed +[ 0.661294] pcie_pme: probe of 0000:00:1c.2:pcie01 failed with error -13 +[ 0.661300] pcieport 0000:00:1c.3: Requesting control of PCIe PME from ACPI BIOS +[ 0.661432] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661443] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661446] _OSC request data:1 0 1f +[ 0.661452] pcieport 0000:00:1c.3: Failed to receive control of PCIe PME service: ACPI _OSC failed +[ 0.661457] pcie_pme: probe of 0000:00:1c.3:pcie01 failed with error -13 +[ 0.661487] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.661629] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661641] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661643] _OSC request data:1 0 1f +[ 0.661796] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661807] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661809] _OSC request data:1 0 1f +[ 0.661960] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.661971] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.661974] _OSC request data:1 0 1f +[ 0.662124] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.662135] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.662138] _OSC request data:1 0 1f +[ 0.662310] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.662322] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.662324] _OSC request data:1 0 1f +[ 0.662477] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.662489] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.662491] _OSC request data:1 0 1f +[ 0.662642] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.662654] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.662656] _OSC request data:1 0 1f +[ 0.662808] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.662819] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.662822] _OSC request data:1 0 1f +[ 0.662847] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.671895] ACPI: AC Adapter [AC] (on-line) +[ 0.672016] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0 +[ 0.672021] ACPI: Power Button [PWRB] +[ 0.672077] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1 +[ 0.672136] ACPI: Lid Switch [LID0] +[ 0.672196] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2 +[ 0.672200] ACPI: Sleep Button [SLPB] +[ 0.672272] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.672275] ACPI: Power Button [PWRF] +[ 0.672691] ACPI: acpi_idle registered with cpuidle +[ 0.675984] Monitor-Mwait will be used to enter C-1 state +[ 0.676013] Monitor-Mwait will be used to enter C-2 state +[ 0.676038] Monitor-Mwait will be used to enter C-3 state +[ 0.676045] Marking TSC unstable due to TSC halts in idle +[ 0.676105] Switching to clocksource hpet +[ 0.812074] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.812086] ACPI: Thermal Zone [TZ01] (40 C) +[ 0.812214] ERST: Table is not found! +[ 0.812269] isapnp: Scanning for PnP cards... +[ 0.814264] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.816216] brd: module loaded +[ 0.816935] loop: module loaded +[ 0.817189] ata_piix 0000:00:1f.1: version 2.13 +[ 0.817207] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.817260] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.817364] scsi0 : ata_piix +[ 0.817477] scsi1 : ata_piix +[ 0.818274] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x50e0 irq 14 +[ 0.818278] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x50e8 irq 15 +[ 0.818737] Fixed MDIO Bus: probed +[ 0.818787] PPP generic driver version 2.4.2 +[ 0.818840] tun: Universal TUN/TAP device driver, 1.6 +[ 0.818843] tun: (C) 1999-2004 Max Krasnyansky +[ 0.818942] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.818970] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.818994] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.818999] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.819039] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.819079] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.822963] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.822986] ehci_hcd 0000:00:1a.7: irq 18, io mem 0x98404c00 +[ 0.836019] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.836176] hub 1-0:1.0: USB hub found +[ 0.836183] hub 1-0:1.0: 4 ports detected +[ 0.836289] alloc irq_desc for 23 on node -1 +[ 0.836292] alloc kstat_irqs on node -1 +[ 0.836301] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.836317] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.836322] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.836370] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.836404] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.840299] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.840319] ehci_hcd 0000:00:1d.7: irq 23, io mem 0x98404800 +[ 0.856018] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.856151] hub 2-0:1.0: USB hub found +[ 0.856157] hub 2-0:1.0: 6 ports detected +[ 0.856264] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.856286] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.856325] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.856334] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.856339] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.856383] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.856427] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000050c0 +[ 0.856585] hub 3-0:1.0: USB hub found +[ 0.856591] hub 3-0:1.0: 2 ports detected +[ 0.856677] alloc irq_desc for 21 on node -1 +[ 0.856680] alloc kstat_irqs on node -1 +[ 0.856687] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.856696] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.856700] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.856749] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.856793] uhci_hcd 0000:00:1a.1: irq 21, io base 0x000050a0 +[ 0.856948] hub 4-0:1.0: USB hub found +[ 0.856954] hub 4-0:1.0: 2 ports detected +[ 0.857042] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.857051] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.857055] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.857096] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.857129] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00005080 +[ 0.857283] hub 5-0:1.0: USB hub found +[ 0.857288] hub 5-0:1.0: 2 ports detected +[ 0.857371] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.857379] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.857385] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.857428] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.857472] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00005060 +[ 0.857627] hub 6-0:1.0: USB hub found +[ 0.857633] hub 6-0:1.0: 2 ports detected +[ 0.857717] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.857725] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.857730] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.857775] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.857808] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040 +[ 0.857954] hub 7-0:1.0: USB hub found +[ 0.857960] hub 7-0:1.0: 2 ports detected +[ 0.858134] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 +[ 0.899751] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.899760] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.899841] mice: PS/2 mouse device common for all mice +[ 0.900026] rtc_cmos 00:03: RTC can wake from S4 +[ 0.900077] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.900114] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs +[ 0.900274] device-mapper: uevent: version 1.0.3 +[ 0.900415] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.901859] device-mapper: multipath: version 1.1.1 loaded +[ 0.901863] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.902017] EISA: Probing bus 0 at eisa.0 +[ 0.902020] EISA: Cannot allocate resource for mainboard +[ 0.902023] Cannot allocate resource for EISA slot 1 +[ 0.902026] Cannot allocate resource for EISA slot 2 +[ 0.902029] Cannot allocate resource for EISA slot 3 +[ 0.902031] Cannot allocate resource for EISA slot 4 +[ 0.902034] Cannot allocate resource for EISA slot 5 +[ 0.902036] Cannot allocate resource for EISA slot 6 +[ 0.902039] Cannot allocate resource for EISA slot 7 +[ 0.902041] Cannot allocate resource for EISA slot 8 +[ 0.902044] EISA: Detected 0 cards. +[ 0.902226] cpuidle: using governor ladder +[ 0.902370] cpuidle: using governor menu +[ 0.902818] TCP cubic registered +[ 0.902990] NET: Registered protocol family 10 +[ 0.903477] lo: Disabled Privacy Extensions +[ 0.903805] NET: Registered protocol family 17 +[ 0.904414] Using IPI No-Shortcut mode +[ 0.904521] PM: Resume from disk failed. +[ 0.904537] registered taskstats version 1 +[ 0.905043] Magic number: 2:415:634 +[ 0.905157] rtc_cmos 00:03: setting system clock to 2010-07-06 13:37:32 UTC (1278423452) +[ 0.905161] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.905163] EDD information not available. +[ 0.923476] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 0.995858] ata1.00: ATAPI: HL-DT-ST DVDRAM GSA-T20N, WP03, max UDMA/33 +[ 1.012323] ata1.00: configured for UDMA/33 +[ 1.166632] isapnp: No Plug & Play device found +[ 1.170231] scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20N WP03 PQ: 0 ANSI: 5 +[ 1.181243] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.181247] Uniform CD-ROM driver Revision: 3.20 +[ 1.181385] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 1.181459] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 1.181558] Freeing unused kernel memory: 684k freed +[ 1.182033] Write protecting the kernel text: 4948k +[ 1.182105] Write protecting the kernel read-only data: 2020k +[ 1.223979] udev: starting version 151 +[ 1.224092] usb 2-4: new high speed USB device using ehci_hcd and address 3 +[ 1.354048] tg3.c:v3.110 (April 9, 2010) +[ 1.354078] tg3 0000:05:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.354092] tg3 0000:05:00.0: setting latency timer to 64 +[ 1.419677] sdhci: Secure Digital Host Controller Interface driver +[ 1.419681] sdhci: Copyright(c) Pierre Ossman +[ 1.436407] ahci 0000:00:1f.2: version 3.0 +[ 1.436434] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.436500] alloc irq_desc for 44 on node -1 +[ 1.436503] alloc kstat_irqs on node -1 +[ 1.436519] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X +[ 1.436622] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 1.436627] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems +[ 1.436635] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.449509] alloc irq_desc for 20 on node -1 +[ 1.449513] alloc kstat_irqs on node -1 +[ 1.449523] firewire_ohci 0000:07:00.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.449532] firewire_ohci 0000:07:00.0: setting latency timer to 64 +[ 1.495613] scsi2 : ahci +[ 1.497436] scsi3 : ahci +[ 1.497970] scsi4 : ahci +[ 1.498239] ata3: SATA max UDMA/133 abar m2048@0x98404000 port 0x98404100 irq 44 +[ 1.498245] ata4: SATA max UDMA/133 abar m2048@0x98404000 port 0x98404180 irq 44 +[ 1.498250] ata5: SATA max UDMA/133 abar m2048@0x98404000 port 0x98404200 irq 44 +[ 1.498358] tg3 0000:05:00.0: eth0: Tigon3 [partno(BCM95787m) rev b002] (PCI Express) MAC address 00:1b:38:6c:9d:57 +[ 1.498364] tg3 0000:05:00.0: eth0: attached PHY is 5787 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.498368] tg3 0000:05:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.498372] tg3 0000:05:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.581035] firewire_ohci: Added fw-ohci device 0000:07:00.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x0 +[ 1.581069] sdhci-pci 0000:07:00.1: SDHCI controller found [1180:0822] (rev 22) +[ 1.581094] alloc irq_desc for 22 on node -1 +[ 1.581097] alloc kstat_irqs on node -1 +[ 1.581106] sdhci-pci 0000:07:00.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 1.582148] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.582157] sdhci-pci 0000:07:00.1: setting latency timer to 64 +[ 1.583210] Registered led device: mmc0:: +[ 1.584270] mmc0: SDHCI controller on PCI [0000:07:00.1] using DMA +[ 1.604040] usb 5-1: new low speed USB device using uhci_hcd and address 2 +[ 1.817048] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.817079] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.817108] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 1.840224] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out +[ 1.883198] ata3.00: ATA-7: WDC WD1600BEVS-22RST0, 04.01G04, max UDMA/133 +[ 1.883203] ata3.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.884333] ata3.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04) +[ 1.884575] ata3.00: configured for UDMA/133 +[ 1.900254] scsi 2:0:0:0: Direct-Access ATA WDC WD1600BEVS-2 04.0 PQ: 0 ANSI: 5 +[ 1.900482] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.900653] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB) +[ 1.900811] sd 2:0:0:0: [sda] Write Protect is off +[ 1.900815] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.900878] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.901189] sda: sda1 sda2 sda3 sda4 +[ 1.938495] sd 2:0:0:0: [sda] Attached SCSI disk +[ 1.945772] usbcore: registered new interface driver hiddev +[ 1.964106] input: Logitech USB RECEIVER as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.0/input/input5 +[ 1.964249] generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB RECEIVER] on usb-0000:00:1d.0-1/input0 +[ 1.964277] usbcore: registered new interface driver usbhid +[ 1.964280] usbhid: USB HID core driver +[ 2.081156] firewire_core: created device fw0: GUID b640134100023f7b, S400 +[ 2.156237] ACPI: Battery Slot [BAT0] (battery present) +[ 2.393847] EXT4-fs (sda2): INFO: recovery required on readonly filesystem +[ 2.393854] EXT4-fs (sda2): write access will be enabled during recovery +[ 7.352640] EXT4-fs (sda2): orphan cleanup on readonly fs +[ 7.352658] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055677 +[ 7.364514] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1048689 +[ 7.364565] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1048687 +[ 7.364591] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1048599 +[ 7.389016] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1052993 +[ 7.389062] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1052994 +[ 7.389087] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1053920 +[ 7.389154] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1054713 +[ 7.389180] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055692 +[ 7.389221] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055694 +[ 7.389244] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055696 +[ 7.389266] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055699 +[ 7.389292] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1055701 +[ 7.389312] EXT4-fs (sda2): 13 orphan inodes deleted +[ 7.389317] EXT4-fs (sda2): recovery complete +[ 7.856259] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 9.732704] Adding 2580476k swap on /dev/sda3. Priority:-1 extents:1 across:2580476k +[ 10.263325] udev: starting version 151 +[ 10.592636] lirc_dev: IR Remote Control driver registered, major 61 +[ 10.594259] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 10.594394] IP: [] kfifo_alloc+0x26/0x90 +[ 10.594486] *pde = 7dae9067 +[ 10.594567] Oops: 0002 [#1] SMP +[ 10.594685] last sysfs file: /sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/name +[ 10.594739] Modules linked in: lirc_ene0100(+) lirc_dev usbhid hid sdhci_pci firewire_ohci ahci sdhci led_class libahci firewire_core crc_itu_t tg3 +[ 10.595307] +[ 10.595348] Pid: 445, comm: modprobe Not tainted 2.6.35-6-generic #9-Ubuntu Nettiling/Aspire 5720Z +[ 10.595401] EIP: 0060:[] EFLAGS: 00010286 CPU: 1 +[ 10.595447] EIP is at kfifo_alloc+0x26/0x90 +[ 10.595490] EAX: e10ef000 EBX: 00001000 ECX: c01674d2 EDX: c01674d2 +[ 10.595537] ESI: 00000000 EDI: f69e9100 EBP: d1631e40 ESP: d1631e38 +[ 10.595585] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 10.595631] Process modprobe (pid: 445, ti=d1630000 task=f6990cb0 task.ti=d1630000) +[ 10.595679] Stack: +[ 10.595718] f6b3f4e0 f6bf7840 d1631e68 f8273dc7 00000020 000080d0 d1631e68 f724ce00 +[ 10.596011] <0> fffffff4 f8273fa0 f724ce00 f8274400 d1631e7c c03b7e9e f724ce00 f8274420 +[ 10.596371] <0> f8274420 d1631ea0 c0404ead f724ced0 d1631ea0 c040c0f7 00000000 f724ce00 +[ 10.596780] Call Trace: +[ 10.596837] [] ? ene_probe+0x157/0x30b [lirc_ene0100] +[ 10.596899] [] ? pnp_device_probe+0x6e/0xd0 +[ 10.596958] [] ? really_probe+0x4d/0x150 +[ 10.597017] [] ? pm_runtime_barrier+0x57/0xb0 +[ 10.597075] [] ? driver_probe_device+0x3c/0x60 +[ 10.597133] [] ? __driver_attach+0x81/0x90 +[ 10.597191] [] ? bus_for_each_dev+0x53/0x80 +[ 10.597249] [] ? driver_attach+0x1e/0x20 +[ 10.597306] [] ? __driver_attach+0x0/0x90 +[ 10.597364] [] ? bus_add_driver+0xd5/0x280 +[ 10.597386] [] ? pnp_device_remove+0x0/0x40 +[ 10.597386] [] ? driver_register+0x6a/0x130 +[ 10.597386] [] ? tracepoint_module_notify+0x27/0x30 +[ 10.597386] [] ? pnp_register_driver+0x1c/0x20 +[ 10.597386] [] ? ene_init+0x38/0x3a [lirc_ene0100] +[ 10.597386] [] ? __blocking_notifier_call_chain+0x54/0x70 +[ 10.597386] [] ? do_one_initcall+0x31/0x190 +[ 10.597386] [] ? ene_init+0x0/0x3a [lirc_ene0100] +[ 10.597386] [] ? sys_init_module+0x9b/0x1e0 +[ 10.597386] [] ? sys_close+0x75/0xc0 +[ 10.597386] [] ? syscall_call+0x7/0xb +[ 10.597386] Code: 89 3a eb d3 90 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 4b ff 74 31 85 d9 75 25 89 d8 e8 de 64 0a 00 85 c0 74 38 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +[ 10.597386] EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:d1631e38 +[ 10.597386] CR2: 0000000000000000 +[ 10.600659] ---[ end trace c562579174d65605 ]--- +[ 10.966533] lp: driver loaded but no devices found +[ 11.115059] coretemp coretemp.0: TjMax is assumed as 100 C! +[ 11.115179] coretemp coretemp.1: TjMax is assumed as 100 C! +[ 11.250926] Linux agpgart interface v0.103 +[ 11.306040] cfg80211: Calling CRDA to update world regulatory domain +[ 11.562782] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 11.563754] agpgart-intel 0000:00:00.0: detected 7676K stolen memory +[ 11.570309] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000 +[ 11.858973] ath5k 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 11.859059] ath5k 0000:06:00.0: setting latency timer to 64 +[ 11.859387] ath5k 0000:06:00.0: registered as 'phy0' +[ 12.364803] ath: EEPROM regdomain: 0x65 +[ 12.364864] ath: EEPROM indicates we should expect a direct regpair map +[ 12.364926] ath: Country alpha2 being used: 00 +[ 12.364983] ath: Regpair used: 0x65 +[ 12.610148] cfg80211: World regulatory domain updated: +[ 12.610211] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 12.610284] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.610345] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.610406] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.610465] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.610526] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.790617] [drm] Initialized drm 1.1.0 20060810 +[ 13.002999] Linux video capture interface: v2.00 +[ 13.021080] uvcvideo: Found UVC 1.00 device Acer CrystalEye webcam (064e:a101) +[ 13.023855] input: Acer CrystalEye webcam as /devices/pci0000:00/0000:00:1d.7/usb2/2-4/2-4:1.0/input/input6 +[ 13.024040] usbcore: registered new interface driver uvcvideo +[ 13.024102] USB Video Class driver (v0.1.0) +[ 13.034101] phy0: Selected rate control algorithm 'minstrel' +[ 13.035054] Registered led device: ath5k-phy0::rx +[ 13.035143] Registered led device: ath5k-phy0::tx +[ 13.035202] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) +[ 13.104611] type=1400 audit(1278437864.694:2): operation="profile_load" pid=736 name="/sbin/dhclient3" pid=736 comm="apparmor_parser" +[ 13.105560] type=1400 audit(1278437864.698:3): operation="profile_load" pid=736 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=736 comm="apparmor_parser" +[ 13.106123] type=1400 audit(1278437864.698:4): operation="profile_load" pid=736 name="/usr/lib/connman/scripts/dhclient-script" pid=736 comm="apparmor_parser" +[ 13.272337] input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input7 +[ 13.306737] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input8 +[ 13.332348] r852 0000:07:00.3: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 13.332425] r852 0000:07:00.3: setting latency timer to 64 +[ 13.332592] r852: driver loaded succesfully +[ 13.475386] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 13.475458] i915 0000:00:02.0: setting latency timer to 64 +[ 13.516576] alloc irq_desc for 45 on node -1 +[ 13.516638] alloc kstat_irqs on node -1 +[ 13.516705] i915 0000:00:02.0: irq 45 for MSI/MSI-X +[ 13.516776] [drm] set up 7M of stolen space +[ 13.623190] [drm] initialized overlay support +[ 13.932053] Skipping EDID probe due to cached edid +[ 14.350216] Console: switching to colour frame buffer device 160x50 +[ 14.355203] fb0: inteldrmfb frame buffer device +[ 14.355206] drm: registered panic notifier +[ 14.355295] Slow work thread pool: Starting up +[ 14.355452] Slow work thread pool: Ready +[ 14.705151] acpi device:3a: registered as cooling_device2 +[ 14.705588] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9 +[ 14.705754] ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no) +[ 14.705854] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 14.706507] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 14.706661] alloc irq_desc for 46 on node -1 +[ 14.706704] alloc kstat_irqs on node -1 +[ 14.706756] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X +[ 14.706853] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 14.751183] vga16fb: initializing +[ 14.751228] vga16fb: mapped to 0xc00a0000 +[ 14.751580] fb1: VGA16 VGA frame buffer device +[ 16.312096] Skipping EDID probe due to cached edid +[ 16.351381] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro +[ 17.520331] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null) +[ 18.855408] type=1400 audit(1278437870.446:5): operation="profile_load" pid=951 name="/usr/share/gdm/guest-session/Xsession" pid=951 comm="apparmor_parser" +[ 18.858107] type=1400 audit(1278437870.446:6): operation="profile_replace" pid=954 name="/sbin/dhclient3" pid=954 comm="apparmor_parser" +[ 18.858988] type=1400 audit(1278437870.446:7): operation="profile_replace" pid=954 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=954 comm="apparmor_parser" +[ 18.859468] type=1400 audit(1278437870.446:8): operation="profile_replace" pid=954 name="/usr/lib/connman/scripts/dhclient-script" pid=954 comm="apparmor_parser" +[ 18.910088] type=1400 audit(1278437870.502:9): operation="profile_load" pid=955 name="/usr/bin/evince" pid=955 comm="apparmor_parser" +[ 18.921432] type=1400 audit(1278437870.514:10): operation="profile_load" pid=955 name="/usr/bin/evince-previewer" pid=955 comm="apparmor_parser" +[ 18.928500] type=1400 audit(1278437870.518:11): operation="profile_load" pid=955 name="/usr/bin/evince-thumbnailer" pid=955 comm="apparmor_parser" +[ 19.002918] type=1400 audit(1278437870.594:12): operation="profile_load" pid=963 name="/usr/lib/cups/backend/cups-pdf" pid=963 comm="apparmor_parser" +[ 19.003951] type=1400 audit(1278437870.594:13): operation="profile_load" pid=963 name="/usr/sbin/cupsd" pid=963 comm="apparmor_parser" +[ 19.148234] type=1400 audit(1278437870.738:14): operation="profile_load" pid=964 name="/usr/sbin/tcpdump" pid=964 comm="apparmor_parser" +[ 20.468824] alloc irq_desc for 47 on node -1 +[ 20.468829] alloc kstat_irqs on node -1 +[ 20.468851] tg3 0000:05:00.0: irq 47 for MSI/MSI-X +[ 20.636748] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 20.667390] ADDRCONF(NETDEV_UP): wlan0: link is not ready + +Bug: 604929 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-7-generic (buildd@rothera) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu1) ) #12-Ubuntu SMP Fri Jul 9 21:09:19 UTC 2010 (Ubuntu 2.6.35-7.12-generic 2.6.35-rc4) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f6d0000 (usable) +[ 0.000000] BIOS-e820: 000000003f6d0000 - 000000003f6e2000 (ACPI data) +[ 0.000000] BIOS-e820: 000000003f6e2000 - 000000003f6e3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000003f6e3000 - 0000000040000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x3f6d0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-CFFFF write-protect +[ 0.000000] D0000-DFFFF uncachable +[ 0.000000] E0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask 0C0000000 write-back +[ 0.000000] 1 base 03F700000 mask 0FFF00000 uncachable +[ 0.000000] 2 base 03F800000 mask 0FF800000 uncachable +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009f800 (usable) +[ 0.000000] modified: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000003f6d0000 (usable) +[ 0.000000] modified: 000000003f6d0000 - 000000003f6e2000 (ACPI data) +[ 0.000000] modified: 000000003f6e2000 - 000000003f6e3000 (ACPI NVS) +[ 0.000000] modified: 000000003f6e3000 - 0000000040000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec10000 (reserved) +[ 0.000000] modified: 00000000fed00000 - 00000000fed00400 (reserved) +[ 0.000000] modified: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed90000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ff000000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00f7d60] f7d60 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 2ef2f000 - 2f95c000 +[ 0.000000] ACPI: RSDP 000f7d30 00024 (v02 PTLTD ) +[ 0.000000] ACPI: XSDT 3f6db28f 00084 (v01 DELL CL09 06040000 LTP 00000000) +[ 0.000000] ACPI: FACP 3f6e1bd2 000F4 (v03 INTEL CALISTGA 06040000 ALAN 00000001) +[ 0.000000] ACPI: DSDT 3f6dce77 04CE7 (v01 INTEL CALISTGA 06040000 INTL 20050624) +[ 0.000000] ACPI: FACS 3f6e2fc0 00040 +[ 0.000000] ACPI: APIC 3f6e1cc6 00068 (v01 INTEL CALISTGA 06040000 LOHR 0000005A) +[ 0.000000] ACPI: HPET 3f6e1d2e 00038 (v01 INTEL CALISTGA 06040000 LOHR 0000005A) +[ 0.000000] ACPI: MCFG 3f6e1d66 0003C (v01 INTEL CALISTGA 06040000 LOHR 0000005A) +[ 0.000000] ACPI: TCPA 3f6e1da2 00032 (v01 PTLTD CALISTGA 06040000 PTL 00000001) +[ 0.000000] ACPI: TMOR 3f6e1dd4 00026 (v01 PTLTD 06040000 PTL 00000003) +[ 0.000000] ACPI: APIC 3f6e1dfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000) +[ 0.000000] ACPI: BOOT 3f6e1e62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) +[ 0.000000] ACPI: SLIC 3f6e1e8a 00176 (v01 DELL CL09 06040000 LTP 00000000) +[ 0.000000] ACPI: SSDT 3f6dc828 0064F (v01 SataRe SataPri 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 3f6dc18c 0069C (v01 SataRe SataSec 00001000 INTL 20050624) +[ 0.000000] ACPI: SSDT 3f6db313 004F6 (v02 PmRef CpuPm 00003000 INTL 20050624) +[ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0 +[ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 126MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0003f6d0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0003f6d0 +[ 0.000000] On node 0 totalpages: 259680 +[ 0.000000] free_area_init_node: node 0, pgdat c0813880, node_mem_map c1001020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3952 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 254 pages used for memmap +[ 0.000000] HighMem zone: 32212 pages, LIFO batch:7 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c1800000 s36352 r0 d20992 u2097152 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u2097152 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257650 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-7-generic root=UUID=10dbafb4-5a21-4665-88d4-2924132ca353 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 5195820 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (54 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009b491c] TEXT DATA BSS +[ 0.000000] #3 [002ef2f000 - 002f95c000] RAMDISK +[ 0.000000] #4 [00009b5000 - 00009b8124] BRK +[ 0.000000] #5 [00000f7d70 - 0000100000] BIOS reserved +[ 0.000000] #6 [00000f7d60 - 00000f7d70] MP-table mpf +[ 0.000000] #7 [000009f800 - 000009fc71] BIOS reserved +[ 0.000000] #8 [000009fdb1 - 00000f7d60] BIOS reserved +[ 0.000000] #9 [000009fc71 - 000009fdb1] MP-table mpc +[ 0.000000] #10 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #11 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #12 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #13 [0001000000 - 0001001000] BOOTMEM +[ 0.000000] #14 [0001001000 - 00017f1000] BOOTMEM +[ 0.000000] #15 [00017f1000 - 00017f1004] BOOTMEM +[ 0.000000] #16 [00017f1040 - 00017f1100] BOOTMEM +[ 0.000000] #17 [00017f1100 - 00017f1154] BOOTMEM +[ 0.000000] #18 [00017f1180 - 00017f4180] BOOTMEM +[ 0.000000] #19 [00017f4180 - 00017f418c] BOOTMEM +[ 0.000000] #20 [00017f41c0 - 00017f47c0] BOOTMEM +[ 0.000000] #21 [00017f47c0 - 00017f47e5] BOOTMEM +[ 0.000000] #22 [00017f4800 - 00017f4827] BOOTMEM +[ 0.000000] #23 [00017f4840 - 00017f4a1c] BOOTMEM +[ 0.000000] #24 [00017f4a40 - 00017f4a80] BOOTMEM +[ 0.000000] #25 [00017f4a80 - 00017f4ac0] BOOTMEM +[ 0.000000] #26 [00017f4ac0 - 00017f4b00] BOOTMEM +[ 0.000000] #27 [00017f4b00 - 00017f4b40] BOOTMEM +[ 0.000000] #28 [00017f4b40 - 00017f4b80] BOOTMEM +[ 0.000000] #29 [00017f4b80 - 00017f4bc0] BOOTMEM +[ 0.000000] #30 [00017f4bc0 - 00017f4c00] BOOTMEM +[ 0.000000] #31 [00017f4c00 - 00017f4c40] BOOTMEM +[ 0.000000] #32 [00017f4c40 - 00017f4c80] BOOTMEM +[ 0.000000] #33 [00017f4c80 - 00017f4cc0] BOOTMEM +[ 0.000000] #34 [00017f4cc0 - 00017f4d00] BOOTMEM +[ 0.000000] #35 [00017f4d00 - 00017f4d40] BOOTMEM +[ 0.000000] #36 [00017f4d40 - 00017f4d80] BOOTMEM +[ 0.000000] #37 [00017f4d80 - 00017f4dc0] BOOTMEM +[ 0.000000] #38 [00017f4dc0 - 00017f4dd0] BOOTMEM +[ 0.000000] #39 [00017f4e00 - 00017f4e10] BOOTMEM +[ 0.000000] #40 [00017f4e40 - 00017f4ea9] BOOTMEM +[ 0.000000] #41 [00017f4ec0 - 00017f4f29] BOOTMEM +[ 0.000000] #42 [0001800000 - 000180e000] BOOTMEM +[ 0.000000] #43 [0001a00000 - 0001a0e000] BOOTMEM +[ 0.000000] #44 [00017f6f40 - 00017f6f44] BOOTMEM +[ 0.000000] #45 [00017f6f80 - 00017f6f84] BOOTMEM +[ 0.000000] #46 [00017f6fc0 - 00017f6fc8] BOOTMEM +[ 0.000000] #47 [00017f7000 - 00017f7008] BOOTMEM +[ 0.000000] #48 [00017f7040 - 00017f70e8] BOOTMEM +[ 0.000000] #49 [00017f7100 - 00017f7168] BOOTMEM +[ 0.000000] #50 [00017f7180 - 00017fb180] BOOTMEM +[ 0.000000] #51 [000180e000 - 000188e000] BOOTMEM +[ 0.000000] #52 [000188e000 - 00018ce000] BOOTMEM +[ 0.000000] #53 [0001a0e000 - 0001f0282c] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0003f6d0) +[ 0.000000] Memory: 1005212k/1039168k available (4942k kernel code, 33508k reserved, 2401k data, 684k init, 129864k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc082d000 - 0xc08d8000 ( 684 kB) +[ 0.000000] .data : 0xc05d3b52 - 0xc082c168 (2401 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d3b52 (4942 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:512 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1595.998 MHz processor. +[ 0.004009] Calibrating delay loop (skipped), value calculated using timer frequency.. 3191.99 BogoMIPS (lpj=6383992) +[ 0.004021] pid_max: default: 32768 minimum: 301 +[ 0.004064] Security Framework initialized +[ 0.004102] AppArmor: AppArmor initialized +[ 0.004107] Yama: becoming mindful. +[ 0.004229] Mount-cache hash table entries: 512 +[ 0.008228] Initializing cgroup subsys ns +[ 0.008238] Initializing cgroup subsys cpuacct +[ 0.008249] Initializing cgroup subsys memory +[ 0.008268] Initializing cgroup subsys devices +[ 0.008274] Initializing cgroup subsys freezer +[ 0.008280] Initializing cgroup subsys net_cls +[ 0.008331] CPU: Physical Processor ID: 0 +[ 0.008336] CPU: Processor Core ID: 0 +[ 0.008342] mce: CPU supports 5 MCE banks +[ 0.008356] CPU0: Thermal monitoring enabled (TM1) +[ 0.008364] using mwait in idle threads. +[ 0.008377] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver. +[ 0.008397] ... version: 3 +[ 0.008401] ... bit width: 40 +[ 0.008406] ... generic registers: 2 +[ 0.008411] ... value mask: 000000ffffffffff +[ 0.008417] ... max period: 000000007fffffff +[ 0.008422] ... fixed-purpose events: 3 +[ 0.008426] ... event mask: 0000000700000003 +[ 0.013127] ACPI: Core revision 20100428 +[ 0.028019] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.028031] ftrace: allocating 21734 entries in 43 pages +[ 0.032105] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.032522] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.074525] CPU0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz stepping 02 +[ 0.076000] Booting Node 0, Processors #1 Ok. +[ 0.008000] Initializing CPU#1 +[ 0.164030] Brought up 2 CPUs +[ 0.164040] Total of 2 processors activated (6383.91 BogoMIPS). +[ 0.164408] devtmpfs: initialized +[ 0.166506] regulator: core version 0.5 +[ 0.166555] Time: 8:33:30 Date: 07/13/10 +[ 0.166650] NET: Registered protocol family 16 +[ 0.168147] Trying to unpack rootfs image as initramfs... +[ 0.168405] EISA bus registered +[ 0.168431] ACPI: bus type pci registered +[ 0.168641] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.168653] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.168660] PCI: Using MMCONFIG for extended config space +[ 0.168666] PCI: Using configuration type 1 for base access +[ 0.172798] bio: create slab at 0 +[ 0.176903] ACPI: EC: Look up EC in DSDT +[ 0.184239] ACPI: BIOS _OSI(Linux) query ignored +[ 0.187377] ACPI: SSDT 3f6dbe73 00245 (v02 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.188548] ACPI: Dynamic OEM Table Load: +[ 0.188561] ACPI: SSDT (null) 00245 (v02 PmRef Cpu0Ist 00003000 INTL 20050624) +[ 0.189315] ACPI: SSDT 3f6db809 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.190399] ACPI: Dynamic OEM Table Load: +[ 0.190411] ACPI: SSDT (null) 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624) +[ 0.191587] ACPI: SSDT 3f6dc0b8 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.192717] ACPI: Dynamic OEM Table Load: +[ 0.192729] ACPI: SSDT (null) 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624) +[ 0.193150] ACPI: SSDT 3f6dbdee 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.194241] ACPI: Dynamic OEM Table Load: +[ 0.194252] ACPI: SSDT (null) 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624) +[ 0.198598] ACPI: Interpreter enabled +[ 0.198598] ACPI: (supports S0 S3 S4 S5) +[ 0.198598] ACPI: Using IOAPIC for interrupt routing +[ 0.255028] ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62 +[ 0.255961] ACPI: No dock devices found. +[ 0.255974] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.257437] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.260199] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.260212] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.260222] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.260233] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] +[ 0.260242] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.260252] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.260261] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.260272] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xfebfffff] +[ 0.260391] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf007ffff] +[ 0.260404] pci 0000:00:02.0: reg 14: [io 0x1800-0x1807] +[ 0.260416] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref] +[ 0.260429] pci 0000:00:02.0: reg 1c: [mem 0xf0200000-0xf023ffff] +[ 0.260498] pci 0000:00:02.1: reg 10: [mem 0xf0080000-0xf00fffff] +[ 0.260664] pci 0000:00:1b.0: reg 10: [mem 0xf0440000-0xf0443fff 64bit] +[ 0.260761] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.260775] pci 0000:00:1b.0: PME# disabled +[ 0.260926] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.260938] pci 0000:00:1c.0: PME# disabled +[ 0.261085] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.261097] pci 0000:00:1c.1: PME# disabled +[ 0.261243] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.261254] pci 0000:00:1c.2: PME# disabled +[ 0.261356] pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f] +[ 0.261456] pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f] +[ 0.261555] pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f] +[ 0.261660] pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f] +[ 0.261759] pci 0000:00:1d.7: reg 10: [mem 0xf0444000-0xf04443ff] +[ 0.261850] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.261861] pci 0000:00:1d.7: PME# disabled +[ 0.262089] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.262102] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO +[ 0.262113] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f) +[ 0.262124] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at ff2c (mask 007f) +[ 0.262138] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0068 (mask 0007) +[ 0.262227] pci 0000:00:1f.2: reg 10: [io 0x0000-0x0007] +[ 0.262242] pci 0000:00:1f.2: reg 14: [io 0x0000-0x0003] +[ 0.262257] pci 0000:00:1f.2: reg 18: [io 0x0000-0x0007] +[ 0.262273] pci 0000:00:1f.2: reg 1c: [io 0x0000-0x0003] +[ 0.262288] pci 0000:00:1f.2: reg 20: [io 0x1810-0x181f] +[ 0.262303] pci 0000:00:1f.2: reg 24: [mem 0x00000000-0x000003ff] +[ 0.262349] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.262360] pci 0000:00:1f.2: PME# disabled +[ 0.262440] pci 0000:00:1f.3: reg 20: [io 0x18c0-0x18df] +[ 0.262581] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.262594] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.262607] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.262623] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.263034] pci 0000:03:00.0: reg 10: [mem 0xf0100000-0xf0103fff 64bit] +[ 0.263278] pci 0000:03:00.0: supports D1 D2 +[ 0.263287] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold +[ 0.263306] pci 0000:03:00.0: PME# disabled +[ 0.263514] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.263526] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled) +[ 0.263540] pci 0000:00:1c.1: bridge window [mem 0xf0100000-0xf01fffff] +[ 0.263556] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.263774] pci 0000:04:00.0: reg 10: [io 0x2000-0x20ff] +[ 0.263871] pci 0000:04:00.0: reg 18: [mem 0xf0510000-0xf0510fff 64bit pref] +[ 0.263946] pci 0000:04:00.0: reg 20: [mem 0xf0500000-0xf050ffff 64bit pref] +[ 0.264010] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] +[ 0.264193] pci 0000:04:00.0: supports D1 D2 +[ 0.264201] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.264234] pci 0000:04:00.0: PME# disabled +[ 0.264439] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.264452] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.264464] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.264481] pci 0000:00:1c.2: bridge window [mem 0xf0500000-0xf05fffff 64bit pref] +[ 0.264601] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode) +[ 0.264613] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.264626] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.264642] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.264652] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.264661] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.264671] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.264681] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) +[ 0.264690] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.264700] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.264711] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.264722] pci 0000:00:1e.0: bridge window [mem 0x40000000-0xfebfffff] (subtractive decode) +[ 0.264769] pci_bus 0000:00: on NUMA node 0 +[ 0.264793] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.265413] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.265743] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.265989] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.266339] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.289255] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.289577] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.289865] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.290147] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.290443] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.290739] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 0.291024] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 0.291332] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 7 11 12 14 15) +[ 0.291486] HEST: Table is not found! +[ 0.291734] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.291767] vgaarb: loaded +[ 0.292417] SCSI subsystem initialized +[ 0.292644] libata version 3.00 loaded. +[ 0.292859] usbcore: registered new interface driver usbfs +[ 0.292922] usbcore: registered new interface driver hub +[ 0.293017] usbcore: registered new device driver usb +[ 0.293545] ACPI: WMI: Mapper loaded +[ 0.293552] PCI: Using ACPI for IRQ routing +[ 0.293562] PCI: pci_cache_line_size set to 64 bytes +[ 0.294112] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.294122] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.294131] reserve RAM buffer: 000000003f6d0000 - 000000003fffffff +[ 0.294453] NetLabel: Initializing +[ 0.294461] NetLabel: domain hash size = 128 +[ 0.294466] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.294504] NetLabel: unlabeled traffic allowed by default +[ 0.294621] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.294637] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.294652] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.304101] Switching to clocksource tsc +[ 0.333775] AppArmor: AppArmor Filesystem Enabled +[ 0.333822] pnp: PnP ACPI init +[ 0.333870] ACPI: bus type pnp registered +[ 0.355784] pnp: PnP ACPI: found 11 devices +[ 0.355793] ACPI: ACPI bus type pnp unregistered +[ 0.355804] PnPBIOS: Disabled by ACPI PNP +[ 0.355843] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.355854] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.355864] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.355873] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.355884] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.355894] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.355904] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.355914] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.355939] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.355965] system 00:06: [io 0x0680-0x069f] has been reserved +[ 0.355978] system 00:06: [io 0x0800-0x080f] has been reserved +[ 0.355989] system 00:06: [io 0x1000-0x107f] has been reserved +[ 0.356000] system 00:06: [io 0x1180-0x11bf] has been reserved +[ 0.356009] system 00:06: [io 0x1640-0x164f] has been reserved +[ 0.356020] system 00:06: [io 0xfe00-0xfe7f] has been reserved +[ 0.356037] system 00:06: [io 0xff00-0xff7f] has been reserved +[ 0.356058] system 00:07: [io 0x06a0-0x06af] has been reserved +[ 0.356068] system 00:07: [io 0x06b0-0x06ff] has been reserved +[ 0.391359] pci 0000:00:1c.0: BAR 14: assigned [mem 0x40000000-0x401fffff] +[ 0.391377] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref] +[ 0.391393] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref] +[ 0.391405] pci 0000:00:1c.2: BAR 14: assigned [mem 0x40600000-0x409fffff] +[ 0.391419] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff] +[ 0.391431] pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff] +[ 0.391442] pci 0000:00:1f.2: BAR 5: assigned [mem 0x40a00000-0x40a003ff] +[ 0.391458] pci 0000:00:1f.2: BAR 5: set to [mem 0x40a00000-0x40a003ff] (PCI address [0x40a00000-0x40a003ff] +[ 0.391469] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.391479] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] +[ 0.391493] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff] +[ 0.391506] pci 0000:00:1c.0: bridge window [mem 0x40200000-0x403fffff 64bit pref] +[ 0.391522] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.391532] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff] +[ 0.391545] pci 0000:00:1c.1: bridge window [mem 0xf0100000-0xf01fffff] +[ 0.391558] pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref] +[ 0.391577] pci 0000:04:00.0: BAR 6: assigned [mem 0xf0520000-0xf053ffff pref] +[ 0.391586] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.391596] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.391609] pci 0000:00:1c.2: bridge window [mem 0x40600000-0x409fffff] +[ 0.391622] pci 0000:00:1c.2: bridge window [mem 0xf0500000-0xf05fffff 64bit pref] +[ 0.391638] pci 0000:00:1e.0: PCI bridge to [bus 05-05] +[ 0.391644] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.391656] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.391666] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.391707] alloc irq_desc for 17 on node -1 +[ 0.391714] alloc kstat_irqs on node -1 +[ 0.391732] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.391745] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.391767] alloc irq_desc for 16 on node -1 +[ 0.391774] alloc kstat_irqs on node -1 +[ 0.391786] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.391798] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.391819] alloc irq_desc for 18 on node -1 +[ 0.391826] alloc kstat_irqs on node -1 +[ 0.391837] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.391849] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.391867] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.391879] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.391887] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.391896] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.391905] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff] +[ 0.391913] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff] +[ 0.391922] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff] +[ 0.391931] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff] +[ 0.391940] pci_bus 0000:00: resource 11 [mem 0x40000000-0xfebfffff] +[ 0.391949] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] +[ 0.391957] pci_bus 0000:02: resource 1 [mem 0x40000000-0x401fffff] +[ 0.391966] pci_bus 0000:02: resource 2 [mem 0x40200000-0x403fffff 64bit pref] +[ 0.391975] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] +[ 0.391983] pci_bus 0000:03: resource 1 [mem 0xf0100000-0xf01fffff] +[ 0.391992] pci_bus 0000:03: resource 2 [mem 0x40400000-0x405fffff 64bit pref] +[ 0.392001] pci_bus 0000:04: resource 0 [io 0x2000-0x2fff] +[ 0.392010] pci_bus 0000:04: resource 1 [mem 0x40600000-0x409fffff] +[ 0.392019] pci_bus 0000:04: resource 2 [mem 0xf0500000-0xf05fffff 64bit pref] +[ 0.392028] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7] +[ 0.392037] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff] +[ 0.392045] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.392054] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000d3fff] +[ 0.392062] pci_bus 0000:05: resource 8 [mem 0x000d4000-0x000d7fff] +[ 0.392071] pci_bus 0000:05: resource 9 [mem 0x000d8000-0x000dbfff] +[ 0.392079] pci_bus 0000:05: resource 10 [mem 0x000dc000-0x000dffff] +[ 0.392088] pci_bus 0000:05: resource 11 [mem 0x40000000-0xfebfffff] +[ 0.392219] NET: Registered protocol family 2 +[ 0.392410] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.393264] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.394386] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.394995] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.395007] TCP reno registered +[ 0.395022] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.395046] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.395355] NET: Registered protocol family 1 +[ 0.395404] pci 0000:00:02.0: Boot video device +[ 0.395807] PCI: CLS 64 bytes, default 64 +[ 0.395892] Simple Boot Flag at 0x36 set to 0x1 +[ 0.396459] cpufreq-nforce2: No nForce2 chipset. +[ 0.396559] Scanning for low memory corruption every 60 seconds +[ 0.397005] audit: initializing netlink socket (disabled) +[ 0.397033] type=2000 audit(1279010009.392:1): initialized +[ 0.421070] highmem bounce pool size: 64 pages +[ 0.421088] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.426575] VFS: Disk quotas dquot_6.5.2 +[ 0.426785] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.428956] fuse init (API version 7.14) +[ 0.429284] msgmni has been set to 1709 +[ 0.429929] alg: No test for stdrng (krng) +[ 0.430142] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.430152] io scheduler noop registered +[ 0.430159] io scheduler deadline registered +[ 0.430212] io scheduler cfq registered (default) +[ 0.430544] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.430623] alloc irq_desc for 40 on node -1 +[ 0.430630] alloc kstat_irqs on node -1 +[ 0.430654] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.430888] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.430954] alloc irq_desc for 41 on node -1 +[ 0.430961] alloc kstat_irqs on node -1 +[ 0.430979] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.431221] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.431288] alloc irq_desc for 42 on node -1 +[ 0.431294] alloc kstat_irqs on node -1 +[ 0.431313] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.431654] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.431953] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.432580] ACPI: AC Adapter [ACAD] (off-line) +[ 0.432862] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 +[ 0.432983] ACPI: Lid Switch [LID0] +[ 0.433134] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 +[ 0.433144] ACPI: Power Button [PWRB] +[ 0.433335] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.433344] ACPI: Power Button [PWRF] +[ 0.434246] ACPI: acpi_idle registered with cpuidle +[ 0.439689] Monitor-Mwait will be used to enter C-1 state +[ 0.439806] Monitor-Mwait will be used to enter C-2 state +[ 0.439887] Monitor-Mwait will be used to enter C-3 state +[ 0.439910] Marking TSC unstable due to TSC halts in idle +[ 0.441481] Switching to clocksource hpet +[ 0.471458] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.471484] ACPI: Thermal Zone [TZ01] (45 C) +[ 0.471843] ERST: Table is not found! +[ 0.478299] vesafb: framebuffer at 0xd012c000, mapped to 0xf8080000, using 1216k, total 1216k +[ 0.478312] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.478319] vesafb: scrolling: redraw +[ 0.478330] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.490942] Console: switching to colour frame buffer device 80x30 +[ 0.503406] fb0: VESA VGA frame buffer device +[ 0.503592] isapnp: Scanning for PnP cards... +[ 0.552955] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.557792] brd: module loaded +[ 0.559722] loop: module loaded +[ 0.560391] ata_piix 0000:00:1f.2: version 2.13 +[ 0.560433] alloc irq_desc for 19 on node -1 +[ 0.560440] alloc kstat_irqs on node -1 +[ 0.560459] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.560472] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ] +[ 0.735244] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 0.753725] ACPI: Battery Slot [BAT1] (battery present) +[ 0.779094] scsi0 : ata_piix +[ 0.779419] scsi1 : ata_piix +[ 0.782198] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14 +[ 0.782209] ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15 +[ 0.783685] Fixed MDIO Bus: probed +[ 0.783827] PPP generic driver version 2.4.2 +[ 0.783984] tun: Universal TUN/TAP device driver, 1.6 +[ 0.783991] tun: (C) 1999-2004 Max Krasnyansky +[ 0.784284] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.784346] alloc irq_desc for 23 on node -1 +[ 0.784354] alloc kstat_irqs on node -1 +[ 0.784372] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.784417] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.784427] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.784546] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 +[ 0.784599] ehci_hcd 0000:00:1d.7: using broken periodic workaround +[ 0.784621] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.788524] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.788577] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0444000 +[ 0.823877] Freeing initrd memory: 10420k freed +[ 0.834094] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.834563] hub 1-0:1.0: USB hub found +[ 0.834584] hub 1-0:1.0: 8 ports detected +[ 0.834786] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.834838] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.834995] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 +[ 0.835057] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0 +[ 0.835078] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.835096] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.835106] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.835248] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 0.835301] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820 +[ 0.835666] hub 2-0:1.0: USB hub found +[ 0.835681] hub 2-0:1.0: 2 ports detected +[ 0.835837] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0 +[ 0.835858] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0 +[ 0.835873] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.835890] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.835899] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.836049] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 +[ 0.836120] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840 +[ 0.836255] isapnp: No Plug & Play device found +[ 0.836448] hub 3-0:1.0: USB hub found +[ 0.836461] hub 3-0:1.0: 2 ports detected +[ 0.836597] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0 +[ 0.836614] uhci_hcd 0000:00:1d.2: power state changed by ACPI to D0 +[ 0.836627] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.836641] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.836648] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.836740] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 +[ 0.836803] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860 +[ 0.837095] hub 4-0:1.0: USB hub found +[ 0.837107] hub 4-0:1.0: 2 ports detected +[ 0.837289] uhci_hcd 0000:00:1d.3: power state changed by ACPI to D0 +[ 0.837335] uhci_hcd 0000:00:1d.3: power state changed by ACPI to D0 +[ 0.837348] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16 +[ 0.837361] uhci_hcd 0000:00:1d.3: setting latency timer to 64 +[ 0.837369] uhci_hcd 0000:00:1d.3: UHCI Host Controller +[ 0.837461] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 +[ 0.837520] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880 +[ 0.837805] hub 5-0:1.0: USB hub found +[ 0.837817] hub 5-0:1.0: 2 ports detected +[ 0.838056] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.862457] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.862476] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.862681] mice: PS/2 mouse device common for all mice +[ 0.862937] rtc_cmos 00:08: RTC can wake from S4 +[ 0.863058] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0 +[ 0.863110] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 0.863413] device-mapper: uevent: version 1.0.3 +[ 0.863713] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.863913] device-mapper: multipath: version 1.1.1 loaded +[ 0.863921] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.864259] EISA: Probing bus 0 at eisa.0 +[ 0.864265] EISA: Cannot allocate resource for mainboard +[ 0.864271] Cannot allocate resource for EISA slot 1 +[ 0.864276] Cannot allocate resource for EISA slot 2 +[ 0.864281] Cannot allocate resource for EISA slot 3 +[ 0.864286] Cannot allocate resource for EISA slot 4 +[ 0.864291] Cannot allocate resource for EISA slot 5 +[ 0.864296] Cannot allocate resource for EISA slot 6 +[ 0.864301] Cannot allocate resource for EISA slot 7 +[ 0.864306] Cannot allocate resource for EISA slot 8 +[ 0.864311] EISA: Detected 0 cards. +[ 0.864709] cpuidle: using governor ladder +[ 0.864993] cpuidle: using governor menu +[ 0.865662] TCP cubic registered +[ 0.865996] NET: Registered protocol family 10 +[ 0.866769] lo: Disabled Privacy Extensions +[ 0.867258] NET: Registered protocol family 17 +[ 0.868504] Using IPI No-Shortcut mode +[ 0.868735] PM: Resume from disk failed. +[ 0.868761] registered taskstats version 1 +[ 0.869560] Magic number: 2:857:573 +[ 0.869708] rtc_cmos 00:08: setting system clock to 2010-07-13 08:33:30 UTC (1279010010) +[ 0.869717] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.869721] EDD information not available. +[ 0.889055] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.944595] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HA, max UDMA/133 +[ 0.944605] ata1.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 0.953650] ata1.00: configured for UDMA/133 +[ 0.953945] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5 +[ 0.954277] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 0.954348] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 0.954513] sd 0:0:0:0: [sda] Write Protect is off +[ 0.954523] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 0.954626] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 0.955141] sda: sda1 sda2 < sda5 > +[ 0.956832] sd 0:0:0:0: [sda] Attached SCSI disk +[ 0.999580] Freeing unused kernel memory: 684k freed +[ 1.000244] Write protecting the kernel text: 4944k +[ 1.000327] Write protecting the kernel read-only data: 2012k +[ 1.039193] udev: starting version 151 +[ 1.145128] usb 1-2: new high speed USB device using ehci_hcd and address 2 +[ 1.419274] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.419351] r8169 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.419497] r8169 0000:04:00.0: setting latency timer to 64 +[ 1.419699] alloc irq_desc for 43 on node -1 +[ 1.419707] alloc kstat_irqs on node -1 +[ 1.419759] r8169 0000:04:00.0: irq 43 for MSI/MSI-X +[ 1.436438] usb 1-3: new high speed USB device using ehci_hcd and address 3 +[ 1.452088] r8169 0000:04:00.0: eth0: RTL8102e at 0xf8060000, 00:24:e8:bf:82:d8, XID 04c00000 IRQ 43 +[ 1.499421] Btrfs loaded +[ 1.542107] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 1.542118] EXT4-fs (sda1): write access will be enabled during recovery +[ 1.570722] EXT4-fs (sda1): recovery complete +[ 1.571170] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 2.100049] udev: starting version 151 +[ 2.117290] Adding 2978812k swap on /dev/sda5. Priority:-1 extents:1 across:2978812k SSD +[ 2.173180] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 2.243694] lp: driver loaded but no devices found +[ 2.421054] coretemp coretemp.0: Unable to read TjMax from CPU. +[ 2.421345] coretemp coretemp.1: Unable to read TjMax from CPU. +[ 2.642793] acpi device:00: registered as cooling_device2 +[ 2.643248] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4 +[ 2.643406] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 2.691277] lib80211: common routines for IEEE802.11 drivers +[ 2.691288] lib80211_crypt: registered algorithm 'NULL' +[ 2.775161] intel_rng: FWH not detected +[ 2.782469] udev: renamed network interface eth0 to eth1 +[ 2.884896] wl: module license 'MIXED/Proprietary' taints kernel. +[ 2.884908] Disabling lock debugging due to kernel taint +[ 2.910110] leds_ss4200: no LED devices found +[ 2.970537] Linux agpgart interface v0.103 +[ 3.065377] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) +[ 3.113162] agpgart-intel 0000:00:00.0: Intel 945GME Chipset +[ 3.113764] agpgart-intel 0000:00:00.0: detected 7932K stolen memory +[ 3.116747] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 3.162015] compal-laptop: Identified laptop model 'Dell Mini 10v'. +[ 3.172519] compal-laptop: driver 0.2.6 successfully loaded. +[ 3.173731] wl 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.173755] wl 0000:03:00.0: setting latency timer to 64 +[ 3.180159] dell-laptop: Blacklisted hardware detected - not enabling rfkill +[ 3.204986] Linux video capture interface: v2.00 +[ 3.244269] uvcvideo: Found UVC 1.00 device Integrated Webcam (064e:a129) +[ 3.273182] input: Integrated Webcam as /devices/pci0000:00/0000:00:1d.7/usb1/1-2/1-2:1.0/input/input5 +[ 3.273408] usbcore: registered new interface driver uvcvideo +[ 3.273417] USB Video Class driver (v0.1.0) +[ 3.370573] lib80211_crypt: registered algorithm 'TKIP' +[ 3.371084] eth0: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.60.48.36 +[ 3.450838] [drm] Initialized drm 1.1.0 20060810 +[ 3.490577] udev: renamed network interface eth0 to eth2 +[ 3.664003] type=1400 audit(1279010013.290:2): operation="profile_load" pid=682 name="/sbin/dhclient3" pid=682 comm="apparmor_parser" +[ 3.664809] type=1400 audit(1279010013.290:3): operation="profile_load" pid=682 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=682 comm="apparmor_parser" +[ 3.665311] type=1400 audit(1279010013.294:4): operation="profile_load" pid=682 name="/usr/lib/connman/scripts/dhclient-script" pid=682 comm="apparmor_parser" +[ 3.740149] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.740165] i915 0000:00:02.0: setting latency timer to 64 +[ 3.838641] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 3.839119] IP: [] __mutex_lock_slowpath+0x9a/0x140 +[ 3.839511] *pde = 3d9e2067 +[ 3.839710] Oops: 0002 [#1] SMP +[ 3.839944] last sysfs file: /sys/devices/platform/i8042/serio0/input/input3/event3/uevent +[ 3.840014] Modules linked in: snd_hwdep snd_pcm i915(+) snd_seq_midi snd_rawmidi snd_seq_midi_event drm_kms_helper snd_seq lib80211_crypt_tkip snd_timer drm snd_seq_device uvcvideo dell_laptop wl(P) compal_laptop videodev dcdbas intel_agp snd psmouse v4l1_compat led_class soundcore serio_raw agpgart i2c_algo_bit snd_page_alloc lib80211 video coretemp output lp parport btrfs zlib_deflate r8169 mii crc32c libcrc32c +[ 3.840014] +[ 3.840014] Pid: 315, comm: plymouthd Tainted: P 2.6.35-7-generic #12-Ubuntu CN0Y53/Inspiron 1011 +[ 3.840014] EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +[ 3.840014] EIP is at __mutex_lock_slowpath+0x9a/0x140 +[ 3.840014] EAX: 00000000 EBX: ef5a9a90 ECX: ef5a9a98 EDX: f6ab7ec0 +[ 3.840014] ESI: ef5a9a94 EDI: ef5a9a90 EBP: f6ab7ed8 ESP: f6ab7eb4 +[ 3.840014] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 3.840014] Process plymouthd (pid: 315, ti=f6ab6000 task=f6ae3f70 task.ti=f6ab6000) +[ 3.840014] Stack: +[ 3.840014] f6ab7ec4 f6ae3f70 ef5a9a98 ef5a9a98 00000000 f6ab7ed8 ef5a9a90 f7109100 +[ 3.840014] <0> ef5a9a90 f6ab7ee8 c05cb095 f7109100 f7109100 f6ab7efc f890fdc3 f7109100 +[ 3.848126] <0> f7109160 ef5a9800 f6ab7f44 f8907337 00000001 f8917e25 f8917220 f8919590 +[ 3.848126] Call Trace: +[ 3.848126] [] ? mutex_lock+0x25/0x40 +[ 3.848126] [] ? drm_fb_release+0x23/0x70 [drm] +[ 3.878710] [] ? drm_release+0x3e7/0x4c0 [drm] +[ 3.878710] [] ? __fput+0xdf/0x1f0 +[ 3.878710] [] ? fput+0x1d/0x30 +[ 3.878710] [] ? filp_close+0x4c/0x80 +[ 3.878710] [] ? sys_close+0x75/0xc0 +[ 3.878710] [] ? syscall_call+0x7/0xb +[ 3.878710] Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 5e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +[ 3.878710] EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f6ab7eb4 +[ 3.878710] CR2: 0000000000000000 +[ 3.879199] ---[ end trace d19a98cda7849580 ]--- +[ 4.017902] [drm] set up 7M of stolen space +[ 4.474366] [drm] initialized overlay support +[ 4.599182] r8169 0000:04:00.0: eth1: link down +[ 4.603936] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 4.640584] type=1400 audit(1279010014.266:5): operation="profile_load" pid=820 name="/usr/share/gdm/guest-session/Xsession" pid=820 comm="apparmor_parser" +[ 4.653746] type=1400 audit(1279010014.282:6): operation="profile_replace" pid=821 name="/sbin/dhclient3" pid=821 comm="apparmor_parser" +[ 4.661042] type=1400 audit(1279010014.290:7): operation="profile_replace" pid=821 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=821 comm="apparmor_parser" +[ 4.671312] type=1400 audit(1279010014.298:8): operation="profile_replace" pid=821 name="/usr/lib/connman/scripts/dhclient-script" pid=821 comm="apparmor_parser" +[ 4.692486] type=1400 audit(1279010014.318:9): operation="profile_load" pid=822 name="/usr/bin/evince" pid=822 comm="apparmor_parser" +[ 4.710491] type=1400 audit(1279010014.338:10): operation="profile_load" pid=822 name="/usr/bin/evince-previewer" pid=822 comm="apparmor_parser" +[ 4.741325] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04711/0xa40000/0x2a0000 +[ 4.769092] Skipping EDID probe due to cached edid +[ 4.780738] checking generic (d012c000 130000) vs hw (d0000000 10000000) +[ 4.784977] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver +[ 4.800600] Console: switching to colour dummy device 80x25 +[ 4.860971] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6 +[ 5.229435] Console: switching to colour frame buffer device 128x37 +[ 5.237193] fb0: inteldrmfb frame buffer device +[ 5.237200] drm: registered panic notifier +[ 5.237208] Slow work thread pool: Starting up +[ 5.237369] Slow work thread pool: Ready +[ 5.237391] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 5.237884] alloc irq_desc for 22 on node -1 +[ 5.237891] alloc kstat_irqs on node -1 +[ 5.237912] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 5.238011] alloc irq_desc for 44 on node -1 +[ 5.238017] alloc kstat_irqs on node -1 +[ 5.238043] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X +[ 5.238118] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 5.248909] vga16fb: initializing +[ 5.248925] vga16fb: mapped to 0xc00a0000 +[ 5.249233] fb1: VGA16 VGA frame buffer device + +Bug: 606511 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-8-generic (buildd@yellow) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu2) ) #13-Ubuntu SMP Wed Jul 14 13:11:35 UTC 2010 (Ubuntu 2.6.35-8.13-generic 2.6.35-rc5) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-8-generic root=UUID=bf143224-6b45-4f50-9834-ca97a00600e0 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bff90000 (usable) +[ 0.000000] BIOS-e820: 00000000bff90000 - 00000000bff9e000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bff9e000 - 00000000bffe0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bffe0000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 00000001c0000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x1c0000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-CFFFF write-protect +[ 0.000000] D0000-DFFFF uncachable +[ 0.000000] E0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 1C0000000 mask FC0000000 uncachable +[ 0.000000] 1 base 000000000 mask E00000000 write-back +[ 0.000000] 2 base 0C0000000 mask FC0000000 uncachable +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000c0000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0xbff90 max_arch_pfn = 0x400000000 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bff90000 (usable) +[ 0.000000] modified: 00000000bff90000 - 00000000bff9e000 (ACPI data) +[ 0.000000] modified: 00000000bff9e000 - 00000000bffe0000 (ACPI NVS) +[ 0.000000] modified: 00000000bffe0000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 00000001c0000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bff90000 +[ 0.000000] 0000000000 - 00bfe00000 page 2M +[ 0.000000] 00bfe00000 - 00bff90000 page 4k +[ 0.000000] kernel direct mapping tables up to bff90000 @ 16000-1b000 +[ 0.000000] init_memory_mapping: 0000000100000000-00000001c0000000 +[ 0.000000] 0100000000 - 01c0000000 page 2M +[ 0.000000] kernel direct mapping tables up to 1c0000000 @ 19000-21000 +[ 0.000000] RAMDISK: 3759c000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000f99e0 00014 (v00 ACPIAM) +[ 0.000000] ACPI: RSDT 00000000bff90000 0003C (v01 7514MS A7514200 20090526 MSFT 00000097) +[ 0.000000] ACPI: FACP 00000000bff90200 00084 (v01 7514MS A7514200 20090526 MSFT 00000097) +[ 0.000000] ACPI: DSDT 00000000bff90440 063EE (v01 A7514 A7514200 00000200 INTL 20051117) +[ 0.000000] ACPI: FACS 00000000bff9e000 00040 +[ 0.000000] ACPI: APIC 00000000bff90390 0006C (v01 7514MS A7514200 20090526 MSFT 00000097) +[ 0.000000] ACPI: MCFG 00000000bff90400 0003C (v01 7514MS OEMMCFG 20090526 MSFT 00000097) +[ 0.000000] ACPI: OEMB 00000000bff9e040 00072 (v01 7514MS A7514200 20090526 MSFT 00000097) +[ 0.000000] ACPI: HPET 00000000bff98440 00038 (v01 7514MS OEMHPET 20090526 MSFT 00000097) +[ 0.000000] ACPI: SSDT 00000000bff9e5c0 00A7C (v01 DpgPmm CpuPm 00000012 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000001c0000000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000001c0000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00061fffff] PMD -> [ffff880100200000-ffff8801055fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x001c0000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bff90 +[ 0.000000] 0: 0x00100000 -> 0x001c0000 +[ 0.000000] On node 0 totalpages: 1572639 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 767944 pages, LIFO batch:31 +[ 0.000000] Normal zone: 10752 pages used for memmap +[ 0.000000] Normal zone: 775680 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [1c000 - 1c7ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000bff90000 - 00000000bff9e000 +[ 0.000000] PM: Registered nosave memory: 00000000bff9e000 - 00000000bffe0000 +[ 0.000000] PM: Registered nosave memory: 00000000bffe0000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffb00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:3ee00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91392 r8192 d23296 u524288 +[ 0.000000] pcpu-alloc: s91392 r8192 d23296 u524288 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1547551 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-8-generic root=UUID=bf143224-6b45-4f50-9834-ca97a00600e0 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240 +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] early_res array is doubled to 128 at [24800 - 257ff] +[ 0.000000] Subtract (57 early reservations) +[ 0.000000] #1 [0001000000 - 0001d1fed4] TEXT DATA BSS +[ 0.000000] #2 [003759c000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [0001d20000 - 0001d201a9] BRK +[ 0.000000] #4 [00000ff790 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000ff780 - 00000ff790] MP-table mpf +[ 0.000000] #6 [000009fc00 - 00000fd720] BIOS reserved +[ 0.000000] #7 [00000fd894 - 00000ff780] BIOS reserved +[ 0.000000] #8 [00000fd720 - 00000fd894] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000019000] PGTABLE +[ 0.000000] #12 [0000019000 - 000001c000] PGTABLE +[ 0.000000] #13 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #14 [0001d201c0 - 0001d211c0] BOOTMEM +[ 0.000000] #15 [00021211c0 - 0002121640] BOOTMEM +[ 0.000000] #16 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #17 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #18 [0100200000 - 0105600000] MEMMAP 0 +[ 0.000000] #19 [0001d211c0 - 0001d21340] BOOTMEM +[ 0.000000] #20 [0001d21340 - 0001d39340] BOOTMEM +[ 0.000000] #21 [0001d39340 - 0001d51340] BOOTMEM +[ 0.000000] #22 [0001d52000 - 0001d53000] BOOTMEM +[ 0.000000] #23 [0001d1ff00 - 0001d1ff41] BOOTMEM +[ 0.000000] #24 [0001d1ff80 - 0001d1ffc3] BOOTMEM +[ 0.000000] #25 [0001d51340 - 0001d515a8] BOOTMEM +[ 0.000000] #26 [0001d515c0 - 0001d51628] BOOTMEM +[ 0.000000] #27 [0001d51640 - 0001d516a8] BOOTMEM +[ 0.000000] #28 [0001d516c0 - 0001d51728] BOOTMEM +[ 0.000000] #29 [0001d51740 - 0001d517a8] BOOTMEM +[ 0.000000] #30 [0001d517c0 - 0001d51828] BOOTMEM +[ 0.000000] #31 [0001d51840 - 0001d518a8] BOOTMEM +[ 0.000000] #32 [0001d518c0 - 0001d51928] BOOTMEM +[ 0.000000] #33 [0001d51940 - 0001d519a8] BOOTMEM +[ 0.000000] #34 [0001d519c0 - 0001d51a28] BOOTMEM +[ 0.000000] #35 [0001d51a40 - 0001d51aa8] BOOTMEM +[ 0.000000] #36 [0001d51ac0 - 0001d51ae0] BOOTMEM +[ 0.000000] #37 [0001d51b00 - 0001d51b20] BOOTMEM +[ 0.000000] #38 [0001d51b40 - 0001d51ba9] BOOTMEM +[ 0.000000] #39 [0001d51bc0 - 0001d51c29] BOOTMEM +[ 0.000000] #40 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #41 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #42 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #43 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #44 [0001d51c40 - 0001d51c48] BOOTMEM +[ 0.000000] #45 [0001d51c80 - 0001d51c88] BOOTMEM +[ 0.000000] #46 [0001d51cc0 - 0001d51cd0] BOOTMEM +[ 0.000000] #47 [0001d51d00 - 0001d51d20] BOOTMEM +[ 0.000000] #48 [0001d51d40 - 0001d51e70] BOOTMEM +[ 0.000000] #49 [0001d51e80 - 0001d51ed0] BOOTMEM +[ 0.000000] #50 [0001d51f00 - 0001d51f50] BOOTMEM +[ 0.000000] #51 [0001d53000 - 0001d5b000] BOOTMEM +[ 0.000000] #52 [0001d5b000 - 0001d5b240] BOOTMEM +[ 0.000000] #53 [0002122000 - 0006122000] BOOTMEM +[ 0.000000] #54 [0001d5b240 - 0001d7b240] BOOTMEM +[ 0.000000] #55 [0001d7b240 - 0001dbb240] BOOTMEM +[ 0.000000] #56 [000001c800 - 0000024800] BOOTMEM +[ 0.000000] Memory: 6113768k/7340032k available (5707k kernel code, 1049476k absent, 176788k reserved, 5421k data, 904k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:712 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 62914560 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2506.005 MHz processor. +[ 0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 5012.01 BogoMIPS (lpj=25060050) +[ 0.000009] pid_max: default: 32768 minimum: 301 +[ 0.000033] Security Framework initialized +[ 0.000052] AppArmor: AppArmor initialized +[ 0.000054] Yama: becoming mindful. +[ 0.010661] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) +[ 0.015468] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.017730] Mount-cache hash table entries: 256 +[ 0.017884] Initializing cgroup subsys ns +[ 0.017889] Initializing cgroup subsys cpuacct +[ 0.017892] Initializing cgroup subsys memory +[ 0.017900] Initializing cgroup subsys devices +[ 0.017903] Initializing cgroup subsys freezer +[ 0.017904] Initializing cgroup subsys net_cls +[ 0.017934] CPU: Physical Processor ID: 0 +[ 0.017935] CPU: Processor Core ID: 0 +[ 0.017937] mce: CPU supports 6 MCE banks +[ 0.017945] CPU0: Thermal monitoring enabled (TM2) +[ 0.017949] using mwait in idle threads. +[ 0.017951] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.017958] ... version: 2 +[ 0.017960] ... bit width: 40 +[ 0.017961] ... generic registers: 2 +[ 0.017963] ... value mask: 000000ffffffffff +[ 0.017964] ... max period: 000000007fffffff +[ 0.017965] ... fixed-purpose events: 3 +[ 0.017967] ... event mask: 0000000700000003 +[ 0.020339] ACPI: Core revision 20100428 +[ 0.027233] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.027238] ftrace: allocating 22647 entries in 89 pages +[ 0.030056] Setting APIC routing to flat +[ 0.030366] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.136366] CPU0: Intel Pentium(R) Dual-Core CPU E5200 @ 2.50GHz stepping 0a +[ 0.140000] Booting Node 0, Processors #1 +[ 0.300018] Brought up 2 CPUs +[ 0.300021] Total of 2 processors activated (10024.44 BogoMIPS). +[ 0.300522] devtmpfs: initialized +[ 0.300597] regulator: core version 0.5 +[ 0.300621] Time: 16:36:42 Date: 07/16/10 +[ 0.300655] NET: Registered protocol family 16 +[ 0.300674] Trying to unpack rootfs image as initramfs... +[ 0.300770] ACPI: bus type pci registered +[ 0.300832] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.300834] PCI: not using MMCONFIG +[ 0.300836] PCI: Using configuration type 1 for base access +[ 0.310098] bio: create slab at 0 +[ 0.311253] ACPI: EC: Look up EC in DSDT +[ 0.312633] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.318311] ACPI: SSDT 00000000bff9e0c0 00277 (v01 DpgPmm P001Ist 00000011 INTL 20051117) +[ 0.318608] ACPI: Dynamic OEM Table Load: +[ 0.318611] ACPI: SSDT (null) 00277 (v01 DpgPmm P001Ist 00000011 INTL 20051117) +[ 0.319025] ACPI: SSDT 00000000bff9e340 00277 (v01 DpgPmm P002Ist 00000012 INTL 20051117) +[ 0.319320] ACPI: Dynamic OEM Table Load: +[ 0.319322] ACPI: SSDT (null) 00277 (v01 DpgPmm P002Ist 00000012 INTL 20051117) +[ 0.319417] ACPI: Interpreter enabled +[ 0.319420] ACPI: (supports S0 S1 S4 S5) +[ 0.319438] ACPI: Using IOAPIC for interrupt routing +[ 0.319490] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.321344] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources +[ 0.365897] ACPI: No dock devices found. +[ 0.365902] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.366041] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.366312] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.366314] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.366317] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.366319] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] +[ 0.366321] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] +[ 0.366323] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff] +[ 0.366393] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 0.366396] pci 0000:00:01.0: PME# disabled +[ 0.366461] pci 0000:00:1a.0: reg 20: [io 0xbc00-0xbc1f] +[ 0.366524] pci 0000:00:1a.1: reg 20: [io 0xb880-0xb89f] +[ 0.366585] pci 0000:00:1a.2: reg 20: [io 0xb800-0xb81f] +[ 0.366647] pci 0000:00:1a.7: reg 10: [mem 0xf9fffc00-0xf9ffffff] +[ 0.366699] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.366702] pci 0000:00:1a.7: PME# disabled +[ 0.366734] pci 0000:00:1b.0: reg 10: [mem 0xf9ff8000-0xf9ffbfff 64bit] +[ 0.366772] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.366775] pci 0000:00:1b.0: PME# disabled +[ 0.366838] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.366842] pci 0000:00:1c.0: PME# disabled +[ 0.366908] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.366911] pci 0000:00:1c.1: PME# disabled +[ 0.366975] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 0.366979] pci 0000:00:1c.5: PME# disabled +[ 0.367025] pci 0000:00:1d.0: reg 20: [io 0xb480-0xb49f] +[ 0.367091] pci 0000:00:1d.1: reg 20: [io 0xb400-0xb41f] +[ 0.367152] pci 0000:00:1d.2: reg 20: [io 0xb080-0xb09f] +[ 0.367211] pci 0000:00:1d.7: reg 10: [mem 0xf9fff800-0xf9fffbff] +[ 0.367261] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.367265] pci 0000:00:1d.7: PME# disabled +[ 0.367377] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.367381] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH6 GPIO +[ 0.367384] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff) +[ 0.367387] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0a00 (mask 0017) +[ 0.367391] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 00ff) +[ 0.367434] pci 0000:00:1f.2: reg 10: [io 0xb000-0xb007] +[ 0.367439] pci 0000:00:1f.2: reg 14: [io 0xac00-0xac03] +[ 0.367444] pci 0000:00:1f.2: reg 18: [io 0xa880-0xa887] +[ 0.367449] pci 0000:00:1f.2: reg 1c: [io 0xa800-0xa803] +[ 0.367454] pci 0000:00:1f.2: reg 20: [io 0xa480-0xa48f] +[ 0.367459] pci 0000:00:1f.2: reg 24: [io 0xa400-0xa40f] +[ 0.367501] pci 0000:00:1f.3: reg 10: [mem 0xf9fff400-0xf9fff4ff 64bit] +[ 0.367513] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f] +[ 0.367549] pci 0000:00:1f.5: reg 10: [io 0xa000-0xa007] +[ 0.367554] pci 0000:00:1f.5: reg 14: [io 0x9c00-0x9c03] +[ 0.367559] pci 0000:00:1f.5: reg 18: [io 0x9880-0x9887] +[ 0.367565] pci 0000:00:1f.5: reg 1c: [io 0x9800-0x9803] +[ 0.367571] pci 0000:00:1f.5: reg 20: [io 0x9480-0x948f] +[ 0.367575] pci 0000:00:1f.5: reg 24: [io 0x9400-0x940f] +[ 0.367643] pci 0000:01:00.0: reg 10: [mem 0xfd000000-0xfdffffff] +[ 0.367651] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xdfffffff 64bit pref] +[ 0.367659] pci 0000:01:00.0: reg 1c: [mem 0xfa000000-0xfbffffff 64bit] +[ 0.367663] pci 0000:01:00.0: reg 24: [io 0xcc00-0xcc7f] +[ 0.367668] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref] +[ 0.367712] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.367715] pci 0000:00:01.0: bridge window [io 0xc000-0xcfff] +[ 0.367719] pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfe9fffff] +[ 0.367723] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref] +[ 0.367832] pci 0000:02:00.0: reg 24: [mem 0xfeafe000-0xfeafffff] +[ 0.367869] pci 0000:02:00.0: PME# supported from D3hot +[ 0.367874] pci 0000:02:00.0: PME# disabled +[ 0.367919] pci 0000:02:00.1: reg 10: [io 0xdc00-0xdc07] +[ 0.367927] pci 0000:02:00.1: reg 14: [io 0xd880-0xd883] +[ 0.367935] pci 0000:02:00.1: reg 18: [io 0xd800-0xd807] +[ 0.367944] pci 0000:02:00.1: reg 1c: [io 0xd480-0xd483] +[ 0.367952] pci 0000:02:00.1: reg 20: [io 0xd400-0xd40f] +[ 0.368013] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.368025] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.368029] pci 0000:00:1c.0: bridge window [io 0xd000-0xdfff] +[ 0.368032] pci 0000:00:1c.0: bridge window [mem 0xfea00000-0xfeafffff] +[ 0.368038] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.368075] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.368078] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled) +[ 0.368082] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.368087] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.368151] pci 0000:04:00.0: reg 10: [io 0xe800-0xe8ff] +[ 0.368171] pci 0000:04:00.0: reg 18: [mem 0xf8fff000-0xf8ffffff 64bit pref] +[ 0.368185] pci 0000:04:00.0: reg 20: [mem 0xf8fe0000-0xf8feffff 64bit pref] +[ 0.368193] pci 0000:04:00.0: reg 30: [mem 0xfebf0000-0xfebfffff pref] +[ 0.368230] pci 0000:04:00.0: supports D1 D2 +[ 0.368232] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.368236] pci 0000:04:00.0: PME# disabled +[ 0.380021] pci 0000:00:1c.5: PCI bridge to [bus 04-04] +[ 0.380026] pci 0000:00:1c.5: bridge window [io 0xe000-0xefff] +[ 0.380030] pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff] +[ 0.380035] pci 0000:00:1c.5: bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref] +[ 0.380098] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode) +[ 0.380101] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.380105] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.380110] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.380113] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.380115] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.380117] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.380119] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode) +[ 0.380121] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) +[ 0.380123] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode) +[ 0.380154] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.380308] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 0.380443] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT] +[ 0.380504] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT] +[ 0.380560] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT] +[ 0.385296] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15) +[ 0.385398] ACPI: PCI Interrupt Link [LNKB] (IRQs *5) +[ 0.385494] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12 *14 15) +[ 0.385598] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12 14 *15) +[ 0.385696] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled. +[ 0.385796] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 *11 12 14 15) +[ 0.385899] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 6 7 10 11 12 14 15) +[ 0.385998] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 7 *10 11 12 14 15) +[ 0.386041] HEST: Table is not found! +[ 0.386125] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.386128] vgaarb: loaded +[ 0.386259] SCSI subsystem initialized +[ 0.386359] libata version 3.00 loaded. +[ 0.386403] usbcore: registered new interface driver usbfs +[ 0.386412] usbcore: registered new interface driver hub +[ 0.386432] usbcore: registered new device driver usb +[ 0.386546] ACPI: WMI: Mapper loaded +[ 0.386548] PCI: Using ACPI for IRQ routing +[ 0.386551] PCI: pci_cache_line_size set to 64 bytes +[ 0.386644] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.386646] reserve RAM buffer: 00000000bff90000 - 00000000bfffffff +[ 0.386726] NetLabel: Initializing +[ 0.386727] NetLabel: domain hash size = 128 +[ 0.386729] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.386740] NetLabel: unlabeled traffic allowed by default +[ 0.386767] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.386772] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.386777] hpet0: 4 comparators, 64-bit 14.318180 MHz counter +[ 0.390023] Switching to clocksource tsc +[ 0.398867] AppArmor: AppArmor Filesystem Enabled +[ 0.398885] pnp: PnP ACPI init +[ 0.398902] ACPI: bus type pnp registered +[ 0.402902] pnp: PnP ACPI: found 19 devices +[ 0.402904] ACPI: ACPI bus type pnp unregistered +[ 0.402917] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved +[ 0.402919] system 00:01: [mem 0xfed90000-0xfed93fff] has been reserved +[ 0.402927] system 00:09: [io 0x04c0-0x04ff] has been reserved +[ 0.402930] system 00:09: [io 0x04d0-0x04d1] has been reserved +[ 0.402932] system 00:09: [io 0x0800-0x087f] has been reserved +[ 0.402934] system 00:09: [io 0x0480-0x04bf] has been reserved +[ 0.402937] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.402939] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.402941] system 00:09: [mem 0xfed40000-0xfed8ffff] has been reserved +[ 0.402946] system 00:0c: [mem 0xffc00000-0xffefffff] has been reserved +[ 0.402951] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.402953] system 00:0d: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.402958] system 00:10: [io 0x0a00-0x0adf] has been reserved +[ 0.402960] system 00:10: [io 0x0ae0-0x0aef] has been reserved +[ 0.402967] system 00:11: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.402972] system 00:12: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.402974] system 00:12: [mem 0x000c0000-0x000cffff] has been reserved +[ 0.402977] system 00:12: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.402979] system 00:12: [mem 0x00100000-0xbfffffff] could not be reserved +[ 0.402981] system 00:12: [mem 0xfed90000-0xffffffff] could not be reserved +[ 0.407701] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf0000000-0xf01fffff 64bit pref] +[ 0.407705] pci 0000:00:1c.1: BAR 14: assigned [mem 0xf0200000-0xf03fffff] +[ 0.407708] pci 0000:00:1c.1: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.407710] pci 0000:00:1c.1: BAR 13: assigned [io 0x1000-0x1fff] +[ 0.407714] pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc07ffff pref] +[ 0.407718] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.407721] pci 0000:00:01.0: bridge window [io 0xc000-0xcfff] +[ 0.407724] pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfe9fffff] +[ 0.407727] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref] +[ 0.407731] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.407734] pci 0000:00:1c.0: bridge window [io 0xd000-0xdfff] +[ 0.407738] pci 0000:00:1c.0: bridge window [mem 0xfea00000-0xfeafffff] +[ 0.407742] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff 64bit pref] +[ 0.407747] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.407750] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff] +[ 0.407755] pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf03fffff] +[ 0.407758] pci 0000:00:1c.1: bridge window [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.407765] pci 0000:00:1c.5: PCI bridge to [bus 04-04] +[ 0.407767] pci 0000:00:1c.5: bridge window [io 0xe000-0xefff] +[ 0.407772] pci 0000:00:1c.5: bridge window [mem 0xfeb00000-0xfebfffff] +[ 0.407775] pci 0000:00:1c.5: bridge window [mem 0xf8f00000-0xf8ffffff 64bit pref] +[ 0.407781] pci 0000:00:1e.0: PCI bridge to [bus 05-05] +[ 0.407782] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.407786] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.407789] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.407803] alloc irq_desc for 16 on node -1 +[ 0.407805] alloc kstat_irqs on node -1 +[ 0.407811] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.407815] pci 0000:00:01.0: setting latency timer to 64 +[ 0.407822] alloc irq_desc for 17 on node -1 +[ 0.407823] alloc kstat_irqs on node -1 +[ 0.407826] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.407830] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.407837] pci 0000:00:1c.1: enabling device (0104 -> 0107) +[ 0.407840] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.407843] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.407850] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.407854] pci 0000:00:1c.5: setting latency timer to 64 +[ 0.407859] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.407863] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.407865] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.407867] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.407869] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.407871] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff] +[ 0.407872] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 0.407874] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff] +[ 0.407876] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfe9fffff] +[ 0.407878] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xdfffffff 64bit pref] +[ 0.407880] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff] +[ 0.407882] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff] +[ 0.407884] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf01fffff 64bit pref] +[ 0.407886] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff] +[ 0.407888] pci_bus 0000:03: resource 1 [mem 0xf0200000-0xf03fffff] +[ 0.407890] pci_bus 0000:03: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.407892] pci_bus 0000:04: resource 0 [io 0xe000-0xefff] +[ 0.407894] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff] +[ 0.407896] pci_bus 0000:04: resource 2 [mem 0xf8f00000-0xf8ffffff 64bit pref] +[ 0.407898] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7] +[ 0.407899] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff] +[ 0.407901] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.407903] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.407905] pci_bus 0000:05: resource 8 [mem 0xc0000000-0xdfffffff] +[ 0.407907] pci_bus 0000:05: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 0.407944] NET: Registered protocol family 2 +[ 0.408154] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.409712] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.414801] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.415428] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.415431] TCP reno registered +[ 0.415446] UDP hash table entries: 4096 (order: 5, 131072 bytes) +[ 0.415556] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) +[ 0.415744] NET: Registered protocol family 1 +[ 0.415932] pci 0000:01:00.0: Boot video device +[ 0.415944] PCI: CLS 32 bytes, default 64 +[ 0.415946] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.415948] Placing 64MB software IO TLB between ffff880002122000 - ffff880006122000 +[ 0.415950] software IO TLB at phys 0x2122000 - 0x6122000 +[ 0.416127] Scanning for low memory corruption every 60 seconds +[ 0.416255] audit: initializing netlink socket (disabled) +[ 0.416265] type=2000 audit(1279298202.400:1): initialized +[ 0.428539] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.429716] VFS: Disk quotas dquot_6.5.2 +[ 0.429765] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.430246] fuse init (API version 7.14) +[ 0.430314] msgmni has been set to 11940 +[ 0.430490] alg: No test for stdrng (krng) +[ 0.430530] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.430533] io scheduler noop registered +[ 0.430535] io scheduler deadline registered +[ 0.430565] io scheduler cfq registered (default) +[ 0.430661] pcieport 0000:00:01.0: setting latency timer to 64 +[ 0.430683] alloc irq_desc for 40 on node -1 +[ 0.430685] alloc kstat_irqs on node -1 +[ 0.430693] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X +[ 0.430747] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.430775] alloc irq_desc for 41 on node -1 +[ 0.430776] alloc kstat_irqs on node -1 +[ 0.430782] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X +[ 0.430844] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.430871] alloc irq_desc for 42 on node -1 +[ 0.430873] alloc kstat_irqs on node -1 +[ 0.430878] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X +[ 0.430947] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 0.430978] alloc irq_desc for 43 on node -1 +[ 0.430979] alloc kstat_irqs on node -1 +[ 0.430985] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X +[ 0.431063] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.431143] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.431245] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.431249] ACPI: Power Button [PWRB] +[ 0.431285] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.431287] ACPI: Power Button [PWRF] +[ 0.431523] ACPI: acpi_idle registered with cpuidle +[ 0.433573] ERST: Table is not found! +[ 0.434761] Linux agpgart interface v0.103 +[ 0.435028] vesafb: framebuffer at 0xfb000000, mapped to 0xffffc90011800000, using 1216k, total 1216k +[ 0.435031] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.435032] vesafb: scrolling: redraw +[ 0.435034] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.447641] Console: switching to colour frame buffer device 80x30 +[ 0.460234] fb0: VESA VGA frame buffer device +[ 0.460291] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.460406] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.460705] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.461708] brd: module loaded +[ 0.462098] loop: module loaded +[ 0.462276] ata_piix 0000:00:1f.2: version 2.13 +[ 0.462296] alloc irq_desc for 19 on node -1 +[ 0.462298] alloc kstat_irqs on node -1 +[ 0.462308] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.462313] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] +[ 0.462356] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 0.462441] scsi0 : ata_piix +[ 0.462498] scsi1 : ata_piix +[ 0.463949] ata1: SATA max UDMA/133 cmd 0xb000 ctl 0xac00 bmdma 0xa480 irq 19 +[ 0.463954] ata2: SATA max UDMA/133 cmd 0xa880 ctl 0xa800 bmdma 0xa488 irq 19 +[ 0.463974] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.463978] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ] +[ 0.464032] ata_piix 0000:00:1f.5: setting latency timer to 64 +[ 0.464072] scsi2 : ata_piix +[ 0.464116] scsi3 : ata_piix +[ 0.465130] ata3: SATA max UDMA/133 cmd 0xa000 ctl 0x9c00 bmdma 0x9480 irq 19 +[ 0.465134] ata4: SATA max UDMA/133 cmd 0x9880 ctl 0x9800 bmdma 0x9488 irq 19 +[ 0.465181] pata_acpi 0000:02:00.1: enabling device (0000 -> 0001) +[ 0.465187] pata_acpi 0000:02:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.465217] pata_acpi 0000:02:00.1: setting latency timer to 64 +[ 0.465230] pata_acpi 0000:02:00.1: PCI INT B disabled +[ 0.465462] Fixed MDIO Bus: probed +[ 0.465489] PPP generic driver version 2.4.2 +[ 0.465528] tun: Universal TUN/TAP device driver, 1.6 +[ 0.465530] tun: (C) 1999-2004 Max Krasnyansky +[ 0.465610] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.465627] alloc irq_desc for 18 on node -1 +[ 0.465629] alloc kstat_irqs on node -1 +[ 0.465635] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.465662] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.465665] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.465690] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.465718] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.469598] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported +[ 0.469617] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xf9fffc00 +[ 0.489966] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.490133] hub 1-0:1.0: USB hub found +[ 0.490138] hub 1-0:1.0: 6 ports detected +[ 0.490213] alloc irq_desc for 23 on node -1 +[ 0.490215] alloc kstat_irqs on node -1 +[ 0.490223] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.490249] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.490252] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.490302] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.490329] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.494208] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported +[ 0.494227] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf9fff800 +[ 0.509941] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.510071] hub 2-0:1.0: USB hub found +[ 0.510076] hub 2-0:1.0: 6 ports detected +[ 0.510154] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.510169] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.510240] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.510248] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.510251] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.510283] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.510322] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000bc00 +[ 0.510415] hub 3-0:1.0: USB hub found +[ 0.510419] hub 3-0:1.0: 2 ports detected +[ 0.510466] alloc irq_desc for 21 on node -1 +[ 0.510468] alloc kstat_irqs on node -1 +[ 0.510474] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.510479] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.510482] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.510506] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.510535] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000b880 +[ 0.510627] hub 4-0:1.0: USB hub found +[ 0.510630] hub 4-0:1.0: 2 ports detected +[ 0.510676] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.510681] uhci_hcd 0000:00:1a.2: setting latency timer to 64 +[ 0.510683] uhci_hcd 0000:00:1a.2: UHCI Host Controller +[ 0.510707] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 +[ 0.510728] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000b800 +[ 0.510818] hub 5-0:1.0: USB hub found +[ 0.510821] hub 5-0:1.0: 2 ports detected +[ 0.510866] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.510871] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.510874] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.510906] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 +[ 0.510927] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000b480 +[ 0.511023] hub 6-0:1.0: USB hub found +[ 0.511026] hub 6-0:1.0: 2 ports detected +[ 0.511069] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.511074] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.511077] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.511107] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 +[ 0.511127] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000b400 +[ 0.511213] hub 7-0:1.0: USB hub found +[ 0.511216] hub 7-0:1.0: 2 ports detected +[ 0.511259] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.511263] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.511266] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.511299] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 +[ 0.511320] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000b080 +[ 0.511409] hub 8-0:1.0: USB hub found +[ 0.511412] hub 8-0:1.0: 2 ports detected +[ 0.511523] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 +[ 0.513000] Freeing initrd memory: 10576k freed +[ 0.513733] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.513763] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.514072] mice: PS/2 mouse device common for all mice +[ 0.514224] rtc_cmos 00:03: RTC can wake from S4 +[ 0.514304] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.514340] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 0.514506] device-mapper: uevent: version 1.0.3 +[ 0.514661] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.514742] device-mapper: multipath: version 1.1.1 loaded +[ 0.514747] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.514928] cpuidle: using governor ladder +[ 0.514930] cpuidle: using governor menu +[ 0.515243] TCP cubic registered +[ 0.515366] NET: Registered protocol family 10 +[ 0.515790] lo: Disabled Privacy Extensions +[ 0.515981] NET: Registered protocol family 17 +[ 0.516895] PM: Resume from disk failed. +[ 0.516921] registered taskstats version 1 +[ 0.517358] Magic number: 2:486:641 +[ 0.517570] rtc_cmos 00:03: setting system clock to 2010-07-16 16:36:42 UTC (1279298202) +[ 0.517574] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.517576] EDD information not available. +[ 0.532103] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +[ 0.809848] usb 1-3: new high speed USB device using ehci_hcd and address 2 +[ 0.830688] ata4: SATA link down (SStatus 0 SControl 300) +[ 0.841386] ata3: SATA link down (SStatus 0 SControl 300) +[ 0.960640] hub 1-3:1.0: USB hub found +[ 0.960723] hub 1-3:1.0: 7 ports detected +[ 1.250128] usb 1-3.3: new low speed USB device using ehci_hcd and address 3 +[ 1.330067] ata2.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.330083] ata2.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.330246] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.330257] ata1.01: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 1.372123] ata1.00: ATA-8: WDC WD5000AAKS-00A7B2, 01.03B01, max UDMA/133 +[ 1.372128] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.372165] ata1.01: ATAPI: TSSTcorp CDDVDW SH-S223L, SB01, max UDMA/100 +[ 1.385996] ata2.00: ATA-7: WDC WD5000KS-00MNB0, 07.02E07, max UDMA/133 +[ 1.386002] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.386175] ata2.01: ATA-8: WDC WD1002FAEX-00Z3A0, 05.01D05, max UDMA/133 +[ 1.386178] ata2.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.411113] ata2.00: configured for UDMA/133 +[ 1.412157] ata1.00: configured for UDMA/133 +[ 1.431908] ata2.01: configured for UDMA/133 +[ 1.451410] ata1.01: configured for UDMA/100 +[ 1.451908] scsi 0:0:0:0: Direct-Access ATA WDC WD5000AAKS-0 01.0 PQ: 0 ANSI: 5 +[ 1.452021] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 1.452026] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.452065] sd 0:0:0:0: [sda] Write Protect is off +[ 1.452068] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.452461] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.452680] scsi 0:0:1:0: CD-ROM TSSTcorp CDDVDW SH-S223L SB01 PQ: 0 ANSI: 5 +[ 1.454109] sda: sda1 +[ 1.468001] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.468006] Uniform CD-ROM driver Revision: 3.20 +[ 1.468131] sr 0:0:1:0: Attached scsi CD-ROM sr0 +[ 1.468136] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.468181] sr 0:0:1:0: Attached scsi generic sg1 type 5 +[ 1.468263] scsi 1:0:0:0: Direct-Access ATA WDC WD5000KS-00M 07.0 PQ: 0 ANSI: 5 +[ 1.468340] sd 1:0:0:0: Attached scsi generic sg2 type 0 +[ 1.468407] scsi 1:0:1:0: Direct-Access ATA WDC WD1002FAEX-0 05.0 PQ: 0 ANSI: 5 +[ 1.468410] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 1.468453] sd 1:0:0:0: [sdb] Write Protect is off +[ 1.468455] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.468476] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.468487] sd 1:0:1:0: Attached scsi generic sg3 type 0 +[ 1.468557] sd 1:0:1:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB) +[ 1.468593] sdb: +[ 1.468602] sd 1:0:1:0: [sdc] Write Protect is off +[ 1.468605] sd 1:0:1:0: [sdc] Mode Sense: 00 3a 00 00 +[ 1.476720] sd 1:0:1:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.476726] sdb1 < sdb5 sdb6 > +[ 1.502882] sdc: sdc1 +[ 1.518143] sd 1:0:0:0: [sdb] Attached SCSI disk +[ 1.518247] sd 1:0:1:0: [sdc] Attached SCSI disk +[ 1.518266] Freeing unused kernel memory: 904k freed +[ 1.518593] Write protecting the kernel read-only data: 10240k +[ 1.518742] Freeing unused kernel memory: 416k freed +[ 1.518984] Freeing unused kernel memory: 1604k freed +[ 1.531553] udev: starting version 151 +[ 1.576076] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.576098] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.576145] r8169 0000:04:00.0: setting latency timer to 64 +[ 1.576186] alloc irq_desc for 44 on node -1 +[ 1.576188] alloc kstat_irqs on node -1 +[ 1.576202] r8169 0000:04:00.0: irq 44 for MSI/MSI-X +[ 1.576604] r8169 0000:04:00.0: eth0: RTL8168c/8111c at 0xffffc90000c74000, 00:21:85:1d:72:73, XID 1c4000c0 IRQ 44 +[ 1.592399] ahci 0000:02:00.0: version 3.0 +[ 1.592421] ahci 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.613163] ahci 0000:02:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode +[ 1.613167] ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part +[ 1.613173] ahci 0000:02:00.0: setting latency timer to 64 +[ 1.628368] scsi4 : ahci +[ 1.638474] Floppy drive(s): fd0 is 1.44M +[ 1.642623] scsi5 : ahci +[ 1.642785] ata5: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 16 +[ 1.642789] ata6: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe180 irq 16 +[ 1.642945] pata_jmicron 0000:02:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 1.642978] pata_jmicron 0000:02:00.1: setting latency timer to 64 +[ 1.652512] scsi6 : pata_jmicron +[ 1.655028] FDC 0 is a post-1991 82077 +[ 1.657657] scsi7 : pata_jmicron +[ 1.658207] ata7: PATA max UDMA/100 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 17 +[ 1.658210] ata8: PATA max UDMA/100 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 17 +[ 1.857504] ata7.00: ATA-7: ST3500630A, 3.AAE, max UDMA/100 +[ 1.857510] ata7.00: 976773168 sectors, multi 16: LBA48 +[ 1.917216] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null) +[ 1.940744] ata7.00: configured for UDMA/100 +[ 1.990047] ata6: SATA link down (SStatus 0 SControl 300) +[ 1.990083] ata5: SATA link down (SStatus 0 SControl 300) +[ 2.010159] scsi 6:0:0:0: Direct-Access ATA ST3500630A 3.AA PQ: 0 ANSI: 5 +[ 2.010276] sd 6:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 2.010306] sd 6:0:0:0: Attached scsi generic sg4 type 0 +[ 2.010322] sd 6:0:0:0: [sdd] Write Protect is off +[ 2.010325] sd 6:0:0:0: [sdd] Mode Sense: 00 3a 00 00 +[ 2.010353] sd 6:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.010490] sdd: sdd1 +[ 2.030447] sd 6:0:0:0: [sdd] Attached SCSI disk +[ 14.020566] udev: starting version 151 +[ 14.041577] Adding 9765884k swap on /dev/sdb6. Priority:-1 extents:1 across:9765884k +[ 14.097692] lp: driver loaded but no devices found +[ 14.282553] parport_pc 00:08: reported by Plug and Play ACPI +[ 14.282598] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] +[ 14.298141] [drm] Initialized drm 1.1.0 20060810 +[ 14.313313] ppdev: user-space parallel port driver +[ 14.333836] type=1400 audit(1279312616.306:2): operation="profile_load" pid=684 name="/sbin/dhclient3" pid=684 comm="apparmor_parser" +[ 14.334427] type=1400 audit(1279312616.306:3): operation="profile_load" pid=684 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=684 comm="apparmor_parser" +[ 14.334735] type=1400 audit(1279312616.306:4): operation="profile_load" pid=684 name="/usr/lib/connman/scripts/dhclient-script" pid=684 comm="apparmor_parser" +[ 14.361485] lp0: using parport0 (interrupt-driven). +[ 14.382469] nouveau 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 14.382475] nouveau 0000:01:00.0: setting latency timer to 64 +[ 14.399071] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x096d80c1) +[ 14.399076] checking generic (fb000000 130000) vs hw (c0000000 20000000) +[ 14.399078] checking generic (fb000000 130000) vs hw (fa000000 2000000) +[ 14.399080] fb: conflicting fb hw usage nouveaufb vs VESA VGA - removing generic driver +[ 14.399591] Console: switching to colour dummy device 80x25 +[ 14.407145] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from ACPI +[ 14.407149] [drm] nouveau 0000:01:00.0: ... BIOS signature not found +[ 14.407150] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN +[ 14.415927] alloc irq_desc for 22 on node -1 +[ 14.415930] alloc kstat_irqs on node -1 +[ 14.415940] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 14.416009] alloc irq_desc for 45 on node -1 +[ 14.416011] alloc kstat_irqs on node -1 +[ 14.416025] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X +[ 14.416066] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 14.456456] [drm] nouveau 0000:01:00.0: ... appears to be valid +[ 14.456461] [drm] nouveau 0000:01:00.0: BIT BIOS found +[ 14.456463] [drm] nouveau 0000:01:00.0: Bios version 62.94.71.00 +[ 14.456467] [drm] nouveau 0000:01:00.0: TMDS table revision 2.0 not currently supported +[ 14.456469] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0 +[ 14.456472] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 02000300 00000028 +[ 14.456474] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01000302 00020030 +[ 14.456476] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02011312 00020010 +[ 14.456478] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 04022320 00000028 +[ 14.456481] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 16 4 +[ 14.456483] [drm] nouveau 0000:01:00.0: 0: 0x00001030: type 0x30 idx 0 tag 0x07 +[ 14.456486] [drm] nouveau 0000:01:00.0: 1: 0x00002161: type 0x61 idx 1 tag 0x08 +[ 14.456488] [drm] nouveau 0000:01:00.0: 2: 0x00000200: type 0x00 idx 2 tag 0xff +[ 14.456497] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xD451 +[ 14.500824] hda_codec: ALC888: BIOS auto-probing. +[ 14.510810] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 14.510820] IP: [] __mutex_lock_slowpath+0xd2/0x190 +[ 14.510829] PGD 1b4837067 PUD 1b4836067 PMD 0 +[ 14.510834] Oops: 0002 [#1] SMP +[ 14.510837] last sysfs file: /sys/module/snd_hda_codec/initstate +[ 14.510842] CPU 0 +[ 14.510843] Modules linked in: snd_hda_codec_realtek snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi nouveau(+) snd_rawmidi snd_seq_midi_event snd_seq ttm snd_timer snd_seq_device drm_kms_helper ppdev parport_pc snd psmouse serio_raw drm i2c_algo_bit soundcore intel_agp snd_page_alloc lp parport hid floppy pata_jmicron ahci libahci r8169 mii +[ 14.510873] +[ 14.510876] Pid: 342, comm: plymouthd Not tainted 2.6.35-8-generic #13-Ubuntu P45 Neo3 (MS-7514)/MS-7514 +[ 14.510880] RIP: 0010:[] [] __mutex_lock_slowpath+0xd2/0x190 +[ 14.510886] RSP: 0018:ffff8801b87d9d98 EFLAGS: 00010246 +[ 14.510889] RAX: 0000000000000000 RBX: ffff8801b4ab4418 RCX: 0000000000000006 +[ 14.510892] RDX: ffff8801b87d9da8 RSI: 0000000000000000 RDI: ffff8801b4ab441c +[ 14.510896] RBP: ffff8801b87d9df8 R08: 0000000000000156 R09: 000000000000e200 +[ 14.510899] R10: fffffffffffffff0 R11: 0000000000000246 R12: ffff8801b49644a0 +[ 14.510903] R13: ffff8801b4ab441c R14: 00000000ffffffff R15: ffff8801b4ab4420 +[ 14.510907] FS: 00007f92f737b700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +[ 14.510912] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 14.510915] CR2: 0000000000000000 CR3: 00000001b58a8000 CR4: 00000000000406f0 +[ 14.510919] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 14.510922] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 14.510926] Process plymouthd (pid: 342, threadinfo ffff8801b87d8000, task ffff8801b49644a0) +[ 14.510931] Stack: +[ 14.510932] ffff880100000000 000000000000e200 ffff8801b4ab4420 0000000000000000 +[ 14.510938] <0> 0000000000000000 ffffffffa00a7240 ffffffffa00a4f60 ffff8801b4ab4418 +[ 14.510944] <0> ffff8801aab95840 ffff8801b4ab4418 ffff8801b4ab4320 ffff8801aab958e8 +[ 14.510950] Call Trace: +[ 14.510970] [] ? drm_gem_object_release_handle+0x0/0x40 [drm] +[ 14.510980] [] ? drm_version+0x0/0xb0 [drm] +[ 14.510984] [] mutex_lock+0x2b/0x50 +[ 14.510996] [] drm_fb_release+0x2f/0xb0 [drm] +[ 14.511005] [] drm_release+0x468/0x550 [drm] +[ 14.511010] [] __fput+0xf5/0x210 +[ 14.511014] [] fput+0x25/0x30 +[ 14.511018] [] filp_close+0x5d/0x90 +[ 14.511022] [] sys_close+0xb7/0x120 +[ 14.511028] [] system_call_fastpath+0x16/0x1b +[ 14.511031] Code: 00 4c 8d 6b 04 4c 8d 7b 08 41 be ff ff ff ff 4c 89 ef e8 22 14 00 00 48 8b 43 10 48 8d 55 b0 48 89 53 10 4c 89 7d b0 48 89 45 b8 <48> 89 10 44 89 f0 4c 89 65 c0 87 03 83 f8 01 75 24 eb 2c 0f 1f +[ 14.511066] RIP [] __mutex_lock_slowpath+0xd2/0x190 +[ 14.511071] RSP +[ 14.511073] CR2: 0000000000000000 +[ 14.511115] ---[ end trace e18bfc47b3114fe7 ]--- +[ 14.550162] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xD8B7 +[ 14.590079] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xE907 +[ 14.590095] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xEA28 +[ 14.592112] usbcore: registered new interface driver hiddev +[ 14.610096] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xED4F +[ 14.610104] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xEDB4 +[ 14.641334] [drm] nouveau 0000:01:00.0: 0xEDB4: Condition still not met after 20ms, skipping following opcodes +[ 14.641357] [drm] nouveau 0000:01:00.0: 0xC314: parsing output script 0 +[ 14.641370] [drm] nouveau 0000:01:00.0: 0xC314: parsing output script 0 +[ 14.641388] [drm] nouveau 0000:01:00.0: Detected 512MiB VRAM +[ 14.712087] [TTM] Zone kernel: Available graphics memory: 3063634 kiB. +[ 14.712092] [TTM] Zone dma32: Available graphics memory: 2097152 kiB. +[ 14.712096] [TTM] Initializing pool allocator. +[ 14.735678] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture) +[ 14.736473] mtrr: type mismatch for c0000000,20000000 old: write-back new: write-combining +[ 14.736736] [drm] nouveau 0000:01:00.0: Allocating FIFO number 1 +[ 14.742250] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 1 +[ 14.743059] [drm] nouveau 0000:01:00.0: Detected a DAC output +[ 14.743066] [drm] nouveau 0000:01:00.0: Detected a TMDS output +[ 14.743069] [drm] nouveau 0000:01:00.0: Detected a TMDS output +[ 14.743072] [drm] nouveau 0000:01:00.0: Detected a DAC output +[ 14.743076] [drm] nouveau 0000:01:00.0: Detected a DVI-I connector +[ 14.743153] [drm] nouveau 0000:01:00.0: Detected a HDMI connector +[ 14.743228] [drm] nouveau 0000:01:00.0: Detected a VGA connector +[ 14.746583] EXT4-fs (sdb5): re-mounted. Opts: errors=remount-ro +[ 14.926470] [drm] nouveau 0000:01:00.0: allocated 1280x1024 fb: 0x40250000, bo ffff8801aa34f400 +[ 14.926950] Console: switching to colour frame buffer device 160x64 +[ 14.929239] fb0: nouveaufb frame buffer device +[ 14.929251] drm: registered panic notifier +[ 14.929460] Slow work thread pool: Starting up +[ 14.929491] [drm] nouveau 0000:01:00.0: 0x11B5: parsing clock script 0 +[ 14.929552] Slow work thread pool: Ready +[ 14.929562] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0 +[ 14.931805] vga16fb: initializing +[ 14.931820] vga16fb: mapped to 0xffff8800000a0000 +[ 14.931927] fb1: VGA16 VGA frame buffer device +[ 14.998001] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null) +[ 15.004225] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 +[ 15.058243] EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: (null) +[ 15.128765] generic-usb 0003:051D:0002.0001: hiddev96,hidraw0: USB HID v1.10 Device [American Power Conversion Back-UPS XS 1200 FW:8.g1 .D USB FW:g1 ] on usb-0000:00:1a.7-3.3/input0 +[ 15.128811] usbcore: registered new interface driver usbhid +[ 15.128819] usbhid: USB HID core driver +[ 15.484298] type=1400 audit(1279312617.456:5): operation="profile_load" pid=945 name="/usr/share/gdm/guest-session/Xsession" pid=945 comm="apparmor_parser" +[ 15.485772] type=1400 audit(1279312617.456:6): operation="profile_replace" pid=946 name="/sbin/dhclient3" pid=946 comm="apparmor_parser" +[ 15.486327] type=1400 audit(1279312617.456:7): operation="profile_replace" pid=946 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=946 comm="apparmor_parser" +[ 15.486630] type=1400 audit(1279312617.456:8): operation="profile_replace" pid=946 name="/usr/lib/connman/scripts/dhclient-script" pid=946 comm="apparmor_parser" +[ 15.489342] type=1400 audit(1279312617.456:9): operation="profile_load" pid=947 name="/usr/bin/evince" pid=947 comm="apparmor_parser" +[ 15.496635] type=1400 audit(1279312617.466:10): operation="profile_load" pid=947 name="/usr/bin/evince-previewer" pid=947 comm="apparmor_parser" +[ 15.501121] type=1400 audit(1279312617.476:11): operation="profile_load" pid=947 name="/usr/bin/evince-thumbnailer" pid=947 comm="apparmor_parser" +[ 15.507766] r8169 0000:04:00.0: eth0: link up +[ 15.507786] r8169 0000:04:00.0: eth0: link up + +Bug: 611056 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-11-generic (buildd@yellow) (gcc version 4.4.5 20100723 (prerelease) (Ubuntu/Linaro 4.4.4-7ubuntu3) ) #16-Ubuntu SMP Sat Jul 24 21:37:44 UTC 2010 (Ubuntu 2.6.35-11.16-generic 2.6.35-rc5) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-2.6.35-11-generic root=/dev/mapper/fornost-root ro quiet +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009ec00 (usable) +[ 0.000000] BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e4c00 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf780000 (usable) +[ 0.000000] BIOS-e820: 00000000bf780000 - 00000000bf798000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bf798000 - 00000000bf7dc000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf7dc000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 00000001c0000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.5 present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x1c0000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-E3FFF write-protect +[ 0.000000] E4000-EBFFF write-through +[ 0.000000] EC000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 1C0000000 mask FC0000000 uncachable +[ 0.000000] 1 base 000000000 mask E00000000 write-back +[ 0.000000] 2 base 0C0000000 mask FC0000000 uncachable +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000bf800000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0xbf780 max_arch_pfn = 0x400000000 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009ec00 (usable) +[ 0.000000] modified: 000000000009ec00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e4c00 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bf780000 (usable) +[ 0.000000] modified: 00000000bf780000 - 00000000bf798000 (ACPI data) +[ 0.000000] modified: 00000000bf798000 - 00000000bf7dc000 (ACPI NVS) +[ 0.000000] modified: 00000000bf7dc000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 00000001c0000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf780000 +[ 0.000000] 0000000000 - 00bf600000 page 2M +[ 0.000000] 00bf600000 - 00bf780000 page 4k +[ 0.000000] kernel direct mapping tables up to bf780000 @ 16000-1b000 +[ 0.000000] init_memory_mapping: 0000000100000000-00000001c0000000 +[ 0.000000] 0100000000 - 01c0000000 page 2M +[ 0.000000] kernel direct mapping tables up to 1c0000000 @ 19000-21000 +[ 0.000000] RAMDISK: 374a9000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000fb250 00024 (v02 ACPIAM) +[ 0.000000] ACPI: XSDT 00000000bf780100 00064 (v01 042409 XSDT1739 20090424 MSFT 00000097) +[ 0.000000] ACPI: FACP 00000000bf780290 000F4 (v03 042409 FACP1739 20090424 MSFT 00000097) +[ 0.000000] ACPI: DSDT 00000000bf7804b0 0B5EC (v01 A1265 A1265001 00000001 INTL 20060113) +[ 0.000000] ACPI: FACS 00000000bf798000 00040 +[ 0.000000] ACPI: APIC 00000000bf780390 000D8 (v01 042409 APIC1739 20090424 MSFT 00000097) +[ 0.000000] ACPI: MCFG 00000000bf780470 0003C (v01 042409 OEMMCFG 20090424 MSFT 00000097) +[ 0.000000] ACPI: OEMB 00000000bf798040 00072 (v01 042409 OEMB1739 20090424 MSFT 00000097) +[ 0.000000] ACPI: HPET 00000000bf78f4b0 00038 (v01 042409 OEMHPET 20090424 MSFT 00000097) +[ 0.000000] ACPI: DMAR 00000000bf7980c0 00138 (v01 AMI OEMDMAR 00000001 MSFT 00000097) +[ 0.000000] ACPI: OSFR 00000000bf78f4f0 000B0 (v01 042409 OEMOSFR 20090424 MSFT 00000097) +[ 0.000000] ACPI: TCPA 00000000bf78f5a0 00032 (v01 042409 TBLOEMID 00000001 MSFT 00000097) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-00000001c0000000 +[ 0.000000] Initmem setup node 0 0000000000000000-00000001c0000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00061fffff] PMD -> [ffff880100200000-ffff8801055fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x001c0000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009e +[ 0.000000] 0: 0x00000100 -> 0x000bf780 +[ 0.000000] 0: 0x00100000 -> 0x001c0000 +[ 0.000000] On node 0 totalpages: 1570574 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3926 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 765880 pages, LIFO batch:31 +[ 0.000000] Normal zone: 10752 pages used for memmap +[ 0.000000] Normal zone: 775680 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x88] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x89] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x8a] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x8b] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x8c] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x8d] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x8e] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x8f] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec8a000] gsi_base[24]) +[ 0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec8a000, GSI 24-47 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 +[ 0.000000] SMP: Allowing 16 CPUs, 8 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 64 +[ 0.000000] early_res array is doubled to 64 at [1c000 - 1c7ff] +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e5000 +[ 0.000000] PM: Registered nosave memory: 00000000000e5000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000bf780000 - 00000000bf798000 +[ 0.000000] PM: Registered nosave memory: 00000000bf798000 - 00000000bf7dc000 +[ 0.000000] PM: Registered nosave memory: 00000000bf7dc000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:3ee00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:16 nr_node_ids:1 +[ 0.000000] early_res array is doubled to 128 at [1c800 - 1d7ff] +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91392 r8192 d23296 u131072 +[ 0.000000] pcpu-alloc: s91392 r8192 d23296 u131072 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1545486 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.35-11-generic root=/dev/mapper/fornost-root ro quiet +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (68 early reservations) +[ 0.000000] #1 [0001000000 - 0001d20114] TEXT DATA BSS +[ 0.000000] #2 [00374a9000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [0001d21000 - 0001d21294] BRK +[ 0.000000] #4 [00000ff790 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000ff780 - 00000ff790] MP-table mpf +[ 0.000000] #6 [000009ec00 - 00000f1310] BIOS reserved +[ 0.000000] #7 [00000f14c4 - 00000ff780] BIOS reserved +[ 0.000000] #8 [00000f1310 - 00000f14c4] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000019000] PGTABLE +[ 0.000000] #12 [0000019000 - 000001c000] PGTABLE +[ 0.000000] #13 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #14 [0001d212c0 - 0001d222c0] BOOTMEM +[ 0.000000] #15 [0001d20140 - 0001d205c0] BOOTMEM +[ 0.000000] #16 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #17 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #18 [0100200000 - 0105600000] MEMMAP 0 +[ 0.000000] #19 [0001d205c0 - 0001d20740] BOOTMEM +[ 0.000000] #20 [0001d222c0 - 0001d3a2c0] BOOTMEM +[ 0.000000] #21 [0001d3a2c0 - 0001d522c0] BOOTMEM +[ 0.000000] #22 [0001d53000 - 0001d54000] BOOTMEM +[ 0.000000] #23 [0001d20740 - 0001d20781] BOOTMEM +[ 0.000000] #24 [0001d207c0 - 0001d20846] BOOTMEM +[ 0.000000] #25 [0001d20880 - 0001d20ae8] BOOTMEM +[ 0.000000] #26 [0001d20b00 - 0001d20b68] BOOTMEM +[ 0.000000] #27 [0001d20b80 - 0001d20be8] BOOTMEM +[ 0.000000] #28 [0001d20c00 - 0001d20c68] BOOTMEM +[ 0.000000] #29 [0001d20c80 - 0001d20ce8] BOOTMEM +[ 0.000000] #30 [0001d20d00 - 0001d20d68] BOOTMEM +[ 0.000000] #31 [0001d20d80 - 0001d20de8] BOOTMEM +[ 0.000000] #32 [0001d20e00 - 0001d20e68] BOOTMEM +[ 0.000000] #33 [0001d20e80 - 0001d20ee8] BOOTMEM +[ 0.000000] #34 [0001d20f00 - 0001d20f68] BOOTMEM +[ 0.000000] #35 [0001d20f80 - 0001d20fe8] BOOTMEM +[ 0.000000] #36 [0001d522c0 - 0001d522e0] BOOTMEM +[ 0.000000] #37 [0001d52300 - 0001d52320] BOOTMEM +[ 0.000000] #38 [0001d52340 - 0001d5238d] BOOTMEM +[ 0.000000] #39 [0001d523c0 - 0001d5240d] BOOTMEM +[ 0.000000] #40 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #41 [0001e20000 - 0001e3e000] BOOTMEM +[ 0.000000] #42 [0001e40000 - 0001e5e000] BOOTMEM +[ 0.000000] #43 [0001e60000 - 0001e7e000] BOOTMEM +[ 0.000000] #44 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #45 [0001ea0000 - 0001ebe000] BOOTMEM +[ 0.000000] #46 [0001ec0000 - 0001ede000] BOOTMEM +[ 0.000000] #47 [0001ee0000 - 0001efe000] BOOTMEM +[ 0.000000] #48 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #49 [0001f20000 - 0001f3e000] BOOTMEM +[ 0.000000] #50 [0001f40000 - 0001f5e000] BOOTMEM +[ 0.000000] #51 [0001f60000 - 0001f7e000] BOOTMEM +[ 0.000000] #52 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #53 [0001fa0000 - 0001fbe000] BOOTMEM +[ 0.000000] #54 [0001fc0000 - 0001fde000] BOOTMEM +[ 0.000000] #55 [0001fe0000 - 0001ffe000] BOOTMEM +[ 0.000000] #56 [0001d52440 - 0001d52448] BOOTMEM +[ 0.000000] #57 [0001d52480 - 0001d52488] BOOTMEM +[ 0.000000] #58 [0001d524c0 - 0001d52500] BOOTMEM +[ 0.000000] #59 [0001d52500 - 0001d52580] BOOTMEM +[ 0.000000] #60 [0001d52580 - 0001d52690] BOOTMEM +[ 0.000000] #61 [0001d526c0 - 0001d52708] BOOTMEM +[ 0.000000] #62 [0001d52740 - 0001d52788] BOOTMEM +[ 0.000000] #63 [0001d54000 - 0001d5c000] BOOTMEM +[ 0.000000] #64 [0001ffe000 - 0005ffe000] BOOTMEM +[ 0.000000] #65 [0001d5c000 - 0001d7c000] BOOTMEM +[ 0.000000] #66 [0001d7c000 - 0001dbc000] BOOTMEM +[ 0.000000] #67 [000001d800 - 0000025800] BOOTMEM +[ 0.000000] Memory: 6103100k/7340032k available (5706k kernel code, 1057736k absent, 179196k reserved, 5421k data, 904k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:1216 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 62914560 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration failed +[ 0.020000] TSC: PIT calibration matches HPET. 1 loops +[ 0.020000] Detected 2672.823 MHz processor. +[ 0.000007] Calibrating delay loop (skipped), value calculated using timer frequency.. 5345.64 BogoMIPS (lpj=26728230) +[ 0.000010] pid_max: default: 32768 minimum: 301 +[ 0.000034] Security Framework initialized +[ 0.000044] AppArmor: AppArmor initialized +[ 0.000045] Yama: becoming mindful. +[ 0.000676] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) +[ 0.002215] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.002856] Mount-cache hash table entries: 256 +[ 0.002941] Initializing cgroup subsys ns +[ 0.002944] Initializing cgroup subsys cpuacct +[ 0.002948] Initializing cgroup subsys memory +[ 0.002954] Initializing cgroup subsys devices +[ 0.002955] Initializing cgroup subsys freezer +[ 0.002957] Initializing cgroup subsys net_cls +[ 0.002974] CPU: Physical Processor ID: 0 +[ 0.002975] CPU: Processor Core ID: 0 +[ 0.002980] mce: CPU supports 9 MCE banks +[ 0.002988] CPU0: Thermal monitoring enabled (TM1) +[ 0.002994] using mwait in idle threads. +[ 0.002996] Performance Events: PEBS fmt1+, Nehalem events, Intel PMU driver. +[ 0.003001] ... version: 3 +[ 0.003002] ... bit width: 48 +[ 0.003003] ... generic registers: 4 +[ 0.003004] ... value mask: 0000ffffffffffff +[ 0.003005] ... max period: 000000007fffffff +[ 0.003006] ... fixed-purpose events: 3 +[ 0.003007] ... event mask: 000000070000000f +[ 0.004713] ACPI: Core revision 20100428 +[ 0.038167] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.038173] ftrace: allocating 22647 entries in 89 pages +[ 0.044294] DMAR: Host address width 39 +[ 0.044296] DMAR: DRHD base: 0x000000fbfff000 flags: 0x0 +[ 0.044303] IOMMU 0: reg_base_addr fbfff000 ver 1:0 cap c9008010e60262 ecap f0207a +[ 0.044305] DMAR: DRHD base: 0x000000fbffe000 flags: 0x1 +[ 0.044311] IOMMU 1: reg_base_addr fbffe000 ver 1:0 cap c90780106f0462 ecap f020fe +[ 0.044313] DMAR: RMRR base: 0x000000000ec000 end: 0x000000000effff +[ 0.044315] DMAR: RMRR base: 0x000000bf7dc000 end: 0x000000bf7dbfff +[ 0.044316] DMAR: ATSR flags: 0x0 +[ 0.044423] IOAPIC id 8 under DRHD base 0xfbffe000 IOMMU 1 +[ 0.044425] IOAPIC id 9 under DRHD base 0xfbffe000 IOMMU 1 +[ 0.044656] Enabled Interrupt-remapping +[ 0.044660] Setting APIC routing to physical flat +[ 0.044662] alloc irq_desc for 64 on node 0 +[ 0.044663] alloc kstat_irqs on node 0 +[ 0.044673] alloc irq_desc for 65 on node 0 +[ 0.044674] alloc kstat_irqs on node 0 +[ 0.044954] alloc irq_2_iommu on node 0 +[ 0.044959] alloc irq_2_iommu on node 0 +[ 0.044963] alloc irq_2_iommu on node 0 +[ 0.044968] alloc irq_2_iommu on node 0 +[ 0.044972] alloc irq_2_iommu on node 0 +[ 0.044977] alloc irq_2_iommu on node 0 +[ 0.044981] alloc irq_2_iommu on node 0 +[ 0.044986] alloc irq_2_iommu on node 0 +[ 0.044990] alloc irq_2_iommu on node 0 +[ 0.044995] alloc irq_2_iommu on node 0 +[ 0.044999] alloc irq_2_iommu on node 0 +[ 0.045003] alloc irq_2_iommu on node 0 +[ 0.045008] alloc irq_2_iommu on node 0 +[ 0.045012] alloc irq_2_iommu on node 0 +[ 0.045017] alloc irq_2_iommu on node 0 +[ 0.045168] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.145146] CPU0: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz stepping 05 +[ 0.286880] APIC calibration not consistent with PM-Timer: 129ms instead of 100ms +[ 0.286883] APIC delta adjusted to PM-Timer: 835226 (1085789) +[ 0.287005] Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 +[ 1.546546] Brought up 8 CPUs +[ 1.546549] Total of 8 processors activated (42763.58 BogoMIPS). +[ 1.550214] devtmpfs: initialized +[ 1.551017] regulator: core version 0.5 +[ 1.551039] Time: 23:02:09 Date: 07/28/10 +[ 1.551065] NET: Registered protocol family 16 +[ 1.551135] Trying to unpack rootfs image as initramfs... +[ 1.551146] ACPI: bus type pci registered +[ 1.551198] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 1.551201] PCI: not using MMCONFIG +[ 1.551202] PCI: Using configuration type 1 for base access +[ 1.551772] bio: create slab at 0 +[ 1.553024] ACPI: EC: Look up EC in DSDT +[ 1.554241] ACPI: Executed 1 blocks of module-level executable AML code +[ 1.586704] ACPI: Interpreter enabled +[ 1.586708] ACPI: (supports S0 S1 S3 S4 S5) +[ 1.586727] ACPI: Using IOAPIC for interrupt routing +[ 1.586774] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 1.588497] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources +[ 1.623461] ACPI: No dock devices found. +[ 1.623464] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 1.623591] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 1.623837] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 1.623840] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 1.623841] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 1.623843] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] +[ 1.623845] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] +[ 1.623847] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff] +[ 1.623897] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold +[ 1.623900] pci 0000:00:00.0: PME# disabled +[ 1.623954] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 1.623957] pci 0000:00:01.0: PME# disabled +[ 1.624008] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 1.624011] pci 0000:00:03.0: PME# disabled +[ 1.624064] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 1.624067] pci 0000:00:07.0: PME# disabled +[ 1.624340] pci 0000:00:1a.0: reg 20: [io 0xa800-0xa81f] +[ 1.624398] pci 0000:00:1a.1: reg 20: [io 0xa880-0xa89f] +[ 1.624456] pci 0000:00:1a.2: reg 20: [io 0xac00-0xac1f] +[ 1.624512] pci 0000:00:1a.7: reg 10: [mem 0xfbaff000-0xfbaff3ff] +[ 1.624561] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 1.624565] pci 0000:00:1a.7: PME# disabled +[ 1.624594] pci 0000:00:1b.0: reg 10: [mem 0xfbaf8000-0xfbafbfff 64bit] +[ 1.624631] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 1.624634] pci 0000:00:1b.0: PME# disabled +[ 1.624691] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 1.624694] pci 0000:00:1c.0: PME# disabled +[ 1.624754] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 1.624757] pci 0000:00:1c.2: PME# disabled +[ 1.624819] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 1.624822] pci 0000:00:1c.5: PME# disabled +[ 1.624866] pci 0000:00:1d.0: reg 20: [io 0xa080-0xa09f] +[ 1.624924] pci 0000:00:1d.1: reg 20: [io 0xa400-0xa41f] +[ 1.624982] pci 0000:00:1d.2: reg 20: [io 0xa480-0xa49f] +[ 1.625039] pci 0000:00:1d.7: reg 10: [mem 0xfbafe000-0xfbafe3ff] +[ 1.625088] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 1.625091] pci 0000:00:1d.7: PME# disabled +[ 1.625194] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO +[ 1.625197] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO +[ 1.625200] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0294 (mask 0003) +[ 1.625204] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 001f) +[ 1.625252] pci 0000:00:1f.2: reg 10: [io 0x9c00-0x9c07] +[ 1.625257] pci 0000:00:1f.2: reg 14: [io 0x9880-0x9883] +[ 1.625261] pci 0000:00:1f.2: reg 18: [io 0x9800-0x9807] +[ 1.625266] pci 0000:00:1f.2: reg 1c: [io 0x9480-0x9483] +[ 1.625270] pci 0000:00:1f.2: reg 20: [io 0x9400-0x941f] +[ 1.625275] pci 0000:00:1f.2: reg 24: [mem 0xfbafc000-0xfbafc7ff] +[ 1.625303] pci 0000:00:1f.2: PME# supported from D3hot +[ 1.625305] pci 0000:00:1f.2: PME# disabled +[ 1.625330] pci 0000:00:1f.3: reg 10: [mem 0xfbafd000-0xfbafd0ff 64bit] +[ 1.625342] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f] +[ 1.625390] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.625393] pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.625397] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 1.625401] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.625449] pci 0000:02:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref] +[ 1.625457] pci 0000:02:00.0: reg 18: [mem 0xfbbe0000-0xfbbeffff 64bit] +[ 1.625461] pci 0000:02:00.0: reg 20: [io 0xb000-0xb0ff] +[ 1.625468] pci 0000:02:00.0: reg 30: [mem 0xfbbc0000-0xfbbdffff pref] +[ 1.625485] pci 0000:02:00.0: supports D1 D2 +[ 1.625510] pci 0000:02:00.1: reg 10: [mem 0xfbbfc000-0xfbbfffff 64bit] +[ 1.625541] pci 0000:02:00.1: supports D1 D2 +[ 1.636418] pci 0000:00:03.0: PCI bridge to [bus 02-02] +[ 1.636421] pci 0000:00:03.0: bridge window [io 0xb000-0xbfff] +[ 1.636423] pci 0000:00:03.0: bridge window [mem 0xfbb00000-0xfbbfffff] +[ 1.636428] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref] +[ 1.636460] pci 0000:00:07.0: PCI bridge to [bus 03-03] +[ 1.636463] pci 0000:00:07.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.636466] pci 0000:00:07.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 1.636470] pci 0000:00:07.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.636507] pci 0000:00:1c.0: PCI bridge to [bus 06-06] +[ 1.636510] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.636513] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 1.636518] pci 0000:00:1c.0: bridge window [mem 0xfaf00000-0xfaffffff 64bit pref] +[ 1.636588] pci 0000:05:00.0: reg 10: [mem 0xfbdfc000-0xfbdfffff 64bit] +[ 1.636595] pci 0000:05:00.0: reg 18: [io 0xd800-0xd8ff] +[ 1.636619] pci 0000:05:00.0: reg 30: [mem 0xfbdc0000-0xfbddffff pref] +[ 1.636657] pci 0000:05:00.0: supports D1 D2 +[ 1.636658] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.636662] pci 0000:05:00.0: PME# disabled +[ 1.656415] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 1.656419] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff] +[ 1.656422] pci 0000:00:1c.2: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 1.656427] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.656501] pci 0000:04:00.0: reg 10: [mem 0xfbcfc000-0xfbcfffff 64bit] +[ 1.656508] pci 0000:04:00.0: reg 18: [io 0xc800-0xc8ff] +[ 1.656532] pci 0000:04:00.0: reg 30: [mem 0xfbcc0000-0xfbcdffff pref] +[ 1.656571] pci 0000:04:00.0: supports D1 D2 +[ 1.656573] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.656577] pci 0000:04:00.0: PME# disabled +[ 1.676408] pci 0000:00:1c.5: PCI bridge to [bus 04-04] +[ 1.676411] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff] +[ 1.676414] pci 0000:00:1c.5: bridge window [mem 0xfbc00000-0xfbcfffff] +[ 1.676419] pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.676463] pci 0000:07:02.0: reg 10: [mem 0xfbeff000-0xfbeff7ff] +[ 1.676469] pci 0000:07:02.0: reg 14: [io 0xec00-0xec7f] +[ 1.676509] pci 0000:07:02.0: supports D2 +[ 1.676511] pci 0000:07:02.0: PME# supported from D2 D3hot D3cold +[ 1.676514] pci 0000:07:02.0: PME# disabled +[ 1.676553] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode) +[ 1.676556] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff] +[ 1.676559] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff] +[ 1.676564] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.676566] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 1.676568] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 1.676570] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 1.676572] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode) +[ 1.676574] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) +[ 1.676576] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode) +[ 1.676608] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 1.676860] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 1.676959] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT] +[ 1.677009] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] +[ 1.677059] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT] +[ 1.677104] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT] +[ 1.677150] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT] +[ 1.677195] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT] +[ 1.699792] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15) +[ 1.699890] ACPI: PCI Interrupt Link [LNKB] (IRQs *5) +[ 1.699983] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 *11 12 14 15) +[ 1.700080] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12 *14 15) +[ 1.700175] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 *15) +[ 1.700271] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 6 7 10 11 12 14 15) +[ 1.700366] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 *7 10 11 12 14 15) +[ 1.700462] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 6 7 10 11 12 14 15) +[ 1.700502] HEST: Table is not found! +[ 1.700553] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 1.700556] vgaarb: loaded +[ 1.700656] SCSI subsystem initialized +[ 1.700779] libata version 3.00 loaded. +[ 1.700815] usbcore: registered new interface driver usbfs +[ 1.700822] usbcore: registered new interface driver hub +[ 1.700839] usbcore: registered new device driver usb +[ 1.700950] ACPI: WMI: Mapper loaded +[ 1.700951] PCI: Using ACPI for IRQ routing +[ 1.700953] PCI: pci_cache_line_size set to 64 bytes +[ 1.701039] reserve RAM buffer: 000000000009ec00 - 000000000009ffff +[ 1.701041] reserve RAM buffer: 00000000bf780000 - 00000000bfffffff +[ 1.701104] NetLabel: Initializing +[ 1.701105] NetLabel: domain hash size = 128 +[ 1.701106] NetLabel: protocols = UNLABELED CIPSOv4 +[ 1.701114] NetLabel: unlabeled traffic allowed by default +[ 1.701136] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 1.701140] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 1.701143] hpet0: 4 comparators, 64-bit 14.318180 MHz counter +[ 1.746497] Switching to clocksource tsc +[ 1.752662] AppArmor: AppArmor Filesystem Enabled +[ 1.752673] pnp: PnP ACPI init +[ 1.752684] ACPI: bus type pnp registered +[ 1.754876] pnp: PnP ACPI: found 15 devices +[ 1.754878] ACPI: ACPI bus type pnp unregistered +[ 1.754887] system 00:01: [mem 0xfbf00000-0xfbffffff] has been reserved +[ 1.754889] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved +[ 1.754891] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved +[ 1.754896] system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved +[ 1.754898] system 00:01: [mem 0xfec8a000-0xfec8afff] could not be reserved +[ 1.754900] system 00:01: [mem 0xfed10000-0xfed10fff] has been reserved +[ 1.754905] system 00:06: [io 0x0290-0x029f] has been reserved +[ 1.754908] system 00:07: [io 0x04d0-0x04d1] has been reserved +[ 1.754910] system 00:07: [io 0x0800-0x087f] has been reserved +[ 1.754912] system 00:07: [io 0x0500-0x057f] could not be reserved +[ 1.754914] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 1.754916] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 1.754918] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 1.754921] system 00:0a: [mem 0xffc00000-0xffdfffff] has been reserved +[ 1.754926] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 1.754928] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved +[ 1.754931] system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved +[ 1.754935] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved +[ 1.754936] system 00:0e: [mem 0x000c0000-0x000cffff] has been reserved +[ 1.754938] system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved +[ 1.754940] system 00:0e: [mem 0x00100000-0xbfffffff] could not be reserved +[ 1.754942] system 00:0e: [mem 0xfed90000-0xffffffff] could not be reserved +[ 1.759630] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc03fffff] +[ 1.759633] pci 0000:00:1c.2: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref] +[ 1.759635] pci 0000:00:1c.5: BAR 15: assigned [mem 0xc0600000-0xc07fffff 64bit pref] +[ 1.759637] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff] +[ 1.759639] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.759641] pci 0000:00:01.0: bridge window [io disabled] +[ 1.759644] pci 0000:00:01.0: bridge window [mem disabled] +[ 1.759646] pci 0000:00:01.0: bridge window [mem pref disabled] +[ 1.759651] pci 0000:00:03.0: PCI bridge to [bus 02-02] +[ 1.759653] pci 0000:00:03.0: bridge window [io 0xb000-0xbfff] +[ 1.759656] pci 0000:00:03.0: bridge window [mem 0xfbb00000-0xfbbfffff] +[ 1.759659] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref] +[ 1.759664] pci 0000:00:07.0: PCI bridge to [bus 03-03] +[ 1.759665] pci 0000:00:07.0: bridge window [io disabled] +[ 1.759668] pci 0000:00:07.0: bridge window [mem disabled] +[ 1.759670] pci 0000:00:07.0: bridge window [mem pref disabled] +[ 1.759675] pci 0000:00:1c.0: PCI bridge to [bus 06-06] +[ 1.759677] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff] +[ 1.759681] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc03fffff] +[ 1.759684] pci 0000:00:1c.0: bridge window [mem 0xfaf00000-0xfaffffff 64bit pref] +[ 1.759689] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 1.759691] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff] +[ 1.759695] pci 0000:00:1c.2: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 1.759698] pci 0000:00:1c.2: bridge window [mem 0xc0400000-0xc05fffff 64bit pref] +[ 1.759703] pci 0000:00:1c.5: PCI bridge to [bus 04-04] +[ 1.759705] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff] +[ 1.759709] pci 0000:00:1c.5: bridge window [mem 0xfbc00000-0xfbcfffff] +[ 1.759712] pci 0000:00:1c.5: bridge window [mem 0xc0600000-0xc07fffff 64bit pref] +[ 1.759717] pci 0000:00:1e.0: PCI bridge to [bus 07-07] +[ 1.759719] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff] +[ 1.759723] pci 0000:00:1e.0: bridge window [mem 0xfbe00000-0xfbefffff] +[ 1.759726] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 1.759737] pci 0000:00:01.0: setting latency timer to 64 +[ 1.759744] pci 0000:00:03.0: setting latency timer to 64 +[ 1.759750] pci 0000:00:07.0: setting latency timer to 64 +[ 1.759756] pci 0000:00:1c.0: enabling device (0106 -> 0107) +[ 1.759760] alloc irq_desc for 17 on node -1 +[ 1.759762] alloc kstat_irqs on node -1 +[ 1.759765] alloc irq_2_iommu on node -1 +[ 1.759769] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.759772] pci 0000:00:1c.0: setting latency timer to 64 +[ 1.759779] alloc irq_desc for 18 on node -1 +[ 1.759780] alloc kstat_irqs on node -1 +[ 1.759781] alloc irq_2_iommu on node -1 +[ 1.759785] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.759788] pci 0000:00:1c.2: setting latency timer to 64 +[ 1.759794] alloc irq_desc for 16 on node -1 +[ 1.759795] alloc kstat_irqs on node -1 +[ 1.759797] alloc irq_2_iommu on node -1 +[ 1.759801] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 1.759804] pci 0000:00:1c.5: setting latency timer to 64 +[ 1.759809] pci 0000:00:1e.0: setting latency timer to 64 +[ 1.759812] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 1.759813] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 1.759815] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.759816] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff] +[ 1.759818] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff] +[ 1.759820] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 1.759821] pci_bus 0000:02: resource 0 [io 0xb000-0xbfff] +[ 1.759823] pci_bus 0000:02: resource 1 [mem 0xfbb00000-0xfbbfffff] +[ 1.759824] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref] +[ 1.759826] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff] +[ 1.759828] pci_bus 0000:06: resource 1 [mem 0xc0000000-0xc03fffff] +[ 1.759829] pci_bus 0000:06: resource 2 [mem 0xfaf00000-0xfaffffff 64bit pref] +[ 1.759831] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff] +[ 1.759832] pci_bus 0000:05: resource 1 [mem 0xfbd00000-0xfbdfffff] +[ 1.759834] pci_bus 0000:05: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref] +[ 1.759836] pci_bus 0000:04: resource 0 [io 0xc000-0xcfff] +[ 1.759837] pci_bus 0000:04: resource 1 [mem 0xfbc00000-0xfbcfffff] +[ 1.759839] pci_bus 0000:04: resource 2 [mem 0xc0600000-0xc07fffff 64bit pref] +[ 1.759840] pci_bus 0000:07: resource 0 [io 0xe000-0xefff] +[ 1.759842] pci_bus 0000:07: resource 1 [mem 0xfbe00000-0xfbefffff] +[ 1.759843] pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7] +[ 1.759845] pci_bus 0000:07: resource 5 [io 0x0d00-0xffff] +[ 1.759846] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.759848] pci_bus 0000:07: resource 7 [mem 0x000d0000-0x000dffff] +[ 1.759849] pci_bus 0000:07: resource 8 [mem 0xc0000000-0xdfffffff] +[ 1.759851] pci_bus 0000:07: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 1.759874] NET: Registered protocol family 2 +[ 1.760060] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 1.760938] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 1.762155] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 1.762287] TCP: Hash tables configured (established 524288 bind 65536) +[ 1.762289] TCP reno registered +[ 1.762301] UDP hash table entries: 4096 (order: 5, 131072 bytes) +[ 1.762333] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) +[ 1.762435] NET: Registered protocol family 1 +[ 1.762599] pci 0000:02:00.0: Boot video device +[ 1.762610] PCI: CLS 64 bytes, default 64 +[ 1.762611] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 1.762614] Placing 64MB software IO TLB between ffff880001ffe000 - ffff880005ffe000 +[ 1.762615] software IO TLB at phys 0x1ffe000 - 0x5ffe000 +[ 1.762974] Scanning for low memory corruption every 60 seconds +[ 1.763057] audit: initializing netlink socket (disabled) +[ 1.763064] type=2000 audit(1280358128.530:1): initialized +[ 1.773653] Freeing initrd memory: 11548k freed +[ 1.774943] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 1.776048] VFS: Disk quotas dquot_6.5.2 +[ 1.776094] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 1.776521] fuse init (API version 7.14) +[ 1.776578] msgmni has been set to 11942 +[ 1.776791] alg: No test for stdrng (krng) +[ 1.776831] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 1.776833] io scheduler noop registered +[ 1.776835] io scheduler deadline registered +[ 1.776862] io scheduler cfq registered (default) +[ 1.776946] pcieport 0000:00:01.0: setting latency timer to 64 +[ 1.776972] alloc irq_desc for 66 on node -1 +[ 1.776973] alloc kstat_irqs on node -1 +[ 1.776978] alloc irq_2_iommu on node -1 +[ 1.776985] pcieport 0000:00:01.0: irq 66 for MSI/MSI-X +[ 1.777036] pcieport 0000:00:03.0: setting latency timer to 64 +[ 1.777060] alloc irq_desc for 67 on node -1 +[ 1.777061] alloc kstat_irqs on node -1 +[ 1.777062] alloc irq_2_iommu on node -1 +[ 1.777068] pcieport 0000:00:03.0: irq 67 for MSI/MSI-X +[ 1.777115] pcieport 0000:00:07.0: setting latency timer to 64 +[ 1.777138] alloc irq_desc for 68 on node -1 +[ 1.777139] alloc kstat_irqs on node -1 +[ 1.777141] alloc irq_2_iommu on node -1 +[ 1.777147] pcieport 0000:00:07.0: irq 68 for MSI/MSI-X +[ 1.777195] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 1.777221] alloc irq_desc for 69 on node -1 +[ 1.777222] alloc kstat_irqs on node -1 +[ 1.777224] alloc irq_2_iommu on node -1 +[ 1.777230] pcieport 0000:00:1c.0: irq 69 for MSI/MSI-X +[ 1.777288] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 1.777315] alloc irq_desc for 70 on node -1 +[ 1.777316] alloc kstat_irqs on node -1 +[ 1.777318] alloc irq_2_iommu on node -1 +[ 1.777324] pcieport 0000:00:1c.2: irq 70 for MSI/MSI-X +[ 1.777383] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 1.777410] alloc irq_desc for 71 on node -1 +[ 1.777411] alloc kstat_irqs on node -1 +[ 1.777413] alloc irq_2_iommu on node -1 +[ 1.777419] pcieport 0000:00:1c.5: irq 71 for MSI/MSI-X +[ 1.777485] aer 0000:00:01.0:pcie02: AER service couldn't init device: no _OSC support +[ 1.777490] aer 0000:00:03.0:pcie02: AER service couldn't init device: no _OSC support +[ 1.777493] aer 0000:00:07.0:pcie02: AER service couldn't init device: no _OSC support +[ 1.777506] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 1.777573] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 1.777762] vesafb: framebuffer at 0xd012c000, mapped to 0xffffc90011800000, using 1216k, total 1216k +[ 1.777764] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 1.777765] vesafb: scrolling: redraw +[ 1.777768] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0 +[ 1.820782] Console: switching to colour frame buffer device 80x30 +[ 1.863762] fb0: VESA VGA frame buffer device +[ 1.863833] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 1.863836] ACPI: Power Button [PWRB] +[ 1.863864] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 1.863865] ACPI: Power Button [PWRF] +[ 1.864135] ACPI: acpi_idle registered with cpuidle +[ 1.885857] ERST: Table is not found! +[ 1.886710] Linux agpgart interface v0.103 +[ 1.886735] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.887637] brd: module loaded +[ 1.887963] loop: module loaded +[ 1.888247] Fixed MDIO Bus: probed +[ 1.888268] PPP generic driver version 2.4.2 +[ 1.888295] tun: Universal TUN/TAP device driver, 1.6 +[ 1.888297] tun: (C) 1999-2004 Max Krasnyansky +[ 1.888339] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.888357] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.888372] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 1.888375] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 1.888399] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 1.888422] ehci_hcd 0000:00:1a.7: debug port 1 +[ 1.892312] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 1.892327] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfbaff000 +[ 1.906718] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 1.906824] hub 1-0:1.0: USB hub found +[ 1.906828] hub 1-0:1.0: 6 ports detected +[ 1.906881] alloc irq_desc for 23 on node -1 +[ 1.906883] alloc kstat_irqs on node -1 +[ 1.906886] alloc irq_2_iommu on node -1 +[ 1.906891] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 1.906901] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 1.906903] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 1.906926] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 1.906944] ehci_hcd 0000:00:1d.7: debug port 1 +[ 1.910830] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 1.910840] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfbafe000 +[ 1.926709] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 1.926815] hub 2-0:1.0: USB hub found +[ 1.926818] hub 2-0:1.0: 6 ports detected +[ 1.926865] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.926874] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.926907] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.926912] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 1.926914] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 1.926937] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 1.926964] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000a800 +[ 1.927036] hub 3-0:1.0: USB hub found +[ 1.927038] hub 3-0:1.0: 2 ports detected +[ 1.927077] alloc irq_desc for 21 on node -1 +[ 1.927078] alloc kstat_irqs on node -1 +[ 1.927080] alloc irq_2_iommu on node -1 +[ 1.927085] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 1.927089] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 1.927091] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 1.927113] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 1.927142] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000a880 +[ 1.927211] hub 4-0:1.0: USB hub found +[ 1.927213] hub 4-0:1.0: 2 ports detected +[ 1.927251] alloc irq_desc for 19 on node -1 +[ 1.927253] alloc kstat_irqs on node -1 +[ 1.927255] alloc irq_2_iommu on node -1 +[ 1.927259] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 1.927263] uhci_hcd 0000:00:1a.2: setting latency timer to 64 +[ 1.927265] uhci_hcd 0000:00:1a.2: UHCI Host Controller +[ 1.927290] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 +[ 1.927316] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000ac00 +[ 1.927386] hub 5-0:1.0: USB hub found +[ 1.927389] hub 5-0:1.0: 2 ports detected +[ 1.927427] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 1.927431] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.927433] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 1.927453] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 +[ 1.927473] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000a080 +[ 1.927545] hub 6-0:1.0: USB hub found +[ 1.927548] hub 6-0:1.0: 2 ports detected +[ 1.927585] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.927589] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 1.927591] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 1.927611] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 +[ 1.927631] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000a400 +[ 1.927704] hub 7-0:1.0: USB hub found +[ 1.927707] hub 7-0:1.0: 2 ports detected +[ 1.927744] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.927751] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 1.927753] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 1.927774] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 +[ 1.927794] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000a480 +[ 1.927865] hub 8-0:1.0: USB hub found +[ 1.927867] hub 8-0:1.0: 2 ports detected +[ 1.927944] PNP: No PS/2 controller found. Probing ports directly. +[ 1.930480] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.930484] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.930520] mice: PS/2 mouse device common for all mice +[ 1.930571] rtc_cmos 00:03: RTC can wake from S4 +[ 1.930595] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 1.930617] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 1.930684] device-mapper: uevent: version 1.0.3 +[ 1.930743] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.930853] device-mapper: multipath: version 1.1.1 loaded +[ 1.930855] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.931083] cpuidle: using governor ladder +[ 1.931084] cpuidle: using governor menu +[ 1.931278] TCP cubic registered +[ 1.931364] NET: Registered protocol family 10 +[ 1.931647] lo: Disabled Privacy Extensions +[ 1.931790] NET: Registered protocol family 17 +[ 1.931883] PM: Resume from disk failed. +[ 1.931890] registered taskstats version 1 +[ 1.932206] Magic number: 2:513:50 +[ 1.932258] rtc_cmos 00:03: setting system clock to 2010-07-28 23:02:09 UTC (1280358129) +[ 1.932260] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.932261] EDD information not available. +[ 1.932307] Freeing unused kernel memory: 904k freed +[ 1.932416] Write protecting the kernel read-only data: 10240k +[ 1.932560] Freeing unused kernel memory: 416k freed +[ 1.932702] Freeing unused kernel memory: 1604k freed +[ 1.942570] udev: starting version 151 +[ 1.964543] sky2: driver version 1.28 +[ 1.964580] sky2 0000:05:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.964592] sky2 0000:05:00.0: setting latency timer to 64 +[ 1.964625] sky2 0000:05:00.0: Yukon-2 EC Ultra chip revision 3 +[ 1.964709] alloc irq_desc for 72 on node -1 +[ 1.964711] alloc kstat_irqs on node -1 +[ 1.964716] alloc irq_2_iommu on node -1 +[ 1.964730] sky2 0000:05:00.0: irq 72 for MSI/MSI-X +[ 1.965256] sky2 0000:05:00.0: eth0: addr 00:26:18:08:60:73 +[ 1.965276] sky2 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.965285] sky2 0000:04:00.0: setting latency timer to 64 +[ 1.965311] sky2 0000:04:00.0: Yukon-2 EC Ultra chip revision 3 +[ 1.965397] alloc irq_desc for 73 on node -1 +[ 1.965399] alloc kstat_irqs on node -1 +[ 1.965403] alloc irq_2_iommu on node -1 +[ 1.965415] sky2 0000:04:00.0: irq 73 for MSI/MSI-X +[ 1.965946] sky2 0000:04:00.0: eth1: addr 00:26:18:08:60:72 +[ 1.974986] ahci 0000:00:1f.2: version 3.0 +[ 1.975000] alloc irq_desc for 20 on node -1 +[ 1.975002] alloc kstat_irqs on node -1 +[ 1.975006] alloc irq_2_iommu on node -1 +[ 1.975011] ahci 0000:00:1f.2: PCI INT B -> GSI 20 (level, low) -> IRQ 20 +[ 1.975045] alloc irq_desc for 74 on node -1 +[ 1.975046] alloc kstat_irqs on node -1 +[ 1.975048] alloc irq_2_iommu on node -1 +[ 1.975055] ahci 0000:00:1f.2: irq 74 for MSI/MSI-X +[ 1.975078] ahci: SSS flag set, parallel bus scan disabled +[ 1.975114] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode +[ 1.975116] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems sxs +[ 1.975120] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.978238] firewire_ohci 0000:07:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 2.068590] scsi0 : ahci +[ 2.068674] scsi1 : ahci +[ 2.068712] scsi2 : ahci +[ 2.068747] scsi3 : ahci +[ 2.068783] scsi4 : ahci +[ 2.068820] scsi5 : ahci +[ 2.068937] ata1: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc100 irq 74 +[ 2.068940] ata2: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc180 irq 74 +[ 2.068942] ata3: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc200 irq 74 +[ 2.068944] ata4: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc280 irq 74 +[ 2.068946] ata5: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc300 irq 74 +[ 2.068948] ata6: SATA max UDMA/133 abar m2048@0xfbafc000 port 0xfbafc380 irq 74 +[ 2.136675] firewire_ohci: Added fw-ohci device 0000:07:02.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x1 +[ 2.346585] usb 1-5: new high speed USB device using ehci_hcd and address 3 +[ 2.497081] hub 1-5:1.0: USB hub found +[ 2.497174] hub 1-5:1.0: 4 ports detected +[ 2.596521] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.602933] ata1.00: ATA-7: SAMSUNG HD103UJ, 1AA01118, max UDMA7 +[ 2.602937] ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 2.609413] ata1.00: configured for UDMA/133 +[ 2.618446] firewire_core: created device fw0: GUID 001e8c0001e6ba27, S400 +[ 2.636601] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD103UJ 1AA0 PQ: 0 ANSI: 5 +[ 2.636692] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 2.636703] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB) +[ 2.636742] sd 0:0:0:0: [sda] Write Protect is off +[ 2.636744] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.636758] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.636849] sda: sda1 sda2 sda3 sda4 +[ 2.648407] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.746464] usb 2-2: new high speed USB device using ehci_hcd and address 3 +[ 3.416263] usb 3-1: new full speed USB device using uhci_hcd and address 2 +[ 3.566220] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.587633] ata2.00: ATAPI: HL-DT-ST BD-RE GGW-H20L, YL05, max UDMA/133 +[ 3.613658] ata2.00: configured for UDMA/133 +[ 3.751479] scsi 1:0:0:0: CD-ROM HL-DT-ST BD-RE GGW-H20L YL05 PQ: 0 ANSI: 5 +[ 3.876124] usb 6-1: new full speed USB device using uhci_hcd and address 2 +[ 4.079231] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray +[ 4.079235] Uniform CD-ROM driver Revision: 3.20 +[ 4.079329] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 4.079377] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 4.150509] usbcore: registered new interface driver hiddev +[ 4.150596] usbcore: registered new interface driver usbhid +[ 4.150599] usbhid: USB HID core driver +[ 4.345981] usb 7-1: new full speed USB device using uhci_hcd and address 2 +[ 4.427524] ata3: SATA link down (SStatus 0 SControl 300) +[ 4.795850] ata4: SATA link down (SStatus 0 SControl 300) +[ 5.165740] ata5: SATA link down (SStatus 0 SControl 300) +[ 5.537190] ata6: SATA link down (SStatus 0 SControl 300) +[ 5.562411] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.0/input/input2 +[ 5.562472] logitech 0003:046D:C513.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1/input0 +[ 5.565271] logitech 0003:046D:C513.0002: fixing up Logitech keyboard report descriptor +[ 5.565642] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.1/input/input3 +[ 5.565917] logitech 0003:046D:C513.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1/input1 +[ 6.136061] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) +[ 22.465470] udev: starting version 151 +[ 22.473881] lp: driver loaded but no devices found +[ 22.476861] Adding 8785916k swap on /dev/mapper/fornost-swap_1. Priority:-1 extents:1 across:8785916k +[ 22.552262] Linux video capture interface: v2.00 +[ 22.557906] [drm] Initialized drm 1.1.0 20060810 +[ 22.557995] uvcvideo: Found UVC 1.00 device (046d:0990) +[ 22.627081] input: UVC Camera (046d:0990) as /devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/input/input4 +[ 22.627145] usbcore: registered new interface driver uvcvideo +[ 22.627148] USB Video Class driver (v0.1.0) +[ 22.627674] EDAC MC: Ver: 2.1.0 Jul 24 2010 +[ 22.628410] Bluetooth: Core ver 2.15 +[ 22.628464] NET: Registered protocol family 31 +[ 22.628466] Bluetooth: HCI device and connection manager initialized +[ 22.628469] Bluetooth: HCI socket layer initialized +[ 22.632460] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 22.633295] usbcore: registered new interface driver btusb +[ 22.635376] PCI: Discovered peer bus ff +[ 22.636560] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0 +[ 22.636585] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED) +[ 22.636588] EDAC i7core: Driver loaded. +[ 22.647554] tpm_tis 00:0c: 1.2 TPM (device-id 0x6871, rev-id 1) +[ 22.667545] type=1400 audit(1280350950.233:2): operation="profile_load" pid=860 name="/sbin/dhclient3" pid=860 comm="apparmor_parser" +[ 22.668012] type=1400 audit(1280350950.233:3): operation="profile_load" pid=860 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=860 comm="apparmor_parser" +[ 22.668270] type=1400 audit(1280350950.233:4): operation="profile_load" pid=860 name="/usr/lib/connman/scripts/dhclient-script" pid=860 comm="apparmor_parser" +[ 22.679088] [drm] radeon defaulting to kernel modesetting. +[ 22.679092] [drm] radeon kernel modesetting enabled. +[ 22.679159] alloc irq_desc for 24 on node -1 +[ 22.679162] alloc kstat_irqs on node -1 +[ 22.679167] alloc irq_2_iommu on node -1 +[ 22.679175] radeon 0000:02:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24 +[ 22.679179] radeon 0000:02:00.0: setting latency timer to 64 +[ 22.680460] [drm] initializing kernel modesetting (RV770 0x1002:0x9460). +[ 22.680604] [drm] register mmio base: 0xFBBE0000 +[ 22.680606] [drm] register mmio size: 65536 +[ 22.680687] ATOM BIOS: WEKIVA +[ 22.680696] [drm] Clocks initialized ! +[ 22.680705] radeon 0000:02:00.0: VRAM: 1024M 0x00000000 - 0x3FFFFFFF (1024M used) +[ 22.680707] radeon 0000:02:00.0: GTT: 512M 0x40000000 - 0x5FFFFFFF +[ 22.680721] mtrr: type mismatch for d0000000,10000000 old: write-back new: write-combining +[ 22.680723] [drm] Detected VRAM RAM=1024M, BAR=256M +[ 22.680724] [drm] RAM width 256bits DDR +[ 22.680754] [TTM] Zone kernel: Available graphics memory: 3058786 kiB. +[ 22.680756] [TTM] Zone dma32: Available graphics memory: 2097152 kiB. +[ 22.680757] [TTM] Initializing pool allocator. +[ 22.680770] [drm] radeon: 1024M of VRAM memory ready +[ 22.680771] [drm] radeon: 512M of GTT memory ready. +[ 22.680806] alloc irq_desc for 75 on node -1 +[ 22.680807] alloc kstat_irqs on node -1 +[ 22.680810] alloc irq_2_iommu on node -1 +[ 22.680819] radeon 0000:02:00.0: irq 75 for MSI/MSI-X +[ 22.680823] [drm] radeon: using MSI. +[ 22.680846] [drm] radeon: irq initialized. +[ 22.680847] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 22.681359] [drm] Loading RV770 Microcode +[ 22.719408] alloc irq_desc for 22 on node -1 +[ 22.719411] alloc kstat_irqs on node -1 +[ 22.719414] alloc irq_2_iommu on node -1 +[ 22.719420] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 22.719466] alloc irq_desc for 76 on node -1 +[ 22.719467] alloc kstat_irqs on node -1 +[ 22.719469] alloc irq_2_iommu on node -1 +[ 22.719478] HDA Intel 0000:00:1b.0: irq 76 for MSI/MSI-X +[ 22.719495] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 22.738612] usbcore: registered new interface driver snd-usb-audio +[ 22.751012] [drm] ring test succeeded in 0 usecs +[ 22.751140] [drm] radeon: ib pool ready. +[ 22.751194] [drm] ib test succeeded in 0 usecs +[ 22.751196] [drm] Enabling audio support +[ 22.751203] failed to evaluate ATIF got AE_BAD_PARAMETER +[ 22.751204] radeon 0000:02:00.0: Error during ACPI methods call +[ 22.752449] [drm] Default TV standard: PAL +[ 22.752500] [drm] Default TV standard: PAL +[ 22.752775] [drm] Radeon Display Connectors +[ 22.752778] [drm] Connector 0: +[ 22.752779] [drm] DVI-I +[ 22.752781] [drm] HPD1 +[ 22.752783] [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c +[ 22.752785] [drm] Encoders: +[ 22.752787] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 22.752789] [drm] DFP3: INTERNAL_KLDSCP_LVTMA +[ 22.752790] [drm] Connector 1: +[ 22.752792] [drm] VGA +[ 22.752794] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 22.752795] [drm] Encoders: +[ 22.752797] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +[ 22.752799] [drm] Connector 2: +[ 22.752800] [drm] HDMI-A +[ 22.752801] [drm] HPD2 +[ 22.752804] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 22.752805] [drm] Encoders: +[ 22.752807] [drm] DFP2: INTERNAL_UNIPHY +[ 22.752808] [drm] Connector 3: +[ 22.752809] [drm] DisplayPort +[ 22.752810] [drm] HPD3 +[ 22.752813] [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c +[ 22.752814] [drm] Encoders: +[ 22.752816] [drm] DFP1: INTERNAL_UNIPHY +[ 22.791750] DRHD: handling fault status reg 2 +[ 22.792654] INTR-REMAP: Request device [[00:1b.0] fault index 24 +[ 22.792655] INTR-REMAP:[fault reason 34] Present field in the IRTE entry is clear +[ 23.041622] [drm] Internal thermal controller with fan control +[ 23.041635] [drm] radeon: power management initialized +[ 23.385241] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro +[ 23.640793] EXT4-fs (dm-3): warning: maximal mount count reached, running e2fsck is recommended +[ 23.640956] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null) +[ 23.683862] [drm] fb mappable at 0xD0141000 +[ 23.683864] [drm] vram apper at 0xD0000000 +[ 23.683865] [drm] size 9216000 +[ 23.683867] [drm] fb depth is 24 +[ 23.683868] [drm] pitch is 7680 +[ 23.683870] checking generic (d012c000 130000) vs hw (d0000000 40000000) +[ 23.683872] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +[ 23.685585] Console: switching to colour dummy device 80x25 +[ 23.751377] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: user_xattr +[ 24.909794] Console: switching to colour frame buffer device 240x75 +[ 25.231699] fb0: radeondrmfb frame buffer device +[ 25.231700] drm: registered panic notifier +[ 25.231742] Slow work thread pool: Starting up +[ 25.231777] Slow work thread pool: Ready +[ 25.231782] [drm] Initialized radeon 2.5.0 20080528 for 0000:02:00.0 on minor 0 +[ 25.819501] hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x000f0001 +[ 25.828938] hda_codec: AD1989B: BIOS auto-probing. +[ 25.833808] alloc irq_desc for 34 on node -1 +[ 25.833811] alloc kstat_irqs on node -1 +[ 25.833815] alloc irq_2_iommu on node -1 +[ 25.833822] HDA Intel 0000:02:00.1: PCI INT B -> GSI 34 (level, low) -> IRQ 34 +[ 25.833877] alloc irq_desc for 77 on node -1 +[ 25.833878] alloc kstat_irqs on node -1 +[ 25.833881] alloc irq_2_iommu on node -1 +[ 25.833889] HDA Intel 0000:02:00.1: irq 77 for MSI/MSI-X +[ 25.833905] HDA Intel 0000:02:00.1: setting latency timer to 64 +[ 26.579367] type=1400 audit(1280350954.153:5): operation="profile_load" pid=1174 name="/usr/share/gdm/guest-session/Xsession" pid=1174 comm="apparmor_parser" +[ 26.580461] type=1400 audit(1280350954.153:6): operation="profile_replace" pid=1177 name="/sbin/dhclient3" pid=1177 comm="apparmor_parser" +[ 26.580860] type=1400 audit(1280350954.153:7): operation="profile_replace" pid=1177 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1177 comm="apparmor_parser" +[ 26.581107] type=1400 audit(1280350954.153:8): operation="profile_replace" pid=1177 name="/usr/lib/connman/scripts/dhclient-script" pid=1177 comm="apparmor_parser" +[ 26.582905] type=1400 audit(1280350954.153:9): operation="profile_load" pid=1183 name="/usr/bin/evince" pid=1183 comm="apparmor_parser" +[ 26.588016] type=1400 audit(1280350954.153:10): operation="profile_load" pid=1183 name="/usr/bin/evince-previewer" pid=1183 comm="apparmor_parser" +[ 26.591164] type=1400 audit(1280350954.163:11): operation="profile_load" pid=1183 name="/usr/bin/evince-thumbnailer" pid=1183 comm="apparmor_parser" +[ 26.594343] sky2 0000:05:00.0: eth0: enabling interface +[ 26.594897] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 26.598409] sky2 0000:04:00.0: eth1: enabling interface +[ 26.598923] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 26.611734] NET: Registered protocol family 15 +[ 26.612870] alg: No test for cipher_null (cipher_null-generic) +[ 26.612888] alg: No test for ecb(cipher_null) (ecb-cipher_null) +[ 26.612905] alg: No test for digest_null (digest_null-generic) +[ 26.612920] alg: No test for compress_null (compress_null-generic) +[ 26.618180] padlock: VIA PadLock Hash Engine not detected. +[ 26.664704] padlock: VIA PadLock Hash Engine not detected. +[ 26.716457] Intel AES-NI instructions are not detected. +[ 26.750794] padlock: VIA PadLock not detected. +[ 27.369507] BUG: unable to handle kernel NULL pointer dereference at 0000000000000010 +[ 27.369512] IP: [] fb_release+0x30/0x70 +[ 27.369518] PGD 1b8a7b067 PUD 1b8a77067 PMD 0 +[ 27.369521] Oops: 0000 [#1] SMP +[ 27.369523] last sysfs file: /sys/devices/virtual/block/dm-3/uevent +[ 27.369525] CPU 1 +[ 27.369526] Modules linked in: deflate zlib_deflate ctr twofish twofish_common camellia serpent blowfish cast5 des_generic cryptd aes_x86_64 aes_generic xcbc rmd160 sha512_generic sha256_generic sha1_generic crypto_null af_key snd_hda_codec_atihdmi snd_hda_codec_analog tpm_infineon snd_hda_intel snd_usb_audio snd_hda_codec snd_pcm snd_seq_midi snd_hwdep snd_seq_midi_event radeon snd_seq snd_timer snd_usbmidi_lib snd_rawmidi tpm_tis i7core_edac btusb asus_atk0110 bluetooth ttm drm_kms_helper uvcvideo snd_seq_device videodev v4l1_compat v4l2_compat_ioctl32 joydev snd edac_core psmouse tpm tpm_bios drm serio_raw soundcore i2c_algo_bit snd_page_alloc lp parport hid_logitech ff_memless usbhid hid firewire_ohci firewire_core ahci libahci crc_itu_t sky2 +[ 27.369561] +[ 27.369564] Pid: 451, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu P6T DELUXE V2/System Product Name +[ 27.369565] RIP: 0010:[] [] fb_release+0x30/0x70 +[ 27.369569] RSP: 0018:ffff8801b6a4bea8 EFLAGS: 00010286 +[ 27.369570] RAX: ffff8801b6a4a000 RBX: ffff8801b7124000 RCX: 0000000000000003 +[ 27.369572] RDX: 0000000000000000 RSI: ffff8801a56206c0 RDI: ffff8801b7124008 +[ 27.369573] RBP: ffff8801b6a4beb8 R08: 0000000000000000 R09: 0000000000000000 +[ 27.369575] R10: 00007fff8969bed0 R11: 0000000000000246 R12: ffff8801b7124008 +[ 27.369577] R13: ffff8801b88235f0 R14: ffff8801b640bc80 R15: ffff8801b55e8300 +[ 27.369578] FS: 00007f890030c700(0000) GS:ffff880001e20000(0000) knlGS:0000000000000000 +[ 27.369580] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 27.369582] CR2: 0000000000000010 CR3: 00000001b53b7000 CR4: 00000000000006e0 +[ 27.369583] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 27.369585] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 27.369587] Process plymouthd (pid: 451, threadinfo ffff8801b6a4a000, task ffff8801b3c596e0) +[ 27.369588] Stack: +[ 27.369589] ffff8801a56206c0 0000000000000008 ffff8801b6a4bf08 ffffffff81152df5 +[ 27.369592] <0> ffff8801b88235f0 ffff8801b640bc80 00007f89001de000 ffff8801a56206c0 +[ 27.369594] <0> ffff8801b8cd9e40 0000000000000000 000000000000000b 0000000002082db0 +[ 27.369598] Call Trace: +[ 27.369601] [] __fput+0xf5/0x210 +[ 27.369604] [] fput+0x25/0x30 +[ 27.369607] [] filp_close+0x5d/0x90 +[ 27.369609] [] sys_close+0xb7/0x120 +[ 27.369613] [] system_call_fastpath+0x16/0x1b +[ 27.369614] Code: 83 ec 10 48 89 1c 24 4c 89 64 24 08 0f 1f 44 00 00 48 8b 9e a0 00 00 00 4c 8d 63 08 4c 89 e7 e8 67 1b 29 00 48 8b 93 c0 03 00 00 <48> 8b 42 10 48 85 c0 74 11 be 01 00 00 00 48 89 df ff d0 48 8b +[ 27.369636] RIP [] fb_release+0x30/0x70 +[ 27.369638] RSP +[ 27.369639] CR2: 0000000000000010 +[ 27.369641] ---[ end trace a385d6678a12f076 ]--- +[ 28.002195] Bridge firewalling registered +[ 28.014584] ip_tables: (C) 2000-2006 Netfilter Core Team +[ 28.038606] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +[ 28.038783] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +[ 28.038786] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +[ 28.038788] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. + +Bug: 611107 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-11-generic (buildd@rothera) (gcc version 4.4.5 20100723 (prerelease) (Ubuntu/Linaro 4.4.4-7ubuntu3) ) #16-Ubuntu SMP Sat Jul 24 21:38:26 UTC 2010 (Ubuntu 2.6.35-11.16-generic 2.6.35-rc5) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000003fff0000 (usable) +[ 0.000000] BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: approximated by x86 segment limits +[ 0.000000] DMI 2.2 present. +[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-AFFFF uncachable +[ 0.000000] B0000-BFFFF write-combining +[ 0.000000] C0000-C7FFF write-protect +[ 0.000000] C8000-FFFFF uncachable +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask FC0000000 write-back +[ 0.000000] 1 base 0D0000000 mask FF8000000 write-combining +[ 0.000000] 2 base 0D0000000 mask FF8000000 write-combining +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000003fff0000 (usable) +[ 0.000000] modified: 000000003fff0000 - 000000003fff3000 (ACPI NVS) +[ 0.000000] modified: 000000003fff3000 - 0000000040000000 (ACPI data) +[ 0.000000] modified: 00000000ffff0000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 2f5f2000 - 30034000 +[ 0.000000] ACPI: RSDP 000f6a20 00014 (v00 VIA694) +[ 0.000000] ACPI: RSDT 3fff3000 00028 (v01 VIA694 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: FACP 3fff3040 00074 (v01 VIA694 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: DSDT 3fff30c0 03147 (v01 VIA694 AWRDACPI 00001000 MSFT 0100000E) +[ 0.000000] ACPI: FACS 3fff0000 00040 +[ 0.000000] 135MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0003fff0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0003fff0 +[ 0.000000] On node 0 totalpages: 262015 +[ 0.000000] free_area_init_node: node 0, pgdat c080f680, node_mem_map c1001200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 272 pages used for memmap +[ 0.000000] HighMem zone: 34530 pages, LIFO batch:7 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x4008 +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic" +[ 0.000000] APIC: disable apic facility +[ 0.000000] APIC: switched to apic NOOP +[ 0.000000] nr_irqs_gsi: 16 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bfff0000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c1c00000 s36352 r0 d20992 u4194304 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u4194304 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259967 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-11-generic root=UUID=0b3657d6-390b-4e64-8870-09e5938786c5 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 5242240 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (39 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009afb5c] TEXT DATA BSS +[ 0.000000] #3 [002f5f2000 - 0030034000] RAMDISK +[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved +[ 0.000000] #5 [00009b0000 - 00009b308a] BRK +[ 0.000000] #6 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #7 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #8 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #9 [0001000000 - 0001001000] BOOTMEM +[ 0.000000] #10 [0001001000 - 0001801000] BOOTMEM +[ 0.000000] #11 [0001801000 - 0001801004] BOOTMEM +[ 0.000000] #12 [0001801040 - 0001801100] BOOTMEM +[ 0.000000] #13 [0001801100 - 0001801154] BOOTMEM +[ 0.000000] #14 [0001801180 - 0001804180] BOOTMEM +[ 0.000000] #15 [0001804180 - 0001804190] BOOTMEM +[ 0.000000] #16 [00018041c0 - 0001804dc0] BOOTMEM +[ 0.000000] #17 [0001804dc0 - 0001804ea0] BOOTMEM +[ 0.000000] #18 [0001804ec0 - 0001804f00] BOOTMEM +[ 0.000000] #19 [0001804f00 - 0001804f40] BOOTMEM +[ 0.000000] #20 [0001804f40 - 0001804f80] BOOTMEM +[ 0.000000] #21 [0001804f80 - 0001804fc0] BOOTMEM +[ 0.000000] #22 [0001804fc0 - 0001805000] BOOTMEM +[ 0.000000] #23 [0001805000 - 0001805040] BOOTMEM +[ 0.000000] #24 [0001805040 - 0001805080] BOOTMEM +[ 0.000000] #25 [0001805080 - 0001805090] BOOTMEM +[ 0.000000] #26 [00018050c0 - 000180512a] BOOTMEM +[ 0.000000] #27 [0001805140 - 00018051aa] BOOTMEM +[ 0.000000] #28 [0001c00000 - 0001c0e000] BOOTMEM +[ 0.000000] #29 [00018071c0 - 00018071c4] BOOTMEM +[ 0.000000] #30 [0001807200 - 0001807204] BOOTMEM +[ 0.000000] #31 [0001807240 - 0001807244] BOOTMEM +[ 0.000000] #32 [0001807280 - 0001807284] BOOTMEM +[ 0.000000] #33 [00018072c0 - 0001807370] BOOTMEM +[ 0.000000] #34 [0001807380 - 0001807428] BOOTMEM +[ 0.000000] #35 [0001807440 - 000180b440] BOOTMEM +[ 0.000000] #36 [000180b440 - 000188b440] BOOTMEM +[ 0.000000] #37 [000188b440 - 00018cb440] BOOTMEM +[ 0.000000] #38 [0001c0e000 - 000210dd80] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0003fff0) +[ 0.000000] Memory: 1014440k/1048512k available (4930k kernel code, 33620k reserved, 2396k data, 684k init, 139208k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0828000 - 0xc08d3000 ( 684 kB) +[ 0.000000] .data : 0xc05d0b9a - 0xc0827f68 (2396 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d0b9a (4930 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:256 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1539.999 MHz processor. +[ 0.008008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3079.99 BogoMIPS (lpj=6159996) +[ 0.008018] pid_max: default: 32768 minimum: 301 +[ 0.008072] Security Framework initialized +[ 0.008122] AppArmor: AppArmor initialized +[ 0.008127] Yama: becoming mindful. +[ 0.008246] Mount-cache hash table entries: 512 +[ 0.008514] Initializing cgroup subsys ns +[ 0.008522] Initializing cgroup subsys cpuacct +[ 0.008531] Initializing cgroup subsys memory +[ 0.008548] Initializing cgroup subsys devices +[ 0.008554] Initializing cgroup subsys freezer +[ 0.008559] Initializing cgroup subsys net_cls +[ 0.008610] mce: CPU supports 4 MCE banks +[ 0.008646] Performance Events: +[ 0.008651] no APIC, boot with the "lapic" boot parameter to force-enable it. +[ 0.008656] no hardware sampling interrupt available. +[ 0.008660] AMD PMU driver. +[ 0.008670] ... version: 0 +[ 0.008674] ... bit width: 48 +[ 0.008678] ... generic registers: 4 +[ 0.008682] ... value mask: 0000ffffffffffff +[ 0.008686] ... max period: 00007fffffffffff +[ 0.008690] ... fixed-purpose events: 0 +[ 0.008694] ... event mask: 000000000000000f +[ 0.012917] SMP alternatives: switching to UP code +[ 0.023740] Freeing SMP alternatives: 24k freed +[ 0.023799] ACPI: Core revision 20100428 +[ 0.030345] ACPI: setting ELCR to 0200 (from 0ea0) +[ 0.032217] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.032233] ftrace: allocating 21734 entries in 43 pages +[ 0.036184] weird, boot CPU (#0) not listed by the BIOS. +[ 0.036191] SMP motherboard not detected. +[ 0.036195] Local APIC not detected. Using dummy APIC emulation. +[ 0.036199] SMP disabled +[ 0.036671] Brought up 1 CPUs +[ 0.036676] Total of 1 processors activated (3079.99 BogoMIPS). +[ 0.040314] devtmpfs: initialized +[ 0.042216] regulator: core version 0.5 +[ 0.042254] Time: 19:19:24 Date: 07/28/10 +[ 0.042318] NET: Registered protocol family 16 +[ 0.042539] EISA bus registered +[ 0.042559] ACPI: bus type pci registered +[ 0.044783] PCI: PCI BIOS revision 2.10 entry at 0xfb3e0, last bus=1 +[ 0.044787] PCI: Using configuration type 1 for base access +[ 0.046443] bio: create slab at 0 +[ 0.047395] ACPI: EC: Look up EC in DSDT +[ 0.052304] ACPI: Interpreter enabled +[ 0.052309] ACPI: (supports S0 S1 S4 S5) +[ 0.052346] ACPI: Using PIC for interrupt routing +[ 0.057207] ACPI: No dock devices found. +[ 0.057215] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.057377] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.057660] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.057666] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.057671] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.057675] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored) +[ 0.057680] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xffefffff] (ignored) +[ 0.057714] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref] +[ 0.057814] pci 0000:00:01.0: supports D1 +[ 0.057853] pci 0000:00:09.0: reg 10: [mem 0xe2004000-0xe2004fff] +[ 0.057894] pci 0000:00:09.0: supports D1 D2 +[ 0.057898] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot +[ 0.057904] pci 0000:00:09.0: PME# disabled +[ 0.057936] pci 0000:00:09.1: reg 10: [mem 0xe2002000-0xe2002fff] +[ 0.057976] pci 0000:00:09.1: supports D1 D2 +[ 0.057980] pci 0000:00:09.1: PME# supported from D0 D1 D2 D3hot +[ 0.057985] pci 0000:00:09.1: PME# disabled +[ 0.058016] pci 0000:00:09.2: reg 10: [mem 0xe2003000-0xe20030ff] +[ 0.058057] pci 0000:00:09.2: supports D1 D2 +[ 0.058060] pci 0000:00:09.2: PME# supported from D0 D1 D2 D3hot +[ 0.058066] pci 0000:00:09.2: PME# disabled +[ 0.058105] pci 0000:00:0a.0: reg 10: [mem 0xe2000000-0xe2001fff] +[ 0.058176] pci 0000:00:0b.0: reg 10: [io 0xd000-0xd01f] +[ 0.058217] pci 0000:00:0b.0: supports D1 D2 +[ 0.058247] pci 0000:00:0b.1: reg 10: [io 0xd400-0xd407] +[ 0.058288] pci 0000:00:0b.1: supports D1 D2 +[ 0.058345] pci 0000:00:10.0: reg 20: [io 0xd800-0xd81f] +[ 0.058371] pci 0000:00:10.0: supports D1 D2 +[ 0.058375] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.058380] pci 0000:00:10.0: PME# disabled +[ 0.058426] pci 0000:00:10.1: reg 20: [io 0xdc00-0xdc1f] +[ 0.058452] pci 0000:00:10.1: supports D1 D2 +[ 0.058456] pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.058461] pci 0000:00:10.1: PME# disabled +[ 0.058507] pci 0000:00:10.2: reg 20: [io 0xe000-0xe01f] +[ 0.058533] pci 0000:00:10.2: supports D1 D2 +[ 0.058536] pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.058542] pci 0000:00:10.2: PME# disabled +[ 0.058573] pci 0000:00:10.3: reg 10: [mem 0xe2005000-0xe20050ff] +[ 0.058614] pci 0000:00:10.3: supports D1 D2 +[ 0.058617] pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.058623] pci 0000:00:10.3: PME# disabled +[ 0.058684] HPET not enabled in BIOS. You might try hpet=force boot option +[ 0.058694] pci 0000:00:11.0: quirk: [io 0x4000-0x407f] claimed by vt8235 PM +[ 0.058700] pci 0000:00:11.0: quirk: [io 0x5000-0x500f] claimed by vt8235 SMB +[ 0.058764] pci 0000:00:11.1: reg 20: [io 0xe400-0xe40f] +[ 0.058864] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe0ffffff] +[ 0.058872] pci 0000:01:00.0: reg 14: [mem 0xd8000000-0xdfffffff pref] +[ 0.058892] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] +[ 0.058943] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.058949] pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.058956] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe1ffffff] +[ 0.058962] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xdfffffff pref] +[ 0.058972] pci_bus 0000:00: on NUMA node 0 +[ 0.058978] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.085615] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 11 12 14 15) +[ 0.085847] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *7 10 11 12 14 15) +[ 0.086080] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 *11 12 14 15) +[ 0.086311] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 10 11 12 14 15) +[ 0.086381] HEST: Table is not found! +[ 0.086545] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.086549] vgaarb: loaded +[ 0.086847] SCSI subsystem initialized +[ 0.086989] libata version 3.00 loaded. +[ 0.087098] usbcore: registered new interface driver usbfs +[ 0.087120] usbcore: registered new interface driver hub +[ 0.087172] usbcore: registered new device driver usb +[ 0.087403] ACPI: WMI: Mapper loaded +[ 0.087406] PCI: Using ACPI for IRQ routing +[ 0.087413] PCI: pci_cache_line_size set to 32 bytes +[ 0.087481] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.087486] reserve RAM buffer: 000000003fff0000 - 000000003fffffff +[ 0.087671] NetLabel: Initializing +[ 0.087675] NetLabel: domain hash size = 128 +[ 0.087677] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.087703] NetLabel: unlabeled traffic allowed by default +[ 0.087778] Switching to clocksource tsc +[ 0.102453] AppArmor: AppArmor Filesystem Enabled +[ 0.102491] pnp: PnP ACPI init +[ 0.102527] ACPI: bus type pnp registered +[ 0.103824] ERROR: Unable to locate IOAPIC for GSI 8 +[ 0.103923] ERROR: Unable to locate IOAPIC for GSI 13 +[ 0.104390] ERROR: Unable to locate IOAPIC for GSI 6 +[ 0.105457] pnp: PnP ACPI: found 10 devices +[ 0.105461] ACPI: ACPI bus type pnp unregistered +[ 0.105467] PnPBIOS: Disabled by ACPI PNP +[ 0.105490] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved +[ 0.105496] system 00:00: [mem 0x000f0000-0x000f7fff] could not be reserved +[ 0.105502] system 00:00: [mem 0x000f8000-0x000fbfff] could not be reserved +[ 0.105507] system 00:00: [mem 0x000fc000-0x000fffff] could not be reserved +[ 0.105512] system 00:00: [mem 0x3fff0000-0x3fffffff] could not be reserved +[ 0.105518] system 00:00: [mem 0xffff0000-0xffffffff] has been reserved +[ 0.105523] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.105528] system 00:00: [mem 0x00100000-0x3ffeffff] could not be reserved +[ 0.105534] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.105539] system 00:00: [mem 0xfff80000-0xfffeffff] has been reserved +[ 0.105549] system 00:02: [io 0x4000-0x407f] has been reserved +[ 0.105554] system 00:02: [io 0x5000-0x500f] has been reserved +[ 0.105563] system 00:03: [io 0x04d0-0x04d1] has been reserved +[ 0.105568] system 00:03: [io 0x0800-0x0805] has been reserved +[ 0.105572] system 00:03: [io 0x0290-0x0297] has been reserved +[ 0.140426] pci 0000:01:00.0: BAR 6: assigned [mem 0xe1000000-0xe101ffff pref] +[ 0.140434] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.140438] pci 0000:00:01.0: bridge window [io disabled] +[ 0.140446] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe1ffffff] +[ 0.140452] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xdfffffff pref] +[ 0.140472] pci 0000:00:01.0: setting latency timer to 64 +[ 0.140479] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.140483] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff] +[ 0.140488] pci_bus 0000:01: resource 1 [mem 0xe0000000-0xe1ffffff] +[ 0.140492] pci_bus 0000:01: resource 2 [mem 0xd8000000-0xdfffffff pref] +[ 0.140566] NET: Registered protocol family 2 +[ 0.140672] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.141230] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.143944] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.145309] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.145315] TCP reno registered +[ 0.145324] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.145365] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.145561] NET: Registered protocol family 1 +[ 0.145590] pci 0000:00:01.0: disabling DAC on VIA PCI bridge +[ 0.145736] pci 0000:01:00.0: Boot video device +[ 0.145742] PCI: CLS 32 bytes, default 32 +[ 0.146117] cpufreq-nforce2: No nForce2 chipset. +[ 0.146161] Scanning for low memory corruption every 60 seconds +[ 0.146342] audit: initializing netlink socket (disabled) +[ 0.146363] type=2000 audit(1280344764.144:1): initialized +[ 0.160574] Trying to unpack rootfs image as initramfs... +[ 0.176620] highmem bounce pool size: 64 pages +[ 0.176633] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.182748] VFS: Disk quotas dquot_6.5.2 +[ 0.182864] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.188393] fuse init (API version 7.14) +[ 0.188626] msgmni has been set to 1709 +[ 0.192437] alg: No test for stdrng (krng) +[ 0.192621] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.192626] io scheduler noop registered +[ 0.192630] io scheduler deadline registered +[ 0.192648] io scheduler cfq registered (default) +[ 0.192859] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.192898] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.193201] vesafb: framebuffer at 0xd812c000, mapped to 0xf8080000, using 1216k, total 1216k +[ 0.193206] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.193210] vesafb: scrolling: redraw +[ 0.193215] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.226653] Console: switching to colour frame buffer device 80x30 +[ 0.259834] fb0: VESA VGA frame buffer device +[ 0.324771] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.324781] ACPI: Power Button [PWRB] +[ 0.324863] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1 +[ 0.324875] ACPI: Sleep Button [SLPB] +[ 0.324962] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.324966] ACPI: Power Button [PWRF] +[ 0.325042] ACPI: Fan [FAN] (on) +[ 0.325335] ACPI: acpi_idle registered with cpuidle +[ 0.325386] Marking TSC unstable due to TSC halts in idle +[ 0.332576] Switching to clocksource acpi_pm +[ 0.332890] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.332909] ACPI: Thermal Zone [THRM] (40 C) +[ 0.333040] ERST: Table is not found! +[ 0.340471] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.342744] brd: module loaded +[ 0.343629] loop: module loaded +[ 0.344142] isapnp: Scanning for PnP cards... +[ 0.352840] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 +[ 0.352849] PCI: setting IRQ 10 as level-triggered +[ 0.352858] pata_acpi 0000:00:11.1: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10 +[ 0.352865] pata_acpi 0000:00:11.1: VIA VLink IRQ fixup, from 255 to 10 +[ 0.352993] pata_acpi 0000:00:11.1: PCI INT A disabled +[ 0.353570] Fixed MDIO Bus: probed +[ 0.353637] PPP generic driver version 2.4.2 +[ 0.353757] tun: Universal TUN/TAP device driver, 1.6 +[ 0.353761] tun: (C) 1999-2004 Max Krasnyansky +[ 0.353926] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.354384] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5 +[ 0.354388] PCI: setting IRQ 5 as level-triggered +[ 0.354396] ehci_hcd 0000:00:09.2: PCI INT C -> Link[LNKD] -> GSI 5 (level, low) -> IRQ 5 +[ 0.354429] ehci_hcd 0000:00:09.2: EHCI Host Controller +[ 0.354493] ehci_hcd 0000:00:09.2: new USB bus registered, assigned bus number 1 +[ 0.404446] ehci_hcd 0000:00:09.2: irq 5, io mem 0xe2003000 +[ 0.416273] ehci_hcd 0000:00:09.2: USB 2.0 started, EHCI 1.00 +[ 0.416583] hub 1-0:1.0: USB hub found +[ 0.416594] hub 1-0:1.0: 3 ports detected +[ 0.416722] ehci_hcd 0000:00:10.3: PCI INT D -> Link[LNKD] -> GSI 5 (level, low) -> IRQ 5 +[ 0.416758] ehci_hcd 0000:00:10.3: EHCI Host Controller +[ 0.416841] ehci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 2 +[ 0.416911] ehci_hcd 0000:00:10.3: irq 5, io mem 0xe2005000 +[ 0.428471] ehci_hcd 0000:00:10.3: USB 2.0 started, EHCI 1.00 +[ 0.428798] hub 2-0:1.0: USB hub found +[ 0.428812] hub 2-0:1.0: 6 ports detected +[ 0.428930] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.429501] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 7 +[ 0.429506] PCI: setting IRQ 7 as level-triggered +[ 0.429515] ohci_hcd 0000:00:09.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7 +[ 0.429549] ohci_hcd 0000:00:09.0: OHCI Host Controller +[ 0.429623] ohci_hcd 0000:00:09.0: new USB bus registered, assigned bus number 3 +[ 0.429663] ohci_hcd 0000:00:09.0: irq 7, io mem 0xe2004000 +[ 0.548891] hub 3-0:1.0: USB hub found +[ 0.548905] hub 3-0:1.0: 2 ports detected +[ 0.549628] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11 +[ 0.549633] PCI: setting IRQ 11 as level-triggered +[ 0.549642] ohci_hcd 0000:00:09.1: PCI INT B -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11 +[ 0.549676] ohci_hcd 0000:00:09.1: OHCI Host Controller +[ 0.549753] ohci_hcd 0000:00:09.1: new USB bus registered, assigned bus number 4 +[ 0.549793] ohci_hcd 0000:00:09.1: irq 11, io mem 0xe2002000 +[ 0.664791] hub 4-0:1.0: USB hub found +[ 0.664806] hub 4-0:1.0: 1 port detected +[ 0.664922] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.665027] uhci_hcd 0000:00:10.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10 +[ 0.665046] uhci_hcd 0000:00:10.0: UHCI Host Controller +[ 0.665124] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 5 +[ 0.665164] uhci_hcd 0000:00:10.0: irq 10, io base 0x0000d800 +[ 0.665367] hub 5-0:1.0: USB hub found +[ 0.665375] hub 5-0:1.0: 2 ports detected +[ 0.665459] uhci_hcd 0000:00:10.1: PCI INT B -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7 +[ 0.665470] uhci_hcd 0000:00:10.1: UHCI Host Controller +[ 0.665535] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 6 +[ 0.665562] uhci_hcd 0000:00:10.1: irq 7, io base 0x0000dc00 +[ 0.665774] hub 6-0:1.0: USB hub found +[ 0.665784] hub 6-0:1.0: 2 ports detected +[ 0.665857] uhci_hcd 0000:00:10.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11 +[ 0.665868] uhci_hcd 0000:00:10.2: UHCI Host Controller +[ 0.665922] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 7 +[ 0.665952] uhci_hcd 0000:00:10.2: irq 11, io base 0x0000e000 +[ 0.666154] hub 7-0:1.0: USB hub found +[ 0.666161] hub 7-0:1.0: 2 ports detected +[ 0.666321] PNP: No PS/2 controller found. Probing ports directly. +[ 0.672468] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.672492] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.672795] mice: PS/2 mouse device common for all mice +[ 0.673017] rtc_cmos 00:05: RTC can wake from S4 +[ 0.673132] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0 +[ 0.673161] rtc0: alarms up to one year, y3k, 242 bytes nvram +[ 0.673363] device-mapper: uevent: version 1.0.3 +[ 0.673585] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.680138] device-mapper: multipath: version 1.1.1 loaded +[ 0.680148] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.680512] EISA: Probing bus 0 at eisa.0 +[ 0.680536] Cannot allocate resource for EISA slot 4 +[ 0.680540] Cannot allocate resource for EISA slot 5 +[ 0.680555] EISA: Detected 0 cards. +[ 0.728337] cpuidle: using governor ladder +[ 0.728419] cpuidle: using governor menu +[ 0.728908] TCP cubic registered +[ 0.729175] NET: Registered protocol family 10 +[ 0.729700] lo: Disabled Privacy Extensions +[ 0.730007] NET: Registered protocol family 17 +[ 0.730075] powernow-k8: Processor cpuid 662 not supported +[ 0.730110] Using IPI No-Shortcut mode +[ 0.730317] PM: Resume from disk failed. +[ 0.730339] registered taskstats version 1 +[ 0.730598] Magic number: 2:398:345 +[ 0.730653] tty tty62: hash matches +[ 0.730774] rtc_cmos 00:05: setting system clock to 2010-07-28 19:19:24 UTC (1280344764) +[ 0.730780] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.730782] EDD information not available. +[ 0.992052] isapnp: No Plug & Play device found +[ 1.078671] Freeing initrd memory: 10504k freed +[ 1.101993] Freeing unused kernel memory: 684k freed +[ 1.103554] Write protecting the kernel text: 4932k +[ 1.103604] Write protecting the kernel read-only data: 2012k +[ 1.142512] udev: starting version 151 +[ 1.408139] usb 3-2: new full speed USB device using ohci_hcd and address 2 +[ 1.450068] Floppy drive(s): fd0 is 1.44M +[ 1.463386] pata_via 0000:00:11.1: version 0.3.4 +[ 1.463419] pata_via 0000:00:11.1: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10 +[ 1.463427] pata_via 0000:00:11.1: VIA VLink IRQ fixup, from 255 to 10 +[ 1.493393] scsi0 : pata_via +[ 1.497181] FDC 0 is a post-1991 82077 +[ 1.506607] scsi1 : pata_via +[ 1.510935] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xe400 irq 14 +[ 1.510941] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xe408 irq 15 +[ 1.681348] ata1.00: ATA-6: WDC WD800JB-00ETA0, 77.07W77, max UDMA/100 +[ 1.681356] ata1.00: 156301488 sectors, multi 16: LBA48 +[ 1.682318] ata1.01: ATA-5: WDC WD400BB-53AUA1, 18.20D18, max UDMA/100 +[ 1.682323] ata1.01: 78165360 sectors, multi 16: LBA +[ 1.682355] ata1.00: limited to UDMA/33 due to 40-wire cable +[ 1.682359] ata1.01: limited to UDMA/33 due to 40-wire cable +[ 1.697235] ata1.00: configured for UDMA/33 +[ 1.713177] ata1.01: configured for UDMA/33 +[ 1.713386] scsi 0:0:0:0: Direct-Access ATA WDC WD800JB-00ET 77.0 PQ: 0 ANSI: 5 +[ 1.713689] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.714232] scsi 0:0:1:0: Direct-Access ATA WDC WD400BB-53AU 18.2 PQ: 0 ANSI: 5 +[ 1.714593] sd 0:0:1:0: Attached scsi generic sg1 type 0 +[ 1.714973] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 1.715069] sd 0:0:0:0: [sda] Write Protect is off +[ 1.715074] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.715113] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.715388] sda: sda1 sda2 < sda5 > +[ 1.755210] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.755233] sd 0:0:1:0: [sdb] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB) +[ 1.755315] sd 0:0:1:0: [sdb] Write Protect is off +[ 1.755320] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.755357] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.755624] sdb: sdb1 +[ 1.777658] sd 0:0:1:0: [sdb] Attached SCSI disk +[ 1.836053] usb 4-1: new full speed USB device using ohci_hcd and address 2 +[ 2.052807] ata2.00: ATAPI: MATSHITA CD-RW CW-7585, 1.04, max MWDMA2 +[ 2.052853] ata2.01: ATAPI: Memorex 48MAXX 1248AJ, VWS4, max UDMA/33 +[ 2.060329] ata2.00: configured for MWDMA2 +[ 2.076283] ata2.01: configured for UDMA/33 +[ 2.084797] scsi 1:0:0:0: CD-ROM MATSHITA CD-RW CW-7585 1.04 PQ: 0 ANSI: 5 +[ 2.086887] sr0: scsi3-mmc drive: 8x/32x writer cd/rw xa/form2 cdda tray +[ 2.086894] Uniform CD-ROM driver Revision: 3.20 +[ 2.087378] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 2.087591] sr 1:0:0:0: Attached scsi generic sg2 type 5 +[ 2.093505] scsi 1:0:1:0: CD-ROM Memorex 48MAXX 1248AJ VWS4 PQ: 0 ANSI: 5 +[ 2.142615] sr1: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray +[ 2.143157] sr 1:0:1:0: Attached scsi CD-ROM sr1 +[ 2.143376] sr 1:0:1:0: Attached scsi generic sg3 type 5 +[ 2.288061] usb 5-2: new low speed USB device using uhci_hcd and address 2 +[ 2.524862] usbcore: registered new interface driver hiddev +[ 2.540592] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:10.0/usb5/5-2/5-2:1.0/input/input3 +[ 2.541433] generic-usb 0003:045E:00B0.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:10.0-2/input0 +[ 2.572413] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:10.0/usb5/5-2/5-2:1.1/input/input4 +[ 2.572704] generic-usb 0003:045E:00B0.0002: input,hidraw1: USB HID v1.11 Device [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:10.0-2/input1 +[ 2.572963] usbcore: registered new interface driver usbhid +[ 2.572967] usbhid: USB HID core driver +[ 2.712051] usb 6-2: new low speed USB device using uhci_hcd and address 2 +[ 2.905661] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:10.1/usb6/6-2/6-2:1.0/input/input5 +[ 2.906528] generic-usb 0003:046D:C00E.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:10.1-2/input0 +[ 7.541130] EXT4-fs (sda5): INFO: recovery required on readonly filesystem +[ 7.541141] EXT4-fs (sda5): write access will be enabled during recovery +[ 7.624199] EXT4-fs (sda5): recovery complete +[ 7.624657] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 23.748573] Adding 14370104k swap on /dev/sdb1. Priority:-1 extents:1 across:14370104k +[ 23.796155] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro +[ 23.814352] udev: starting version 151 +[ 24.081029] WARNING! power/level is deprecated; use power/control instead +[ 24.202626] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 24.372958] Linux agpgart interface v0.103 +[ 24.395801] agpgart: Detected VIA KT266/KY266x/KT333 chipset +[ 24.661496] lp: driver loaded but no devices found +[ 24.745581] usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x03F0 pid 0x6004 +[ 24.745633] usbcore: registered new interface driver usblp +[ 24.895600] agpgart-via 0000:00:00.0: AGP aperture is 128M @ 0xd0000000 +[ 24.958569] irda_init() +[ 24.958607] NET: Registered protocol family 23 +[ 25.050395] cfg80211: Calling CRDA to update world regulatory domain +[ 25.142991] gameport gameport0: EMU10K1 is pci0000:00:0b.1/gameport0, io 0xd400, speed 1217kHz +[ 25.149999] cfg80211: World regulatory domain updated: +[ 25.150008] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 25.150014] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 25.150018] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 25.150023] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 25.150027] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 25.150032] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 25.186217] [drm] Initialized drm 1.1.0 20060810 +[ 25.527290] type=1400 audit(1280359189.292:2): operation="profile_load" pid=610 name="/sbin/dhclient3" pid=610 comm="apparmor_parser" +[ 25.527742] type=1400 audit(1280359189.292:3): operation="profile_load" pid=610 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=610 comm="apparmor_parser" +[ 25.527998] type=1400 audit(1280359189.292:4): operation="profile_load" pid=610 name="/usr/lib/connman/scripts/dhclient-script" pid=610 comm="apparmor_parser" +[ 25.884967] rt2500pci 0000:00:0a.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11 +[ 25.929675] nouveau 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10 +[ 26.015747] [drm] nouveau 0000:01:00.0: Detected an NV30 generation card (0x034200b1) +[ 26.015758] checking generic (d812c000 130000) vs hw (d8000000 8000000) +[ 26.015763] fb: conflicting fb hw usage nouveaufb vs VESA VGA - removing generic driver +[ 26.017362] Console: switching to colour dummy device 80x25 +[ 26.019986] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PROM +[ 26.140334] [drm] nouveau 0000:01:00.0: ... appears to be valid +[ 26.140579] [drm] nouveau 0000:01:00.0: BMP BIOS found +[ 26.140584] [drm] nouveau 0000:01:00.0: BMP version 5.41 +[ 26.140589] [drm] nouveau 0000:01:00.0: Bios version 04.34.20.87 +[ 26.140595] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 2.2 +[ 26.140601] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000300 000088b8 +[ 26.140608] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 02020321 00000303 +[ 26.140612] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 01010312 00000300 +[ 26.140874] [drm] nouveau 0000:01:00.0: Loading NV17 power sequencing microcode +[ 26.140881] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xED03 +[ 26.505329] type=1400 audit(1280359190.272:5): operation="profile_load" pid=803 name="/usr/share/gdm/guest-session/Xsession" pid=803 comm="apparmor_parser" +[ 26.508994] type=1400 audit(1280359190.276:6): operation="profile_replace" pid=804 name="/sbin/dhclient3" pid=804 comm="apparmor_parser" +[ 26.509462] type=1400 audit(1280359190.276:7): operation="profile_replace" pid=804 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=804 comm="apparmor_parser" +[ 26.509746] type=1400 audit(1280359190.276:8): operation="profile_replace" pid=804 name="/usr/lib/connman/scripts/dhclient-script" pid=804 comm="apparmor_parser" +[ 26.520102] type=1400 audit(1280359190.288:9): operation="profile_load" pid=805 name="/usr/bin/evince" pid=805 comm="apparmor_parser" +[ 26.534493] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xEF9E +[ 26.534533] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xF0E4 +[ 26.534573] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xF26D +[ 26.534580] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xF28A +[ 26.534587] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 5 at offset 0xF2A7 +[ 26.537591] type=1400 audit(1280359190.304:10): operation="profile_load" pid=805 name="/usr/bin/evince-previewer" pid=805 comm="apparmor_parser" +[ 26.540212] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 6 at offset 0xF440 +[ 26.540223] [drm] nouveau 0000:01:00.0: Detected 128MiB VRAM +[ 26.556475] type=1400 audit(1280359190.324:11): operation="profile_load" pid=805 name="/usr/bin/evince-thumbnailer" pid=805 comm="apparmor_parser" +[ 26.569326] [TTM] Zone kernel: Available graphics memory: 443222 kiB. +[ 26.569333] [TTM] Zone highmem: Available graphics memory: 512826 kiB. +[ 26.569336] [TTM] Initializing pool allocator. +[ 26.569490] agpgart-via 0000:00:00.0: AGP 2.0 bridge +[ 26.569515] agpgart-via 0000:00:00.0: putting AGP V2 device into 4x mode +[ 26.569586] nouveau 0000:01:00.0: putting AGP V2 device into 4x mode +[ 26.569591] [drm] nouveau 0000:01:00.0: 128 MiB GART (aperture) +[ 26.569965] [drm] nouveau 0000:01:00.0: Allocating FIFO number 0 +[ 26.577717] [drm] nouveau 0000:01:00.0: nouveau_channel_alloc: initialised FIFO 0 +[ 26.577733] [drm] nouveau 0000:01:00.0: Initial CRTC_OWNER is 0 +[ 26.577869] [drm] nouveau 0000:01:00.0: Detected a VGA connector +[ 26.578301] [drm] nouveau 0000:01:00.0: Detected a TV connector +[ 26.578602] [drm] nouveau 0000:01:00.0: Detected a DVI-D connector +[ 26.579888] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0) +[ 26.579895] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 1) +[ 26.579904] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 2) +[ 26.637380] phy0: Selected rate control algorithm 'minstrel' +[ 26.638311] Registered led device: rt2500pci-phy0::radio +[ 26.638340] Registered led device: rt2500pci-phy0::quality +[ 26.697823] EMU10K1_Audigy 0000:00:0b.0: PCI INT A -> Link[LNKD] -> GSI 5 (level, low) -> IRQ 5 +[ 26.804932] BUG: unable to handle kernel NULL pointer dereference at 0000030c +[ 26.804957] IP: [] fb_mmap+0x34/0x170 +[ 26.804984] *pde = 3f809067 +[ 26.804991] Oops: 0000 [#1] SMP +[ 26.804999] last sysfs file: /sys/devices/pci0000:00/0000:00:0a.0/device +[ 26.805011] Modules linked in: snd_emu10k1(+) arc4 snd_ac97_codec ac97_bus snd_pcm snd_page_alloc snd_util_mem snd_hwdep nouveau(+) snd_seq_midi rt2500pci rt2x00pci snd_rawmidi rt2x00lib led_class snd_seq_midi_event mac80211 snd_seq ttm snd_timer drm_kms_helper snd_seq_device drm i2c_viapro via_ircc usblp cfg80211 i2c_algo_bit irda psmouse serio_raw emu10k1_gp snd lp via_agp joydev gameport eeprom_93cx6 parport agpgart shpchp crc_ccitt soundcore usbhid hid pata_via floppy +[ 26.805103] +[ 26.805112] Pid: 278, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu VT8367-8235/VT8367-8235 +[ 26.805125] EIP: 0060:[] EFLAGS: 00010293 CPU: 0 +[ 26.805135] EIP is at fb_mmap+0x34/0x170 +[ 26.805142] EAX: 00000000 EBX: f397f898 ECX: c05fdd60 EDX: 00000000 +[ 26.805151] ESI: 00000000 EDI: b745f000 EBP: f6a73efc ESP: f6a73ed8 +[ 26.805160] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 26.805169] Process plymouthd (pid: 278, ti=f6a72000 task=f68b9960 task.ti=f6a72000) +[ 26.805179] Stack: +[ 26.805184] 00000202 c01f8068 f6980960 0000012c 000080d0 00000058 f6892648 f689264c +[ 26.805202] <0> b745f000 f6a73f50 c01f810c b758b000 000000fa 00000000 f48fc580 00000000 +[ 26.805221] <0> 00000000 00000000 f6892630 00000000 f73fc060 f48fc580 ffffffea 0000012c +[ 26.805241] Call Trace: +[ 26.805257] [] ? mmap_region+0x298/0x490 +[ 26.805267] [] ? mmap_region+0x33c/0x490 +[ 26.805279] [] ? do_mmap_pgoff+0x25c/0x300 +[ 26.805290] [] ? sys_mmap_pgoff+0x193/0x1c0 +[ 26.805303] [] ? syscall_call+0x7/0xb +[ 26.805311] Code: 89 75 f8 89 7d fc 0f 1f 44 00 00 8b 40 0c 89 d3 8b 52 44 8b 40 10 8b 40 34 25 ff ff 0f 00 81 fa ff ff 0f 00 8b 34 85 40 67 82 c0 <8b> 8e 0c 03 00 00 76 14 bf ea ff ff ff 89 f8 8b 5d f4 8b 75 f8 +[ 26.805383] EIP: [] fb_mmap+0x34/0x170 SS:ESP 0068:f6a73ed8 +[ 26.805396] CR2: 000000000000030c +[ 26.805405] ---[ end trace bf8374d0cf10d7a1 ]--- +[ 26.845259] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 26.921075] [drm] nouveau 0000:01:00.0: allocated 800x600 fb: 0x49000, bo f22ffa00 +[ 26.935789] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0) +[ 26.935798] [drm] nouveau 0000:01:00.0: Output VGA-1 is running on CRTC 0 using output A +[ 26.943051] Console: switching to colour frame buffer device 100x37 +[ 26.943724] fb0: nouveaufb frame buffer device +[ 26.943738] drm: registered panic notifier +[ 26.943754] Slow work thread pool: Starting up +[ 26.947992] Slow work thread pool: Ready +[ 26.948133] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0 + +Bug: 611135 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-11-generic (buildd@rothera) (gcc version 4.4.5 20100723 (prerelease) (Ubuntu/Linaro 4.4.4-7ubuntu3) ) #16-Ubuntu SMP Sat Jul 24 21:38:26 UTC 2010 (Ubuntu 2.6.35-11.16-generic 2.6.35-rc5) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 00000000000a0000 (usable) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f688c00 (usable) +[ 0.000000] BIOS-e820: 000000003f688c00 - 000000003f68ac00 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000003f68ac00 - 000000003f68cc00 (ACPI data) +[ 0.000000] BIOS-e820: 000000003f68cc00 - 0000000040000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.3 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x3f688 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask FC0000000 write-back +[ 0.000000] 1 base 03F800000 mask FFF800000 uncachable +[ 0.000000] 2 base 03F700000 mask FFFF00000 uncachable +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 00000000000a0000 (usable) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000003f688c00 (usable) +[ 0.000000] modified: 000000003f688c00 - 000000003f68ac00 (ACPI NVS) +[ 0.000000] modified: 000000003f68ac00 - 000000003f68cc00 (ACPI data) +[ 0.000000] modified: 000000003f68cc00 - 0000000040000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fed00400 (reserved) +[ 0.000000] modified: 00000000fed20000 - 00000000feda0000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fef00000 (reserved) +[ 0.000000] modified: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00fe710] fe710 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 2eee4000 - 2f927000 +[ 0.000000] ACPI: RSDP 000fec00 00014 (v00 DELL ) +[ 0.000000] ACPI: RSDT 000fcc50 0003C (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: FACP 000fcc8c 00074 (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: DSDT fffc56f3 02D5F (v01 DELL dt_ex 00001000 MSFT 0100000D) +[ 0.000000] ACPI: FACS 3f688c00 00040 +[ 0.000000] ACPI: SSDT fffc858f 000BA (v01 DELL st_ex 00001000 MSFT 0100000D) +[ 0.000000] ACPI: APIC 000fcd00 00092 (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: BOOT 000fcd92 00028 (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: MCFG 000fcdba 0003E (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: HPET 000fcdf8 00038 (v01 DELL DV051 00000007 ASL 00000061) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 126MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0003f688 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x000000a0 +[ 0.000000] 0: 0x00000100 -> 0x0003f688 +[ 0.000000] On node 0 totalpages: 259609 +[ 0.000000] free_area_init_node: node 0, pgdat c080f680, node_mem_map c1001020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3953 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 254 pages used for memmap +[ 0.000000] HighMem zone: 32140 pages, LIFO batch:7 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 7 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c1800000 s36352 r0 d20992 u524288 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u524288 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257579 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-11-generic root=UUID=8a2f805b-82be-4ee0-9f2a-29fc21915cb4 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] early_res array is doubled to 128 at [16800 - 177ff] +[ 0.000000] allocated 5194380 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (57 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009afb5c] TEXT DATA BSS +[ 0.000000] #3 [002eee4000 - 002f927000] RAMDISK +[ 0.000000] #4 [00009b0000 - 00009b31d0] BRK +[ 0.000000] #5 [00000fe720 - 0000100000] BIOS reserved +[ 0.000000] #6 [00000fe710 - 00000fe720] MP-table mpf +[ 0.000000] #7 [000009fc00 - 00000f0000] BIOS reserved +[ 0.000000] #8 [00000f01d0 - 00000fe710] BIOS reserved +[ 0.000000] #9 [00000f0000 - 00000f01d0] MP-table mpc +[ 0.000000] #10 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #11 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #12 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #13 [0001000000 - 0001001000] BOOTMEM +[ 0.000000] #14 [0001001000 - 00017f1000] BOOTMEM +[ 0.000000] #15 [00017f1000 - 00017f1004] BOOTMEM +[ 0.000000] #16 [00017f1040 - 00017f1100] BOOTMEM +[ 0.000000] #17 [00017f1100 - 00017f1154] BOOTMEM +[ 0.000000] #18 [00017f1180 - 00017f4180] BOOTMEM +[ 0.000000] #19 [00017f4180 - 00017f418c] BOOTMEM +[ 0.000000] #20 [00017f41c0 - 00017f47c0] BOOTMEM +[ 0.000000] #21 [00017f47c0 - 00017f47e5] BOOTMEM +[ 0.000000] #22 [00017f4800 - 00017f4827] BOOTMEM +[ 0.000000] #23 [00017f4840 - 00017f49c8] BOOTMEM +[ 0.000000] #24 [00017f4a00 - 00017f4a40] BOOTMEM +[ 0.000000] #25 [00017f4a40 - 00017f4a80] BOOTMEM +[ 0.000000] #26 [00017f4a80 - 00017f4ac0] BOOTMEM +[ 0.000000] #27 [00017f4ac0 - 00017f4b00] BOOTMEM +[ 0.000000] #28 [00017f4b00 - 00017f4b40] BOOTMEM +[ 0.000000] #29 [00017f4b40 - 00017f4b80] BOOTMEM +[ 0.000000] #30 [00017f4b80 - 00017f4bc0] BOOTMEM +[ 0.000000] #31 [00017f4bc0 - 00017f4c00] BOOTMEM +[ 0.000000] #32 [00017f4c00 - 00017f4c40] BOOTMEM +[ 0.000000] #33 [00017f4c40 - 00017f4c80] BOOTMEM +[ 0.000000] #34 [00017f4c80 - 00017f4cc0] BOOTMEM +[ 0.000000] #35 [00017f4cc0 - 00017f4cd0] BOOTMEM +[ 0.000000] #36 [00017f4d00 - 00017f4d10] BOOTMEM +[ 0.000000] #37 [00017f4d40 - 00017f4daa] BOOTMEM +[ 0.000000] #38 [00017f4dc0 - 00017f4e2a] BOOTMEM +[ 0.000000] #39 [0001800000 - 000180e000] BOOTMEM +[ 0.000000] #40 [0001880000 - 000188e000] BOOTMEM +[ 0.000000] #41 [0001900000 - 000190e000] BOOTMEM +[ 0.000000] #42 [0001980000 - 000198e000] BOOTMEM +[ 0.000000] #43 [0001a00000 - 0001a0e000] BOOTMEM +[ 0.000000] #44 [0001a80000 - 0001a8e000] BOOTMEM +[ 0.000000] #45 [0001b00000 - 0001b0e000] BOOTMEM +[ 0.000000] #46 [0001b80000 - 0001b8e000] BOOTMEM +[ 0.000000] #47 [00017f6e40 - 00017f6e44] BOOTMEM +[ 0.000000] #48 [00017f6e80 - 00017f6e84] BOOTMEM +[ 0.000000] #49 [00017f6ec0 - 00017f6ee0] BOOTMEM +[ 0.000000] #50 [00017f6f00 - 00017f6f20] BOOTMEM +[ 0.000000] #51 [00017f6f40 - 00017f6fd8] BOOTMEM +[ 0.000000] #52 [00017f7000 - 00017f7038] BOOTMEM +[ 0.000000] #53 [00017f7040 - 00017fb040] BOOTMEM +[ 0.000000] #54 [0001b8e000 - 0001c0e000] BOOTMEM +[ 0.000000] #55 [000180e000 - 000184e000] BOOTMEM +[ 0.000000] #56 [0001c0e000 - 000210228c] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0003f688) +[ 0.000000] Memory: 1004520k/1038880k available (4930k kernel code, 33916k reserved, 2396k data, 684k init, 129576k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0828000 - 0xc08d3000 ( 684 kB) +[ 0.000000] .data : 0xc05d0b9a - 0xc0827f68 (2396 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d0b9a (4930 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:744 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2992.681 MHz processor. +[ 0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 5985.36 BogoMIPS (lpj=11970724) +[ 0.004013] pid_max: default: 32768 minimum: 301 +[ 0.004043] Security Framework initialized +[ 0.004062] AppArmor: AppArmor initialized +[ 0.004065] Yama: becoming mindful. +[ 0.004139] Mount-cache hash table entries: 512 +[ 0.004320] Initializing cgroup subsys ns +[ 0.004325] Initializing cgroup subsys cpuacct +[ 0.004333] Initializing cgroup subsys memory +[ 0.004347] Initializing cgroup subsys devices +[ 0.004350] Initializing cgroup subsys freezer +[ 0.004354] Initializing cgroup subsys net_cls +[ 0.004393] CPU: Physical Processor ID: 0 +[ 0.004397] CPU: Processor Core ID: 0 +[ 0.004400] mce: CPU supports 4 MCE banks +[ 0.004414] CPU0: Thermal monitoring enabled (TM1) +[ 0.004419] using mwait in idle threads. +[ 0.004426] Performance Events: Netburst events, Netburst P4/Xeon PMU driver. +[ 0.004438] ... version: 0 +[ 0.004440] ... bit width: 40 +[ 0.004443] ... generic registers: 18 +[ 0.004446] ... value mask: 000000ffffffffff +[ 0.004448] ... max period: 0000007fffffffff +[ 0.004451] ... fixed-purpose events: 0 +[ 0.004453] ... event mask: 000000000003ffff +[ 0.009143] SMP alternatives: switching to UP code +[ 0.021545] ACPI: Core revision 20100428 +[ 0.052927] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.052935] ftrace: allocating 21734 entries in 43 pages +[ 0.056068] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.056391] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.098557] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 03 +[ 0.100000] Brought up 1 CPUs +[ 0.100000] Total of 1 processors activated (5985.36 BogoMIPS). +[ 0.100000] devtmpfs: initialized +[ 0.100000] regulator: core version 0.5 +[ 0.100000] Time: 3:01:17 Date: 07/29/10 +[ 0.100000] NET: Registered protocol family 16 +[ 0.100000] EISA bus registered +[ 0.100000] ACPI: bus type pci registered +[ 0.100000] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.100000] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.100000] PCI: Using MMCONFIG for extended config space +[ 0.100000] PCI: Using configuration type 1 for base access +[ 0.100000] bio: create slab at 0 +[ 0.100672] ACPI: EC: Look up EC in DSDT +[ 0.111001] ACPI: BIOS _OSI(Linux) query ignored +[ 0.121934] ACPI: Interpreter enabled +[ 0.121940] ACPI: (supports S0 S1 S3 S4 S5) +[ 0.121977] ACPI: Using IOAPIC for interrupt routing +[ 0.164669] ACPI: No dock devices found. +[ 0.164675] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.168423] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.176173] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.176178] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.176182] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.176186] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xdfffffff] (ignored) +[ 0.176191] pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored) +[ 0.176261] pci 0000:00:02.0: reg 10: [mem 0xdff80000-0xdfffffff] +[ 0.176267] pci 0000:00:02.0: reg 14: [io 0xecd8-0xecdf] +[ 0.176275] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff pref] +[ 0.176281] pci 0000:00:02.0: reg 1c: [mem 0xdff40000-0xdff7ffff] +[ 0.176357] pci 0000:00:1b.0: reg 10: [mem 0xdff3c000-0xdff3ffff 64bit] +[ 0.176404] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.176410] pci 0000:00:1b.0: PME# disabled +[ 0.176485] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.176491] pci 0000:00:1c.0: PME# disabled +[ 0.176566] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.176571] pci 0000:00:1c.1: PME# disabled +[ 0.176627] pci 0000:00:1d.0: reg 20: [io 0xff80-0xff9f] +[ 0.176680] pci 0000:00:1d.1: reg 20: [io 0xff60-0xff7f] +[ 0.176734] pci 0000:00:1d.2: reg 20: [io 0xff40-0xff5f] +[ 0.176786] pci 0000:00:1d.3: reg 20: [io 0xff20-0xff3f] +[ 0.176839] pci 0000:00:1d.7: reg 10: [mem 0xffa80800-0xffa80bff] +[ 0.176894] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.176900] pci 0000:00:1d.7: PME# disabled +[ 0.177017] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.177024] pci 0000:00:1f.0: quirk: [io 0x0880-0x08bf] claimed by ICH6 GPIO +[ 0.177029] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0c00-0c7f +[ 0.177035] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 00e0-00ef +[ 0.177062] pci 0000:00:1f.1: reg 10: [io 0x01f0-0x01f7] +[ 0.177070] pci 0000:00:1f.1: reg 14: [io 0x03f4-0x03f7] +[ 0.177078] pci 0000:00:1f.1: reg 18: [io 0x0170-0x0177] +[ 0.177087] pci 0000:00:1f.1: reg 1c: [io 0x0374-0x0377] +[ 0.177095] pci 0000:00:1f.1: reg 20: [io 0xffa0-0xffaf] +[ 0.177141] pci 0000:00:1f.2: reg 10: [io 0xfe00-0xfe07] +[ 0.177150] pci 0000:00:1f.2: reg 14: [io 0xfe10-0xfe13] +[ 0.177159] pci 0000:00:1f.2: reg 18: [io 0xfe20-0xfe27] +[ 0.177166] pci 0000:00:1f.2: reg 1c: [io 0xfe30-0xfe33] +[ 0.177174] pci 0000:00:1f.2: reg 20: [io 0xfea0-0xfeaf] +[ 0.177181] pci 0000:00:1f.2: reg 24: [mem 0xdff3bc00-0xdff3bfff] +[ 0.177205] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.177210] pci 0000:00:1f.2: PME# disabled +[ 0.177259] pci 0000:00:1f.3: reg 20: [io 0xece0-0xecff] +[ 0.177333] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 0.177340] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.177346] pci 0000:00:1c.0: bridge window [mem 0xdfe00000-0xdfefffff] +[ 0.177354] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.177402] pci 0000:00:1c.1: PCI bridge to [bus 02-02] +[ 0.177408] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled) +[ 0.177414] pci 0000:00:1c.1: bridge window [mem 0xdfd00000-0xdfdfffff] +[ 0.177422] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.177476] pci 0000:03:02.0: reg 10: [mem 0xdfcf0000-0xdfcfffff] +[ 0.177486] pci 0000:03:02.0: reg 14: [io 0xdcb8-0xdcbf] +[ 0.177532] pci 0000:03:02.0: PME# supported from D3hot D3cold +[ 0.177537] pci 0000:03:02.0: PME# disabled +[ 0.177578] pci 0000:03:08.0: reg 10: [mem 0xdfcef000-0xdfceffff] +[ 0.177587] pci 0000:03:08.0: reg 14: [io 0xdcc0-0xdcff] +[ 0.177633] pci 0000:03:08.0: supports D1 D2 +[ 0.177637] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.177643] pci 0000:03:08.0: PME# disabled +[ 0.177683] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode) +[ 0.177689] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] +[ 0.177695] pci 0000:00:1e.0: bridge window [mem 0xdfc00000-0xdfcfffff] +[ 0.177703] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.177707] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.177711] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode) +[ 0.177729] pci_bus 0000:00: on NUMA node 0 +[ 0.177737] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.178132] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT] +[ 0.178522] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI2._PRT] +[ 0.178748] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI3._PRT] +[ 0.574771] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15) +[ 0.575138] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15) +[ 0.575506] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 9 10 11 12 15) +[ 0.576128] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled. +[ 0.576495] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 15) +[ 0.576858] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 15) +[ 0.577219] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15) +[ 0.577582] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15) +[ 0.577694] HEST: Table is not found! +[ 0.577776] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.577787] vgaarb: loaded +[ 0.578002] SCSI subsystem initialized +[ 0.578061] libata version 3.00 loaded. +[ 0.578136] usbcore: registered new interface driver usbfs +[ 0.578153] usbcore: registered new interface driver hub +[ 0.578190] usbcore: registered new device driver usb +[ 0.578354] ACPI: WMI: Mapper loaded +[ 0.578357] PCI: Using ACPI for IRQ routing +[ 0.578361] PCI: pci_cache_line_size set to 64 bytes +[ 0.578429] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.578433] reserve RAM buffer: 000000003f688c00 - 000000003fffffff +[ 0.578557] NetLabel: Initializing +[ 0.578561] NetLabel: domain hash size = 128 +[ 0.578564] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.578579] NetLabel: unlabeled traffic allowed by default +[ 0.578619] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.578626] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.578633] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.584023] Switching to clocksource tsc +[ 0.596218] AppArmor: AppArmor Filesystem Enabled +[ 0.596239] pnp: PnP ACPI init +[ 0.596260] ACPI: bus type pnp registered +[ 0.602322] pnp 00:01: disabling [io 0x0800-0x085f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f] +[ 0.602328] pnp 00:01: disabling [io 0x0860-0x08ff] because it overlaps 0000:00:1f.0 BAR 13 [io 0x0800-0x087f] +[ 0.622205] pnp: PnP ACPI: found 8 devices +[ 0.622208] ACPI: ACPI bus type pnp unregistered +[ 0.622214] PnPBIOS: Disabled by ACPI PNP +[ 0.622230] system 00:01: [io 0x0c00-0x0c7f] has been reserved +[ 0.622243] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.622248] system 00:06: [mem 0x00100000-0x00ffffff] could not be reserved +[ 0.622253] system 00:06: [mem 0x01000000-0x3f688bff] could not be reserved +[ 0.622259] system 00:06: [mem 0x000c0000-0x000fffff] could not be reserved +[ 0.622263] system 00:06: [mem 0xfec00000-0xfecfffff] could not be reserved +[ 0.622268] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved +[ 0.622273] system 00:06: [mem 0xfed20000-0xfed9ffff] has been reserved +[ 0.622277] system 00:06: [mem 0xffb00000-0xffbfffff] has been reserved +[ 0.622282] system 00:06: [mem 0xffc00000-0xffffffff] has been reserved +[ 0.622291] system 00:07: [io 0x0100-0x01fe] could not be reserved +[ 0.622295] system 00:07: [io 0x0200-0x0277] has been reserved +[ 0.622299] system 00:07: [io 0x0280-0x02e7] has been reserved +[ 0.622303] system 00:07: [io 0x02e8-0x02ef] has been reserved +[ 0.622308] system 00:07: [io 0x02f0-0x02f7] has been reserved +[ 0.622312] system 00:07: [io 0x02f8-0x02ff] has been reserved +[ 0.622317] system 00:07: [io 0x0300-0x0377] could not be reserved +[ 0.622321] system 00:07: [io 0x0380-0x03bb] has been reserved +[ 0.622326] system 00:07: [io 0x03c0-0x03e7] has been reserved +[ 0.622330] system 00:07: [io 0x03f6-0x03f7] could not be reserved +[ 0.622335] system 00:07: [io 0x0400-0x04cf] has been reserved +[ 0.622339] system 00:07: [io 0x04d2-0x057f] has been reserved +[ 0.622343] system 00:07: [io 0x0580-0x0677] has been reserved +[ 0.622347] system 00:07: [io 0x0680-0x0777] has been reserved +[ 0.622352] system 00:07: [io 0x0780-0x07bb] has been reserved +[ 0.622356] system 00:07: [io 0x07c0-0x07ff] has been reserved +[ 0.622361] system 00:07: [io 0x08e0-0x08ff] has been reserved +[ 0.622365] system 00:07: [io 0x0900-0x09fe] has been reserved +[ 0.622370] system 00:07: [io 0x0a00-0x0afe] has been reserved +[ 0.622374] system 00:07: [io 0x0b00-0x0bfe] has been reserved +[ 0.622378] system 00:07: [io 0x0c80-0x0caf] has been reserved +[ 0.622382] system 00:07: [io 0x0cb0-0x0cbf] has been reserved +[ 0.622387] system 00:07: [io 0x0cc0-0x0cf7] has been reserved +[ 0.622391] system 00:07: [io 0x0d00-0x0dfe] has been reserved +[ 0.622396] system 00:07: [io 0x0e00-0x0efe] has been reserved +[ 0.622400] system 00:07: [io 0x0f00-0x0ffe] has been reserved +[ 0.622405] system 00:07: [io 0x2000-0x20fe] has been reserved +[ 0.622409] system 00:07: [io 0x2100-0x21fe] has been reserved +[ 0.622414] system 00:07: [io 0x2200-0x22fe] has been reserved +[ 0.622418] system 00:07: [io 0x2300-0x23fe] has been reserved +[ 0.622423] system 00:07: [io 0x2400-0x24fe] has been reserved +[ 0.622427] system 00:07: [io 0x2500-0x25fe] has been reserved +[ 0.622431] system 00:07: [io 0x2600-0x26fe] has been reserved +[ 0.622435] system 00:07: [io 0x2700-0x27fe] has been reserved +[ 0.622440] system 00:07: [io 0x2800-0x28fe] has been reserved +[ 0.622444] system 00:07: [io 0x2900-0x29fe] has been reserved +[ 0.622449] system 00:07: [io 0x2a00-0x2afe] has been reserved +[ 0.622453] system 00:07: [io 0x2b00-0x2bfe] has been reserved +[ 0.622458] system 00:07: [io 0x2c00-0x2cfe] has been reserved +[ 0.622462] system 00:07: [io 0x2d00-0x2dfe] has been reserved +[ 0.622467] system 00:07: [io 0x2e00-0x2efe] has been reserved +[ 0.622471] system 00:07: [io 0x2f00-0x2ffe] has been reserved +[ 0.622476] system 00:07: [io 0x5000-0x50fe] has been reserved +[ 0.622480] system 00:07: [io 0x5100-0x51fe] has been reserved +[ 0.622485] system 00:07: [io 0x5200-0x52fe] has been reserved +[ 0.622489] system 00:07: [io 0x5300-0x53fe] has been reserved +[ 0.622494] system 00:07: [io 0x5400-0x54fe] has been reserved +[ 0.622498] system 00:07: [io 0x5500-0x55fe] has been reserved +[ 0.622503] system 00:07: [io 0x5600-0x56fe] has been reserved +[ 0.622507] system 00:07: [io 0x5700-0x57fe] has been reserved +[ 0.622512] system 00:07: [io 0x5800-0x58fe] has been reserved +[ 0.622517] system 00:07: [io 0x5900-0x59fe] has been reserved +[ 0.622521] system 00:07: [io 0x5a00-0x5afe] has been reserved +[ 0.622526] system 00:07: [io 0x5b00-0x5bfe] has been reserved +[ 0.622531] system 00:07: [io 0x5c00-0x5cfe] has been reserved +[ 0.622535] system 00:07: [io 0x5d00-0x5dfe] has been reserved +[ 0.622540] system 00:07: [io 0x5e00-0x5efe] has been reserved +[ 0.622544] system 00:07: [io 0x5f00-0x5ffe] has been reserved +[ 0.622549] system 00:07: [io 0x6000-0x60fe] has been reserved +[ 0.622553] system 00:07: [io 0x6100-0x61fe] has been reserved +[ 0.622558] system 00:07: [io 0x6200-0x62fe] has been reserved +[ 0.622562] system 00:07: [io 0x6300-0x63fe] has been reserved +[ 0.622567] system 00:07: [io 0x6400-0x64fe] has been reserved +[ 0.622572] system 00:07: [io 0x6500-0x65fe] has been reserved +[ 0.622577] system 00:07: [io 0x6600-0x66fe] has been reserved +[ 0.622584] system 00:07: [io 0x6700-0x67fe] has been reserved +[ 0.622589] system 00:07: [io 0x6800-0x68fe] has been reserved +[ 0.622594] system 00:07: [io 0x6900-0x69fe] has been reserved +[ 0.622599] system 00:07: [io 0x6a00-0x6afe] has been reserved +[ 0.622604] system 00:07: [io 0x6b00-0x6bfe] has been reserved +[ 0.622609] system 00:07: [io 0x6c00-0x6cfe] has been reserved +[ 0.622613] system 00:07: [io 0x6d00-0x6dfe] has been reserved +[ 0.622619] system 00:07: [io 0x6e00-0x6efe] has been reserved +[ 0.622623] system 00:07: [io 0x6f00-0x6ffe] has been reserved +[ 0.622629] system 00:07: [io 0xa000-0xa0fe] has been reserved +[ 0.622633] system 00:07: [io 0xa100-0xa1fe] has been reserved +[ 0.622638] system 00:07: [io 0xa200-0xa2fe] has been reserved +[ 0.622643] system 00:07: [io 0xa300-0xa3fe] has been reserved +[ 0.622648] system 00:07: [io 0xa400-0xa4fe] has been reserved +[ 0.622653] system 00:07: [io 0xa500-0xa5fe] has been reserved +[ 0.622658] system 00:07: [io 0xa600-0xa6fe] has been reserved +[ 0.622663] system 00:07: [io 0xa700-0xa7fe] has been reserved +[ 0.622668] system 00:07: [io 0xa800-0xa8fe] has been reserved +[ 0.622673] system 00:07: [io 0xa900-0xa9fe] has been reserved +[ 0.622678] system 00:07: [io 0xaa00-0xaafe] has been reserved +[ 0.622683] system 00:07: [io 0xab00-0xabfe] has been reserved +[ 0.622688] system 00:07: [io 0xac00-0xacfe] has been reserved +[ 0.622693] system 00:07: [io 0xad00-0xadfe] has been reserved +[ 0.622698] system 00:07: [io 0xae00-0xaefe] has been reserved +[ 0.622703] system 00:07: [io 0xaf00-0xaffe] has been reserved +[ 0.622708] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.622712] system 00:07: [mem 0xfeda0000-0xfedacfff] has been reserved +[ 0.657511] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref] +[ 0.657518] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff] +[ 0.657523] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 0.657528] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff] +[ 0.657535] pci 0000:00:1c.0: bridge window [mem 0xdfe00000-0xdfefffff] +[ 0.657541] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff 64bit pref] +[ 0.657549] pci 0000:00:1c.1: PCI bridge to [bus 02-02] +[ 0.657552] pci 0000:00:1c.1: bridge window [io disabled] +[ 0.657559] pci 0000:00:1c.1: bridge window [mem 0xdfd00000-0xdfdfffff] +[ 0.657564] pci 0000:00:1c.1: bridge window [mem pref disabled] +[ 0.657572] pci 0000:00:1e.0: PCI bridge to [bus 03-03] +[ 0.657577] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff] +[ 0.657584] pci 0000:00:1e.0: bridge window [mem 0xdfc00000-0xdfcfffff] +[ 0.657590] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.657607] alloc irq_desc for 16 on node -1 +[ 0.657611] alloc kstat_irqs on node -1 +[ 0.657619] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.657625] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.657636] alloc irq_desc for 17 on node -1 +[ 0.657639] alloc kstat_irqs on node -1 +[ 0.657646] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.657652] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.657661] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.657667] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.657672] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff] +[ 0.657676] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff] +[ 0.657680] pci_bus 0000:01: resource 1 [mem 0xdfe00000-0xdfefffff] +[ 0.657684] pci_bus 0000:01: resource 2 [mem 0x40000000-0x401fffff 64bit pref] +[ 0.657688] pci_bus 0000:02: resource 1 [mem 0xdfd00000-0xdfdfffff] +[ 0.657692] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff] +[ 0.657696] pci_bus 0000:03: resource 1 [mem 0xdfc00000-0xdfcfffff] +[ 0.657700] pci_bus 0000:03: resource 4 [io 0x0000-0xffff] +[ 0.657705] pci_bus 0000:03: resource 5 [mem 0x00000000-0xffffffff] +[ 0.657748] NET: Registered protocol family 2 +[ 0.657842] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.658127] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.658647] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.658894] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.658898] TCP reno registered +[ 0.658903] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.658914] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.659043] NET: Registered protocol family 1 +[ 0.659063] pci 0000:00:02.0: Boot video device +[ 0.659189] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling +[ 0.659197] PCI: CLS 64 bytes, default 64 +[ 0.659277] Simple Boot Flag at 0x7a set to 0x1 +[ 0.659413] cpufreq-nforce2: No nForce2 chipset. +[ 0.659452] Scanning for low memory corruption every 60 seconds +[ 0.659611] audit: initializing netlink socket (disabled) +[ 0.659623] type=2000 audit(1280372477.652:1): initialized +[ 0.669690] Trying to unpack rootfs image as initramfs... +[ 0.680328] highmem bounce pool size: 64 pages +[ 0.680336] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.692144] VFS: Disk quotas dquot_6.5.2 +[ 0.692226] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.693001] fuse init (API version 7.14) +[ 0.693121] msgmni has been set to 1708 +[ 0.700293] alg: No test for stdrng (krng) +[ 0.700380] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.700384] io scheduler noop registered +[ 0.700387] io scheduler deadline registered +[ 0.700407] io scheduler cfq registered (default) +[ 0.700540] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.700579] alloc irq_desc for 40 on node -1 +[ 0.700582] alloc kstat_irqs on node -1 +[ 0.700596] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.700700] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.700735] alloc irq_desc for 41 on node -1 +[ 0.700738] alloc kstat_irqs on node -1 +[ 0.700748] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.700855] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.700929] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.701312] vesafb: framebuffer at 0xc012c000, mapped to 0xf8080000, using 1216k, total 1216k +[ 0.701316] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.701320] vesafb: scrolling: redraw +[ 0.701324] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.714049] Console: switching to colour frame buffer device 80x30 +[ 0.726647] fb0: VESA VGA frame buffer device +[ 0.748189] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.748196] ACPI: Power Button [VBTN] +[ 0.748264] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.748268] ACPI: Power Button [PWRF] +[ 0.748725] ACPI: acpi_idle registered with cpuidle +[ 0.821465] ERST: Table is not found! +[ 0.823497] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.825354] brd: module loaded +[ 0.826064] loop: module loaded +[ 0.826290] ata_piix 0000:00:1f.1: version 2.13 +[ 0.826306] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.826357] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.832282] isapnp: Scanning for PnP cards... +[ 0.837768] scsi0 : ata_piix +[ 0.837872] scsi1 : ata_piix +[ 0.837920] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 +[ 0.837924] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 +[ 0.837964] alloc irq_desc for 20 on node -1 +[ 0.837967] alloc kstat_irqs on node -1 +[ 0.837976] ata_piix 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20 +[ 0.837997] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] +[ 0.887636] ata2: port disabled. ignoring. +[ 0.992163] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 0.996083] scsi2 : ata_piix +[ 0.996172] scsi3 : ata_piix +[ 0.996219] ata3: SATA max UDMA/133 cmd 0xfe00 ctl 0xfe10 bmdma 0xfea0 irq 20 +[ 0.996223] ata4: SATA max UDMA/133 cmd 0xfe20 ctl 0xfe30 bmdma 0xfea8 irq 20 +[ 0.996685] Fixed MDIO Bus: probed +[ 0.996736] PPP generic driver version 2.4.2 +[ 0.996808] tun: Universal TUN/TAP device driver, 1.6 +[ 0.996812] tun: (C) 1999-2004 Max Krasnyansky +[ 0.996920] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.996944] alloc irq_desc for 21 on node -1 +[ 0.996947] alloc kstat_irqs on node -1 +[ 0.996957] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 0.996977] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.996982] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.997026] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 +[ 0.997059] ehci_hcd 0000:00:1d.7: debug port 1 +[ 1.000936] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 1.004133] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800 +[ 1.024022] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 1.024207] hub 1-0:1.0: USB hub found +[ 1.024214] hub 1-0:1.0: 8 ports detected +[ 1.024306] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.024326] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.024374] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 1.024387] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.024392] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 1.024443] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 1.024472] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80 +[ 1.024619] hub 2-0:1.0: USB hub found +[ 1.024626] hub 2-0:1.0: 2 ports detected +[ 1.024694] alloc irq_desc for 22 on node -1 +[ 1.024698] alloc kstat_irqs on node -1 +[ 1.024707] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 1.024715] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 1.024719] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 1.024768] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 +[ 1.024806] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60 +[ 1.024959] hub 3-0:1.0: USB hub found +[ 1.024965] hub 3-0:1.0: 2 ports detected +[ 1.025027] alloc irq_desc for 18 on node -1 +[ 1.025030] alloc kstat_irqs on node -1 +[ 1.025036] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.025044] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 1.025049] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 1.025094] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 +[ 1.025130] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40 +[ 1.025272] hub 4-0:1.0: USB hub found +[ 1.025278] hub 4-0:1.0: 2 ports detected +[ 1.025340] alloc irq_desc for 23 on node -1 +[ 1.025343] alloc kstat_irqs on node -1 +[ 1.025349] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23 +[ 1.025357] uhci_hcd 0000:00:1d.3: setting latency timer to 64 +[ 1.025362] uhci_hcd 0000:00:1d.3: UHCI Host Controller +[ 1.025404] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 +[ 1.025442] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20 +[ 1.025595] hub 5-0:1.0: USB hub found +[ 1.025601] hub 5-0:1.0: 2 ports detected +[ 1.025737] PNP: No PS/2 controller found. Probing ports directly. +[ 1.072009] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.072017] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.072158] mice: PS/2 mouse device common for all mice +[ 1.072301] rtc_cmos 00:05: RTC can wake from S4 +[ 1.072357] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0 +[ 1.072383] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs +[ 1.072518] device-mapper: uevent: version 1.0.3 +[ 1.076512] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.080026] device-mapper: multipath: version 1.1.1 loaded +[ 1.080030] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.083020] EISA: Probing bus 0 at eisa.0 +[ 1.083025] EISA: Cannot allocate resource for mainboard +[ 1.083029] Cannot allocate resource for EISA slot 1 +[ 1.083032] Cannot allocate resource for EISA slot 2 +[ 1.083043] Cannot allocate resource for EISA slot 5 +[ 1.083046] Cannot allocate resource for EISA slot 6 +[ 1.083057] EISA: Detected 0 cards. +[ 1.084829] ata1.00: ATA-6: ST380013A, 8.01, max UDMA/100 +[ 1.084833] ata1.00: 156301488 sectors, multi 8: LBA48 +[ 1.084879] ata1.01: ATAPI: TSSTcorpCD/DVDW SH-S182M, SB04, max UDMA/33 +[ 1.088024] cpuidle: using governor ladder +[ 1.088028] cpuidle: using governor menu +[ 1.088390] TCP cubic registered +[ 1.088571] NET: Registered protocol family 10 +[ 1.089044] lo: Disabled Privacy Extensions +[ 1.089301] NET: Registered protocol family 17 +[ 1.089362] Using IPI No-Shortcut mode +[ 1.089475] PM: Resume from disk failed. +[ 1.089495] registered taskstats version 1 +[ 1.089735] Magic number: 2:462:8 +[ 1.089810] rtc_cmos 00:05: setting system clock to 2010-07-29 03:01:18 UTC (1280372478) +[ 1.089814] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.089816] EDD information not available. +[ 1.101148] ata1.00: configured for UDMA/100 +[ 1.116274] ata1.01: configured for UDMA/33 +[ 1.179323] ata3.00: ATA-7: ST3160828AS, 8.04, max UDMA/133 +[ 1.179328] ata3.00: 312500000 sectors, multi 8: LBA48 NCQ (depth 0/32) +[ 1.192796] ata3.00: configured for UDMA/133 +[ 1.376390] Freeing initrd memory: 10508k freed +[ 1.425179] isapnp: No Plug & Play device found +[ 1.425384] scsi 0:0:0:0: Direct-Access ATA ST380013A 8.01 PQ: 0 ANSI: 5 +[ 1.425608] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.426520] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 1.426633] scsi 0:0:1:0: CD-ROM TSSTcorp CD/DVDW SH-S182M SB04 PQ: 0 ANSI: 5 +[ 1.426848] sd 0:0:0:0: [sda] Write Protect is off +[ 1.426852] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.427624] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.429425] sda: sda1 +[ 1.456765] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.456770] Uniform CD-ROM driver Revision: 3.20 +[ 1.456876] sr 0:0:1:0: Attached scsi CD-ROM sr0 +[ 1.456937] sr 0:0:1:0: Attached scsi generic sg1 type 5 +[ 1.457085] scsi 2:0:0:0: Direct-Access ATA ST3160828AS 8.04 PQ: 0 ANSI: 5 +[ 1.457223] sd 2:0:0:0: Attached scsi generic sg2 type 0 +[ 1.457311] sd 2:0:0:0: [sdb] 312500000 512-byte logical blocks: (160 GB/149 GiB) +[ 1.457394] sd 2:0:0:0: [sdb] Write Protect is off +[ 1.457398] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.457434] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.457617] sdb: +[ 1.457805] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.473216] sdb1 sdb2 < sdb5 > +[ 1.493854] sd 2:0:0:0: [sdb] Attached SCSI disk +[ 1.493871] Freeing unused kernel memory: 684k freed +[ 1.494308] Write protecting the kernel text: 4932k +[ 1.494340] Write protecting the kernel read-only data: 2012k +[ 1.516102] udev: starting version 151 +[ 1.737455] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI +[ 1.737460] e100: Copyright(c) 1999-2006 Intel Corporation +[ 1.737609] e100 0000:03:08.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.761325] e100 0000:03:08.0: PME# disabled +[ 1.763187] e100 0000:03:08.0: eth0: addr 0xdfcef000, irq 20, MAC addr 00:16:76:2d:ce:6f +[ 1.776021] usb 2-1: new low speed USB device using uhci_hcd and address 2 +[ 1.948209] EXT4-fs (sdb1): INFO: recovery required on readonly filesystem +[ 1.948216] EXT4-fs (sdb1): write access will be enabled during recovery +[ 1.976279] usbcore: registered new interface driver hiddev +[ 1.992160] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/input/input2 +[ 1.992296] generic-usb 0003:045E:0040.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:1d.0-1/input0 +[ 1.992322] usbcore: registered new interface driver usbhid +[ 1.992325] usbhid: USB HID core driver +[ 2.012490] EXT4-fs (sdb1): recovery complete +[ 2.012657] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) +[ 2.200020] usb 3-1: new low speed USB device using uhci_hcd and address 2 +[ 2.393424] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input3 +[ 2.393516] generic-usb 0003:413C:2003.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.1-1/input0 +[ 2.632038] usb 3-2: new full speed USB device using uhci_hcd and address 3 +[ 14.198743] Adding 2975740k swap on /dev/sdb5. Priority:-1 extents:1 across:2975740k +[ 14.253719] udev: starting version 151 +[ 14.496985] intel_rng: Firmware space is locked read-only. If you can't or +[ 14.496988] intel_rng: don't want to disable this in firmware setup, and if +[ 14.496990] intel_rng: you are certain that your system has a functional +[ 14.496991] intel_rng: RNG, try using the 'no_fwh_detect' option. +[ 14.573100] Linux agpgart interface v0.103 +[ 14.707459] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) +[ 14.748101] agpgart-intel 0000:00:00.0: Intel 915G Chipset +[ 14.748699] agpgart-intel 0000:00:00.0: detected 7932K stolen memory +[ 14.751719] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +[ 14.828366] Linux video capture interface: v2.00 +[ 14.833726] gspca: main v2.9.0 registered +[ 14.853290] lp: driver loaded but no devices found +[ 14.853587] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro +[ 14.854147] gspca: probing 045e:00f7 +[ 14.859018] sonixj: Sonix chip id: 11 +[ 14.861102] input: sonixj as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/input/input4 +[ 14.861218] gspca: video0 created +[ 14.861223] gspca: found int in endpoint: 0x83, buffer_len=1, interval=100 +[ 14.861265] gspca: probing 045e:00f7 +[ 14.861276] gspca: probing 045e:00f7 +[ 14.861301] usbcore: registered new interface driver sonixj +[ 14.861304] sonixj: registered +[ 15.047140] [drm] Initialized drm 1.1.0 20060810 +[ 15.125797] type=1400 audit(1280372492.533:2): operation="profile_load" pid=532 name="/sbin/dhclient3" pid=532 comm="apparmor_parser" +[ 15.126496] type=1400 audit(1280372492.533:3): operation="profile_load" pid=532 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=532 comm="apparmor_parser" +[ 15.126870] type=1400 audit(1280372492.533:4): operation="profile_load" pid=532 name="/usr/lib/connman/scripts/dhclient-script" pid=532 comm="apparmor_parser" +[ 15.216824] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 15.216832] i915 0000:00:02.0: setting latency timer to 64 +[ 15.249754] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 15.250217] IP: [] __mutex_lock_slowpath+0x9a/0x140 +[ 15.250588] *pde = 3df7b067 +[ 15.250779] Oops: 0002 [#1] SMP +[ 15.251002] last sysfs file: /sys/module/snd_rawmidi/initstate +[ 15.251360] Modules linked in: i915(+) drm_kms_helper snd_seq_midi_event snd_seq snd_rawmidi snd_timer drm snd_seq_device gspca_sonixj gspca_main snd videodev v4l1_compat dcdbas intel_agp lp soundcore snd_page_alloc i2c_algo_bit video output psmouse serio_raw parport agpgart usbhid hid e100 mii +[ 15.252001] +[ 15.252001] Pid: 219, comm: plymouthd Not tainted 2.6.35-11-generic #16-Ubuntu 0JC474/Dell DV051 +[ 15.252001] EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +[ 15.252001] EIP is at __mutex_lock_slowpath+0x9a/0x140 +[ 15.252001] EAX: 00000000 EBX: f5288e90 ECX: f5288e98 EDX: f5b13ec0 +[ 15.252001] ESI: f5288e94 EDI: f5288e90 EBP: f5b13ed8 ESP: f5b13eb4 +[ 15.252001] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 15.252001] Process plymouthd (pid: 219, ti=f5b12000 task=f69bcc20 task.ti=f5b12000) +[ 15.252001] Stack: +[ 15.252001] f849c400 f69bcc20 f5288e98 f5288e98 00000000 f5b13ed8 f5288e90 f5381f80 +[ 15.252001] <0> f5288e90 f5b13ee8 c05c8295 f5381f80 f5381f80 f5b13efc f848fd53 f5381f80 +[ 15.252001] <0> f5381fe0 f5288c00 f5b13f44 f8487327 00000001 f8497d85 f8497180 f84994f0 +[ 15.252001] Call Trace: +[ 15.252001] [] ? mutex_lock+0x25/0x40 +[ 15.252001] [] ? drm_fb_release+0x23/0x70 [drm] +[ 15.252001] [] ? drm_release+0x3e7/0x4c0 [drm] +[ 15.252001] [] ? __fput+0xe4/0x1e0 +[ 15.252001] [] ? fput+0x1d/0x30 +[ 15.252001] [] ? filp_close+0x4c/0x80 +[ 15.252001] [] ? sys_close+0x75/0xc0 +[ 15.252001] [] ? syscall_call+0x7/0xb +[ 15.252001] Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 3e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +[ 15.252001] EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f5b13eb4 +[ 15.252001] CR2: 0000000000000000 +[ 15.360760] ---[ end trace 42c28ebb0ba13839 ]--- +[ 15.388553] [drm] set up 7M of stolen space +[ 15.390350] [drm] initialized overlay support +[ 15.685421] checking generic (c012c000 130000) vs hw (c0000000 10000000) +[ 15.686223] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver +[ 15.687845] Console: switching to colour dummy device 80x25 +[ 15.693144] usbcore: registered new interface driver snd-usb-audio +[ 15.808232] Console: switching to colour frame buffer device 160x64 +[ 15.813372] fb0: inteldrmfb frame buffer device +[ 15.813402] drm: registered panic notifier +[ 15.813600] Slow work thread pool: Starting up +[ 15.813688] Slow work thread pool: Ready +[ 15.813724] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 15.865210] type=1400 audit(1280372493.273:5): operation="profile_load" pid=659 name="/usr/share/gdm/guest-session/Xsession" pid=659 comm="apparmor_parser" +[ 15.867326] type=1400 audit(1280372493.273:6): operation="profile_replace" pid=660 name="/sbin/dhclient3" pid=660 comm="apparmor_parser" +[ 15.878649] type=1400 audit(1280372493.285:7): operation="profile_replace" pid=660 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=660 comm="apparmor_parser" +[ 15.879134] type=1400 audit(1280372493.285:8): operation="profile_replace" pid=660 name="/usr/lib/connman/scripts/dhclient-script" pid=660 comm="apparmor_parser" +[ 15.880637] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 15.880738] alloc irq_desc for 42 on node -1 +[ 15.880769] alloc kstat_irqs on node -1 +[ 15.880809] HDA Intel 0000:00:1b.0: irq 42 for MSI/MSI-X +[ 15.880876] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 15.888185] type=1400 audit(1280372493.297:9): operation="profile_load" pid=664 name="/usr/bin/evince" pid=664 comm="apparmor_parser" +[ 15.931244] type=1400 audit(1280372493.337:10): operation="profile_load" pid=664 name="/usr/bin/evince-previewer" pid=664 comm="apparmor_parser" +[ 15.943463] type=1400 audit(1280372493.349:11): operation="profile_load" pid=664 name="/usr/bin/evince-thumbnailer" pid=664 comm="apparmor_parser" +[ 16.016539] input: HDA Intel Line In at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5 +[ 16.016723] input: HDA Intel Mic at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6 +[ 16.016862] input: HDA Intel Line Out at Ext Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7 +[ 16.017004] input: HDA Intel HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8 +[ 16.177781] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 16.180148] e100 0000:03:08.0: eth0: NIC Link is Up 100 Mbps Full Duplex +[ 16.180449] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready + +Bug: 611167 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-12-generic (buildd@yellow) (gcc version 4.4.5 20100723 (prerelease) (Ubuntu/Linaro 4.4.4-7ubuntu3) ) #17-Ubuntu SMP Mon Jul 26 18:48:06 UTC 2010 (Ubuntu 2.6.35-12.17-generic 2.6.35-rc6) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-12-generic root=UUID=4d067662-922d-426f-8fe7-1ea24d7fc5f9 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e000 (usable) +[ 0.000000] BIOS-e820: 000000000009e000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000b8a99000 (usable) +[ 0.000000] BIOS-e820: 00000000b8a99000 - 00000000b8a9c000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000b8a9c000 - 00000000b9ea8000 (usable) +[ 0.000000] BIOS-e820: 00000000b9ea8000 - 00000000b9ebf000 (reserved) +[ 0.000000] BIOS-e820: 00000000b9ebf000 - 00000000b9f86000 (usable) +[ 0.000000] BIOS-e820: 00000000b9f86000 - 00000000b9fbf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000b9fbf000 - 00000000b9fe1000 (usable) +[ 0.000000] BIOS-e820: 00000000b9fe1000 - 00000000b9ff6000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000b9ff6000 - 00000000ba000000 (usable) +[ 0.000000] BIOS-e820: 00000000ba000000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 0FFFE0000 mask FFFFE0000 write-protect +[ 0.000000] 2 base 0FFFD8000 mask FFFFF8000 write-protect +[ 0.000000] 3 base 080000000 mask FC0000000 write-back +[ 0.000000] 4 base 0BC000000 mask FFC000000 uncachable +[ 0.000000] 5 base 0BA000000 mask FFE000000 uncachable +[ 0.000000] 6 base 100000000 mask FC0000000 write-back +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xba000 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009e000 (usable) +[ 0.000000] modified: 000000000009e000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000b8a99000 (usable) +[ 0.000000] modified: 00000000b8a99000 - 00000000b8a9c000 (ACPI NVS) +[ 0.000000] modified: 00000000b8a9c000 - 00000000b9ea8000 (usable) +[ 0.000000] modified: 00000000b9ea8000 - 00000000b9ebf000 (reserved) +[ 0.000000] modified: 00000000b9ebf000 - 00000000b9f86000 (usable) +[ 0.000000] modified: 00000000b9f86000 - 00000000b9fbf000 (ACPI NVS) +[ 0.000000] modified: 00000000b9fbf000 - 00000000b9fe1000 (usable) +[ 0.000000] modified: 00000000b9fe1000 - 00000000b9ff6000 (ACPI data) +[ 0.000000] modified: 00000000b9ff6000 - 00000000ba000000 (usable) +[ 0.000000] modified: 00000000ba000000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000f8000000 - 00000000fc000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000ba000000 +[ 0.000000] 0000000000 - 00ba000000 page 2M +[ 0.000000] kernel direct mapping tables up to ba000000 @ 16000-1a000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000 +[ 0.000000] 0100000000 - 0140000000 page 2M +[ 0.000000] kernel direct mapping tables up to 140000000 @ 18000-1e000 +[ 0.000000] RAMDISK: 37576000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM) +[ 0.000000] ACPI: XSDT 00000000b9ff5120 00064 (v01 HPQOEM SLIC-MPC 00000001 01000013) +[ 0.000000] ACPI: FACP 00000000b9ff4000 000F4 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT 00000000b9fe4000 0BBE9 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS 00000000b9f92000 00040 +[ 0.000000] ACPI: HPET 00000000b9ff3000 00038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: APIC 00000000b9ff2000 0006C (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG 00000000b9ff1000 0003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: ASF! 00000000b9ff0000 000A5 (v32 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC 00000000b9fe3000 00176 (v01 HPQOEM SLIC-MPC 06040000 LTP 00000001) +[ 0.000000] ACPI: BOOT 00000000b9fe2000 00028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 00000000b9fe1000 00655 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000140000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801039fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00140000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[7] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009e +[ 0.000000] 0: 0x00000100 -> 0x000b8a99 +[ 0.000000] 0: 0x000b8a9c -> 0x000b9ea8 +[ 0.000000] 0: 0x000b9ebf -> 0x000b9f86 +[ 0.000000] 0: 0x000b9fbf -> 0x000b9fe1 +[ 0.000000] 0: 0x000b9ff6 -> 0x000ba000 +[ 0.000000] 0: 0x00100000 -> 0x00140000 +[ 0.000000] On node 0 totalpages: 1023782 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3926 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 743376 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3584 pages used for memmap +[ 0.000000] Normal zone: 258560 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [19000 - 197ff] +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000b8a99000 - 00000000b8a9c000 +[ 0.000000] PM: Registered nosave memory: 00000000b9ea8000 - 00000000b9ebf000 +[ 0.000000] PM: Registered nosave memory: 00000000b9f86000 - 00000000b9fbf000 +[ 0.000000] PM: Registered nosave memory: 00000000b9fe1000 - 00000000b9ff6000 +[ 0.000000] PM: Registered nosave memory: 00000000ba000000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000f8000000 +[ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000 +[ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000 +[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000 +[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000 +[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000 +[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000fff00000 +[ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:38000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] early_res array is doubled to 128 at [19800 - 1a7ff] +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91392 r8192 d23296 u524288 +[ 0.000000] pcpu-alloc: s91392 r8192 d23296 u524288 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1005862 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-12-generic root=UUID=4d067662-922d-426f-8fe7-1ea24d7fc5f9 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240 +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (68 early reservations) +[ 0.000000] #1 [0001000000 - 0001d20114] TEXT DATA BSS +[ 0.000000] #2 [0037576000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [000009e000 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d21000 - 0001d211f0] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000018000] PGTABLE +[ 0.000000] #8 [0000018000 - 0000019000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d21200 - 0001d22200] BOOTMEM +[ 0.000000] #11 [0001d20140 - 0001d20440] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103a00000] MEMMAP 0 +[ 0.000000] #15 [0001d20440 - 0001d205c0] BOOTMEM +[ 0.000000] #16 [0001d22200 - 0001d3a200] BOOTMEM +[ 0.000000] #17 [0001d3a200 - 0001d40200] BOOTMEM +[ 0.000000] #18 [0001d41000 - 0001d42000] BOOTMEM +[ 0.000000] #19 [0001d205c0 - 0001d20601] BOOTMEM +[ 0.000000] #20 [0001d20640 - 0001d20683] BOOTMEM +[ 0.000000] #21 [0001d206c0 - 0001d20b90] BOOTMEM +[ 0.000000] #22 [0001d20bc0 - 0001d20c28] BOOTMEM +[ 0.000000] #23 [0001d20c40 - 0001d20ca8] BOOTMEM +[ 0.000000] #24 [0001d20cc0 - 0001d20d28] BOOTMEM +[ 0.000000] #25 [0001d20d40 - 0001d20da8] BOOTMEM +[ 0.000000] #26 [0001d20dc0 - 0001d20e28] BOOTMEM +[ 0.000000] #27 [0001d20e40 - 0001d20ea8] BOOTMEM +[ 0.000000] #28 [0001d20ec0 - 0001d20f28] BOOTMEM +[ 0.000000] #29 [0001d20f40 - 0001d20fa8] BOOTMEM +[ 0.000000] #30 [0001d40200 - 0001d40268] BOOTMEM +[ 0.000000] #31 [0001d40280 - 0001d402e8] BOOTMEM +[ 0.000000] #32 [0001d40300 - 0001d40368] BOOTMEM +[ 0.000000] #33 [0001d40380 - 0001d403e8] BOOTMEM +[ 0.000000] #34 [0001d40400 - 0001d40468] BOOTMEM +[ 0.000000] #35 [0001d40480 - 0001d404e8] BOOTMEM +[ 0.000000] #36 [0001d40500 - 0001d40568] BOOTMEM +[ 0.000000] #37 [0001d40580 - 0001d405e8] BOOTMEM +[ 0.000000] #38 [0001d40600 - 0001d40668] BOOTMEM +[ 0.000000] #39 [0001d40680 - 0001d406e8] BOOTMEM +[ 0.000000] #40 [0001d40700 - 0001d40768] BOOTMEM +[ 0.000000] #41 [0001d40780 - 0001d407e8] BOOTMEM +[ 0.000000] #42 [0001d40800 - 0001d40868] BOOTMEM +[ 0.000000] #43 [0001d20fc0 - 0001d20fe0] BOOTMEM +[ 0.000000] #44 [0001d40880 - 0001d408a0] BOOTMEM +[ 0.000000] #45 [0001d408c0 - 0001d408e0] BOOTMEM +[ 0.000000] #46 [0001d40900 - 0001d40920] BOOTMEM +[ 0.000000] #47 [0001d40940 - 0001d40960] BOOTMEM +[ 0.000000] #48 [0001d40980 - 0001d409a0] BOOTMEM +[ 0.000000] #49 [0001d409c0 - 0001d40a2a] BOOTMEM +[ 0.000000] #50 [0001d40a40 - 0001d40aaa] BOOTMEM +[ 0.000000] #51 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #52 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #53 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #54 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #55 [0001d40ac0 - 0001d40ac8] BOOTMEM +[ 0.000000] #56 [0001d40b00 - 0001d40b08] BOOTMEM +[ 0.000000] #57 [0001d40b40 - 0001d40b50] BOOTMEM +[ 0.000000] #58 [0001d40b80 - 0001d40ba0] BOOTMEM +[ 0.000000] #59 [0001d40bc0 - 0001d40cf0] BOOTMEM +[ 0.000000] #60 [0001d40d00 - 0001d40d50] BOOTMEM +[ 0.000000] #61 [0001d40d80 - 0001d40dd0] BOOTMEM +[ 0.000000] #62 [0001d42000 - 0001d4a000] BOOTMEM +[ 0.000000] #63 [0001d4a000 - 0001d4a240] BOOTMEM +[ 0.000000] #64 [0001f9e000 - 0005f9e000] BOOTMEM +[ 0.000000] #65 [0001d4a240 - 0001d6a240] BOOTMEM +[ 0.000000] #66 [0001d6a240 - 0001daa240] BOOTMEM +[ 0.000000] #67 [000001a800 - 0000022800] BOOTMEM +[ 0.000000] Memory: 3946944k/5242880k available (5707k kernel code, 1147752k absent, 148184k reserved, 5420k data, 904k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:712 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 41943040 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1995.125 MHz processor. +[ 0.010010] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.25 BogoMIPS (lpj=19951250) +[ 0.010014] pid_max: default: 32768 minimum: 301 +[ 0.010041] Security Framework initialized +[ 0.010061] AppArmor: AppArmor initialized +[ 0.010063] Yama: becoming mindful. +[ 0.010525] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.012705] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.013712] Mount-cache hash table entries: 256 +[ 0.013876] Initializing cgroup subsys ns +[ 0.013882] Initializing cgroup subsys cpuacct +[ 0.013886] Initializing cgroup subsys memory +[ 0.013895] Initializing cgroup subsys devices +[ 0.013898] Initializing cgroup subsys freezer +[ 0.013900] Initializing cgroup subsys net_cls +[ 0.013932] CPU: Physical Processor ID: 0 +[ 0.013933] CPU: Processor Core ID: 0 +[ 0.013936] mce: CPU supports 6 MCE banks +[ 0.013945] CPU0: Thermal monitoring enabled (TM1) +[ 0.013949] using mwait in idle threads. +[ 0.013951] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.013960] ... version: 2 +[ 0.013962] ... bit width: 40 +[ 0.013963] ... generic registers: 2 +[ 0.013965] ... value mask: 000000ffffffffff +[ 0.013967] ... max period: 000000007fffffff +[ 0.013969] ... fixed-purpose events: 3 +[ 0.013970] ... event mask: 0000000700000003 +[ 0.016822] ACPI: Core revision 20100428 +[ 0.040011] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.040017] ftrace: allocating 22648 entries in 89 pages +[ 0.050059] Setting APIC routing to flat +[ 0.050382] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.152601] CPU0: Intel(R) Core(TM)2 Duo CPU T6400 @ 2.00GHz stepping 0a +[ 0.160000] Booting Node 0, Processors #1 +[ 0.320017] Brought up 2 CPUs +[ 0.320021] Total of 2 processors activated (7980.24 BogoMIPS). +[ 0.320581] devtmpfs: initialized +[ 0.320732] regulator: core version 0.5 +[ 0.320763] Time: 11:47:46 Date: 07/29/10 +[ 0.320803] NET: Registered protocol family 16 +[ 0.320827] Trying to unpack rootfs image as initramfs... +[ 0.320940] ACPI: bus type pci registered +[ 0.321017] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) +[ 0.321021] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 +[ 0.338593] PCI: Using configuration type 1 for base access +[ 0.350352] bio: create slab at 0 +[ 0.352586] ACPI: EC: Look up EC in DSDT +[ 0.355032] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.357487] ACPI: BIOS _OSI(Linux) query ignored +[ 0.461432] ACPI: SSDT 00000000b9eb4c98 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.462057] ACPI: Dynamic OEM Table Load: +[ 0.462060] ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.462374] ACPI: SSDT 00000000b9eb2598 00537 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.462978] ACPI: Dynamic OEM Table Load: +[ 0.462981] ACPI: SSDT (null) 00537 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.463587] ACPI: SSDT 00000000b9eb3e18 001CF (v01 PmRef ApIst 00003000 INTL 20051117) +[ 0.464225] ACPI: Dynamic OEM Table Load: +[ 0.464229] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20051117) +[ 0.464438] ACPI: SSDT 00000000b9eb4f18 0008D (v01 PmRef ApCst 00003000 INTL 20051117) +[ 0.465054] ACPI: Dynamic OEM Table Load: +[ 0.465057] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20051117) +[ 0.466147] ACPI: Interpreter enabled +[ 0.466147] ACPI: (supports S0 S3 S4 S5) +[ 0.466147] ACPI: Using IOAPIC for interrupt routing +[ 0.478035] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62 +[ 0.478328] ACPI: No dock devices found. +[ 0.478332] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.479024] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.480643] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.480646] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.480650] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.480654] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff] +[ 0.480724] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit] +[ 0.480731] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.480736] pci 0000:00:02.0: reg 20: [io 0x9110-0x9117] +[ 0.480778] pci 0000:00:02.1: reg 10: [mem 0xd6500000-0xd65fffff 64bit] +[ 0.480890] pci 0000:00:1a.0: reg 20: [io 0x90e0-0x90ff] +[ 0.480977] pci 0000:00:1a.1: reg 20: [io 0x90c0-0x90df] +[ 0.481062] pci 0000:00:1a.7: reg 10: [mem 0xdc705c00-0xdc705fff] +[ 0.481132] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.481137] pci 0000:00:1a.7: PME# disabled +[ 0.481182] pci 0000:00:1b.0: reg 10: [mem 0xdc700000-0xdc703fff 64bit] +[ 0.481237] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.481242] pci 0000:00:1b.0: PME# disabled +[ 0.481332] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.481336] pci 0000:00:1c.0: PME# disabled +[ 0.481426] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.481431] pci 0000:00:1c.1: PME# disabled +[ 0.481520] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.481525] pci 0000:00:1c.2: PME# disabled +[ 0.481618] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.481623] pci 0000:00:1c.3: PME# disabled +[ 0.481711] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 0.481716] pci 0000:00:1c.4: PME# disabled +[ 0.481807] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 0.481811] pci 0000:00:1c.5: PME# disabled +[ 0.481878] pci 0000:00:1d.0: reg 20: [io 0x90a0-0x90bf] +[ 0.481963] pci 0000:00:1d.1: reg 20: [io 0x9080-0x909f] +[ 0.482048] pci 0000:00:1d.2: reg 20: [io 0x9060-0x907f] +[ 0.482135] pci 0000:00:1d.3: reg 20: [io 0x9040-0x905f] +[ 0.482217] pci 0000:00:1d.7: reg 10: [mem 0xdc705800-0xdc705bff] +[ 0.482286] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.482291] pci 0000:00:1d.7: PME# disabled +[ 0.482505] pci 0000:00:1f.2: reg 10: [io 0x9108-0x910f] +[ 0.482512] pci 0000:00:1f.2: reg 14: [io 0x911c-0x911f] +[ 0.482519] pci 0000:00:1f.2: reg 18: [io 0x9100-0x9107] +[ 0.482526] pci 0000:00:1f.2: reg 1c: [io 0x9118-0x911b] +[ 0.482534] pci 0000:00:1f.2: reg 20: [io 0x9020-0x903f] +[ 0.482541] pci 0000:00:1f.2: reg 24: [mem 0xdc705000-0xdc7057ff] +[ 0.482583] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.482588] pci 0000:00:1f.2: PME# disabled +[ 0.482626] pci 0000:00:1f.3: reg 10: [mem 0xdc706000-0xdc7060ff 64bit] +[ 0.482643] pci 0000:00:1f.3: reg 20: [io 0x9000-0x901f] +[ 0.482703] pci 0000:00:1f.6: reg 10: [mem 0xdc704000-0xdc704fff 64bit] +[ 0.482967] pci 0000:02:00.0: reg 10: [mem 0xdb600000-0xdb603fff 64bit] +[ 0.483175] pci 0000:02:00.0: supports D1 D2 +[ 0.483337] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.483342] pci 0000:00:1c.0: bridge window [io 0x8000-0x8fff] +[ 0.483346] pci 0000:00:1c.0: bridge window [mem 0xdb600000-0xdc6fffff] +[ 0.483354] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.483442] pci 0000:03:00.0: reg 10: [io 0x6000-0x60ff] +[ 0.483466] pci 0000:03:00.0: reg 18: [mem 0xd1410000-0xd1410fff 64bit pref] +[ 0.483483] pci 0000:03:00.0: reg 20: [mem 0xd1400000-0xd140ffff 64bit pref] +[ 0.483493] pci 0000:03:00.0: reg 30: [mem 0xffff0000-0xffffffff pref] +[ 0.483541] pci 0000:03:00.0: supports D1 D2 +[ 0.483543] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.483549] pci 0000:03:00.0: PME# disabled +[ 0.500026] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.500032] pci 0000:00:1c.1: bridge window [io 0x6000-0x7fff] +[ 0.500038] pci 0000:00:1c.1: bridge window [mem 0xda600000-0xdb5fffff] +[ 0.500045] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd24fffff 64bit pref] +[ 0.500104] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.500109] pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff] +[ 0.500114] pci 0000:00:1c.2: bridge window [mem 0xd9600000-0xda5fffff] +[ 0.500121] pci 0000:00:1c.2: bridge window [mem 0xd2500000-0xd34fffff 64bit pref] +[ 0.500177] pci 0000:00:1c.3: PCI bridge to [bus 05-05] +[ 0.500182] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff] +[ 0.500187] pci 0000:00:1c.3: bridge window [mem 0xd8600000-0xd95fffff] +[ 0.500195] pci 0000:00:1c.3: bridge window [mem 0xd3500000-0xd44fffff 64bit pref] +[ 0.500249] pci 0000:00:1c.4: PCI bridge to [bus 06-06] +[ 0.500254] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 0.500259] pci 0000:00:1c.4: bridge window [mem 0xd7600000-0xd85fffff] +[ 0.500266] pci 0000:00:1c.4: bridge window [mem 0xd4500000-0xd54fffff 64bit pref] +[ 0.500321] pci 0000:00:1c.5: PCI bridge to [bus 07-09] +[ 0.500325] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff] +[ 0.500330] pci 0000:00:1c.5: bridge window [mem 0xd6600000-0xd75fffff] +[ 0.500338] pci 0000:00:1c.5: bridge window [mem 0xd5500000-0xd64fffff 64bit pref] +[ 0.500419] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a] (subtractive decode) +[ 0.500424] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.500429] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.500437] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.500440] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.500443] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.500446] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.500449] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode) +[ 0.500511] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.500847] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT] +[ 0.501034] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT] +[ 0.501140] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT] +[ 0.501257] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT] +[ 0.501358] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT] +[ 0.501461] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT] +[ 0.501610] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP6._PRT] +[ 0.508939] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.509094] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.509249] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.509407] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.509558] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.509709] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12) +[ 0.509861] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.510024] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled. +[ 0.510100] HEST: Table is not found! +[ 0.510182] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.510201] vgaarb: loaded +[ 0.510354] SCSI subsystem initialized +[ 0.510451] libata version 3.00 loaded. +[ 0.510511] usbcore: registered new interface driver usbfs +[ 0.510522] usbcore: registered new interface driver hub +[ 0.510546] usbcore: registered new device driver usb +[ 0.510779] ACPI: WMI: Mapper loaded +[ 0.510781] PCI: Using ACPI for IRQ routing +[ 0.510785] PCI: pci_cache_line_size set to 64 bytes +[ 0.510982] reserve RAM buffer: 000000000009e000 - 000000000009ffff +[ 0.510985] reserve RAM buffer: 00000000b8a99000 - 00000000bbffffff +[ 0.510988] reserve RAM buffer: 00000000b9ea8000 - 00000000bbffffff +[ 0.510991] reserve RAM buffer: 00000000b9f86000 - 00000000bbffffff +[ 0.510994] reserve RAM buffer: 00000000b9fe1000 - 00000000bbffffff +[ 0.510997] reserve RAM buffer: 00000000ba000000 - 00000000bbffffff +[ 0.511088] NetLabel: Initializing +[ 0.511090] NetLabel: domain hash size = 128 +[ 0.511092] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.511106] NetLabel: unlabeled traffic allowed by default +[ 0.511136] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.511143] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.511148] hpet0: 4 comparators, 64-bit 14.318180 MHz counter +[ 0.530042] Switching to clocksource tsc +[ 0.540302] AppArmor: AppArmor Filesystem Enabled +[ 0.540322] pnp: PnP ACPI init +[ 0.540341] ACPI: bus type pnp registered +[ 0.543272] alloc irq_desc for 23 on node 0 +[ 0.543275] alloc kstat_irqs on node 0 +[ 0.543684] pnp: PnP ACPI: found 12 devices +[ 0.543686] ACPI: ACPI bus type pnp unregistered +[ 0.543699] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved +[ 0.543705] system 00:02: [io 0x164e-0x164f] has been reserved +[ 0.543709] system 00:02: [io 0x0600-0x060f] has been reserved +[ 0.543712] system 00:02: [io 0x0610] has been reserved +[ 0.543714] system 00:02: [io 0x0800-0x080f] has been reserved +[ 0.543717] system 00:02: [io 0x0810-0x0817] has been reserved +[ 0.543720] system 00:02: [io 0x0820-0x0823] has been reserved +[ 0.543723] system 00:02: [io 0x0400-0x047f] has been reserved +[ 0.543726] system 00:02: [io 0x0500-0x053f] has been reserved +[ 0.543728] system 00:02: [io 0x0380-0x0387] has been reserved +[ 0.543732] system 00:02: [mem 0xf8000000-0xfbffffff] has been reserved +[ 0.543735] system 00:02: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.543738] system 00:02: [mem 0xfed10000-0xfed13fff] has been reserved +[ 0.543741] system 00:02: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.543744] system 00:02: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.543747] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.543750] system 00:02: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.543753] system 00:02: [mem 0xfed40000-0xfed44fff] has been reserved +[ 0.543756] system 00:02: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.543763] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.548495] pci 0000:03:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref] +[ 0.548567] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.548571] pci 0000:00:1c.0: bridge window [io 0x8000-0x8fff] +[ 0.548577] pci 0000:00:1c.0: bridge window [mem 0xdb600000-0xdc6fffff] +[ 0.548582] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.548592] pci 0000:03:00.0: BAR 6: assigned [mem 0xd1420000-0xd142ffff pref] +[ 0.548594] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.548598] pci 0000:00:1c.1: bridge window [io 0x6000-0x7fff] +[ 0.548604] pci 0000:00:1c.1: bridge window [mem 0xda600000-0xdb5fffff] +[ 0.548608] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd24fffff 64bit pref] +[ 0.548615] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.548619] pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff] +[ 0.548625] pci 0000:00:1c.2: bridge window [mem 0xd9600000-0xda5fffff] +[ 0.548629] pci 0000:00:1c.2: bridge window [mem 0xd2500000-0xd34fffff 64bit pref] +[ 0.548636] pci 0000:00:1c.3: PCI bridge to [bus 05-05] +[ 0.548640] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff] +[ 0.548646] pci 0000:00:1c.3: bridge window [mem 0xd8600000-0xd95fffff] +[ 0.548651] pci 0000:00:1c.3: bridge window [mem 0xd3500000-0xd44fffff 64bit pref] +[ 0.548658] pci 0000:00:1c.4: PCI bridge to [bus 06-06] +[ 0.548661] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 0.548667] pci 0000:00:1c.4: bridge window [mem 0xd7600000-0xd85fffff] +[ 0.548672] pci 0000:00:1c.4: bridge window [mem 0xd4500000-0xd54fffff 64bit pref] +[ 0.548679] pci 0000:00:1c.5: PCI bridge to [bus 07-09] +[ 0.548683] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff] +[ 0.548689] pci 0000:00:1c.5: bridge window [mem 0xd6600000-0xd75fffff] +[ 0.548694] pci 0000:00:1c.5: bridge window [mem 0xd5500000-0xd64fffff 64bit pref] +[ 0.548702] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a] +[ 0.548704] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.548709] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.548714] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.548732] alloc irq_desc for 17 on node -1 +[ 0.548735] alloc kstat_irqs on node -1 +[ 0.548741] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.548747] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.548757] alloc irq_desc for 16 on node -1 +[ 0.548758] alloc kstat_irqs on node -1 +[ 0.548762] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.548767] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.548776] pci 0000:00:1c.2: enabling device (0000 -> 0003) +[ 0.548779] alloc irq_desc for 18 on node -1 +[ 0.548781] alloc kstat_irqs on node -1 +[ 0.548785] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.548791] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.548800] pci 0000:00:1c.3: enabling device (0000 -> 0003) +[ 0.548803] alloc irq_desc for 19 on node -1 +[ 0.548805] alloc kstat_irqs on node -1 +[ 0.548808] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.548814] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.548824] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.548828] pci 0000:00:1c.4: setting latency timer to 64 +[ 0.548838] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.548843] pci 0000:00:1c.5: setting latency timer to 64 +[ 0.548851] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.548856] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.548858] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.548861] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.548864] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff] +[ 0.548866] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] +[ 0.548869] pci_bus 0000:02: resource 1 [mem 0xdb600000-0xdc6fffff] +[ 0.548871] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.548874] pci_bus 0000:03: resource 0 [io 0x6000-0x7fff] +[ 0.548876] pci_bus 0000:03: resource 1 [mem 0xda600000-0xdb5fffff] +[ 0.548879] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd24fffff 64bit pref] +[ 0.548882] pci_bus 0000:04: resource 0 [io 0x5000-0x5fff] +[ 0.548884] pci_bus 0000:04: resource 1 [mem 0xd9600000-0xda5fffff] +[ 0.548887] pci_bus 0000:04: resource 2 [mem 0xd2500000-0xd34fffff 64bit pref] +[ 0.548889] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] +[ 0.548892] pci_bus 0000:05: resource 1 [mem 0xd8600000-0xd95fffff] +[ 0.548894] pci_bus 0000:05: resource 2 [mem 0xd3500000-0xd44fffff 64bit pref] +[ 0.548897] pci_bus 0000:06: resource 0 [io 0x3000-0x3fff] +[ 0.548899] pci_bus 0000:06: resource 1 [mem 0xd7600000-0xd85fffff] +[ 0.548902] pci_bus 0000:06: resource 2 [mem 0xd4500000-0xd54fffff 64bit pref] +[ 0.548904] pci_bus 0000:07: resource 0 [io 0x2000-0x2fff] +[ 0.548906] pci_bus 0000:07: resource 1 [mem 0xd6600000-0xd75fffff] +[ 0.548909] pci_bus 0000:07: resource 2 [mem 0xd5500000-0xd64fffff 64bit pref] +[ 0.548912] pci_bus 0000:0a: resource 4 [io 0x0000-0x0cf7] +[ 0.548914] pci_bus 0000:0a: resource 5 [io 0x0d00-0xffff] +[ 0.548916] pci_bus 0000:0a: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.548918] pci_bus 0000:0a: resource 7 [mem 0xc0000000-0xfebfffff] +[ 0.548960] NET: Registered protocol family 2 +[ 0.549122] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.550480] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.554938] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.555474] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.555477] TCP reno registered +[ 0.555487] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.555531] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.555698] NET: Registered protocol family 1 +[ 0.555719] pci 0000:00:02.0: Boot video device +[ 0.556164] PCI: CLS 64 bytes, default 64 +[ 0.556166] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.556169] Placing 64MB software IO TLB between ffff880001f9e000 - ffff880005f9e000 +[ 0.556172] software IO TLB at phys 0x1f9e000 - 0x5f9e000 +[ 0.556209] Simple Boot Flag value 0x5 read from CMOS RAM was invalid +[ 0.556211] Simple Boot Flag at 0x44 set to 0x1 +[ 0.556393] Scanning for low memory corruption every 60 seconds +[ 0.556571] audit: initializing netlink socket (disabled) +[ 0.556583] type=2000 audit(1280404065.540:1): initialized +[ 0.571767] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.573199] VFS: Disk quotas dquot_6.5.2 +[ 0.573256] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.573808] fuse init (API version 7.14) +[ 0.573889] msgmni has been set to 7708 +[ 0.574084] alg: No test for stdrng (krng) +[ 0.574136] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.574139] io scheduler noop registered +[ 0.574141] io scheduler deadline registered +[ 0.574181] io scheduler cfq registered (default) +[ 0.574300] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.574343] alloc irq_desc for 40 on node -1 +[ 0.574346] alloc kstat_irqs on node -1 +[ 0.574359] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.574447] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.574487] alloc irq_desc for 41 on node -1 +[ 0.574489] alloc kstat_irqs on node -1 +[ 0.574497] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.574586] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.574626] alloc irq_desc for 42 on node -1 +[ 0.574628] alloc kstat_irqs on node -1 +[ 0.574636] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.574721] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.574762] alloc irq_desc for 43 on node -1 +[ 0.574763] alloc kstat_irqs on node -1 +[ 0.574771] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.574862] pcieport 0000:00:1c.4: setting latency timer to 64 +[ 0.574901] alloc irq_desc for 44 on node -1 +[ 0.574903] alloc kstat_irqs on node -1 +[ 0.574911] pcieport 0000:00:1c.4: irq 44 for MSI/MSI-X +[ 0.574999] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 0.575040] alloc irq_desc for 45 on node -1 +[ 0.575041] alloc kstat_irqs on node -1 +[ 0.575049] pcieport 0000:00:1c.5: irq 45 for MSI/MSI-X +[ 0.575156] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.575183] Firmware did not grant requested _OSC control +[ 0.575194] Firmware did not grant requested _OSC control +[ 0.575204] Firmware did not grant requested _OSC control +[ 0.575213] Firmware did not grant requested _OSC control +[ 0.575222] Firmware did not grant requested _OSC control +[ 0.575231] Firmware did not grant requested _OSC control +[ 0.575254] Firmware did not grant requested _OSC control +[ 0.575263] Firmware did not grant requested _OSC control +[ 0.575273] Firmware did not grant requested _OSC control +[ 0.575282] Firmware did not grant requested _OSC control +[ 0.575291] Firmware did not grant requested _OSC control +[ 0.575300] Firmware did not grant requested _OSC control +[ 0.575308] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.575746] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90005100000, using 1216k, total 1216k +[ 0.575749] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.575751] vesafb: scrolling: redraw +[ 0.575754] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.585340] Console: switching to colour frame buffer device 80x30 +[ 0.588098] Freeing initrd memory: 10728k freed +[ 0.596114] fb0: VESA VGA frame buffer device +[ 0.597625] ACPI: AC Adapter [ACAD] (on-line) +[ 0.597737] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.597741] ACPI: Power Button [PWRB] +[ 0.597790] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 0.598128] ACPI: Lid Switch [LID0] +[ 0.598176] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2 +[ 0.598178] ACPI: Sleep Button [SLPB] +[ 0.598233] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.598236] ACPI: Power Button [PWRF] +[ 0.598746] ACPI: acpi_idle registered with cpuidle +[ 0.598995] Monitor-Mwait will be used to enter C-1 state +[ 0.599024] Monitor-Mwait will be used to enter C-2 state +[ 0.599030] Marking TSC unstable due to TSC halts in idle +[ 0.599083] Switching to clocksource hpet +[ 0.605869] [Firmware Bug]: Invalid critical threshold (0) +[ 0.606748] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.606756] ACPI: Thermal Zone [TZ01] (52 C) +[ 0.606842] ERST: Table is not found! +[ 0.608494] Linux agpgart interface v0.103 +[ 0.608522] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.609972] brd: module loaded +[ 0.610533] loop: module loaded +[ 0.610991] Fixed MDIO Bus: probed +[ 0.611021] PPP generic driver version 2.4.2 +[ 0.611050] tun: Universal TUN/TAP device driver, 1.6 +[ 0.611052] tun: (C) 1999-2004 Max Krasnyansky +[ 0.611124] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.611148] ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.611170] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.611174] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.611205] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.611241] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.615141] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.615161] ehci_hcd 0000:00:1a.7: irq 19, io mem 0xdc705c00 +[ 0.630046] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.630153] hub 1-0:1.0: USB hub found +[ 0.630158] hub 1-0:1.0: 4 ports detected +[ 0.630229] alloc irq_desc for 20 on node -1 +[ 0.630231] alloc kstat_irqs on node -1 +[ 0.630238] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 0.630251] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.630255] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.630286] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.630318] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.634215] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.634229] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xdc705800 +[ 0.650013] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.650113] hub 2-0:1.0: USB hub found +[ 0.650117] hub 2-0:1.0: 8 ports detected +[ 0.650197] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.650210] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.650261] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.650268] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.650272] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.650301] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.650336] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000090e0 +[ 0.650444] hub 3-0:1.0: USB hub found +[ 0.650449] hub 3-0:1.0: 2 ports detected +[ 0.650507] alloc irq_desc for 21 on node -1 +[ 0.650510] alloc kstat_irqs on node -1 +[ 0.650514] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.650520] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.650524] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.650553] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.650586] uhci_hcd 0000:00:1a.1: irq 21, io base 0x000090c0 +[ 0.650702] hub 4-0:1.0: USB hub found +[ 0.650706] hub 4-0:1.0: 2 ports detected +[ 0.650767] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 0.650774] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.650777] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.650814] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.650840] uhci_hcd 0000:00:1d.0: irq 20, io base 0x000090a0 +[ 0.650956] hub 5-0:1.0: USB hub found +[ 0.650960] hub 5-0:1.0: 2 ports detected +[ 0.651018] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.651025] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.651028] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.651057] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.651082] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00009080 +[ 0.651187] hub 6-0:1.0: USB hub found +[ 0.651191] hub 6-0:1.0: 2 ports detected +[ 0.651251] uhci_hcd 0000:00:1d.2: PCI INT D -> GSI 16 (level, low) -> IRQ 16 +[ 0.651258] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.651262] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.651295] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.651321] uhci_hcd 0000:00:1d.2: irq 16, io base 0x00009060 +[ 0.651426] hub 7-0:1.0: USB hub found +[ 0.651430] hub 7-0:1.0: 2 ports detected +[ 0.651488] uhci_hcd 0000:00:1d.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.651494] uhci_hcd 0000:00:1d.3: setting latency timer to 64 +[ 0.651498] uhci_hcd 0000:00:1d.3: UHCI Host Controller +[ 0.651526] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 8 +[ 0.651562] uhci_hcd 0000:00:1d.3: irq 18, io base 0x00009040 +[ 0.651670] hub 8-0:1.0: USB hub found +[ 0.651674] hub 8-0:1.0: 2 ports detected +[ 0.651789] PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12 +[ 0.673828] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.673834] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.673894] mice: PS/2 mouse device common for all mice +[ 0.674058] rtc_cmos 00:04: RTC can wake from S4 +[ 0.674094] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 0.674123] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs +[ 0.674216] device-mapper: uevent: version 1.0.3 +[ 0.674295] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.674357] device-mapper: multipath: version 1.1.1 loaded +[ 0.674360] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.674548] cpuidle: using governor ladder +[ 0.675597] cpuidle: using governor menu +[ 0.675898] TCP cubic registered +[ 0.676021] NET: Registered protocol family 10 +[ 0.676419] lo: Disabled Privacy Extensions +[ 0.676645] NET: Registered protocol family 17 +[ 0.677309] PM: Resume from disk failed. +[ 0.677322] registered taskstats version 1 +[ 0.677780] Magic number: 2:587:783 +[ 0.677904] rtc_cmos 00:04: setting system clock to 2010-07-29 11:47:46 UTC (1280404066) +[ 0.677907] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.677909] EDD information not available. +[ 0.678005] Freeing unused kernel memory: 904k freed +[ 0.678328] Write protecting the kernel read-only data: 10240k +[ 0.678550] Freeing unused kernel memory: 416k freed +[ 0.678830] Freeing unused kernel memory: 1604k freed +[ 0.679598] ACPI: Battery Slot [BAT0] (battery present) +[ 0.694543] udev: starting version 151 +[ 0.697530] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 0.836342] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 0.836372] r8169 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.836427] r8169 0000:03:00.0: setting latency timer to 64 +[ 0.836478] alloc irq_desc for 46 on node -1 +[ 0.836481] alloc kstat_irqs on node -1 +[ 0.836498] r8169 0000:03:00.0: irq 46 for MSI/MSI-X +[ 0.836982] r8169 0000:03:00.0: eth0: RTL8102e at 0xffffc9000067e000, 00:23:8b:77:bd:61, XID 14a00000 IRQ 46 +[ 0.844569] ahci 0000:00:1f.2: version 3.0 +[ 0.844590] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.844646] alloc irq_desc for 47 on node -1 +[ 0.844648] alloc kstat_irqs on node -1 +[ 0.844660] ahci 0000:00:1f.2: irq 47 for MSI/MSI-X +[ 0.844716] ahci: SSS flag set, parallel bus scan disabled +[ 0.844749] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode +[ 0.844753] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems sxs +[ 0.844759] ahci 0000:00:1f.2: setting latency timer to 64 +[ 0.847716] b43-pci-bridge 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.847733] b43-pci-bridge 0000:02:00.0: setting latency timer to 64 +[ 0.880284] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x16, vendor 0x4243) +[ 0.880302] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x0F, vendor 0x4243) +[ 0.880318] ssb: Core 2 found: PCMCIA (cc 0x80D, rev 0x0A, vendor 0x4243) +[ 0.880335] ssb: Core 3 found: PCI-E (cc 0x820, rev 0x09, vendor 0x4243) +[ 0.900236] scsi0 : ahci +[ 0.900346] scsi1 : ahci +[ 0.900409] scsi2 : ahci +[ 0.900474] scsi3 : ahci +[ 0.900551] scsi4 : ahci +[ 0.900619] scsi5 : ahci +[ 0.900823] ata1: SATA max UDMA/133 abar m2048@0xdc705000 port 0xdc705100 irq 47 +[ 0.900827] ata2: SATA max UDMA/133 abar m2048@0xdc705000 port 0xdc705180 irq 47 +[ 0.900830] ata3: DUMMY +[ 0.900831] ata4: DUMMY +[ 0.900834] ata5: SATA max UDMA/133 abar m2048@0xdc705000 port 0xdc705300 irq 47 +[ 0.900837] ata6: SATA max UDMA/133 abar m2048@0xdc705000 port 0xdc705380 irq 47 +[ 0.950096] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 0.960165] ssb: Sonics Silicon Backplane found on PCI device 0000:02:00.0 +[ 1.121653] Initializing USB Mass Storage driver... +[ 1.121797] scsi6 : usb-storage 1-1:1.0 +[ 1.121877] usbcore: registered new interface driver usb-storage +[ 1.121879] USB Mass Storage support registered. +[ 1.230127] usb 2-4: new high speed USB device using ehci_hcd and address 2 +[ 1.431343] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.431847] ata1.00: ATA-8: FUJITSU MHZ2320BH G2, 8909, max UDMA/100 +[ 1.431858] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.432484] ata1.00: configured for UDMA/100 +[ 1.450205] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHZ2320B 8909 PQ: 0 ANSI: 5 +[ 1.450365] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.450408] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 1.450489] sd 0:0:0:0: [sda] Write Protect is off +[ 1.450492] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.450515] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.450652] sda: sda1 sda2 sda3 sda4 +[ 1.491168] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.122404] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS +[ 2.122972] sd 6:0:0:0: Attached scsi generic sg1 type 0 +[ 2.126745] sd 6:0:0:0: [sdb] Attached SCSI removable disk +[ 2.381344] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.385149] ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T50L, SC04, max UDMA/100 +[ 2.390275] ata2.00: configured for UDMA/100 +[ 2.513271] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T50L SC04 PQ: 0 ANSI: 5 +[ 2.839468] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.839472] Uniform CD-ROM driver Revision: 3.20 +[ 2.839603] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 2.839678] sr 1:0:0:0: Attached scsi generic sg2 type 5 +[ 3.180099] ata5: SATA link down (SStatus 0 SControl 300) +[ 3.550126] ata6: SATA link down (SStatus 0 SControl 300) +[ 4.018549] EXT4-fs (sda3): INFO: recovery required on readonly filesystem +[ 4.018554] EXT4-fs (sda3): write access will be enabled during recovery +[ 4.198977] EXT4-fs (sda3): orphan cleanup on readonly fs +[ 4.198984] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 555659 +[ 4.199013] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 552476 +[ 4.199023] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 552475 +[ 4.199031] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 552473 +[ 4.199039] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 552472 +[ 4.199048] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 526918 +[ 4.199058] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 552294 +[ 4.199067] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 526911 +[ 4.199076] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 526903 +[ 4.199085] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 526913 +[ 4.199095] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 1178239 +[ 4.199109] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 1181030 +[ 4.199119] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 1177743 +[ 4.199128] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 1177736 +[ 4.199137] EXT4-fs (sda3): ext4_orphan_cleanup: deleting unreferenced inode 1177665 +[ 4.199145] EXT4-fs (sda3): 15 orphan inodes deleted +[ 4.199148] EXT4-fs (sda3): recovery complete +[ 4.606830] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) +[ 7.148151] udev: starting version 151 +[ 7.452978] type=1400 audit(1280384273.272:2): operation="profile_load" pid=682 name="/sbin/dhclient3" pid=682 comm="apparmor_parser" +[ 7.453708] type=1400 audit(1280384273.272:3): operation="profile_load" pid=682 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=682 comm="apparmor_parser" +[ 7.454070] type=1400 audit(1280384273.272:4): operation="profile_load" pid=682 name="/usr/lib/connman/scripts/dhclient-script" pid=682 comm="apparmor_parser" +[ 7.562352] agpgart-intel 0000:00:00.0: Intel GM45 Chipset +[ 7.564565] agpgart-intel 0000:00:00.0: detected 65532K stolen memory +[ 7.592097] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +[ 7.755115] lirc_dev: IR Remote Control driver registered, major 61 +[ 7.767511] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 7.767869] IP: [] kfifo_alloc+0x2e/0xb0 +[ 7.768132] PGD 13a27b067 PUD 1375c6067 PMD 0 +[ 7.768360] Oops: 0002 [#1] SMP +[ 7.768524] last sysfs file: /sys/module/snd/initstate +[ 7.768757] CPU 1 +[ 7.768849] Modules linked in: lirc_ene0100(+) lirc_dev v4l1_compat v4l2_compat_ioctl32 lp(+) led_class serio_raw intel_agp video output parport snd soundcore snd_page_alloc usb_storage ahci ssb r8169 mii libahci +[ 7.769892] +[ 7.769962] Pid: 687, comm: modprobe Not tainted 2.6.35-12-generic #17-Ubuntu 3602/HP Pavilion dv5 Notebook PC +[ 7.770415] RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +[ 7.770783] RSP: 0018:ffff88013825fd08 EFLAGS: 00010286 +[ 7.771023] RAX: ffff88013fc0f000 RBX: 0000000000000000 RCX: ffffffff8107f129 +[ 7.771345] RDX: 0000000000000000 RSI: 00000000000000d0 RDI: 0000000000000246 +[ 7.771667] RBP: ffff88013825fd18 R08: 0000000000000000 R09: 0000000000000246 +[ 7.771989] R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +[ 7.772311] R13: ffff880139be1400 R14: ffff880136d58640 R15: 00000000fffffff4 +[ 7.772634] FS: 00007f450591a700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +[ 7.772999] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 7.773258] CR2: 0000000000000000 CR3: 000000013a270000 CR4: 00000000000406e0 +[ 7.773580] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 7.773902] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 7.774225] Process modprobe (pid: 687, threadinfo ffff88013825e000, task ffff8801383ddb80) +[ 7.774601] Stack: +[ 7.774692] ffff8801379ee840 ffff8801379f14e0 ffff88013825fd58 ffffffffa009ee4f +[ 7.776922] <0> ffff88013825fd38 ffffffffa009f060 ffff880139be1400 ffffffffa009f580 +[ 7.776922] <0> ffffffffa009f540 00000000fffffff4 ffff88013825fd98 ffffffff81341325 +[ 7.776922] Call Trace: +[ 7.776922] [] ene_probe+0x17f/0x350 [lirc_ene0100] +[ 7.776922] [] pnp_device_probe+0x95/0x100 +[ 7.776922] [] ? driver_sysfs_add+0x62/0x90 +[ 7.776922] [] really_probe+0x68/0x190 +[ 7.776922] [] driver_probe_device+0x45/0x70 +[ 7.776922] [] __driver_attach+0x9b/0xa0 +[ 7.776922] [] ? __driver_attach+0x0/0xa0 +[ 7.776922] [] bus_for_each_dev+0x68/0x90 +[ 7.776922] [] driver_attach+0x1e/0x20 +[ 7.776922] [] bus_add_driver+0xde/0x280 +[ 7.776922] [] driver_register+0x80/0x150 +[ 7.776922] [] ? ene_init+0x0/0x3e [lirc_ene0100] +[ 7.776922] [] pnp_register_driver+0x21/0x30 +[ 7.776922] [] ene_init+0x3c/0x3e [lirc_ene0100] +[ 7.776922] [] do_one_initcall+0x3c/0x1a0 +[ 7.776922] [] sys_init_module+0xbb/0x200 +[ 7.776922] [] system_call_fastpath+0x16/0x1b +[ 7.776922] Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 67 33 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +[ 7.776922] RIP [] kfifo_alloc+0x2e/0xb0 +[ 7.776922] RSP +[ 7.776922] CR2: 0000000000000000 +[ 7.952097] ---[ end trace 232690367d78defc ]--- +[ 7.972185] input: HP WMI hotkeys as /devices/virtual/input/input5 +[ 8.055562] lis3lv02d: laptop model unknown, using default axes configuration +[ 8.071436] lis3lv02d: 8 bits sensor found +[ 8.073913] cfg80211: Calling CRDA to update world regulatory domain +[ 8.090220] lp: driver loaded but no devices found +[ 8.195960] Linux video capture interface: v2.00 +[ 8.230772] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input6 +[ 8.242012] Registered led device: hp::hddprotect +[ 8.247381] lis3lv02d driver loaded. +[ 8.269537] uvcvideo: Found UVC 1.00 device HP Webcam (0408:03ba) +[ 8.278749] input: HP Webcam as /devices/pci0000:00/0000:00:1d.7/usb2/2-4/2-4:1.0/input/input7 +[ 8.290596] usbcore: registered new interface driver uvcvideo +[ 8.296599] USB Video Class driver (v0.1.0) +[ 8.496508] [drm] Initialized drm 1.1.0 20060810 +[ 8.890214] b43-phy0: Broadcom 4312 WLAN found (core revision 15) +[ 9.161220] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000/0x0 +[ 9.251385] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 9.257918] i915 0000:00:02.0: setting latency timer to 64 +[ 9.262903] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8 +[ 9.363672] alloc irq_desc for 48 on node -1 +[ 9.364589] alloc kstat_irqs on node -1 +[ 9.365479] i915 0000:00:02.0: irq 48 for MSI/MSI-X +[ 9.366381] [drm] set up 63M of stolen space +[ 9.969436] cfg80211: World regulatory domain updated: +[ 9.970355] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 9.972158] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 9.972161] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 9.972163] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 9.972166] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 9.972168] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 10.030523] Skipping EDID probe due to cached edid +[ 10.044137] checking generic (c0000000 130000) vs hw (c0000000 10000000) +[ 10.044980] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver +[ 10.046743] Console: switching to colour dummy device 80x25 +[ 10.660215] Console: switching to colour frame buffer device 160x50 +[ 10.663135] fb0: inteldrmfb frame buffer device +[ 10.663137] drm: registered panic notifier +[ 10.663765] Slow work thread pool: Starting up +[ 10.663851] Slow work thread pool: Ready +[ 10.666425] phy0: Selected rate control algorithm 'minstrel' +[ 10.667053] Registered led device: b43-phy0::tx +[ 10.667094] Registered led device: b43-phy0::rx +[ 10.667133] Registered led device: b43-phy0::radio +[ 10.667231] Broadcom 43xx driver loaded [ Features: PL, Firmware-ID: FW13 ] +[ 10.678515] acpi device:02: registered as cooling_device2 +[ 10.679653] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9 +[ 10.679832] ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no) +[ 10.680051] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 10.680131] alloc irq_desc for 22 on node -1 +[ 10.680162] alloc kstat_irqs on node -1 +[ 10.680190] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 10.680302] alloc irq_desc for 49 on node -1 +[ 10.680330] alloc kstat_irqs on node -1 +[ 10.680360] HDA Intel 0000:00:1b.0: irq 49 for MSI/MSI-X +[ 10.680423] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 11.450456] input: HDA Intel Mic at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10 +[ 11.450656] input: HDA Intel Mic at Sep UNKNOWN Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 +[ 11.450798] input: HDA Intel HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 +[ 12.120102] Skipping EDID probe due to cached edid +[ 13.512334] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro +[ 14.152221] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 15.476672] type=1400 audit(1280384281.292:5): operation="profile_load" pid=1006 name="/usr/share/gdm/guest-session/Xsession" pid=1006 comm="apparmor_parser" +[ 15.478743] type=1400 audit(1280384281.292:6): operation="profile_replace" pid=1007 name="/sbin/dhclient3" pid=1007 comm="apparmor_parser" +[ 15.479429] type=1400 audit(1280384281.292:7): operation="profile_replace" pid=1007 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1007 comm="apparmor_parser" +[ 15.479797] type=1400 audit(1280384281.292:8): operation="profile_replace" pid=1007 name="/usr/lib/connman/scripts/dhclient-script" pid=1007 comm="apparmor_parser" +[ 15.543893] type=1400 audit(1280384281.362:9): operation="profile_load" pid=1010 name="/usr/bin/evince" pid=1010 comm="apparmor_parser" +[ 15.552479] type=1400 audit(1280384281.372:10): operation="profile_load" pid=1010 name="/usr/bin/evince-previewer" pid=1010 comm="apparmor_parser" +[ 15.557725] type=1400 audit(1280384281.372:11): operation="profile_load" pid=1010 name="/usr/bin/evince-thumbnailer" pid=1010 comm="apparmor_parser" +[ 15.688011] type=1400 audit(1280384281.492:12): operation="profile_load" pid=1021 name="/usr/lib/cups/backend/cups-pdf" pid=1021 comm="apparmor_parser" +[ 15.688832] type=1400 audit(1280384281.492:13): operation="profile_load" pid=1021 name="/usr/sbin/cupsd" pid=1021 comm="apparmor_parser" +[ 15.900349] type=1400 audit(1280384281.712:14): operation="profile_load" pid=1022 name="/usr/sbin/mysqld-akonadi" pid=1022 comm="apparmor_parser" +[ 17.380137] Skipping EDID probe due to cached edid +[ 17.431415] Skipping EDID probe due to cached edid + +Bug: 611470 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-24-generic (buildd@yellow) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #38-Ubuntu SMP Mon Jul 5 09:20:59 UTC 2010 (Ubuntu 2.6.32-24.38-generic 2.6.32.15+drm33.5) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic root=UUID=80f6800d-8051-47ae-929d-a405428d9194 ro quiet splash +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] Centaur CentaurHauls +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e400 (usable) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000d7df9c00 (usable) +[ 0.000000] BIOS-e820: 00000000d7df9c00 - 00000000d7e4bc00 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000d7e4bc00 - 00000000d7e4dc00 (ACPI data) +[ 0.000000] BIOS-e820: 00000000d7e4dc00 - 00000000d8000000 (reserved) +[ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fd000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fe000000 - 00000000fed00400 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000628000000 (usable) +[ 0.000000] DMI 2.5 present. +[ 0.000000] last_pfn = 0x628000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: write-back +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-D3FFF write-protect +[ 0.000000] D4000-EFFFF uncachable +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 00E3F00000 mask FFFFF00000 uncachable +[ 0.000000] 1 base 00E4000000 mask FFFC000000 uncachable +[ 0.000000] 2 base 00E8000000 mask FFF8000000 uncachable +[ 0.000000] 3 base 00F0000000 mask FFF0000000 uncachable +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] 8 disabled +[ 0.000000] 9 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xd7df9 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (usable) +[ 0.000000] modified: 0000000000001000 - 0000000000006000 (reserved) +[ 0.000000] modified: 0000000000006000 - 000000000009e400 (usable) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000d7df9c00 (usable) +[ 0.000000] modified: 00000000d7df9c00 - 00000000d7e4bc00 (ACPI NVS) +[ 0.000000] modified: 00000000d7e4bc00 - 00000000d7e4dc00 (ACPI data) +[ 0.000000] modified: 00000000d7e4dc00 - 00000000d8000000 (reserved) +[ 0.000000] modified: 00000000f8000000 - 00000000fd000000 (reserved) +[ 0.000000] modified: 00000000fe000000 - 00000000fed00400 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fef00000 (reserved) +[ 0.000000] modified: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000628000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] Using GB pages for direct mapping +[ 0.000000] init_memory_mapping: 0000000000000000-00000000d7df9000 +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] 0000000000 - 00c0000000 page 1G +[ 0.000000] 00c0000000 - 00d7c00000 page 2M +[ 0.000000] 00d7c00000 - 00d7df9000 page 4k +[ 0.000000] kernel direct mapping tables up to d7df9000 @ 8000-b000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000628000000 +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] 0100000000 - 0600000000 page 1G +[ 0.000000] 0600000000 - 0628000000 page 2M +[ 0.000000] kernel direct mapping tables up to 628000000 @ a000-c000 +[ 0.000000] RAMDISK: 377fc000 - 37fefeb4 +[ 0.000000] ACPI: RSDP 00000000000fec30 00024 (v02 DELL ) +[ 0.000000] ACPI: XSDT 00000000000fcc42 0007C (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: FACP 00000000000fcd3a 000F4 (v03 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: DSDT 00000000ffe9e449 05732 (v01 DELL dt_ex 00001000 INTL 20050624) +[ 0.000000] ACPI: FACS 00000000d7df9c00 00040 +[ 0.000000] ACPI: SSDT 00000000ffea3b7b 00089 (v01 DELL st_ex 00001000 INTL 20050624) +[ 0.000000] ACPI: APIC 00000000000fce2e 0016A (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: BOOT 00000000000fcf98 00028 (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: ASF! 00000000000fcfc0 00096 (v32 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: MCFG 00000000000fd056 0003E (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: HPET 00000000000fd094 00038 (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: TCPA 00000000000fd2f0 00032 (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: ____ 00000000000fd322 00030 (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: _RAT 00000000000fded4 00030 (v01 DELL B10K 00000015 ASL 00000061) +[ 0.000000] ACPI: SSDT 00000000d7e4dc00 02454 (v01 INTEL PPM RCM 80000001 INTL 20061109) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000628000000 +[ 0.000000] Bootmem setup node 0 0000000000000000-0000000628000000 +[ 0.000000] NODE_DATA [000000000000b000 - 000000000000ffff] +[ 0.000000] bootmap [0000000000100000 - 00000000001c4fff] pages c5 +[ 0.000000] (8 early reservations) ==> bootmem [0000000000 - 0628000000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000] +[ 0.000000] #2 [0001000000 - 0001a2fe64] TEXT DATA BSS ==> [0001000000 - 0001a2fe64] +[ 0.000000] #3 [00377fc000 - 0037fefeb4] RAMDISK ==> [00377fc000 - 0037fefeb4] +[ 0.000000] #4 [000009e400 - 0000100000] BIOS reserved ==> [000009e400 - 0000100000] +[ 0.000000] #5 [0001a30000 - 0001a301d8] BRK ==> [0001a30000 - 0001a301d8] +[ 0.000000] #6 [0000008000 - 000000a000] PGTABLE ==> [0000008000 - 000000a000] +[ 0.000000] #7 [000000a000 - 000000b000] PGTABLE ==> [000000a000 - 000000b000] +[ 0.000000] [ffffea0000000000-ffffea000f7fffff] PMD -> [ffff880028600000-ffff8800375fffff] on node 0 +[ 0.000000] [ffffea000f800000-ffffea00159fffff] PMD -> [ffff880038000000-ffff88003e1fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000000 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00628000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000000 -> 0x00000001 +[ 0.000000] 0: 0x00000006 -> 0x0000009e +[ 0.000000] 0: 0x00000100 -> 0x000d7df9 +[ 0.000000] 0: 0x00100000 -> 0x00628000 +[ 0.000000] On node 0 totalpages: 6290834 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 103 pages reserved +[ 0.000000] DMA zone: 3834 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 865841 pages, LIFO batch:31 +[ 0.000000] Normal zone: 73920 pages used for memmap +[ 0.000000] Normal zone: 5332800 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x20] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x22] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x32] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x34] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x02] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x12] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x14] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec80000] gsi_base[24]) +[ 0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec80000, GSI 24-47 +[ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec88000] gsi_base[48]) +[ 0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec88000, GSI 48-71 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 +[ 0.000000] SMP: Allowing 32 CPUs, 24 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 72 +[ 0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000 +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000d7df9000 - 00000000d7dfa000 +[ 0.000000] PM: Registered nosave memory: 00000000d7dfa000 - 00000000d7e4b000 +[ 0.000000] PM: Registered nosave memory: 00000000d7e4b000 - 00000000d7e4c000 +[ 0.000000] PM: Registered nosave memory: 00000000d7e4c000 - 00000000d7e4d000 +[ 0.000000] PM: Registered nosave memory: 00000000d7e4d000 - 00000000d7e4e000 +[ 0.000000] PM: Registered nosave memory: 00000000d7e4e000 - 00000000d8000000 +[ 0.000000] PM: Registered nosave memory: 00000000d8000000 - 00000000f8000000 +[ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fd000000 +[ 0.000000] PM: Registered nosave memory: 00000000fd000000 - 00000000fe000000 +[ 0.000000] PM: Registered nosave memory: 00000000fe000000 - 00000000fed00000 +[ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000 +[ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000ffb00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffb00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at d8000000 (gap: d8000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88003e200000 s91544 r8192 d23144 u131072 +[ 0.000000] pcpu-alloc: s91544 r8192 d23144 u131072 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 +[ 0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 6202475 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic root=UUID=80f6800d-8051-47ae-929d-a405428d9194 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Initializing CPU#0 +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.000000] Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000 +[ 0.000000] software IO TLB at phys 0x20000000 - 0x24000000 +[ 0.000000] Memory: 24728516k/25821184k available (5422k kernel code, 657848k absent, 434820k reserved, 2979k data, 880k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:4352 nr_irqs:1480 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 251658240 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.000000] Fast TSC calibration using PIT +[ 0.010000] Detected 2660.018 MHz processor. +[ 0.000013] Calibrating delay loop (skipped), value calculated using timer frequency.. 5320.03 BogoMIPS (lpj=26600180) +[ 0.000035] Security Framework initialized +[ 0.000051] AppArmor: AppArmor initialized +[ 0.001977] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes) +[ 0.008489] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes) +[ 0.011296] Mount-cache hash table entries: 256 +[ 0.011436] Initializing cgroup subsys ns +[ 0.011439] Initializing cgroup subsys cpuacct +[ 0.011444] Initializing cgroup subsys memory +[ 0.011450] Initializing cgroup subsys devices +[ 0.011452] Initializing cgroup subsys freezer +[ 0.011453] Initializing cgroup subsys net_cls +[ 0.011475] CPU: Physical Processor ID: 1 +[ 0.011476] CPU: Processor Core ID: 0 +[ 0.011479] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 0.011480] CPU: L2 cache: 256K +[ 0.011481] CPU: L3 cache: 12288K +[ 0.011484] CPU 0/0x20 -> Node 0 +[ 0.011487] mce: CPU supports 9 MCE banks +[ 0.011496] CPU0: Thermal monitoring enabled (TM1) +[ 0.011499] CPU 0 MCA banks CMCI:2 CMCI:3 CMCI:5 CMCI:6 CMCI:8 +[ 0.011507] using mwait in idle threads. +[ 0.011508] Performance Events: Westmere events, Intel PMU driver. +[ 0.011512] ... version: 3 +[ 0.011513] ... bit width: 48 +[ 0.011514] ... generic registers: 4 +[ 0.011515] ... value mask: 0000ffffffffffff +[ 0.011517] ... max period: 000000007fffffff +[ 0.011518] ... fixed-purpose events: 3 +[ 0.011519] ... event mask: 000000070000000f +[ 0.013197] ACPI: Core revision 20090903 +[ 0.275317] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.275321] ftrace: allocating 22527 entries in 89 pages +[ 0.280993] Setting APIC routing to physical flat +[ 0.281613] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.381370] CPU0: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 0.496822] Booting processor 1 APIC 0x22 ip 0x6000 +[ 0.507483] Initializing CPU#1 +[ 0.656305] CPU: Physical Processor ID: 1 +[ 0.656306] CPU: Processor Core ID: 1 +[ 0.656308] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 0.656309] CPU: L2 cache: 256K +[ 0.656310] CPU: L3 cache: 12288K +[ 0.656312] CPU 1/0x22 -> Node 0 +[ 0.656323] CPU1: Thermal monitoring enabled (TM1) +[ 0.656326] CPU 1 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 0.656402] CPU1: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 0.656409] checking TSC synchronization [CPU#0 -> CPU#1]: passed. +[ 0.676469] Booting processor 2 APIC 0x32 ip 0x6000 +[ 0.686941] Initializing CPU#2 +[ 0.835853] CPU: Physical Processor ID: 1 +[ 0.835854] CPU: Processor Core ID: 9 +[ 0.835856] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 0.835857] CPU: L2 cache: 256K +[ 0.835858] CPU: L3 cache: 12288K +[ 0.835860] CPU 2/0x32 -> Node 0 +[ 0.835871] CPU2: Thermal monitoring enabled (TM1) +[ 0.835874] CPU 2 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 0.835950] CPU2: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 0.835956] checking TSC synchronization [CPU#0 -> CPU#2]: passed. +[ 0.856018] Booting processor 3 APIC 0x34 ip 0x6000 +[ 0.866491] Initializing CPU#3 +[ 1.015401] CPU: Physical Processor ID: 1 +[ 1.015402] CPU: Processor Core ID: 10 +[ 1.015404] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 1.015405] CPU: L2 cache: 256K +[ 1.015406] CPU: L3 cache: 12288K +[ 1.015408] CPU 3/0x34 -> Node 0 +[ 1.015419] CPU3: Thermal monitoring enabled (TM1) +[ 1.015422] CPU 3 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 1.015498] CPU3: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 1.015505] checking TSC synchronization [CPU#0 -> CPU#3]: passed. +[ 1.035563] Booting processor 4 APIC 0x0 ip 0x6000 +[ 1.046031] Initializing CPU#4 +[ 1.194948] CPU: Physical Processor ID: 0 +[ 1.194949] CPU: Processor Core ID: 0 +[ 1.194951] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 1.194952] CPU: L2 cache: 256K +[ 1.194953] CPU: L3 cache: 12288K +[ 1.194955] CPU 4/0x0 -> Node 0 +[ 1.194965] CPU4: Thermal monitoring enabled (TM1) +[ 1.194968] CPU 4 MCA banks CMCI:2 CMCI:3 CMCI:5 CMCI:6 CMCI:8 +[ 1.195027] CPU4: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 1.195033] checking TSC synchronization [CPU#0 -> CPU#4]: passed. +[ 1.215052] Booting processor 5 APIC 0x2 ip 0x6000 +[ 1.225522] Initializing CPU#5 +[ 1.374496] CPU: Physical Processor ID: 0 +[ 1.374497] CPU: Processor Core ID: 1 +[ 1.374500] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 1.374501] CPU: L2 cache: 256K +[ 1.374502] CPU: L3 cache: 12288K +[ 1.374504] CPU 5/0x2 -> Node 0 +[ 1.374515] CPU5: Thermal monitoring enabled (TM1) +[ 1.374518] CPU 5 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 1.374566] CPU5: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 1.374572] checking TSC synchronization [CPU#0 -> CPU#5]: passed. +[ 1.394591] Booting processor 6 APIC 0x12 ip 0x6000 +[ 1.405061] Initializing CPU#6 +[ 1.554044] CPU: Physical Processor ID: 0 +[ 1.554045] CPU: Processor Core ID: 9 +[ 1.554048] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 1.554049] CPU: L2 cache: 256K +[ 1.554050] CPU: L3 cache: 12288K +[ 1.554052] CPU 6/0x12 -> Node 0 +[ 1.554062] CPU6: Thermal monitoring enabled (TM1) +[ 1.554065] CPU 6 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 1.554170] CPU6: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 1.554176] checking TSC synchronization [CPU#0 -> CPU#6]: passed. +[ 1.574192] Booting processor 7 APIC 0x14 ip 0x6000 +[ 1.584662] Initializing CPU#7 +[ 1.733592] CPU: Physical Processor ID: 0 +[ 1.733593] CPU: Processor Core ID: 10 +[ 1.733596] CPU: L1 I cache: 32K, L1 D cache: 32K +[ 1.733597] CPU: L2 cache: 256K +[ 1.733598] CPU: L3 cache: 12288K +[ 1.733600] CPU 7/0x14 -> Node 0 +[ 1.733610] CPU7: Thermal monitoring enabled (TM1) +[ 1.733613] CPU 7 MCA banks CMCI:2 CMCI:3 CMCI:5 SHD:6 SHD:8 +[ 1.733670] CPU7: Intel(R) Xeon(R) CPU E5640 @ 2.67GHz stepping 02 +[ 1.733676] checking TSC synchronization [CPU#0 -> CPU#7]: passed. +[ 1.753646] Brought up 8 CPUs +[ 1.753649] Total of 8 processors activated (42560.01 BogoMIPS). +[ 1.758179] CPU0 attaching sched-domain: +[ 1.758183] domain 0: span 0-3 level MC +[ 1.758184] groups: 0 1 2 3 +[ 1.758188] domain 1: span 0-7 level CPU +[ 1.758189] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 1.758196] CPU1 attaching sched-domain: +[ 1.758197] domain 0: span 0-3 level MC +[ 1.758198] groups: 1 2 3 0 +[ 1.758201] domain 1: span 0-7 level CPU +[ 1.758202] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 1.758206] CPU2 attaching sched-domain: +[ 1.758207] domain 0: span 0-3 level MC +[ 1.758208] groups: 2 3 0 1 +[ 1.758211] domain 1: span 0-7 level CPU +[ 1.758212] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 1.758216] CPU3 attaching sched-domain: +[ 1.758217] domain 0: span 0-3 level MC +[ 1.758219] groups: 3 0 1 2 +[ 1.758221] domain 1: span 0-7 level CPU +[ 1.758223] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 1.758226] CPU4 attaching sched-domain: +[ 1.758228] domain 0: span 4-7 level MC +[ 1.758229] groups: 4 5 6 7 +[ 1.758232] domain 1: span 0-7 level CPU +[ 1.758233] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 1.758237] CPU5 attaching sched-domain: +[ 1.758238] domain 0: span 4-7 level MC +[ 1.758239] groups: 5 6 7 4 +[ 1.758242] domain 1: span 0-7 level CPU +[ 1.758243] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 1.758247] CPU6 attaching sched-domain: +[ 1.758248] domain 0: span 4-7 level MC +[ 1.758249] groups: 6 7 4 5 +[ 1.758252] domain 1: span 0-7 level CPU +[ 1.758253] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 1.758257] CPU7 attaching sched-domain: +[ 1.758258] domain 0: span 4-7 level MC +[ 1.758260] groups: 7 4 5 6 +[ 1.758262] domain 1: span 0-7 level CPU +[ 1.758264] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 1.758726] devtmpfs: initialized +[ 1.759025] regulator: core version 0.5 +[ 1.759049] Time: 19:05:59 Date: 07/29/10 +[ 1.759101] NET: Registered protocol family 16 +[ 1.759214] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 1.759216] ACPI: bus type pci registered +[ 1.759234] Trying to unpack rootfs image as initramfs... +[ 1.759267] PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63 +[ 1.759269] PCI: MCFG area at f8000000 reserved in E820 +[ 1.760600] PCI: Using MMCONFIG at f8000000 - fbffffff +[ 1.760601] PCI: Using configuration type 1 for base access +[ 1.761299] bio: create slab at 0 +[ 1.761913] ACPI: EC: Look up EC in DSDT +[ 1.841005] ACPI: BIOS _OSI(Linux) query ignored +[ 1.857772] ACPI: Interpreter enabled +[ 1.857776] ACPI: (supports S0 S3 S4 S5) +[ 1.857790] ACPI: Using IOAPIC for interrupt routing +[ 1.911104] Freeing initrd memory: 8143k freed +[ 1.956536] ACPI: No dock devices found. +[ 1.971038] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 1.971114] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold +[ 1.971117] pci 0000:00:00.0: PME# disabled +[ 1.971183] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 1.971186] pci 0000:00:01.0: PME# disabled +[ 1.971252] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 1.971255] pci 0000:00:03.0: PME# disabled +[ 1.971323] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 1.971325] pci 0000:00:07.0: PME# disabled +[ 1.971530] pci 0000:00:1a.0: reg 20 io port: [0x1f20-0x1f3f] +[ 1.971601] pci 0000:00:1a.1: reg 20 io port: [0x1f00-0x1f1f] +[ 1.971669] pci 0000:00:1a.2: reg 20 io port: [0x1c00-0x1c1f] +[ 1.971741] pci 0000:00:1a.7: reg 10 32bit mmio: [0xf7ffa000-0xf7ffa3ff] +[ 1.971795] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 1.971799] pci 0000:00:1a.7: PME# disabled +[ 1.971838] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf7ffc000-0xf7ffffff] +[ 1.971879] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 1.971882] pci 0000:00:1b.0: PME# disabled +[ 1.971943] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 1.971947] pci 0000:00:1c.0: PME# disabled +[ 1.972013] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 1.972016] pci 0000:00:1c.5: PME# disabled +[ 1.972070] pci 0000:00:1d.0: reg 20 io port: [0x1f80-0x1f9f] +[ 1.972138] pci 0000:00:1d.1: reg 20 io port: [0x1f60-0x1f7f] +[ 1.972208] pci 0000:00:1d.2: reg 20 io port: [0x1f40-0x1f5f] +[ 1.972279] pci 0000:00:1d.7: reg 10 32bit mmio: [0xff980000-0xff9803ff] +[ 1.972333] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 1.972337] pci 0000:00:1d.7: PME# disabled +[ 1.972459] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO +[ 1.972462] pci 0000:00:1f.0: quirk: region 0880-08bf claimed by ICH6 GPIO +[ 1.972465] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0c00 (mask 007f) +[ 1.972468] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 00e0 (mask 0007) +[ 1.972470] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0900 (mask 003f) +[ 1.972533] pci 0000:00:1f.2: reg 10 io port: [0x1e00-0x1e07] +[ 1.972538] pci 0000:00:1f.2: reg 14 io port: [0x1e10-0x1e13] +[ 1.972543] pci 0000:00:1f.2: reg 18 io port: [0x1e20-0x1e27] +[ 1.972548] pci 0000:00:1f.2: reg 1c io port: [0x1e30-0x1e33] +[ 1.972553] pci 0000:00:1f.2: reg 20 io port: [0x1ec0-0x1edf] +[ 1.972558] pci 0000:00:1f.2: reg 24 32bit mmio: [0xff970000-0xff9707ff] +[ 1.972589] pci 0000:00:1f.2: PME# supported from D3hot +[ 1.972592] pci 0000:00:1f.2: PME# disabled +[ 1.972619] pci 0000:00:1f.3: reg 10 64bit mmio: [0xf7ffb000-0xf7ffb0ff] +[ 1.972632] pci 0000:00:1f.3: reg 20 io port: [0xece0-0xecff] +[ 1.972722] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold +[ 1.972725] pci 0000:01:00.0: PME# disabled +[ 1.972762] pci 0000:00:01.0: bridge 32bit mmio: [0xf0d00000-0xf0dfffff] +[ 1.972872] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold +[ 1.972875] pci 0000:03:00.0: PME# disabled +[ 1.972903] pci 0000:00:03.0: bridge io port: [0xc000-0xdfff] +[ 1.972905] pci 0000:00:03.0: bridge 32bit mmio: [0xf0f00000-0xf7efffff] +[ 1.972910] pci 0000:00:03.0: bridge 64bit mmio pref: [0xe8000000-0xefffffff] +[ 1.972958] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 1.972961] pci 0000:04:00.0: PME# disabled +[ 1.973014] pci 0000:04:02.0: PME# supported from D0 D3hot D3cold +[ 1.973017] pci 0000:04:02.0: PME# disabled +[ 1.973049] pci 0000:03:00.0: bridge io port: [0xc000-0xdfff] +[ 1.973052] pci 0000:03:00.0: bridge 32bit mmio: [0xf0f00000-0xf7efffff] +[ 1.973056] pci 0000:03:00.0: bridge 64bit mmio pref: [0xe8000000-0xefffffff] +[ 1.973091] pci 0000:05:00.0: reg 10 32bit mmio: [0xf6000000-0xf6ffffff] +[ 1.973101] pci 0000:05:00.0: reg 14 64bit mmio pref: [0xe8000000-0xebffffff] +[ 1.973112] pci 0000:05:00.0: reg 1c 64bit mmio: [0xf4000000-0xf5ffffff] +[ 1.973118] pci 0000:05:00.0: reg 24 io port: [0xdc80-0xdcff] +[ 1.973124] pci 0000:05:00.0: reg 30 32bit mmio pref: [0xf7e00000-0xf7e1ffff] +[ 1.973192] pci 0000:04:00.0: bridge io port: [0xd000-0xdfff] +[ 1.973194] pci 0000:04:00.0: bridge 32bit mmio: [0xf4000000-0xf7efffff] +[ 1.973199] pci 0000:04:00.0: bridge 64bit mmio pref: [0xe8000000-0xebffffff] +[ 1.973234] pci 0000:06:00.0: reg 10 32bit mmio: [0xf1000000-0xf1ffffff] +[ 1.973244] pci 0000:06:00.0: reg 14 64bit mmio pref: [0xec000000-0xefffffff] +[ 1.973254] pci 0000:06:00.0: reg 1c 64bit mmio: [0xf2000000-0xf3ffffff] +[ 1.973260] pci 0000:06:00.0: reg 24 io port: [0xcc80-0xccff] +[ 1.973266] pci 0000:06:00.0: reg 30 32bit mmio pref: [0xf0f00000-0xf0f1ffff] +[ 1.973332] pci 0000:04:02.0: bridge io port: [0xc000-0xcfff] +[ 1.973335] pci 0000:04:02.0: bridge 32bit mmio: [0xf0f00000-0xf3ffffff] +[ 1.973340] pci 0000:04:02.0: bridge 64bit mmio pref: [0xec000000-0xefffffff] +[ 1.973377] pci 0000:00:07.0: bridge 32bit mmio: [0xf0e00000-0xf0efffff] +[ 1.973507] pci 0000:09:00.0: reg 10 64bit mmio: [0xf0ce0000-0xf0ceffff] +[ 1.973524] pci 0000:09:00.0: reg 18 64bit mmio: [0xf0cf0000-0xf0cfffff] +[ 1.973602] pci 0000:09:00.0: PME# supported from D3hot D3cold +[ 1.973608] pci 0000:09:00.0: PME# disabled +[ 1.973666] pci 0000:00:1c.5: bridge 32bit mmio: [0xf0c00000-0xf0cfffff] +[ 1.973716] pci 0000:0a:0a.0: reg 10 32bit mmio: [0xf0bfb000-0xf0bfb7ff] +[ 1.973722] pci 0000:0a:0a.0: reg 14 32bit mmio: [0xf0bfc000-0xf0bfffff] +[ 1.973765] pci 0000:0a:0a.0: supports D1 D2 +[ 1.973766] pci 0000:0a:0a.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.973770] pci 0000:0a:0a.0: PME# disabled +[ 1.973802] pci 0000:00:1e.0: transparent bridge +[ 1.973807] pci 0000:00:1e.0: bridge 32bit mmio: [0xf0b00000-0xf0bfffff] +[ 1.973836] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 1.974511] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT] +[ 1.974809] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI2._PRT] +[ 1.975104] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI3._PRT] +[ 1.975396] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI4._PRT] +[ 1.975675] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI5._PRT] +[ 1.975953] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI6._PRT] +[ 2.973729] ACPI: PCI Root Bridge [PCI7] (0000:20) +[ 2.973797] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold +[ 2.973799] pci 0000:20:03.0: PME# disabled +[ 2.973856] pci 0000:20:07.0: PME# supported from D0 D3hot D3cold +[ 2.973858] pci 0000:20:07.0: PME# disabled +[ 2.973916] pci 0000:20:09.0: PME# supported from D0 D3hot D3cold +[ 2.973918] pci 0000:20:09.0: PME# disabled +[ 2.974072] pci 0000:20:03.0: bridge 32bit mmio: [0xe7f00000-0xe7ffffff] +[ 2.974095] pci 0000:20:07.0: bridge 32bit mmio: [0xe7e00000-0xe7efffff] +[ 2.974118] pci 0000:20:09.0: bridge 32bit mmio: [0xe7d00000-0xe7dfffff] +[ 2.974132] ACPI: PCI Interrupt Routing Table [\_SB_.PCI7._PRT] +[ 2.974744] ACPI: PCI Interrupt Routing Table [\_SB_.PCI7.PCI9._PRT] +[ 2.975038] ACPI: PCI Interrupt Routing Table [\_SB_.PCI7.PCIA._PRT] +[ 2.975333] ACPI: PCI Interrupt Routing Table [\_SB_.PCI7.PCIB._PRT] +[ 3.079856] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15) +[ 3.080665] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15) +[ 3.081471] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 15) +[ 3.082264] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled. +[ 3.083062] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 9 10 11 12 15) +[ 3.083858] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled. +[ 3.084660] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 15) +[ 3.085454] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 9 10 11 12 15) +[ 3.085703] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 3.085708] vgaarb: loaded +[ 3.085783] SCSI subsystem initialized +[ 3.085964] libata version 3.00 loaded. +[ 3.086031] usbcore: registered new interface driver usbfs +[ 3.086042] usbcore: registered new interface driver hub +[ 3.086068] usbcore: registered new device driver usb +[ 3.086224] ACPI: WMI: Mapper loaded +[ 3.086225] PCI: Using ACPI for IRQ routing +[ 3.086394] NetLabel: Initializing +[ 3.086396] NetLabel: domain hash size = 128 +[ 3.086397] NetLabel: protocols = UNLABELED CIPSOv4 +[ 3.086407] NetLabel: unlabeled traffic allowed by default +[ 3.086445] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 3.086448] hpet0: 4 comparators, 64-bit 14.318180 MHz counter +[ 3.140191] Switching to clocksource tsc +[ 3.141777] AppArmor: AppArmor Filesystem Enabled +[ 3.141795] pnp: PnP ACPI init +[ 3.141810] ACPI: bus type pnp registered +[ 3.158887] pnp 00:01: io resource (0x800-0x85f) overlaps 0000:00:1f.0 BAR 13 (0x800-0x87f), disabling +[ 3.158890] pnp 00:01: io resource (0x860-0x8ff) overlaps 0000:00:1f.0 BAR 13 (0x800-0x87f), disabling +[ 3.200448] pnp: PnP ACPI: found 11 devices +[ 3.200449] ACPI: ACPI bus type pnp unregistered +[ 3.200457] system 00:01: ioport range 0xc00-0xc7f has been reserved +[ 3.205173] pci 0000:01:00.0: PCI bridge, secondary bus 0000:02 +[ 3.205174] pci 0000:01:00.0: IO window: disabled +[ 3.205178] pci 0000:01:00.0: MEM window: disabled +[ 3.205180] pci 0000:01:00.0: PREFETCH window: disabled +[ 3.205185] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01 +[ 3.205186] pci 0000:00:01.0: IO window: disabled +[ 3.205190] pci 0000:00:01.0: MEM window: 0xf0d00000-0xf0dfffff +[ 3.205192] pci 0000:00:01.0: PREFETCH window: disabled +[ 3.205196] pci 0000:04:00.0: PCI bridge, secondary bus 0000:05 +[ 3.205198] pci 0000:04:00.0: IO window: 0xd000-0xdfff +[ 3.205202] pci 0000:04:00.0: MEM window: 0xf4000000-0xf7efffff +[ 3.205205] pci 0000:04:00.0: PREFETCH window: 0x000000e8000000-0x000000ebffffff +[ 3.205209] pci 0000:04:02.0: PCI bridge, secondary bus 0000:06 +[ 3.205211] pci 0000:04:02.0: IO window: 0xc000-0xcfff +[ 3.205214] pci 0000:04:02.0: MEM window: 0xf0f00000-0xf3ffffff +[ 3.205217] pci 0000:04:02.0: PREFETCH window: 0x000000ec000000-0x000000efffffff +[ 3.205221] pci 0000:03:00.0: PCI bridge, secondary bus 0000:04 +[ 3.205223] pci 0000:03:00.0: IO window: 0xc000-0xdfff +[ 3.205226] pci 0000:03:00.0: MEM window: 0xf0f00000-0xf7efffff +[ 3.205229] pci 0000:03:00.0: PREFETCH window: 0x000000e8000000-0x000000efffffff +[ 3.205233] pci 0000:00:03.0: PCI bridge, secondary bus 0000:03 +[ 3.205235] pci 0000:00:03.0: IO window: 0xc000-0xdfff +[ 3.205238] pci 0000:00:03.0: MEM window: 0xf0f00000-0xf7efffff +[ 3.205241] pci 0000:00:03.0: PREFETCH window: 0x000000e8000000-0x000000efffffff +[ 3.205245] pci 0000:00:07.0: PCI bridge, secondary bus 0000:07 +[ 3.205246] pci 0000:00:07.0: IO window: disabled +[ 3.205249] pci 0000:00:07.0: MEM window: 0xf0e00000-0xf0efffff +[ 3.205251] pci 0000:00:07.0: PREFETCH window: disabled +[ 3.205255] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:08 +[ 3.205257] pci 0000:00:1c.0: IO window: disabled +[ 3.205260] pci 0000:00:1c.0: MEM window: disabled +[ 3.205262] pci 0000:00:1c.0: PREFETCH window: disabled +[ 3.205267] pci 0000:00:1c.5: PCI bridge, secondary bus 0000:09 +[ 3.205268] pci 0000:00:1c.5: IO window: disabled +[ 3.205272] pci 0000:00:1c.5: MEM window: 0xf0c00000-0xf0cfffff +[ 3.205274] pci 0000:00:1c.5: PREFETCH window: disabled +[ 3.205279] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0a +[ 3.205280] pci 0000:00:1e.0: IO window: disabled +[ 3.205283] pci 0000:00:1e.0: MEM window: 0xf0b00000-0xf0bfffff +[ 3.205286] pci 0000:00:1e.0: PREFETCH window: disabled +[ 3.205297] alloc irq_desc for 16 on node -1 +[ 3.205299] alloc kstat_irqs on node -1 +[ 3.205302] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205305] pci 0000:00:01.0: setting latency timer to 64 +[ 3.205313] alloc irq_desc for 28 on node -1 +[ 3.205314] alloc kstat_irqs on node -1 +[ 3.205318] pci 0000:01:00.0: PCI INT A -> GSI 28 (level, low) -> IRQ 28 +[ 3.205321] pci 0000:01:00.0: setting latency timer to 64 +[ 3.205326] pci 0000:00:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205329] pci 0000:00:03.0: setting latency timer to 64 +[ 3.205335] pci 0000:03:00.0: setting latency timer to 64 +[ 3.205341] pci 0000:04:00.0: setting latency timer to 64 +[ 3.205347] pci 0000:04:02.0: setting latency timer to 64 +[ 3.205353] pci 0000:00:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205355] pci 0000:00:07.0: setting latency timer to 64 +[ 3.205361] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205364] pci 0000:00:1c.0: setting latency timer to 64 +[ 3.205370] alloc irq_desc for 17 on node -1 +[ 3.205371] alloc kstat_irqs on node -1 +[ 3.205374] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 3.205377] pci 0000:00:1c.5: setting latency timer to 64 +[ 3.205382] pci 0000:00:1e.0: setting latency timer to 64 +[ 3.205387] pci 0000:20:03.0: PCI bridge, secondary bus 0000:22 +[ 3.205388] pci 0000:20:03.0: IO window: disabled +[ 3.205391] pci 0000:20:03.0: MEM window: 0xe7f00000-0xe7ffffff +[ 3.205394] pci 0000:20:03.0: PREFETCH window: disabled +[ 3.205398] pci 0000:20:07.0: PCI bridge, secondary bus 0000:23 +[ 3.205399] pci 0000:20:07.0: IO window: disabled +[ 3.205403] pci 0000:20:07.0: MEM window: 0xe7e00000-0xe7efffff +[ 3.205405] pci 0000:20:07.0: PREFETCH window: disabled +[ 3.205410] pci 0000:20:09.0: PCI bridge, secondary bus 0000:24 +[ 3.205411] pci 0000:20:09.0: IO window: disabled +[ 3.205414] pci 0000:20:09.0: MEM window: 0xe7d00000-0xe7dfffff +[ 3.205417] pci 0000:20:09.0: PREFETCH window: disabled +[ 3.205427] pci 0000:20:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205429] pci 0000:20:03.0: setting latency timer to 64 +[ 3.205436] pci 0000:20:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205439] pci 0000:20:07.0: setting latency timer to 64 +[ 3.205445] pci 0000:20:09.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.205448] pci 0000:20:09.0: setting latency timer to 64 +[ 3.205451] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 3.205452] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +[ 3.205454] pci_bus 0000:01: resource 1 mem: [0xf0d00000-0xf0dfffff] +[ 3.205456] pci_bus 0000:03: resource 0 io: [0xc000-0xdfff] +[ 3.205458] pci_bus 0000:03: resource 1 mem: [0xf0f00000-0xf7efffff] +[ 3.205459] pci_bus 0000:03: resource 2 pref mem [0xe8000000-0xefffffff] +[ 3.205461] pci_bus 0000:04: resource 0 io: [0xc000-0xdfff] +[ 3.205462] pci_bus 0000:04: resource 1 mem: [0xf0f00000-0xf7efffff] +[ 3.205464] pci_bus 0000:04: resource 2 pref mem [0xe8000000-0xefffffff] +[ 3.205465] pci_bus 0000:05: resource 0 io: [0xd000-0xdfff] +[ 3.205467] pci_bus 0000:05: resource 1 mem: [0xf4000000-0xf7efffff] +[ 3.205468] pci_bus 0000:05: resource 2 pref mem [0xe8000000-0xebffffff] +[ 3.205470] pci_bus 0000:06: resource 0 io: [0xc000-0xcfff] +[ 3.205471] pci_bus 0000:06: resource 1 mem: [0xf0f00000-0xf3ffffff] +[ 3.205473] pci_bus 0000:06: resource 2 pref mem [0xec000000-0xefffffff] +[ 3.205474] pci_bus 0000:07: resource 1 mem: [0xf0e00000-0xf0efffff] +[ 3.205476] pci_bus 0000:09: resource 1 mem: [0xf0c00000-0xf0cfffff] +[ 3.205478] pci_bus 0000:0a: resource 1 mem: [0xf0b00000-0xf0bfffff] +[ 3.205479] pci_bus 0000:0a: resource 3 io: [0x00-0xffff] +[ 3.205481] pci_bus 0000:0a: resource 4 mem: [0x000000-0xffffffffffffffff] +[ 3.205483] pci_bus 0000:20: resource 0 io: [0x00-0xffff] +[ 3.205484] pci_bus 0000:20: resource 1 mem: [0x000000-0xffffffffffffffff] +[ 3.205486] pci_bus 0000:22: resource 1 mem: [0xe7f00000-0xe7ffffff] +[ 3.205487] pci_bus 0000:23: resource 1 mem: [0xe7e00000-0xe7efffff] +[ 3.205489] pci_bus 0000:24: resource 1 mem: [0xe7d00000-0xe7dfffff] +[ 3.205514] NET: Registered protocol family 2 +[ 3.205836] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 3.207013] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 3.208409] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 3.208583] TCP: Hash tables configured (established 524288 bind 65536) +[ 3.208585] TCP reno registered +[ 3.208768] NET: Registered protocol family 1 +[ 3.208947] pci 0000:05:00.0: Boot video device +[ 3.208999] Simple Boot Flag at 0x7a set to 0x1 +[ 3.209384] Scanning for low memory corruption every 60 seconds +[ 3.209491] audit: initializing netlink socket (disabled) +[ 3.209498] type=2000 audit(1280430360.030:1): initialized +[ 3.218009] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 3.219154] VFS: Disk quotas dquot_6.5.2 +[ 3.219197] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 3.219680] fuse init (API version 7.13) +[ 3.219739] msgmni has been set to 32768 +[ 3.220065] alg: No test for stdrng (krng) +[ 3.220106] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 3.220108] io scheduler noop registered +[ 3.220110] io scheduler anticipatory registered +[ 3.220111] io scheduler deadline registered +[ 3.220140] io scheduler cfq registered (default) +[ 3.220264] alloc irq_desc for 72 on node -1 +[ 3.220265] alloc kstat_irqs on node -1 +[ 3.220273] pcieport 0000:00:01.0: irq 72 for MSI/MSI-X +[ 3.220278] pcieport 0000:00:01.0: setting latency timer to 64 +[ 3.220366] alloc irq_desc for 73 on node -1 +[ 3.220367] alloc kstat_irqs on node -1 +[ 3.220372] pcieport 0000:00:03.0: irq 73 for MSI/MSI-X +[ 3.220377] pcieport 0000:00:03.0: setting latency timer to 64 +[ 3.220459] alloc irq_desc for 74 on node -1 +[ 3.220460] alloc kstat_irqs on node -1 +[ 3.220464] pcieport 0000:00:07.0: irq 74 for MSI/MSI-X +[ 3.220469] pcieport 0000:00:07.0: setting latency timer to 64 +[ 3.220550] alloc irq_desc for 75 on node -1 +[ 3.220551] alloc kstat_irqs on node -1 +[ 3.220556] pcieport 0000:00:1c.0: irq 75 for MSI/MSI-X +[ 3.220562] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 3.220643] alloc irq_desc for 76 on node -1 +[ 3.220644] alloc kstat_irqs on node -1 +[ 3.220649] pcieport 0000:00:1c.5: irq 76 for MSI/MSI-X +[ 3.220655] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 3.220854] alloc irq_desc for 77 on node -1 +[ 3.220855] alloc kstat_irqs on node -1 +[ 3.220860] pcieport 0000:20:03.0: irq 77 for MSI/MSI-X +[ 3.220866] pcieport 0000:20:03.0: setting latency timer to 64 +[ 3.220963] alloc irq_desc for 78 on node -1 +[ 3.220964] alloc kstat_irqs on node -1 +[ 3.220969] pcieport 0000:20:07.0: irq 78 for MSI/MSI-X +[ 3.220975] pcieport 0000:20:07.0: setting latency timer to 64 +[ 3.221070] alloc irq_desc for 79 on node -1 +[ 3.221071] alloc kstat_irqs on node -1 +[ 3.221076] pcieport 0000:20:09.0: irq 79 for MSI/MSI-X +[ 3.221082] pcieport 0000:20:09.0: setting latency timer to 64 +[ 3.221145] aer 0000:00:01.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221150] aer 0000:00:03.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221153] aer 0000:00:07.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221158] aer 0000:20:03.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221161] aer 0000:20:07.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221165] aer 0000:20:09.0:pcie02: AER service couldn't init device: no _OSC support +[ 3.221170] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 3.221185] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 3.221252] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 3.221258] ACPI: Power Button [VBTN] +[ 3.221290] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 3.221291] ACPI: Power Button [PWRF] +[ 3.222647] Monitor-Mwait will be used to enter C-1 state +[ 3.222680] Monitor-Mwait will be used to enter C-2 state +[ 3.222720] Monitor-Mwait will be used to enter C-3 state +[ 3.222759] processor LNXCPU:00: registered as cooling_device0 +[ 3.223150] processor LNXCPU:01: registered as cooling_device1 +[ 3.223550] processor LNXCPU:02: registered as cooling_device2 +[ 3.223952] processor LNXCPU:03: registered as cooling_device3 +[ 3.224332] processor LNXCPU:04: registered as cooling_device4 +[ 3.224694] processor LNXCPU:05: registered as cooling_device5 +[ 3.225075] processor LNXCPU:06: registered as cooling_device6 +[ 3.225460] processor LNXCPU:07: registered as cooling_device7 +[ 3.309871] Linux agpgart interface v0.103 +[ 3.309892] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 3.309984] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 3.310223] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 3.311044] brd: module loaded +[ 3.311411] loop: module loaded +[ 3.311465] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +[ 3.311717] Fixed MDIO Bus: probed +[ 3.311737] PPP generic driver version 2.4.2 +[ 3.311757] tun: Universal TUN/TAP device driver, 1.6 +[ 3.311758] tun: (C) 1999-2004 Max Krasnyansky +[ 3.311804] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 3.311824] alloc irq_desc for 22 on node -1 +[ 3.311825] alloc kstat_irqs on node -1 +[ 3.311829] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22 +[ 3.311843] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 3.311845] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 3.311869] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 3.311892] ehci_hcd 0000:00:1a.7: debug port 1 +[ 3.315774] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported +[ 3.315786] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xf7ffa000 +[ 3.330559] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 3.330648] usb usb1: configuration #1 chosen from 1 choice +[ 3.330667] hub 1-0:1.0: USB hub found +[ 3.330672] hub 1-0:1.0: 6 ports detected +[ 3.330713] alloc irq_desc for 23 on node -1 +[ 3.330715] alloc kstat_irqs on node -1 +[ 3.330718] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 3.330727] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 3.330730] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 3.330753] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 3.330773] ehci_hcd 0000:00:1d.7: debug port 1 +[ 3.334647] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported +[ 3.334656] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xff980000 +[ 3.350501] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 3.350571] usb usb2: configuration #1 chosen from 1 choice +[ 3.350596] hub 2-0:1.0: USB hub found +[ 3.350600] hub 2-0:1.0: 6 ports detected +[ 3.350641] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 3.350650] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.350668] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.350672] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 3.350675] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 3.350694] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 3.350726] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001f20 +[ 3.350788] usb usb3: configuration #1 chosen from 1 choice +[ 3.350804] hub 3-0:1.0: USB hub found +[ 3.350808] hub 3-0:1.0: 2 ports detected +[ 3.350837] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 3.350842] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 3.350844] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 3.350866] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 3.350892] uhci_hcd 0000:00:1a.1: irq 17, io base 0x00001f00 +[ 3.350950] usb usb4: configuration #1 chosen from 1 choice +[ 3.350968] hub 4-0:1.0: USB hub found +[ 3.350972] hub 4-0:1.0: 2 ports detected +[ 3.351001] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 +[ 3.351005] uhci_hcd 0000:00:1a.2: setting latency timer to 64 +[ 3.351007] uhci_hcd 0000:00:1a.2: UHCI Host Controller +[ 3.351026] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 +[ 3.351046] uhci_hcd 0000:00:1a.2: irq 22, io base 0x00001c00 +[ 3.351102] usb usb5: configuration #1 chosen from 1 choice +[ 3.351117] hub 5-0:1.0: USB hub found +[ 3.351121] hub 5-0:1.0: 2 ports detected +[ 3.351152] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 3.351156] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 3.351159] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 3.351187] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 +[ 3.351207] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001f80 +[ 3.351266] usb usb6: configuration #1 chosen from 1 choice +[ 3.351282] hub 6-0:1.0: USB hub found +[ 3.351286] hub 6-0:1.0: 2 ports detected +[ 3.351317] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 3.351321] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 3.351324] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 3.351344] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 +[ 3.351364] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001f60 +[ 3.351420] usb usb7: configuration #1 chosen from 1 choice +[ 3.351435] hub 7-0:1.0: USB hub found +[ 3.351439] hub 7-0:1.0: 2 ports detected +[ 3.351472] alloc irq_desc for 18 on node -1 +[ 3.351474] alloc kstat_irqs on node -1 +[ 3.351477] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 3.351481] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 3.351483] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 3.351502] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 +[ 3.351533] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001f40 +[ 3.351589] usb usb8: configuration #1 chosen from 1 choice +[ 3.351604] hub 8-0:1.0: USB hub found +[ 3.351609] hub 8-0:1.0: 2 ports detected +[ 3.351667] PNP: PS/2 Controller [PNP0303:KBD] at 0x60,0x64 irq 1 +[ 3.351669] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp +[ 3.352344] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.352397] mice: PS/2 mouse device common for all mice +[ 3.352460] rtc_cmos 00:05: RTC can wake from S4 +[ 3.352485] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0 +[ 3.352508] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs +[ 3.352588] device-mapper: uevent: version 1.0.3 +[ 3.352673] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 3.352883] device-mapper: multipath: version 1.1.0 loaded +[ 3.352886] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 3.353476] cpuidle: using governor ladder +[ 3.353719] cpuidle: using governor menu +[ 3.354010] TCP cubic registered +[ 3.354100] NET: Registered protocol family 10 +[ 3.354609] lo: Disabled Privacy Extensions +[ 3.354805] NET: Registered protocol family 17 +[ 3.356807] PM: Resume from disk failed. +[ 3.356814] registered taskstats version 1 +[ 3.357394] Magic number: 2:714:92 +[ 3.357692] rtc_cmos 00:05: setting system clock to 2010-07-29 19:06:00 UTC (1280430360) +[ 3.357695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 3.357697] EDD information not available. +[ 3.357744] Freeing unused kernel memory: 880k freed +[ 3.357933] Write protecting the kernel read-only data: 7696k +[ 3.372587] udev: starting version 151 +[ 3.386323] tg3.c:v3.102 (September 1, 2009) +[ 3.386344] tg3 0000:09:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.386352] tg3 0000:09:00.0: setting latency timer to 64 +[ 3.388959] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 3.389061] ahci 0000:00:1f.2: version 3.0 +[ 3.389074] alloc irq_desc for 20 on node -1 +[ 3.389076] alloc kstat_irqs on node -1 +[ 3.389081] ahci 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20 +[ 3.389123] alloc irq_desc for 80 on node -1 +[ 3.389124] alloc kstat_irqs on node -1 +[ 3.389131] ahci 0000:00:1f.2: irq 80 for MSI/MSI-X +[ 3.389199] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x27 impl SATA mode +[ 3.389201] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pio ccc ems sxs +[ 3.389205] ahci 0000:00:1f.2: setting latency timer to 64 +[ 3.397531] ohci1394 0000:0a:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 3.424709] eth0: Tigon3 [partno(BCM95761) rev 5761100] (PCI Express) MAC address b8:ac:6f:3c:10:a2 +[ 3.424711] eth0: attached PHY is 5761 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 3.424713] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 3.424714] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 3.439919] scsi0 : ahci +[ 3.440186] scsi1 : ahci +[ 3.440284] scsi2 : ahci +[ 3.440358] scsi3 : ahci +[ 3.440405] scsi4 : ahci +[ 3.440475] scsi5 : ahci +[ 3.440530] ata1: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970100 irq 80 +[ 3.440533] ata2: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970180 irq 80 +[ 3.440535] ata3: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970200 irq 80 +[ 3.440536] ata4: DUMMY +[ 3.440537] ata5: DUMMY +[ 3.440539] ata6: SATA max UDMA/133 abar m2048@0xff970000 port 0xff970380 irq 80 +[ 3.450858] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[18] MMIO=[f0bfb000-f0bfb7ff] Max Packet=[2048] IR/IT contexts=[4/8] +[ 3.788869] ata2: SATA link down (SStatus 4 SControl 300) +[ 3.788892] ata6: SATA link down (SStatus 0 SControl 300) +[ 3.788912] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.788932] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.791841] ata3.00: ATA-6: ST3120026AS, 8.05, max UDMA/133 +[ 3.791845] ata3.00: 234375000 sectors, multi 0: LBA48 +[ 3.793012] ata1.00: ATAPI: HL-DT-ST DVD+/-RW GH50N, B103, max UDMA/100, ATAPI AN +[ 3.795031] ata3.00: configured for UDMA/133 +[ 3.797316] ata1.00: configured for UDMA/100 +[ 3.806012] scsi 0:0:0:0: CD-ROM HL-DT-ST DVD+-RW GH50N B103 PQ: 0 ANSI: 5 +[ 3.827018] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 3.827022] Uniform CD-ROM driver Revision: 3.20 +[ 3.827131] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 3.827187] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 3.827431] scsi 2:0:0:0: Direct-Access ATA ST3120026AS 8.05 PQ: 0 ANSI: 5 +[ 3.827523] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 3.827613] sd 2:0:0:0: [sda] 234375000 512-byte logical blocks: (120 GB/111 GiB) +[ 3.827660] sd 2:0:0:0: [sda] Write Protect is off +[ 3.827663] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 3.827686] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 3.827786] sda: sda1 sda2 < sda5 > +[ 3.867986] sd 2:0:0:0: [sda] Attached SCSI disk +[ 3.889194] usb 8-2: new low speed USB device using uhci_hcd and address 2 +[ 4.072874] usb 8-2: configuration #1 chosen from 1 choice +[ 4.092391] usbcore: registered new interface driver hiddev +[ 4.105877] input: Kingsis Peripherals Evoluent VerticalMouse 3 as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input4 +[ 4.105928] generic-usb 0003:1A7C:0068.0001: input,hidraw0: USB HID v1.10 Mouse [Kingsis Peripherals Evoluent VerticalMouse 3 ] on usb-0000:00:1d.2-2/input0 +[ 4.105946] usbcore: registered new interface driver usbhid +[ 4.105948] usbhid: v2.6:USB HID core driver +[ 4.137922] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 4.137924] EXT4-fs (sda1): write access will be enabled during recovery +[ 4.226915] EXT4-fs (sda1): recovery complete +[ 4.227563] EXT4-fs (sda1): mounted filesystem with ordered data mode +[ 4.770418] ieee1394: Host added: ID:BUS[0-00:1023] GUID[806facb8a2103c00] +[ 10.731418] udev: starting version 151 +[ 10.739720] lp: driver loaded but no devices found +[ 10.751290] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 10.758991] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2) +[ 10.759465] input: Dell WMI hotkeys as /devices/virtual/input/input5 +[ 10.770836] parport_pc 00:07: reported by Plug and Play ACPI +[ 10.770896] parport0: PC-style at 0x378 (0x778), irq 7, using FIFO [PCSPP,TRISTATE,COMPAT,ECP] +[ 10.775455] ppdev: user-space parallel port driver +[ 10.784136] Adding 4804600k swap on /dev/sda5. Priority:-1 extents:1 across:4804600k +[ 10.814640] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 10.814897] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 10.838403] type=1505 audit(1280430367.992:2): operation="profile_load" pid=641 name="/sbin/dhclient3" +[ 10.838768] type=1505 audit(1280430367.992:3): operation="profile_load" pid=641 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 10.838961] type=1505 audit(1280430367.992:4): operation="profile_load" pid=641 name="/usr/lib/connman/scripts/dhclient-script" +[ 10.851288] lp0: using parport0 (interrupt-driven). +[ 10.865631] [drm] Initialized drm 1.1.0 20060810 +[ 10.883820] alloc irq_desc for 24 on node -1 +[ 10.883823] alloc kstat_irqs on node -1 +[ 10.883829] nouveau 0000:05:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24 +[ 10.883834] nouveau 0000:05:00.0: setting latency timer to 64 +[ 10.885018] vga16fb: initializing +[ 10.885020] vga16fb: mapped to 0xffff8800000a0000 +[ 10.885054] fb0: VGA16 VGA frame buffer device +[ 10.886131] [drm] nouveau 0000:05:00.0: Detected an NV50 generation card (0x298c00a2) +[ 10.886781] [drm] nouveau 0000:05:00.0: Attempting to load BIOS image from PRAMIN +[ 10.951073] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 10.951076] IP: [] __mutex_lock_slowpath+0xbb/0x170 +[ 10.951083] PGD 609c90067 PUD 6097fd067 PMD 0 +[ 10.951085] Oops: 0002 [#1] SMP +[ 10.951086] last sysfs file: /sys/module/fbcon/initstate +[ 10.951088] CPU 1 +[ 10.951089] Modules linked in: fbcon(+) tileblit font bitblit softcursor vga16fb vgastate nouveau(+) ttm drm_kms_helper mce_xeon75xx(-) drm i2c_algo_bit snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_dummy snd_seq_oss snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq ppdev snd_timer snd_seq_device parport_pc snd dell_wmi dcdbas soundcore snd_page_alloc shpchp lp parport usbhid hid ohci1394 ieee1394 ahci tg3 +[ 10.951104] Pid: 405, comm: plymouthd Not tainted 2.6.32-24-generic #38-Ubuntu Precision WorkStation T7500 +[ 10.951105] RIP: 0010:[] [] __mutex_lock_slowpath+0xbb/0x170 +[ 10.951108] RSP: 0018:ffff8806082ddd98 EFLAGS: 00010246 +[ 10.951109] RAX: 0000000000000000 RBX: ffff880609d23c08 RCX: 0000000000000006 +[ 10.951110] RDX: ffff8806082ddda8 RSI: ffffffffa01b3d10 RDI: ffff880609d23c0c +[ 10.951111] RBP: ffff8806082dddf8 R08: 0000000000000195 R09: 000000000000e200 +[ 10.951113] R10: fffffffffffffff0 R11: 0000000000000246 R12: ffff8806089e44d0 +[ 10.951114] R13: ffff880609d23c0c R14: ffffffffffffffff R15: ffff880609d23c10 +[ 10.951116] FS: 00007f4dd6e70700(0000) GS:ffff88003e220000(0000) knlGS:0000000000000000 +[ 10.951117] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 10.951118] CR2: 0000000000000000 CR3: 00000006097d6000 CR4: 00000000000006e0 +[ 10.951119] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 10.951120] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 10.951122] Process plymouthd (pid: 405, threadinfo ffff8806082dc000, task ffff8806089e44d0) +[ 10.951123] Stack: +[ 10.951124] ffff880600000001 ffff8806082ddfd8 ffff880609d23c10 0000000000000000 +[ 10.951125] <0> 0000000000000000 ffffffffa01b3d10 ffff8806082dddd8 ffff880609d23c08 +[ 10.951127] <0> ffff8806018bbe00 ffff880609d23c08 ffff880609d23b10 ffff8806018bbea8 +[ 10.951129] Call Trace: +[ 10.951140] [] ? drm_gem_object_release_handle+0x0/0x40 [drm] +[ 10.951142] [] mutex_lock+0x2b/0x50 +[ 10.951150] [] drm_fb_release+0x2f/0xd0 [drm] +[ 10.951155] [] drm_release+0x448/0x510 [drm] +[ 10.951159] [] __fput+0xf5/0x210 +[ 10.951161] [] fput+0x25/0x30 +[ 10.951163] [] filp_close+0x5d/0x90 +[ 10.951165] [] sys_close+0xb7/0x120 +[ 10.951168] [] system_call_fastpath+0x16/0x1b +[ 10.951169] Code: 4c 8d 6b 04 4c 8d 7b 08 49 c7 c6 ff ff ff ff 4c 89 ef e8 29 15 00 00 48 8b 43 10 48 8d 55 b0 48 89 53 10 4c 89 7d b0 48 89 45 b8 <48> 89 10 4c 89 f0 4c 89 65 c0 87 03 83 f8 01 75 23 eb 2b 66 90 +[ 10.951182] RIP [] __mutex_lock_slowpath+0xbb/0x170 +[ 10.951184] RSP +[ 10.951184] CR2: 0000000000000000 +[ 10.951186] ---[ end trace 7fe1c65a8e5c3a7c ]--- +[ 10.967483] [drm] nouveau 0000:05:00.0: ... appears to be valid +[ 10.967485] [drm] nouveau 0000:05:00.0: BIT BIOS found +[ 10.967486] [drm] nouveau 0000:05:00.0: Bios version 62.98.6f.00 +[ 10.967488] [drm] nouveau 0000:05:00.0: TMDS table revision 2.0 not currently supported +[ 10.967489] [drm] nouveau 0000:05:00.0: Found Display Configuration Block version 4.0 +[ 10.967491] [drm] nouveau 0000:05:00.0: DCB connector table: VHER 0x40 5 16 4 +[ 10.967493] [drm] nouveau 0000:05:00.0: 0: 0x00005046: type 0x46 idx 0 tag 0x07 +[ 10.967494] [drm] nouveau 0000:05:00.0: 1: 0x00006146: type 0x46 idx 1 tag 0x08 +[ 10.967496] [drm] nouveau 0000:05:00.0: Raw DCB entry 0: 02000386 0f220010 +[ 10.967497] [drm] nouveau 0000:05:00.0: Raw DCB entry 1: 02000302 00020010 +[ 10.967498] [drm] nouveau 0000:05:00.0: Raw DCB entry 2: 040113a6 0f220010 +[ 10.967499] [drm] nouveau 0000:05:00.0: Raw DCB entry 3: 04011312 00020010 +[ 10.967506] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table 0 at offset 0xDAF1 +[ 11.061382] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table 1 at offset 0xDEF6 +[ 11.101387] Console: switching to colour frame buffer device 80x30 +[ 11.121115] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table 2 at offset 0xE6C8 +[ 11.128326] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table 3 at offset 0xE796 +[ 11.151129] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table 4 at offset 0xEA4C +[ 11.162669] [drm] nouveau 0000:05:00.0: Parsing VBIOS init table at offset 0xEAB1 +[ 11.200939] [drm] nouveau 0000:05:00.0: 0xEAB1: Condition still not met after 20ms, skipping following opcodes +[ 11.200947] [drm] nouveau 0000:05:00.0: 0xCBF2: parsing output script 0 +[ 11.200948] [drm] nouveau 0000:05:00.0: 0xC926: parsing output script 0 +[ 11.200952] [drm] nouveau 0000:05:00.0: 0xCBF2: parsing output script 0 +[ 11.200953] [drm] nouveau 0000:05:00.0: 0xC926: parsing output script 0 +[ 11.274982] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6 +[ 11.310048] [TTM] Zone kernel: Available graphics memory: 12368770 kiB. +[ 11.310050] [TTM] Zone dma32: Available graphics memory: 2097152 kiB. +[ 11.310060] [drm] nouveau 0000:05:00.0: 256 MiB VRAM +[ 11.384860] [drm] nouveau 0000:05:00.0: 512 MiB GART (aperture) +[ 11.401737] [drm] nouveau 0000:05:00.0: Allocating FIFO number 1 +[ 11.431574] [drm] nouveau 0000:05:00.0: nouveau_channel_alloc: initialised FIFO 1 +[ 11.460080] [drm] nouveau 0000:05:00.0: Detected a DP output +[ 11.473291] [drm] nouveau 0000:05:00.0: Detected a TMDS output +[ 11.486095] [drm] nouveau 0000:05:00.0: Detected a DP output +[ 11.486097] [drm] nouveau 0000:05:00.0: Detected a TMDS output +[ 11.486099] [drm] nouveau 0000:05:00.0: Detected a DisplayPort connector +[ 11.486149] [drm] nouveau 0000:05:00.0: Detected a DisplayPort connector +[ 11.583969] type=1505 audit(1280430368.742:5): operation="profile_load" pid=910 name="/usr/share/gdm/guest-session/Xsession" +[ 11.616522] [drm] nouveau 0000:05:00.0: allocated 1920x1200 fb: 0x40250000, bo ffff880608a9ce00 +[ 11.617730] type=1505 audit(1280430368.772:6): operation="profile_replace" pid=916 name="/sbin/dhclient3" +[ 11.618606] type=1505 audit(1280430368.772:7): operation="profile_replace" pid=916 name="/usr/lib/NetworkManager/nm-dhcp-client.action" +[ 11.618813] type=1505 audit(1280430368.772:8): operation="profile_replace" pid=916 name="/usr/lib/connman/scripts/dhclient-script" +[ 11.620646] type=1505 audit(1280430368.782:9): operation="profile_load" pid=922 name="/usr/bin/evince" +[ 11.625305] type=1505 audit(1280430368.782:10): operation="profile_load" pid=922 name="/usr/bin/evince-previewer" +[ 11.628226] type=1505 audit(1280430368.782:11): operation="profile_load" pid=922 name="/usr/bin/evince-thumbnailer" +[ 11.759930] fb1: nouveaufb frame buffer device +[ 11.759931] registered panic notifier +[ 11.759937] [drm] Initialized nouveau 0.0.15 20090420 for 0000:05:00.0 on minor 0 +[ 11.759975] alloc irq_desc for 35 on node -1 +[ 11.759976] alloc kstat_irqs on node -1 +[ 11.759982] nouveau 0000:06:00.0: PCI INT A -> GSI 35 (level, low) -> IRQ 35 +[ 11.759986] nouveau 0000:06:00.0: setting latency timer to 64 +[ 11.761072] alloc irq_desc for 81 on node -1 +[ 11.761073] alloc kstat_irqs on node -1 +[ 11.761088] tg3 0000:09:00.0: irq 81 for MSI/MSI-X +[ 11.789340] [drm] nouveau 0000:06:00.0: Detected an NV50 generation card (0x298c00a2) +[ 11.789981] [drm] nouveau 0000:06:00.0: Attempting to load BIOS image from PRAMIN +[ 11.789988] [drm] nouveau 0000:06:00.0: ... BIOS signature not found +[ 11.789989] [drm] nouveau 0000:06:00.0: Attempting to load BIOS image from PROM +[ 11.840851] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 11.977256] [drm] nouveau 0000:06:00.0: ... appears to be valid +[ 11.977259] [drm] nouveau 0000:06:00.0: BIT BIOS found +[ 11.977260] [drm] nouveau 0000:06:00.0: Bios version 62.98.6f.00 +[ 11.977263] [drm] nouveau 0000:06:00.0: TMDS table revision 2.0 not currently supported +[ 11.977264] [drm] nouveau 0000:06:00.0: Found Display Configuration Block version 4.0 +[ 11.977266] [drm] nouveau 0000:06:00.0: DCB connector table: VHER 0x40 5 16 4 +[ 11.977268] [drm] nouveau 0000:06:00.0: 0: 0x00005046: type 0x46 idx 0 tag 0x07 +[ 11.977270] [drm] nouveau 0000:06:00.0: 1: 0x00006146: type 0x46 idx 1 tag 0x08 +[ 11.977271] [drm] nouveau 0000:06:00.0: Raw DCB entry 0: 02000386 0f220010 +[ 11.977273] [drm] nouveau 0000:06:00.0: Raw DCB entry 1: 02000302 00020010 +[ 11.977274] [drm] nouveau 0000:06:00.0: Raw DCB entry 2: 040113a6 0f220010 +[ 11.977275] [drm] nouveau 0000:06:00.0: Raw DCB entry 3: 04011312 00020010 +[ 11.977284] [drm] nouveau 0000:06:00.0: Adaptor not initialised +[ 11.977285] [drm] nouveau 0000:06:00.0: Running VBIOS init tables +[ 11.977291] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table 0 at offset 0xDAF1 +[ 12.068899] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table 1 at offset 0xDEF6 +[ 12.128622] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table 2 at offset 0xE6C8 +[ 12.128658] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table 3 at offset 0xE796 +[ 12.148673] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table 4 at offset 0xEA4C +[ 12.148677] [drm] nouveau 0000:06:00.0: Parsing VBIOS init table at offset 0xEAB1 +[ 12.178498] [drm] nouveau 0000:06:00.0: 0xCBF2: parsing output script 0 +[ 12.178501] [drm] nouveau 0000:06:00.0: 0xC926: parsing output script 0 +[ 12.178525] [drm] nouveau 0000:06:00.0: 0xCBF2: parsing output script 0 +[ 12.178527] [drm] nouveau 0000:06:00.0: 0xC926: parsing output script 0 +[ 12.286040] [drm] nouveau 0000:06:00.0: 256 MiB VRAM +[ 12.477142] [drm] nouveau 0000:06:00.0: 512 MiB GART (aperture) +[ 12.705271] [drm] nouveau 0000:06:00.0: Allocating FIFO number 1 +[ 12.756181] [drm] nouveau 0000:06:00.0: nouveau_channel_alloc: initialised FIFO 1 +[ 12.792472] [drm] nouveau 0000:06:00.0: Detected a DP output +[ 12.792474] [drm] nouveau 0000:06:00.0: Detected a TMDS output +[ 12.792476] [drm] nouveau 0000:06:00.0: Detected a DP output +[ 12.792478] [drm] nouveau 0000:06:00.0: Detected a TMDS output +[ 12.792485] [drm] nouveau 0000:06:00.0: Detected a DisplayPort connector +[ 12.792539] [drm] nouveau 0000:06:00.0: Detected a DisplayPort connector +[ 12.804668] No connectors reported connected with modes +[ 12.804673] [drm] Initialized nouveau 0.0.15 20090420 for 0000:06:00.0 on minor 1 +[ 13.131417] CPU0 attaching NULL sched-domain. +[ 13.131422] CPU1 attaching NULL sched-domain. +[ 13.131424] CPU2 attaching NULL sched-domain. +[ 13.131425] CPU3 attaching NULL sched-domain. +[ 13.131427] CPU4 attaching NULL sched-domain. +[ 13.131428] CPU5 attaching NULL sched-domain. +[ 13.131430] CPU6 attaching NULL sched-domain. +[ 13.131431] CPU7 attaching NULL sched-domain. +[ 13.275480] CPU0 attaching sched-domain: +[ 13.275483] domain 0: span 0-3 level MC +[ 13.275484] groups: 0 1 2 3 +[ 13.275487] domain 1: span 0-7 level CPU +[ 13.275489] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.275494] CPU1 attaching sched-domain: +[ 13.275495] domain 0: span 0-3 level MC +[ 13.275496] groups: 1 2 3 0 +[ 13.275499] domain 1: span 0-7 level CPU +[ 13.275500] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.275504] CPU2 attaching sched-domain: +[ 13.275505] domain 0: span 0-3 level MC +[ 13.275506] groups: 2 3 0 1 +[ 13.275509] domain 1: span 0-7 level CPU +[ 13.275510] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.275514] CPU3 attaching sched-domain: +[ 13.275515] domain 0: span 0-3 level MC +[ 13.275516] groups: 3 0 1 2 +[ 13.275519] domain 1: span 0-7 level CPU +[ 13.275521] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.275524] CPU4 attaching sched-domain: +[ 13.275525] domain 0: span 4-7 level MC +[ 13.275527] groups: 4 5 6 7 +[ 13.275529] domain 1: span 0-7 level CPU +[ 13.275531] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.275535] CPU5 attaching sched-domain: +[ 13.275536] domain 0: span 4-7 level MC +[ 13.275537] groups: 5 6 7 4 +[ 13.275540] domain 1: span 0-7 level CPU +[ 13.275541] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.275545] CPU6 attaching sched-domain: +[ 13.275546] domain 0: span 4-7 level MC +[ 13.275548] groups: 6 7 4 5 +[ 13.275551] domain 1: span 0-7 level CPU +[ 13.275552] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.275556] CPU7 attaching sched-domain: +[ 13.275557] domain 0: span 4-7 level MC +[ 13.275558] groups: 7 4 5 6 +[ 13.275561] domain 1: span 0-7 level CPU +[ 13.275562] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.276115] CPU0 attaching NULL sched-domain. +[ 13.276117] CPU1 attaching NULL sched-domain. +[ 13.276119] CPU2 attaching NULL sched-domain. +[ 13.276120] CPU3 attaching NULL sched-domain. +[ 13.276121] CPU4 attaching NULL sched-domain. +[ 13.276123] CPU5 attaching NULL sched-domain. +[ 13.276124] CPU6 attaching NULL sched-domain. +[ 13.276126] CPU7 attaching NULL sched-domain. +[ 13.421174] tg3: eth0: Link is up at 100 Mbps, full duplex. +[ 13.421175] tg3: eth0: Flow control is on for TX and on for RX. +[ 13.422210] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 13.454991] CPU0 attaching sched-domain: +[ 13.471733] domain 0: span 0-3 level MC +[ 13.471735] groups: 0 1 2 3 +[ 13.471737] domain 1: span 0-7 level CPU +[ 13.471738] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.471742] CPU1 attaching sched-domain: +[ 13.471743] domain 0: span 0-3 level MC +[ 13.471744] groups: 1 2 3 0 +[ 13.471746] domain 1: span 0-7 level CPU +[ 13.471747] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.471750] CPU2 attaching sched-domain: +[ 13.471751] domain 0: span 0-3 level MC +[ 13.471752] groups: 2 3 0 1 +[ 13.471754] domain 1: span 0-7 level CPU +[ 13.471755] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.471758] CPU3 attaching sched-domain: +[ 13.471759] domain 0: span 0-3 level MC +[ 13.471760] groups: 3 0 1 2 +[ 13.471762] domain 1: span 0-7 level CPU +[ 13.471763] groups: 0-3 (cpu_power = 4096) 4-7 (cpu_power = 4096) +[ 13.471766] CPU4 attaching sched-domain: +[ 13.471767] domain 0: span 4-7 level MC +[ 13.471768] groups: 4 5 6 7 +[ 13.471770] domain 1: span 0-7 level CPU +[ 13.471771] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.471780] CPU5 attaching sched-domain: +[ 13.471783] domain 0: span 4-7 level MC +[ 13.471787] groups: 5 6 7 4 +[ 13.471794] domain 1: span 0-7 level CPU +[ 13.471798] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.471807] CPU6 attaching sched-domain: +[ 13.471810] domain 0: span 4-7 level MC +[ 13.471814] groups: 6 7 4 5 +[ 13.471821] domain 1: span 0-7 level CPU +[ 13.471824] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 13.471834] CPU7 attaching sched-domain: +[ 13.471837] domain 0: span 4-7 level MC +[ 13.471840] groups: 7 4 5 6 +[ 13.471847] domain 1: span 0-7 level CPU +[ 13.471852] groups: 4-7 (cpu_power = 4096) 0-3 (cpu_power = 4096) +[ 23.506771] eth0: no IPv6 routers present + +Bug: 617639 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-15-generic (buildd@vernadsky) (gcc version 4.4.5 20100728 (prerelease) (Ubuntu/Linaro 4.4.4-8ubuntu1) ) #21-Ubuntu SMP Wed Aug 11 16:41:40 UTC 2010 (Ubuntu 2.6.35-15.21-generic 2.6.35.1) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000006fb8f000 (usable) +[ 0.000000] BIOS-e820: 000000006fb8f000 - 000000006fc3c000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000006fc3c000 - 000000006fd70000 (usable) +[ 0.000000] BIOS-e820: 000000006fd70000 - 000000006fdbf000 (reserved) +[ 0.000000] BIOS-e820: 000000006fdbf000 - 000000006fe58000 (usable) +[ 0.000000] BIOS-e820: 000000006fe58000 - 000000006febf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000006febf000 - 000000006feed000 (usable) +[ 0.000000] BIOS-e820: 000000006feed000 - 000000006feff000 (ACPI data) +[ 0.000000] BIOS-e820: 000000006feff000 - 000000006ff00000 (usable) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x6ff00 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-through +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 00FFF00000 mask FFFFF00000 write-protect +[ 0.000000] 1 base 0000000000 mask FFC0000000 write-back +[ 0.000000] 2 base 0040000000 mask FFE0000000 write-back +[ 0.000000] 3 base 0060000000 mask FFF0000000 write-back +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000006fb8f000 (usable) +[ 0.000000] modified: 000000006fb8f000 - 000000006fc3c000 (ACPI NVS) +[ 0.000000] modified: 000000006fc3c000 - 000000006fd70000 (usable) +[ 0.000000] modified: 000000006fd70000 - 000000006fdbf000 (reserved) +[ 0.000000] modified: 000000006fdbf000 - 000000006fe58000 (usable) +[ 0.000000] modified: 000000006fe58000 - 000000006febf000 (ACPI NVS) +[ 0.000000] modified: 000000006febf000 - 000000006feed000 (usable) +[ 0.000000] modified: 000000006feed000 - 000000006feff000 (ACPI data) +[ 0.000000] modified: 000000006feff000 - 000000006ff00000 (usable) +[ 0.000000] modified: 00000000e0000000 - 00000000e4000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 375ae000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 009b4000 - 013f56a1 +[ 0.000000] Move RAMDISK from 00000000375ae000 - 0000000037fef6a0 to 009b4000 - 013f56a0 +[ 0.000000] ACPI: RSDP 000fe020 00024 (v02 HP ) +[ 0.000000] ACPI: XSDT 6fefe120 0005C (v01 HPQOEM SLIC-MPC 00000003 01000013) +[ 0.000000] ACPI: FACP 6fefd000 000F4 (v04 HP 30F1 00000003 MSFT 0100000D) +[ 0.000000] ACPI: DSDT 6fef0000 092A1 (v01 HP 30F1 F0000000 INTL 20051117) +[ 0.000000] ACPI: FACS 6fe61000 00040 +[ 0.000000] ACPI: HPET 6fefc000 00038 (v01 HP 30F1 00000001 MSFT 000F4240) +[ 0.000000] ACPI: APIC 6fefb000 00084 (v02 HP 30F1 00000001 TFSM 000F4240) +[ 0.000000] ACPI: MCFG 6fefa000 0003C (v01 HP 30F1 00000001 TFSM 000F4240) +[ 0.000000] ACPI: BOOT 6feef000 00028 (v01 HP 30F1 00000001 ? 00000001) +[ 0.000000] ACPI: SLIC 6feee000 00176 (v01 HPQOEM SLIC-MPC 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 6feed000 00386 (v01 AMD PowerNow 00000001 AMD 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 903MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0006ff00 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[7] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0006fb8f +[ 0.000000] 0: 0x0006fc3c -> 0x0006fd70 +[ 0.000000] 0: 0x0006fdbf -> 0x0006fe58 +[ 0.000000] 0: 0x0006febf -> 0x0006feed +[ 0.000000] 0: 0x0006feff -> 0x0006ff00 +[ 0.000000] On node 0 totalpages: 458011 +[ 0.000000] free_area_init_node: node 0, pgdat c080f680, node_mem_map c13f7020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3952 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 1807 pages used for memmap +[ 0.000000] HighMem zone: 228990 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x1002a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 6ff00000 (gap: 6ff00000:70100000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2400000 s36352 r0 d20992 u1048576 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u1048576 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 454428 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-15-generic root=UUID=f2bd5e8c-6ddb-4763-978e-dba3a5df88cd ro quiet splash nomodeset +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 9169900 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (54 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009afb1c] TEXT DATA BSS +[ 0.000000] #3 [000009fc00 - 0000100000] BIOS reserved +[ 0.000000] #4 [00009b0000 - 00009b318c] BRK +[ 0.000000] #5 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #6 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #7 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #8 [00009b4000 - 00013f6000] NEW RAMDISK +[ 0.000000] #9 [00013f6000 - 00013f7000] BOOTMEM +[ 0.000000] #10 [00013f7000 - 00021f7000] BOOTMEM +[ 0.000000] #11 [00021f7000 - 00021f7004] BOOTMEM +[ 0.000000] #12 [00021f7040 - 00021f7100] BOOTMEM +[ 0.000000] #13 [00021f7100 - 00021f7154] BOOTMEM +[ 0.000000] #14 [00021f7180 - 00021fa180] BOOTMEM +[ 0.000000] #15 [00021fa180 - 00021fa1d8] BOOTMEM +[ 0.000000] #16 [00021fa200 - 00021fd200] BOOTMEM +[ 0.000000] #17 [00021fd200 - 00021fd225] BOOTMEM +[ 0.000000] #18 [00021fd240 - 00021fd267] BOOTMEM +[ 0.000000] #19 [00021fd280 - 00021fd494] BOOTMEM +[ 0.000000] #20 [00021fd4c0 - 00021fd500] BOOTMEM +[ 0.000000] #21 [00021fd500 - 00021fd540] BOOTMEM +[ 0.000000] #22 [00021fd540 - 00021fd580] BOOTMEM +[ 0.000000] #23 [00021fd580 - 00021fd5c0] BOOTMEM +[ 0.000000] #24 [00021fd5c0 - 00021fd600] BOOTMEM +[ 0.000000] #25 [00021fd600 - 00021fd640] BOOTMEM +[ 0.000000] #26 [00021fd640 - 00021fd680] BOOTMEM +[ 0.000000] #27 [00021fd680 - 00021fd6c0] BOOTMEM +[ 0.000000] #28 [00021fd6c0 - 00021fd700] BOOTMEM +[ 0.000000] #29 [00021fd700 - 00021fd740] BOOTMEM +[ 0.000000] #30 [00021fd740 - 00021fd780] BOOTMEM +[ 0.000000] #31 [00021fd780 - 00021fd7c0] BOOTMEM +[ 0.000000] #32 [00021fd7c0 - 00021fd800] BOOTMEM +[ 0.000000] #33 [00021fd800 - 00021fd840] BOOTMEM +[ 0.000000] #34 [00021fd840 - 00021fd880] BOOTMEM +[ 0.000000] #35 [00021fd880 - 00021fd8c0] BOOTMEM +[ 0.000000] #36 [00021fd8c0 - 00021fd8d0] BOOTMEM +[ 0.000000] #37 [00021fd900 - 00021fd910] BOOTMEM +[ 0.000000] #38 [00021fd940 - 00021fd9b4] BOOTMEM +[ 0.000000] #39 [00021fd9c0 - 00021fda34] BOOTMEM +[ 0.000000] #40 [0002400000 - 000240e000] BOOTMEM +[ 0.000000] #41 [0002500000 - 000250e000] BOOTMEM +[ 0.000000] #42 [0002600000 - 000260e000] BOOTMEM +[ 0.000000] #43 [0002700000 - 000270e000] BOOTMEM +[ 0.000000] #44 [00021ffa40 - 00021ffa44] BOOTMEM +[ 0.000000] #45 [00021ffa80 - 00021ffa84] BOOTMEM +[ 0.000000] #46 [00021ffac0 - 00021ffad0] BOOTMEM +[ 0.000000] #47 [00021ffb00 - 00021ffb10] BOOTMEM +[ 0.000000] #48 [00021ffb40 - 00021ffbe0] BOOTMEM +[ 0.000000] #49 [00021ffc00 - 00021ffc48] BOOTMEM +[ 0.000000] #50 [00021ffc80 - 0002203c80] BOOTMEM +[ 0.000000] #51 [0002203c80 - 0002283c80] BOOTMEM +[ 0.000000] #52 [0002283c80 - 00022c3c80] BOOTMEM +[ 0.000000] #53 [000270e000 - 0002fccbec] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0006ff00) +[ 0.000000] Memory: 1788264k/1833984k available (4930k kernel code, 43780k reserved, 2397k data, 684k init, 923188k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0828000 - 0xc08d3000 ( 684 kB) +[ 0.000000] .data : 0xc05d0aea - 0xc0827fa8 (2397 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d0aea (4930 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:712 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2099.713 MHz processor. +[ 0.008012] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.42 BogoMIPS (lpj=8398852) +[ 0.008026] pid_max: default: 32768 minimum: 301 +[ 0.008096] Security Framework initialized +[ 0.008139] AppArmor: AppArmor initialized +[ 0.008144] Yama: becoming mindful. +[ 0.008276] Mount-cache hash table entries: 512 +[ 0.008563] Initializing cgroup subsys ns +[ 0.008572] Initializing cgroup subsys cpuacct +[ 0.008584] Initializing cgroup subsys memory +[ 0.008605] Initializing cgroup subsys devices +[ 0.008612] Initializing cgroup subsys freezer +[ 0.008619] Initializing cgroup subsys net_cls +[ 0.008672] CPU: Physical Processor ID: 0 +[ 0.008677] CPU: Processor Core ID: 0 +[ 0.008685] mce: CPU supports 5 MCE banks +[ 0.008713] Performance Events: AMD PMU driver. +[ 0.008731] ... version: 0 +[ 0.008736] ... bit width: 48 +[ 0.008742] ... generic registers: 4 +[ 0.008748] ... value mask: 0000ffffffffffff +[ 0.008754] ... max period: 00007fffffffffff +[ 0.008760] ... fixed-purpose events: 0 +[ 0.008766] ... event mask: 000000000000000f +[ 0.015371] ACPI: Core revision 20100428 +[ 0.036049] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.036069] ftrace: allocating 21729 entries in 43 pages +[ 0.040142] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.040565] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.084295] CPU0: AMD Turion(tm) X2 Dual-Core Mobile RM-72 stepping 01 +[ 0.088000] Booting Node 0, Processors #1 +[ 0.012000] Initializing CPU#1 +[ 0.176000] TSC synchronization [CPU#0 -> CPU#1]: +[ 0.176000] Measured 206988779 cycles TSC warp between CPUs, turning off TSC clock. +[ 0.176000] Marking TSC unstable due to check_tsc_sync_source failed +[ 0.176018] Brought up 2 CPUs +[ 0.176024] Total of 2 processors activated (8389.37 BogoMIPS). +[ 0.176359] devtmpfs: initialized +[ 0.176992] regulator: core version 0.5 +[ 0.177041] Time: 22:10:41 Date: 08/13/10 +[ 0.177095] NET: Registered protocol family 16 +[ 0.177134] Trying to unpack rootfs image as initramfs... +[ 0.177261] EISA bus registered +[ 0.177306] TOM: 0000000080000000 aka 2048M +[ 0.177310] Fam 10h mmconf [e0000000, e0ffffff] +[ 0.177328] ACPI: bus type pci registered +[ 0.177445] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000) +[ 0.177449] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820 +[ 0.177451] PCI: Using MMCONFIG for extended config space +[ 0.177453] PCI: Using configuration type 1 for base access +[ 0.177478] mtrr: your CPUs had inconsistent fixed MTRR settings +[ 0.177481] mtrr: probably your BIOS does not setup all CPUs. +[ 0.177482] mtrr: corrected configuration. +[ 0.184752] bio: create slab at 0 +[ 0.185656] ACPI: EC: Look up EC in DSDT +[ 0.187178] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.191479] ACPI: BIOS _OSI(Linux) query ignored +[ 0.192085] ACPI: Interpreter enabled +[ 0.192088] ACPI: (supports S0 S3 S4 S5) +[ 0.192117] ACPI: Using IOAPIC for interrupt routing +[ 0.201427] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62 +[ 0.201712] ACPI: No dock devices found. +[ 0.201716] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.202863] \_SB_.PCI0:_OSC request failed +[ 0.202865] _OSC request data:1 8 1f +[ 0.202871] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.205384] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.205387] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.205391] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.205394] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] +[ 0.205397] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] +[ 0.205401] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] +[ 0.205405] pci_root PNP0A08:00: address space collision: host bridge window [mem 0x000cc000-0x000cffff] conflicts with Video ROM [mem 0x000c0000-0x000ce9ff] +[ 0.205409] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] +[ 0.205412] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.205415] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.205418] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.205421] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] +[ 0.205424] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] +[ 0.205428] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] +[ 0.205431] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] +[ 0.205434] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff] +[ 0.205437] pci_root PNP0A08:00: host bridge window [mem 0xe4000000-0xffffffff] +[ 0.205601] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold +[ 0.205606] pci 0000:00:04.0: PME# disabled +[ 0.205659] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold +[ 0.205663] pci 0000:00:05.0: PME# disabled +[ 0.205716] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold +[ 0.205720] pci 0000:00:06.0: PME# disabled +[ 0.205807] pci 0000:00:11.0: reg 10: [io 0x6038-0x603f] +[ 0.205816] pci 0000:00:11.0: reg 14: [io 0x604c-0x604f] +[ 0.205824] pci 0000:00:11.0: reg 18: [io 0x6030-0x6037] +[ 0.205832] pci 0000:00:11.0: reg 1c: [io 0x6048-0x604b] +[ 0.205840] pci 0000:00:11.0: reg 20: [io 0x6010-0x601f] +[ 0.205849] pci 0000:00:11.0: reg 24: [mem 0x92409000-0x924093ff] +[ 0.205911] pci 0000:00:12.0: reg 10: [mem 0x92408000-0x92408fff] +[ 0.205975] pci 0000:00:12.1: reg 10: [mem 0x92407000-0x92407fff] +[ 0.206053] pci 0000:00:12.2: reg 10: [mem 0x92409500-0x924095ff] +[ 0.206115] pci 0000:00:12.2: supports D1 D2 +[ 0.206118] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot +[ 0.206123] pci 0000:00:12.2: PME# disabled +[ 0.206160] pci 0000:00:13.0: reg 10: [mem 0x92406000-0x92406fff] +[ 0.206224] pci 0000:00:13.1: reg 10: [mem 0x92405000-0x92405fff] +[ 0.206302] pci 0000:00:13.2: reg 10: [mem 0x92409400-0x924094ff] +[ 0.206364] pci 0000:00:13.2: supports D1 D2 +[ 0.206367] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot +[ 0.206372] pci 0000:00:13.2: PME# disabled +[ 0.206501] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007] +[ 0.206509] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003] +[ 0.206517] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007] +[ 0.206525] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003] +[ 0.206534] pci 0000:00:14.1: reg 20: [io 0x6000-0x600f] +[ 0.206610] pci 0000:00:14.2: reg 10: [mem 0x92400000-0x92403fff 64bit] +[ 0.206661] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.206666] pci 0000:00:14.2: PME# disabled +[ 0.206789] pci 0000:00:14.5: reg 10: [mem 0x92404000-0x92404fff] +[ 0.207067] pci 0000:01:05.0: reg 10: [mem 0x80000000-0x8fffffff pref] +[ 0.207072] pci 0000:01:05.0: reg 14: [io 0x5000-0x50ff] +[ 0.207078] pci 0000:01:05.0: reg 18: [mem 0x92300000-0x9230ffff] +[ 0.207089] pci 0000:01:05.0: reg 24: [mem 0x92200000-0x922fffff] +[ 0.207106] pci 0000:01:05.0: supports D1 D2 +[ 0.207172] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.207178] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 0.207182] pci 0000:00:01.0: bridge window [mem 0x92200000-0x923fffff] +[ 0.207188] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref] +[ 0.207225] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.207231] pci 0000:00:04.0: bridge window [io 0x3000-0x4fff] +[ 0.207235] pci 0000:00:04.0: bridge window [mem 0x91200000-0x921fffff] +[ 0.207240] pci 0000:00:04.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.207349] pci 0000:08:00.0: reg 10: [mem 0x91100000-0x91103fff 64bit] +[ 0.207413] pci 0000:08:00.0: supports D1 D2 +[ 0.212052] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.212058] pci 0000:00:05.0: bridge window [io 0xfffff000-0x0000] (disabled) +[ 0.212062] pci 0000:00:05.0: bridge window [mem 0x91100000-0x911fffff] +[ 0.212068] pci 0000:00:05.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.212130] pci 0000:09:00.0: reg 10: [io 0x2000-0x20ff] +[ 0.212149] pci 0000:09:00.0: reg 18: [mem 0x91010000-0x91010fff 64bit pref] +[ 0.212163] pci 0000:09:00.0: reg 20: [mem 0x91000000-0x9100ffff 64bit pref] +[ 0.212171] pci 0000:09:00.0: reg 30: [mem 0xffff0000-0xffffffff pref] +[ 0.212207] pci 0000:09:00.0: supports D1 D2 +[ 0.212209] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.212214] pci 0000:09:00.0: PME# disabled +[ 0.220013] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.220018] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff] +[ 0.220023] pci 0000:00:06.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.220028] pci 0000:00:06.0: bridge window [mem 0x91000000-0x910fffff 64bit pref] +[ 0.220102] pci 0000:00:14.4: PCI bridge to [bus 80-8f] (subtractive decode) +[ 0.220108] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.220113] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.220119] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.220122] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.220125] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.220128] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.220132] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode) +[ 0.220135] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode) +[ 0.220138] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode) +[ 0.220141] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) +[ 0.220144] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.220147] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.220150] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.220153] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode) +[ 0.220156] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode) +[ 0.220159] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode) +[ 0.220162] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode) +[ 0.220165] pci 0000:00:14.4: bridge window [mem 0x80000000-0xdfffffff] (subtractive decode) +[ 0.220168] pci 0000:00:14.4: bridge window [mem 0xe4000000-0xffffffff] (subtractive decode) +[ 0.220189] pci_bus 0000:00: on NUMA node 0 +[ 0.220196] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.220464] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT] +[ 0.220556] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT] +[ 0.220655] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT] +[ 0.220745] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT] +[ 0.220876] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT] +[ 0.221085] \_SB_.PCI0:_OSC request failed +[ 0.221087] _OSC request data:1 1f 1f +[ 0.236582] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.236756] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.236968] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237174] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237316] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237481] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237687] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237890] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.237953] HEST: Table is not found! +[ 0.238063] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.238066] vgaarb: loaded +[ 0.238242] SCSI subsystem initialized +[ 0.238332] libata version 3.00 loaded. +[ 0.238389] usbcore: registered new interface driver usbfs +[ 0.238406] usbcore: registered new interface driver hub +[ 0.238431] usbcore: registered new device driver usb +[ 0.238685] ACPI: WMI: Mapper loaded +[ 0.238688] PCI: Using ACPI for IRQ routing +[ 0.238691] PCI: pci_cache_line_size set to 64 bytes +[ 0.238914] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.238918] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.238921] reserve RAM buffer: 000000006fb8f000 - 000000006fffffff +[ 0.238924] reserve RAM buffer: 000000006fd70000 - 000000006fffffff +[ 0.238928] reserve RAM buffer: 000000006fe58000 - 000000006fffffff +[ 0.238931] reserve RAM buffer: 000000006feed000 - 000000006fffffff +[ 0.238934] reserve RAM buffer: 000000006ff00000 - 000000006fffffff +[ 0.239032] NetLabel: Initializing +[ 0.239034] NetLabel: domain hash size = 128 +[ 0.239036] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.239050] NetLabel: unlabeled traffic allowed by default +[ 0.239130] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.239136] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.241029] Switching to clocksource hpet +[ 0.250600] AppArmor: AppArmor Filesystem Enabled +[ 0.250618] pnp: PnP ACPI init +[ 0.250640] ACPI: bus type pnp registered +[ 0.254104] pnp: PnP ACPI: found 12 devices +[ 0.254107] ACPI: ACPI bus type pnp unregistered +[ 0.254110] PnPBIOS: Disabled by ACPI PNP +[ 0.254126] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.254130] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.254138] system 00:09: [io 0x0400-0x04cf] has been reserved +[ 0.254141] system 00:09: [io 0x04d0-0x04d1] has been reserved +[ 0.254144] system 00:09: [io 0x04d6] has been reserved +[ 0.254148] system 00:09: [io 0x0680-0x06ff] has been reserved +[ 0.254151] system 00:09: [io 0x077a] has been reserved +[ 0.254153] system 00:09: [io 0x0c00-0x0c01] has been reserved +[ 0.254156] system 00:09: [io 0x0c14] has been reserved +[ 0.254159] system 00:09: [io 0x0c50-0x0c52] has been reserved +[ 0.254162] system 00:09: [io 0x0c6c] has been reserved +[ 0.254165] system 00:09: [io 0x0c6f] has been reserved +[ 0.254168] system 00:09: [io 0x0cd0-0x0cdb] has been reserved +[ 0.254175] system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.254178] system 00:0a: [mem 0xfff00000-0xffffffff] has been reserved +[ 0.289129] pci 0000:09:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref] +[ 0.289165] pci 0000:00:06.0: BAR 14: assigned [mem 0x92500000-0x925fffff] +[ 0.289168] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.289172] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 0.289177] pci 0000:00:01.0: bridge window [mem 0x92200000-0x923fffff] +[ 0.289181] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref] +[ 0.289187] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.289190] pci 0000:00:04.0: bridge window [io 0x3000-0x4fff] +[ 0.289195] pci 0000:00:04.0: bridge window [mem 0x91200000-0x921fffff] +[ 0.289199] pci 0000:00:04.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.289204] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.289207] pci 0000:00:05.0: bridge window [io disabled] +[ 0.289211] pci 0000:00:05.0: bridge window [mem 0x91100000-0x911fffff] +[ 0.289215] pci 0000:00:05.0: bridge window [mem pref disabled] +[ 0.289221] pci 0000:09:00.0: BAR 6: assigned [mem 0x91020000-0x9102ffff pref] +[ 0.289224] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.289227] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff] +[ 0.289232] pci 0000:00:06.0: bridge window [mem 0x92500000-0x925fffff] +[ 0.289236] pci 0000:00:06.0: bridge window [mem 0x91000000-0x910fffff 64bit pref] +[ 0.289242] pci 0000:00:14.4: PCI bridge to [bus 80-8f] +[ 0.289257] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.289264] pci 0000:00:14.4: bridge window [mem disabled] +[ 0.289269] pci 0000:00:14.4: bridge window [mem pref disabled] +[ 0.289283] pci 0000:00:01.0: setting latency timer to 64 +[ 0.289293] alloc irq_desc for 16 on node -1 +[ 0.289296] alloc kstat_irqs on node -1 +[ 0.289302] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.289306] pci 0000:00:04.0: setting latency timer to 64 +[ 0.289315] alloc irq_desc for 17 on node -1 +[ 0.289317] alloc kstat_irqs on node -1 +[ 0.289322] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.289326] pci 0000:00:05.0: setting latency timer to 64 +[ 0.289333] alloc irq_desc for 18 on node -1 +[ 0.289335] alloc kstat_irqs on node -1 +[ 0.289339] pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.289343] pci 0000:00:06.0: setting latency timer to 64 +[ 0.289352] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.289355] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.289358] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.289361] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.289363] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.289366] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.289369] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff] +[ 0.289371] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff] +[ 0.289374] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff] +[ 0.289377] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff] +[ 0.289380] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff] +[ 0.289382] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff] +[ 0.289385] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff] +[ 0.289388] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff] +[ 0.289391] pci_bus 0000:00: resource 18 [mem 0x80000000-0xdfffffff] +[ 0.289394] pci_bus 0000:00: resource 19 [mem 0xe4000000-0xffffffff] +[ 0.289397] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff] +[ 0.289399] pci_bus 0000:01: resource 1 [mem 0x92200000-0x923fffff] +[ 0.289402] pci_bus 0000:01: resource 2 [mem 0x80000000-0x8fffffff 64bit pref] +[ 0.289405] pci_bus 0000:02: resource 0 [io 0x3000-0x4fff] +[ 0.289408] pci_bus 0000:02: resource 1 [mem 0x91200000-0x921fffff] +[ 0.289411] pci_bus 0000:02: resource 2 [mem 0x90000000-0x90ffffff 64bit pref] +[ 0.289414] pci_bus 0000:08: resource 1 [mem 0x91100000-0x911fffff] +[ 0.289417] pci_bus 0000:09: resource 0 [io 0x2000-0x2fff] +[ 0.289419] pci_bus 0000:09: resource 1 [mem 0x92500000-0x925fffff] +[ 0.289422] pci_bus 0000:09: resource 2 [mem 0x91000000-0x910fffff 64bit pref] +[ 0.289425] pci_bus 0000:80: resource 0 [io 0x1000-0x1fff] +[ 0.289428] pci_bus 0000:80: resource 4 [io 0x0000-0x0cf7] +[ 0.289431] pci_bus 0000:80: resource 5 [io 0x0d00-0xffff] +[ 0.289433] pci_bus 0000:80: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.289436] pci_bus 0000:80: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.289439] pci_bus 0000:80: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.289441] pci_bus 0000:80: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.289444] pci_bus 0000:80: resource 10 [mem 0x000d0000-0x000d3fff] +[ 0.289447] pci_bus 0000:80: resource 11 [mem 0x000d4000-0x000d7fff] +[ 0.289450] pci_bus 0000:80: resource 12 [mem 0x000d8000-0x000dbfff] +[ 0.289453] pci_bus 0000:80: resource 13 [mem 0x000dc000-0x000dffff] +[ 0.289455] pci_bus 0000:80: resource 14 [mem 0x000e0000-0x000e3fff] +[ 0.289458] pci_bus 0000:80: resource 15 [mem 0x000e4000-0x000e7fff] +[ 0.289461] pci_bus 0000:80: resource 16 [mem 0x000e8000-0x000ebfff] +[ 0.289463] pci_bus 0000:80: resource 17 [mem 0x000ec000-0x000effff] +[ 0.289466] pci_bus 0000:80: resource 18 [mem 0x80000000-0xdfffffff] +[ 0.289469] pci_bus 0000:80: resource 19 [mem 0xe4000000-0xffffffff] +[ 0.289511] NET: Registered protocol family 2 +[ 0.289582] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.289866] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.290514] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.290814] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.290817] TCP reno registered +[ 0.290821] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.290832] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.290941] NET: Registered protocol family 1 +[ 0.290958] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled +[ 0.444591] pci 0000:01:05.0: Boot video device +[ 0.444641] PCI: CLS 64 bytes, default 64 +[ 0.444707] Simple Boot Flag at 0x44 set to 0x1 +[ 0.444898] cpufreq-nforce2: No nForce2 chipset. +[ 0.444929] Scanning for low memory corruption every 60 seconds +[ 0.445079] audit: initializing netlink socket (disabled) +[ 0.445095] type=2000 audit(1281737440.444:1): initialized +[ 0.456105] highmem bounce pool size: 64 pages +[ 0.456112] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.457768] VFS: Disk quotas dquot_6.5.2 +[ 0.457833] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.458460] fuse init (API version 7.14) +[ 0.458554] msgmni has been set to 1689 +[ 0.458848] alg: No test for stdrng (krng) +[ 0.458908] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.458912] io scheduler noop registered +[ 0.458914] io scheduler deadline registered +[ 0.458928] io scheduler cfq registered (default) +[ 0.459071] pcieport 0000:00:04.0: setting latency timer to 64 +[ 0.459104] alloc irq_desc for 40 on node -1 +[ 0.459106] alloc kstat_irqs on node -1 +[ 0.459117] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X +[ 0.459194] pcieport 0000:00:05.0: setting latency timer to 64 +[ 0.459222] alloc irq_desc for 41 on node -1 +[ 0.459224] alloc kstat_irqs on node -1 +[ 0.459231] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X +[ 0.459294] pcieport 0000:00:06.0: setting latency timer to 64 +[ 0.459322] alloc irq_desc for 42 on node -1 +[ 0.459324] alloc kstat_irqs on node -1 +[ 0.459329] pcieport 0000:00:06.0: irq 42 for MSI/MSI-X +[ 0.459418] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.459555] \_SB_.PCI0:_OSC request failed +[ 0.459557] _OSC request data:1 0 1f +[ 0.459668] \_SB_.PCI0:_OSC request failed +[ 0.459670] _OSC request data:1 0 1f +[ 0.459692] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.460055] vesafb: framebuffer at 0x80000000, mapped to 0xf8080000, using 1216k, total 1216k +[ 0.460059] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.460061] vesafb: scrolling: redraw +[ 0.460064] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0 +[ 0.532673] Console: switching to colour frame buffer device 80x30 +[ 0.605161] fb0: VESA VGA frame buffer device +[ 0.605645] ACPI: AC Adapter [ACAD] (on-line) +[ 0.605724] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.605728] ACPI: Power Button [PWRB] +[ 0.605774] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1 +[ 0.605777] ACPI: Sleep Button [SLPB] +[ 0.605834] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 +[ 0.606209] ACPI: Lid Switch [LID] +[ 0.606258] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.606261] ACPI: Power Button [PWRF] +[ 0.606524] ACPI: acpi_idle registered with cpuidle +[ 0.612093] [Firmware Bug]: Invalid critical threshold (0) +[ 0.612741] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.612750] ACPI: Thermal Zone [THRM] (78 C) +[ 0.612831] ERST: Table is not found! +[ 0.614582] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.616217] brd: module loaded +[ 0.616903] loop: module loaded +[ 0.617210] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.617293] pata_acpi 0000:00:14.1: setting latency timer to 64 +[ 0.617686] Fixed MDIO Bus: probed +[ 0.617727] PPP generic driver version 2.4.2 +[ 0.617770] tun: Universal TUN/TAP device driver, 1.6 +[ 0.617772] tun: (C) 1999-2004 Max Krasnyansky +[ 0.617858] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.617913] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.617933] ehci_hcd 0000:00:12.2: setting latency timer to 64 +[ 0.617938] ehci_hcd 0000:00:12.2: EHCI Host Controller +[ 0.617976] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1 +[ 0.618043] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.618059] ehci_hcd 0000:00:12.2: debug port 1 +[ 0.618095] ehci_hcd 0000:00:12.2: irq 17, io mem 0x92409500 +[ 0.618314] isapnp: Scanning for PnP cards... +[ 0.672689] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00 +[ 0.672850] hub 1-0:1.0: USB hub found +[ 0.672856] hub 1-0:1.0: 6 ports detected +[ 0.673001] alloc irq_desc for 19 on node -1 +[ 0.673003] alloc kstat_irqs on node -1 +[ 0.673011] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.673024] ehci_hcd 0000:00:13.2: setting latency timer to 64 +[ 0.673028] ehci_hcd 0000:00:13.2: EHCI Host Controller +[ 0.673070] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2 +[ 0.673131] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.673146] ehci_hcd 0000:00:13.2: debug port 1 +[ 0.673172] ehci_hcd 0000:00:13.2: irq 19, io mem 0x92409400 +[ 0.696087] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00 +[ 0.696385] hub 2-0:1.0: USB hub found +[ 0.696397] hub 2-0:1.0: 6 ports detected +[ 0.696564] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.696639] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.696680] ohci_hcd 0000:00:12.0: setting latency timer to 64 +[ 0.696687] ohci_hcd 0000:00:12.0: OHCI Host Controller +[ 0.696785] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3 +[ 0.696881] ohci_hcd 0000:00:12.0: irq 16, io mem 0x92408000 +[ 0.756952] hub 3-0:1.0: USB hub found +[ 0.757001] hub 3-0:1.0: 3 ports detected +[ 0.757176] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.757255] ohci_hcd 0000:00:12.1: setting latency timer to 64 +[ 0.757262] ohci_hcd 0000:00:12.1: OHCI Host Controller +[ 0.757342] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4 +[ 0.757414] ohci_hcd 0000:00:12.1: irq 16, io mem 0x92407000 +[ 0.816561] hub 4-0:1.0: USB hub found +[ 0.816576] hub 4-0:1.0: 3 ports detected +[ 0.816757] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.816835] ohci_hcd 0000:00:13.0: setting latency timer to 64 +[ 0.816843] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 0.816940] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5 +[ 0.817029] ohci_hcd 0000:00:13.0: irq 18, io mem 0x92406000 +[ 0.876383] hub 5-0:1.0: USB hub found +[ 0.876435] hub 5-0:1.0: 3 ports detected +[ 0.876651] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.876690] ohci_hcd 0000:00:13.1: setting latency timer to 64 +[ 0.876698] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 0.876779] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6 +[ 0.876849] ohci_hcd 0000:00:13.1: irq 18, io mem 0x92405000 +[ 0.899348] Freeing initrd memory: 10504k freed +[ 0.925693] ACPI: Battery Slot [BAT0] (battery present) +[ 0.936323] hub 6-0:1.0: USB hub found +[ 0.936336] hub 6-0:1.0: 3 ports detected +[ 0.936544] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.936582] ohci_hcd 0000:00:14.5: setting latency timer to 64 +[ 0.936589] ohci_hcd 0000:00:14.5: OHCI Host Controller +[ 0.936672] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7 +[ 0.936715] ohci_hcd 0000:00:14.5: irq 18, io mem 0x92404000 +[ 0.957874] isapnp: No Plug & Play device found +[ 0.996256] hub 7-0:1.0: USB hub found +[ 0.996294] hub 7-0:1.0: 2 ports detected +[ 0.996465] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.996653] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 1.013883] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.013898] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.014041] mice: PS/2 mouse device common for all mice +[ 1.014303] rtc_cmos 00:05: RTC can wake from S4 +[ 1.014387] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0 +[ 1.014423] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs +[ 1.014633] device-mapper: uevent: version 1.0.3 +[ 1.014875] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.015023] device-mapper: multipath: version 1.1.1 loaded +[ 1.015028] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.015248] EISA: Probing bus 0 at eisa.0 +[ 1.015254] EISA: Cannot allocate resource for mainboard +[ 1.015259] Cannot allocate resource for EISA slot 1 +[ 1.015264] Cannot allocate resource for EISA slot 2 +[ 1.015268] Cannot allocate resource for EISA slot 3 +[ 1.015273] Cannot allocate resource for EISA slot 4 +[ 1.015278] Cannot allocate resource for EISA slot 5 +[ 1.015282] Cannot allocate resource for EISA slot 6 +[ 1.015287] Cannot allocate resource for EISA slot 7 +[ 1.015291] Cannot allocate resource for EISA slot 8 +[ 1.015296] EISA: Detected 0 cards. +[ 1.015575] cpuidle: using governor ladder +[ 1.015578] cpuidle: using governor menu +[ 1.015903] TCP cubic registered +[ 1.016046] NET: Registered protocol family 10 +[ 1.016465] lo: Disabled Privacy Extensions +[ 1.016775] NET: Registered protocol family 17 +[ 1.016854] powernow-k8: Found 1 AMD Turion(tm) X2 Dual-Core Mobile RM-72 (2 cpu cores) (version 2.20.00) +[ 1.016912] powernow-k8: 0 : pstate 0 (2100 MHz) +[ 1.016914] powernow-k8: 1 : pstate 1 (1050 MHz) +[ 1.016916] powernow-k8: 2 : pstate 2 (525 MHz) +[ 1.018096] Using IPI No-Shortcut mode +[ 1.018201] PM: Resume from disk failed. +[ 1.018214] registered taskstats version 1 +[ 1.018569] Magic number: 6:938:198 +[ 1.018717] rtc_cmos 00:05: setting system clock to 2010-08-13 22:10:41 UTC (1281737441) +[ 1.018720] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.018722] EDD information not available. +[ 1.018830] Freeing unused kernel memory: 684k freed +[ 1.019356] Write protecting the kernel text: 4932k +[ 1.019400] Write protecting the kernel read-only data: 2012k +[ 1.020579] usb 2-2: new high speed USB device using ehci_hcd and address 2 +[ 1.031162] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 1.044475] udev: starting version 151 +[ 1.098986] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.099015] r8169 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.099062] r8169 0000:09:00.0: setting latency timer to 64 +[ 1.099116] alloc irq_desc for 43 on node -1 +[ 1.099118] alloc kstat_irqs on node -1 +[ 1.099133] r8169 0000:09:00.0: irq 43 for MSI/MSI-X +[ 1.099690] r8169 0000:09:00.0: eth0: RTL8168c/8111c at 0xf81d6000, 00:23:8b:10:df:e4, XID 1c4000c0 IRQ 43 +[ 1.151131] b43-pci-bridge 0000:08:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.151147] b43-pci-bridge 0000:08:00.0: setting latency timer to 64 +[ 1.168658] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x16, vendor 0x4243) +[ 1.168671] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x0F, vendor 0x4243) +[ 1.168682] ssb: Core 2 found: PCMCIA (cc 0x80D, rev 0x0A, vendor 0x4243) +[ 1.168690] ssb: Core 3 found: PCI-E (cc 0x820, rev 0x09, vendor 0x4243) +[ 1.178207] scsi0 : pata_atiixp +[ 1.206642] scsi1 : pata_atiixp +[ 1.207432] ata1: DUMMY +[ 1.207435] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6008 irq 15 +[ 1.207517] ahci 0000:00:11.0: version 3.0 +[ 1.207578] alloc irq_desc for 22 on node -1 +[ 1.207581] alloc kstat_irqs on node -1 +[ 1.207591] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.207708] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode +[ 1.207712] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio ccc +[ 1.217301] ssb: Sonics Silicon Backplane found on PCI device 0000:08:00.0 +[ 1.227449] scsi2 : ahci +[ 1.227599] ata3: SATA max UDMA/133 abar m1024@0x92409000 port 0x92409100 irq 22 +[ 1.420056] usb 1-4: new high speed USB device using ehci_hcd and address 2 +[ 1.574664] Initializing USB Mass Storage driver... +[ 1.574860] scsi3 : usb-storage 1-4:1.0 +[ 1.575018] usbcore: registered new interface driver usb-storage +[ 1.575022] USB Mass Storage support registered. +[ 1.708059] ata3: softreset failed (device not ready) +[ 1.708064] ata3: applying SB600 PMP SRST workaround and retrying +[ 1.828056] usb 6-1: new full speed USB device using ohci_hcd and address 2 +[ 1.876067] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.876770] ata3.00: ATA-8: ST9250827AS, 3.AHC, max UDMA/100 +[ 1.876773] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 1.877681] ata3.00: configured for UDMA/100 +[ 1.877979] scsi 2:0:0:0: Direct-Access ATA ST9250827AS 3.AH PQ: 0 ANSI: 5 +[ 1.878169] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 1.878182] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.878256] sd 2:0:0:0: [sda] Write Protect is off +[ 1.878260] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.878294] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.878549] sda: sda1 sda2 < sda5 sda6 > sda3 +[ 1.915949] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.148057] usb 7-1: new full speed USB device using ohci_hcd and address 2 +[ 2.351307] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 2.351314] EXT4-fs (sda1): write access will be enabled during recovery +[ 2.448024] usb 7-2: new full speed USB device using ohci_hcd and address 3 +[ 2.574283] scsi 3:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS +[ 2.575004] sd 3:0:0:0: Attached scsi generic sg1 type 0 +[ 2.579134] sd 3:0:0:0: [sdb] Attached SCSI removable disk +[ 2.631207] usbcore: registered new interface driver hiddev +[ 2.631271] usbcore: registered new interface driver usbhid +[ 2.631274] usbhid: USB HID core driver +[ 6.454351] EXT4-fs (sda1): orphan cleanup on readonly fs +[ 6.454374] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 1569848 +[ 6.454562] EXT4-fs (sda1): 1 orphan inode deleted +[ 6.454569] EXT4-fs (sda1): recovery complete +[ 6.752457] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 8.240367] Adding 4088536k swap on /dev/sda5. Priority:-1 extents:1 across:4088536k +[ 8.679290] udev: starting version 151 +[ 9.119605] input: HP WMI hotkeys as /devices/virtual/input/input5 +[ 9.857565] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602 +[ 9.857576] shpchp 0000:00:01.0: Cannot reserve MMIO region +[ 9.859846] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 9.924998] lirc_dev: IR Remote Control driver registered, major 61 +[ 9.980294] Bluetooth: Core ver 2.15 +[ 9.980458] NET: Registered protocol family 31 +[ 9.980462] Bluetooth: HCI device and connection manager initialized +[ 9.980470] Bluetooth: HCI socket layer initialized +[ 10.254658] acpi device:03: registered as cooling_device2 +[ 10.256115] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input6 +[ 10.256407] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 10.294822] input: Wacom ISDv4 93 Pen as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.0/input/input7 +[ 10.298807] input: Wacom ISDv4 93 Finger as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/input/input8 +[ 10.299226] usbcore: registered new interface driver wacom +[ 10.299231] wacom: v1.52:USB Wacom tablet driver +[ 10.318454] Linux video capture interface: v2.00 +[ 10.366536] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 +[ 10.448268] Linux agpgart interface v0.103 +[ 10.460249] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 10.462958] usbcore: registered new interface driver btusb +[ 10.564776] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 10.567664] IP: [] kfifo_alloc+0x26/0x90 +[ 10.568531] *pde = 00000000 +[ 10.568531] Oops: 0002 [#1] SMP +[ 10.568531] last sysfs file: /sys/devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/uevent +[ 10.574411] Modules linked in: k10temp lirc_ene0100(+) btusb agpgart i2c_piix4 joydev i2c_algo_bit videodev v4l1_compat wacom video psmouse bluetooth lirc_dev shpchp serio_raw output led_class lp(+) parport hp_wmi usbhid hid usb_storage ahci pata_atiixp ssb libahci r8169 mii +[ 10.575676] +[ 10.575676] Pid: 637, comm: modprobe Not tainted 2.6.35-15-generic #21-Ubuntu 30F1/HP Pavilion tx2500 Notebook PC +[ 10.575676] EIP: 0060:[] EFLAGS: 00010286 CPU: 1 +[ 10.575676] EIP is at kfifo_alloc+0x26/0x90 +[ 10.575676] EAX: d2079000 EBX: 00001000 ECX: c0166452 EDX: c0166452 +[ 10.575676] ESI: 00000000 EDI: d27add60 EBP: d209de40 ESP: d209de38 +[ 10.575676] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 10.575676] Process modprobe (pid: 637, ti=d209c000 task=d21d7230 task.ti=d209c000) +[ 10.575676] Stack: +[ 10.575676] f6ad12a0 d26a1a00 d209de68 f803bdb7 00000020 000080d0 d209de68 f724de00 +[ 10.575676] <0> fffffff4 f803bf90 f724de00 f803c3e0 d209de7c c03ca5fe f724de00 f803c400 +[ 10.575676] <0> f803c400 d209dea0 c0402cc0 f724ded0 d209dea0 c0409f07 00000000 f724de00 +[ 10.575676] Call Trace: +[ 10.575676] [] ? ene_probe+0x157/0x30b [lirc_ene0100] +[ 10.618452] cfg80211: Calling CRDA to update world regulatory domain +[ 10.721481] b43-phy0: Broadcom 4312 WLAN found (core revision 15) +[ 10.623751] [] ? pnp_device_probe+0x6e/0xd0 +[ 10.623751] [] ? really_probe+0x50/0x150 +[ 10.623751] [] ? pm_runtime_barrier+0x57/0xb0 +[ 10.623751] [] ? driver_probe_device+0x3c/0x60 +[ 10.623751] [] ? __driver_attach+0x81/0x90 +[ 10.623751] [] ? bus_for_each_dev+0x53/0x80 +[ 11.101780] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x180b1, caps: 0xa04711/0xa00000/0x0 +[ 11.170991] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9 +[ 11.183369] [] ? driver_attach+0x1e/0x20 +[ 11.183369] [] ? __driver_attach+0x0/0x90 +[ 11.183369] [] ? bus_add_driver+0xd5/0x280 +[ 11.183369] [] ? pnp_device_remove+0x0/0x40 +[ 11.183369] [] ? driver_register+0x6a/0x130 +[ 11.183369] [] ? tracepoint_module_notify+0x27/0x30 +[ 11.183369] [] ? pnp_register_driver+0x1c/0x20 +[ 11.183369] [] ? ene_init+0x38/0x3a [lirc_ene0100] +[ 11.183369] [] ? __blocking_notifier_call_chain+0x54/0x70 +[ 11.183369] [] ? do_one_initcall+0x32/0x1a0 +[ 11.183369] [] ? ene_init+0x0/0x3a [lirc_ene0100] +[ 11.183369] [] ? sys_init_module+0x9b/0x1e0 +[ 11.183369] [] ? sys_close+0x75/0xc0 +[ 11.183369] [] ? syscall_call+0x7/0xb +[ 11.183369] Code: 90 8d 74 26 00 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 43 ff 74 31 85 d8 75 25 89 d8 e8 4e 60 0a 00 85 c0 74 39 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +[ 11.183369] EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:d209de38 +[ 11.183369] CR2: 0000000000000000 +[ 12.260251] ---[ end trace 66b1d70e874836eb ]--- +[ 12.383989] lp: driver loaded but no devices found +[ 12.406257] phy0: Selected rate control algorithm 'minstrel' +[ 12.407569] Registered led device: b43-phy0::tx +[ 12.407603] Registered led device: b43-phy0::rx +[ 12.407638] Registered led device: b43-phy0::radio +[ 12.407773] Broadcom 43xx driver loaded [ Features: PL, Firmware-ID: FW13 ] +[ 12.425246] uvcvideo: Found UVC 1.00 device HP Webcam (064e:a104) +[ 12.444409] input: HP Webcam as /devices/pci0000:00/0000:00:13.2/usb2/2-2/2-2:1.0/input/input10 +[ 12.444540] usbcore: registered new interface driver uvcvideo +[ 12.444545] USB Video Class driver (v0.1.0) +[ 12.792107] [drm] Initialized drm 1.1.0 20060810 +[ 13.196742] type=1400 audit(1281737453.677:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=655 comm="apparmor_parser" +[ 13.286550] cfg80211: World regulatory domain updated: +[ 13.286557] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 13.286564] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 13.286570] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 13.286576] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 13.286581] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 13.286586] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 13.685927] type=1400 audit(1281737454.165:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=655 comm="apparmor_parser" +[ 13.834819] type=1400 audit(1281737454.313:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=655 comm="apparmor_parser" +[ 14.431806] [drm] VGACON disable radeon kernel modesetting. +[ 14.485443] pci 0000:01:05.0: power state changed by ACPI to D0 +[ 14.538308] pci 0000:01:05.0: power state changed by ACPI to D0 +[ 14.589526] pci 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 14.640486] pci 0000:01:05.0: setting latency timer to 64 +[ 14.692770] [drm] Initialized radeon 1.33.0 20080528 for 0000:01:05.0 on minor 0 +[ 15.042241] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 15.149837] HDA Intel 0000:00:14.2: setting latency timer to 64 +[ 17.291931] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 17.834196] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) +[ 19.011213] type=1400 audit(1281737459.489:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=938 comm="apparmor_parser" +[ 19.011821] type=1400 audit(1281737459.489:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=938 comm="apparmor_parser" +[ 19.012170] type=1400 audit(1281737459.493:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=938 comm="apparmor_parser" +[ 19.120967] type=1400 audit(1281737459.601:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=937 comm="apparmor_parser" +[ 19.147981] type=1400 audit(1281737459.625:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=939 comm="apparmor_parser" +[ 19.155832] type=1400 audit(1281737459.633:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=939 comm="apparmor_parser" +[ 19.160979] type=1400 audit(1281737459.641:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=939 comm="apparmor_parser" +[ 19.192170] type=1400 audit(1281737459.673:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=944 comm="apparmor_parser" +[ 19.193022] type=1400 audit(1281737459.673:13): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=944 comm="apparmor_parser" +[ 19.209101] type=1400 audit(1281737459.689:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=945 comm="apparmor_parser" +[ 20.596277] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10) + +Bug: 621651 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-17-generic (buildd@rothera) (gcc version 4.4.5 20100816 (prerelease) (Ubuntu/Linaro 4.4.4-9ubuntu1) ) #23-Ubuntu SMP Fri Aug 20 01:22:20 UTC 2010 (Ubuntu 2.6.35-17.23-generic 2.6.35.2) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf4fe000 (usable) +[ 0.000000] BIOS-e820: 00000000bf4fe000 - 00000000bf509000 (reserved) +[ 0.000000] BIOS-e820: 00000000bf509000 - 00000000bf552000 (usable) +[ 0.000000] BIOS-e820: 00000000bf552000 - 00000000bf555000 (reserved) +[ 0.000000] BIOS-e820: 00000000bf555000 - 00000000bf5bb000 (usable) +[ 0.000000] BIOS-e820: 00000000bf5bb000 - 00000000bf5bf000 (reserved) +[ 0.000000] BIOS-e820: 00000000bf5bf000 - 00000000bf670000 (usable) +[ 0.000000] BIOS-e820: 00000000bf670000 - 00000000bf6bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf6bf000 - 00000000bf700000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bf700000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0xbf670 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0FFFE0000 mask FFFFE0000 write-protect +[ 0.000000] 1 base 000000000 mask F80000000 write-back +[ 0.000000] 2 base 080000000 mask FC0000000 write-back +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 base 0BF700000 mask FFFF00000 uncachable +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bf4fe000 (usable) +[ 0.000000] modified: 00000000bf4fe000 - 00000000bf509000 (reserved) +[ 0.000000] modified: 00000000bf509000 - 00000000bf552000 (usable) +[ 0.000000] modified: 00000000bf552000 - 00000000bf555000 (reserved) +[ 0.000000] modified: 00000000bf555000 - 00000000bf5bb000 (usable) +[ 0.000000] modified: 00000000bf5bb000 - 00000000bf5bf000 (reserved) +[ 0.000000] modified: 00000000bf5bf000 - 00000000bf670000 (usable) +[ 0.000000] modified: 00000000bf670000 - 00000000bf6bf000 (ACPI NVS) +[ 0.000000] modified: 00000000bf6bf000 - 00000000bf700000 (ACPI data) +[ 0.000000] modified: 00000000bf700000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed14000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00fe1b0] fe1b0 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 375ad000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 009a0000 - 013e213c +[ 0.000000] Move RAMDISK from 00000000375ad000 - 0000000037fef13b to 009a0000 - 013e213b +[ 0.000000] ACPI: RSDP 000fe020 00024 (v02 ACRSYS) +[ 0.000000] ACPI: XSDT bf6fe120 00064 (v01 ACRSYS ACRPRDCT 00000001 01000013) +[ 0.000000] ACPI: FACP bf6fd000 000F4 (v04 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT bf6f4000 08941 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS bf675000 00040 +[ 0.000000] ACPI: APIC bf6f3000 00068 (v02 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG bf6f2000 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC bf6f1000 00176 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: HPET bf6f0000 00038 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT bf6ef000 004C4 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: SSDT bf6ee000 00232 (v01 PmRef Cpu0Tst 00003000 INTL 20051117) +[ 0.000000] ACPI: SSDT bf6ed000 000A0 (v01 PmRef Cpu1Tst 00003000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 2174MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x000bf670 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[6] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf4fe +[ 0.000000] 0: 0x000bf509 -> 0x000bf552 +[ 0.000000] 0: 0x000bf555 -> 0x000bf5bb +[ 0.000000] 0: 0x000bf5bf -> 0x000bf670 +[ 0.000000] On node 0 totalpages: 783854 +[ 0.000000] free_area_init_node: node 0, pgdat c07fb680, node_mem_map c13e4020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3952 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 4349 pages used for memmap +[ 0.000000] HighMem zone: 552291 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2c00000 s36352 r0 d20992 u2097152 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u2097152 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] early_res array is doubled to 128 at [16800 - 177ff] +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 777729 +[ 0.000000] Kernel command line: root=UUID=5630b9ad-fd98-4d9b-b2a4-ef311212cbe5 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 15679660 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (59 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 000099badc] TEXT DATA BSS +[ 0.000000] #3 [000099c000 - 000099f19c] BRK +[ 0.000000] #4 [000009fc00 - 00000fe1b0] BIOS reserved +[ 0.000000] #5 [00000fe1b0 - 00000fe1c0] MP-table mpf +[ 0.000000] #6 [00000fe1c0 - 00000feab0] BIOS reserved +[ 0.000000] #7 [00000febf8 - 0000100000] BIOS reserved +[ 0.000000] #8 [00000feab0 - 00000febf8] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #10 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #11 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #12 [00009a0000 - 00013e3000] NEW RAMDISK +[ 0.000000] #13 [00013e3000 - 00013e4000] BOOTMEM +[ 0.000000] #14 [00013e4000 - 0002bd4000] BOOTMEM +[ 0.000000] #15 [0002bd4000 - 0002bd4004] BOOTMEM +[ 0.000000] #16 [0002bd4040 - 0002bd4100] BOOTMEM +[ 0.000000] #17 [0002bd4100 - 0002bd4154] BOOTMEM +[ 0.000000] #18 [0002bd4180 - 0002bd7180] BOOTMEM +[ 0.000000] #19 [0002bd7180 - 0002bd724c] BOOTMEM +[ 0.000000] #20 [0002bd7280 - 0002be3280] BOOTMEM +[ 0.000000] #21 [0002be3280 - 0002be32a5] BOOTMEM +[ 0.000000] #22 [0002be32c0 - 0002be32e7] BOOTMEM +[ 0.000000] #23 [0002be3300 - 0002be3568] BOOTMEM +[ 0.000000] #24 [0002be3580 - 0002be35c0] BOOTMEM +[ 0.000000] #25 [0002be35c0 - 0002be3600] BOOTMEM +[ 0.000000] #26 [0002be3600 - 0002be3640] BOOTMEM +[ 0.000000] #27 [0002be3640 - 0002be3680] BOOTMEM +[ 0.000000] #28 [0002be3680 - 0002be36c0] BOOTMEM +[ 0.000000] #29 [0002be36c0 - 0002be3700] BOOTMEM +[ 0.000000] #30 [0002be3700 - 0002be3740] BOOTMEM +[ 0.000000] #31 [0002be3740 - 0002be3780] BOOTMEM +[ 0.000000] #32 [0002be3780 - 0002be37c0] BOOTMEM +[ 0.000000] #33 [0002be37c0 - 0002be3800] BOOTMEM +[ 0.000000] #34 [0002be3800 - 0002be3840] BOOTMEM +[ 0.000000] #35 [0002be3840 - 0002be3880] BOOTMEM +[ 0.000000] #36 [0002be3880 - 0002be38c0] BOOTMEM +[ 0.000000] #37 [0002be38c0 - 0002be3900] BOOTMEM +[ 0.000000] #38 [0002be3900 - 0002be3940] BOOTMEM +[ 0.000000] #39 [0002be3940 - 0002be3980] BOOTMEM +[ 0.000000] #40 [0002be3980 - 0002be39c0] BOOTMEM +[ 0.000000] #41 [0002be39c0 - 0002be3a00] BOOTMEM +[ 0.000000] #42 [0002be3a00 - 0002be3a40] BOOTMEM +[ 0.000000] #43 [0002be3a40 - 0002be3a50] BOOTMEM +[ 0.000000] #44 [0002be3a80 - 0002be3a90] BOOTMEM +[ 0.000000] #45 [0002be3ac0 - 0002be3b00] BOOTMEM +[ 0.000000] #46 [0002be3b00 - 0002be3b40] BOOTMEM +[ 0.000000] #47 [0002c00000 - 0002c0e000] BOOTMEM +[ 0.000000] #48 [0002e00000 - 0002e0e000] BOOTMEM +[ 0.000000] #49 [0002be5b40 - 0002be5b44] BOOTMEM +[ 0.000000] #50 [0002be5b80 - 0002be5b84] BOOTMEM +[ 0.000000] #51 [0002be5bc0 - 0002be5bc8] BOOTMEM +[ 0.000000] #52 [0002be5c00 - 0002be5c08] BOOTMEM +[ 0.000000] #53 [0002be5c40 - 0002be5ce8] BOOTMEM +[ 0.000000] #54 [0002be5d00 - 0002be5d68] BOOTMEM +[ 0.000000] #55 [0002be5d80 - 0002be9d80] BOOTMEM +[ 0.000000] #56 [0002c0e000 - 0002c8e000] BOOTMEM +[ 0.000000] #57 [0002c8e000 - 0002cce000] BOOTMEM +[ 0.000000] #58 [0002e0e000 - 0003d020ac] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:000bf670) +[ 0.000000] Memory: 3075252k/3135936k available (4922k kernel code, 60164k reserved, 2325k data, 684k init, 2226560k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0814000 - 0xc08bf000 ( 684 kB) +[ 0.000000] .data : 0xc05ceabe - 0xc0813fa8 (2325 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05ceabe (4922 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:512 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1729.041 MHz processor. +[ 0.004008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3458.08 BogoMIPS (lpj=6916164) +[ 0.004014] pid_max: default: 32768 minimum: 301 +[ 0.004037] Security Framework initialized +[ 0.008009] AppArmor: AppArmor initialized +[ 0.008011] Yama: becoming mindful. +[ 0.008078] Mount-cache hash table entries: 512 +[ 0.008239] Initializing cgroup subsys ns +[ 0.008244] Initializing cgroup subsys cpuacct +[ 0.008250] Initializing cgroup subsys memory +[ 0.008260] Initializing cgroup subsys devices +[ 0.008263] Initializing cgroup subsys freezer +[ 0.008266] Initializing cgroup subsys net_cls +[ 0.008299] CPU: Physical Processor ID: 0 +[ 0.008301] CPU: Processor Core ID: 0 +[ 0.008304] mce: CPU supports 6 MCE banks +[ 0.008315] CPU0: Thermal monitoring enabled (TM1) +[ 0.008319] using mwait in idle threads. +[ 0.008329] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.008336] PEBS disabled due to CPU errata. +[ 0.008344] ... version: 2 +[ 0.008347] ... bit width: 40 +[ 0.008349] ... generic registers: 2 +[ 0.008351] ... value mask: 000000ffffffffff +[ 0.008353] ... max period: 000000007fffffff +[ 0.008356] ... fixed-purpose events: 3 +[ 0.008358] ... event mask: 0000000700000003 +[ 0.011679] ACPI: Core revision 20100428 +[ 0.028016] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.028022] ftrace: allocating 21727 entries in 43 pages +[ 0.032068] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.032481] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.072757] CPU0: Intel(R) Pentium(R) Dual CPU T2370 @ 1.73GHz stepping 0d +[ 0.076000] Booting Node 0, Processors #1 Ok. +[ 0.008000] Initializing CPU#1 +[ 0.164018] Brought up 2 CPUs +[ 0.164022] Total of 2 processors activated (6916.03 BogoMIPS). +[ 0.164501] devtmpfs: initialized +[ 0.165196] regulator: core version 0.5 +[ 0.165235] Time: 8:21:31 Date: 08/21/10 +[ 0.165283] NET: Registered protocol family 16 +[ 0.165312] Trying to unpack rootfs image as initramfs... +[ 0.165442] EISA bus registered +[ 0.165452] ACPI: bus type pci registered +[ 0.165552] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.165557] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.165559] PCI: Using MMCONFIG for extended config space +[ 0.165562] PCI: Using configuration type 1 for base access +[ 0.172105] bio: create slab at 0 +[ 0.174856] ACPI: EC: Look up EC in DSDT +[ 0.180948] ACPI: BIOS _OSI(Linux) query ignored +[ 0.192764] ACPI: SSDT bf674c90 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.193031] ACPI: Dynamic OEM Table Load: +[ 0.193036] ACPI: SSDT (null) 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.193438] ACPI: SSDT bf673610 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.194166] ACPI: Dynamic OEM Table Load: +[ 0.194171] ACPI: SSDT (null) 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.194726] ACPI: SSDT bf674f10 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117) +[ 0.196363] ACPI: Dynamic OEM Table Load: +[ 0.196368] ACPI: SSDT (null) 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117) +[ 0.196571] ACPI: SSDT bf676d10 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117) +[ 0.197300] ACPI: Dynamic OEM Table Load: +[ 0.197304] ACPI: SSDT (null) 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117) +[ 0.204235] ACPI: Interpreter enabled +[ 0.204241] ACPI: (supports S0 S3 S4 S5) +[ 0.204280] ACPI: Using IOAPIC for interrupt routing +[ 0.254465] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62 +[ 0.254927] ACPI: No dock devices found. +[ 0.254933] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.255760] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.255772] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.255774] _OSC request data:1 8 1f +[ 0.255782] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.257169] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.257174] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.257178] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.257183] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff] +[ 0.257279] pci 0000:00:02.0: reg 10: [mem 0xd4000000-0xd40fffff 64bit] +[ 0.257289] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.257296] pci 0000:00:02.0: reg 20: [io 0x5110-0x5117] +[ 0.257349] pci 0000:00:02.1: reg 10: [mem 0x00000000-0x000fffff 64bit] +[ 0.257612] pci 0000:00:1a.0: reg 20: [io 0x50c0-0x50df] +[ 0.257781] pci 0000:00:1a.1: reg 20: [io 0x50a0-0x50bf] +[ 0.257946] pci 0000:00:1a.7: reg 10: [mem 0xd8404c00-0xd8404fff] +[ 0.258118] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 0.258131] pci 0000:00:1a.7: PME# disabled +[ 0.258247] pci 0000:00:1b.0: reg 10: [mem 0xd8400000-0xd8403fff 64bit] +[ 0.258414] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.258426] pci 0000:00:1b.0: PME# disabled +[ 0.258691] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.258702] pci 0000:00:1c.0: PME# disabled +[ 0.258975] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.258986] pci 0000:00:1c.1: PME# disabled +[ 0.259259] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.259270] pci 0000:00:1c.2: PME# disabled +[ 0.259546] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.259557] pci 0000:00:1c.3: PME# disabled +[ 0.259733] pci 0000:00:1d.0: reg 20: [io 0x5080-0x509f] +[ 0.259902] pci 0000:00:1d.1: reg 20: [io 0x5060-0x507f] +[ 0.260080] pci 0000:00:1d.2: reg 20: [io 0x5040-0x505f] +[ 0.260247] pci 0000:00:1d.7: reg 10: [mem 0xd8404800-0xd8404bff] +[ 0.260418] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.260429] pci 0000:00:1d.7: PME# disabled +[ 0.260822] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.260830] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO +[ 0.260843] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at ff2c (mask 0003) +[ 0.260850] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0068 (mask 0007) +[ 0.260971] pci 0000:00:1f.1: reg 10: [io 0x5108-0x510f] +[ 0.260989] pci 0000:00:1f.1: reg 14: [io 0x5124-0x5127] +[ 0.261007] pci 0000:00:1f.1: reg 18: [io 0x5100-0x5107] +[ 0.261026] pci 0000:00:1f.1: reg 1c: [io 0x5120-0x5123] +[ 0.261044] pci 0000:00:1f.1: reg 20: [io 0x50e0-0x50ef] +[ 0.261209] pci 0000:00:1f.2: reg 10: [io 0x50f8-0x50ff] +[ 0.261228] pci 0000:00:1f.2: reg 14: [io 0x511c-0x511f] +[ 0.261247] pci 0000:00:1f.2: reg 18: [io 0x50f0-0x50f7] +[ 0.261265] pci 0000:00:1f.2: reg 1c: [io 0x5118-0x511b] +[ 0.261284] pci 0000:00:1f.2: reg 20: [io 0x5020-0x503f] +[ 0.261302] pci 0000:00:1f.2: reg 24: [mem 0xd8404000-0xd84047ff] +[ 0.261417] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.261427] pci 0000:00:1f.2: PME# disabled +[ 0.261508] pci 0000:00:1f.3: reg 10: [mem 0xd8405000-0xd84050ff] +[ 0.261574] pci 0000:00:1f.3: reg 20: [io 0x5000-0x501f] +[ 0.261814] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.261825] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.261836] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd83fffff] +[ 0.261854] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.262016] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.262026] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.262037] pci 0000:00:1c.1: bridge window [mem 0xd6400000-0xd73fffff] +[ 0.262056] pci 0000:00:1c.1: bridge window [mem 0xd1000000-0xd1ffffff 64bit pref] +[ 0.262380] pci 0000:05:00.0: reg 10: [mem 0xd5300000-0xd530ffff 64bit] +[ 0.262614] pci 0000:05:00.0: PME# supported from D3hot D3cold +[ 0.262628] pci 0000:05:00.0: PME# disabled +[ 0.268095] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.268108] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.268118] pci 0000:00:1c.2: bridge window [mem 0xd5300000-0xd63fffff] +[ 0.268136] pci 0000:00:1c.2: bridge window [mem 0xd2000000-0xd2ffffff 64bit pref] +[ 0.268451] pci 0000:06:00.0: reg 10: [mem 0xd4200000-0xd4203fff 64bit] +[ 0.268674] pci 0000:06:00.0: supports D1 D2 +[ 0.268676] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold +[ 0.268688] pci 0000:06:00.0: PME# disabled +[ 0.268868] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.268879] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.268889] pci 0000:00:1c.3: bridge window [mem 0xd4200000-0xd52fffff] +[ 0.268908] pci 0000:00:1c.3: bridge window [mem 0xd3000000-0xd3ffffff 64bit pref] +[ 0.269071] pci 0000:07:00.0: reg 10: [mem 0xd4100000-0xd41007ff] +[ 0.269224] pci 0000:07:00.0: supports D1 D2 +[ 0.269227] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.269237] pci 0000:07:00.0: PME# disabled +[ 0.269324] pci 0000:07:00.1: reg 10: [mem 0xd4100a00-0xd4100aff] +[ 0.269481] pci 0000:07:00.1: supports D1 D2 +[ 0.269484] pci 0000:07:00.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.269494] pci 0000:07:00.1: PME# disabled +[ 0.269584] pci 0000:07:00.2: reg 10: [mem 0xd4100900-0xd41009ff] +[ 0.269738] pci 0000:07:00.2: supports D1 D2 +[ 0.269740] pci 0000:07:00.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.269750] pci 0000:07:00.2: PME# disabled +[ 0.269840] pci 0000:07:00.3: reg 10: [mem 0xd4100800-0xd41008ff] +[ 0.269991] pci 0000:07:00.3: supports D1 D2 +[ 0.269994] pci 0000:07:00.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.270004] pci 0000:07:00.3: PME# disabled +[ 0.270173] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode) +[ 0.270184] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.270195] pci 0000:00:1e.0: bridge window [mem 0xd4100000-0xd41fffff] +[ 0.270214] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.270218] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.270222] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.270225] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.270228] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode) +[ 0.270317] pci_bus 0000:00: on NUMA node 0 +[ 0.270334] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.270668] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT] +[ 0.270844] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT] +[ 0.270964] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT] +[ 0.271082] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT] +[ 0.271383] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.271394] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.271397] _OSC request data:1 1f 1f +[ 0.284453] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.284631] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.284803] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.284971] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.285140] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled. +[ 0.285309] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12) +[ 0.285478] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.285645] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12) +[ 0.285739] HEST: Table is not found! +[ 0.285839] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.285867] vgaarb: loaded +[ 0.286087] SCSI subsystem initialized +[ 0.286196] libata version 3.00 loaded. +[ 0.286270] usbcore: registered new interface driver usbfs +[ 0.286287] usbcore: registered new interface driver hub +[ 0.286320] usbcore: registered new device driver usb +[ 0.286930] ACPI: WMI: Mapper loaded +[ 0.286933] PCI: Using ACPI for IRQ routing +[ 0.286937] PCI: pci_cache_line_size set to 64 bytes +[ 0.287345] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.287348] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.287352] reserve RAM buffer: 00000000bf4fe000 - 00000000bfffffff +[ 0.287356] reserve RAM buffer: 00000000bf552000 - 00000000bfffffff +[ 0.287361] reserve RAM buffer: 00000000bf5bb000 - 00000000bfffffff +[ 0.287364] reserve RAM buffer: 00000000bf670000 - 00000000bfffffff +[ 0.287545] NetLabel: Initializing +[ 0.287548] NetLabel: domain hash size = 128 +[ 0.287550] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.287569] NetLabel: unlabeled traffic allowed by default +[ 0.287615] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.287631] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.287638] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.292044] Switching to clocksource tsc +[ 0.306206] AppArmor: AppArmor Filesystem Enabled +[ 0.306229] pnp: PnP ACPI init +[ 0.306256] ACPI: bus type pnp registered +[ 0.307694] pnp 00:01: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.3 BAR 13 [io 0x1000-0x1fff] +[ 0.332421] pnp: PnP ACPI: found 10 devices +[ 0.332425] ACPI: ACPI bus type pnp unregistered +[ 0.332430] PnPBIOS: Disabled by ACPI PNP +[ 0.332448] system 00:01: [io 0x0600-0x060f] has been reserved +[ 0.332452] system 00:01: [io 0x0610] has been reserved +[ 0.332456] system 00:01: [io 0x0800-0x080f] has been reserved +[ 0.332460] system 00:01: [io 0x0810-0x0817] has been reserved +[ 0.332463] system 00:01: [io 0x0400-0x047f] has been reserved +[ 0.332467] system 00:01: [io 0x0500-0x053f] has been reserved +[ 0.332474] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.332477] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.332481] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved +[ 0.332485] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.332488] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.332493] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.332496] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.332500] system 00:01: [mem 0x32000000-0x320000ff] could not be reserved +[ 0.367463] pci 0000:00:02.1: BAR 0: assigned [mem 0xd8500000-0xd85fffff 64bit] +[ 0.367473] pci 0000:00:02.1: BAR 0: set to [mem 0xd8500000-0xd85fffff 64bit] (PCI address [0xd8500000-0xd85fffff] +[ 0.367477] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.367484] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.367499] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd83fffff] +[ 0.367510] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.367528] pci 0000:00:1c.1: PCI bridge to [bus 04-04] +[ 0.367535] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.367549] pci 0000:00:1c.1: bridge window [mem 0xd6400000-0xd73fffff] +[ 0.367560] pci 0000:00:1c.1: bridge window [mem 0xd1000000-0xd1ffffff 64bit pref] +[ 0.367578] pci 0000:00:1c.2: PCI bridge to [bus 05-05] +[ 0.367585] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.367599] pci 0000:00:1c.2: bridge window [mem 0xd5300000-0xd63fffff] +[ 0.367610] pci 0000:00:1c.2: bridge window [mem 0xd2000000-0xd2ffffff 64bit pref] +[ 0.367629] pci 0000:00:1c.3: PCI bridge to [bus 06-06] +[ 0.367636] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.367650] pci 0000:00:1c.3: bridge window [mem 0xd4200000-0xd52fffff] +[ 0.367661] pci 0000:00:1c.3: bridge window [mem 0xd3000000-0xd3ffffff 64bit pref] +[ 0.367680] pci 0000:00:1e.0: PCI bridge to [bus 07-07] +[ 0.367683] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.367697] pci 0000:00:1e.0: bridge window [mem 0xd4100000-0xd41fffff] +[ 0.367707] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.367757] alloc irq_desc for 16 on node -1 +[ 0.367760] alloc kstat_irqs on node -1 +[ 0.367770] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.367795] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.367824] alloc irq_desc for 17 on node -1 +[ 0.367826] alloc kstat_irqs on node -1 +[ 0.367832] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.367843] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.367867] alloc irq_desc for 18 on node -1 +[ 0.367869] alloc kstat_irqs on node -1 +[ 0.367873] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.367884] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.367907] alloc irq_desc for 19 on node -1 +[ 0.367909] alloc kstat_irqs on node -1 +[ 0.367913] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.367924] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.367944] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.367953] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.367956] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.367959] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.367963] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff] +[ 0.367966] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff] +[ 0.367969] pci_bus 0000:02: resource 1 [mem 0xd7400000-0xd83fffff] +[ 0.367972] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.367976] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 0.367979] pci_bus 0000:04: resource 1 [mem 0xd6400000-0xd73fffff] +[ 0.367982] pci_bus 0000:04: resource 2 [mem 0xd1000000-0xd1ffffff 64bit pref] +[ 0.367985] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff] +[ 0.367988] pci_bus 0000:05: resource 1 [mem 0xd5300000-0xd63fffff] +[ 0.367992] pci_bus 0000:05: resource 2 [mem 0xd2000000-0xd2ffffff 64bit pref] +[ 0.367995] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff] +[ 0.367998] pci_bus 0000:06: resource 1 [mem 0xd4200000-0xd52fffff] +[ 0.368001] pci_bus 0000:06: resource 2 [mem 0xd3000000-0xd3ffffff 64bit pref] +[ 0.368004] pci_bus 0000:07: resource 1 [mem 0xd4100000-0xd41fffff] +[ 0.368007] pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7] +[ 0.368010] pci_bus 0000:07: resource 5 [io 0x0d00-0xffff] +[ 0.368013] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.368016] pci_bus 0000:07: resource 7 [mem 0xc0000000-0xfebfffff] +[ 0.368070] NET: Registered protocol family 2 +[ 0.368161] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.368524] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.369142] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.369507] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.369510] TCP reno registered +[ 0.369514] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.369535] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.369698] NET: Registered protocol family 1 +[ 0.369727] pci 0000:00:02.0: Boot video device +[ 0.370331] PCI: CLS 0 bytes, default 64 +[ 0.370586] cpufreq-nforce2: No nForce2 chipset. +[ 0.370628] Scanning for low memory corruption every 60 seconds +[ 0.370815] audit: initializing netlink socket (disabled) +[ 0.370837] type=2000 audit(1282378891.364:1): initialized +[ 0.383748] highmem bounce pool size: 64 pages +[ 0.383755] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.385683] VFS: Disk quotas dquot_6.5.2 +[ 0.385775] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.386550] fuse init (API version 7.14) +[ 0.386667] msgmni has been set to 1657 +[ 0.387048] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.387052] io scheduler noop registered +[ 0.387055] io scheduler deadline registered +[ 0.387072] io scheduler cfq registered (default) +[ 0.387255] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.387383] alloc irq_desc for 40 on node -1 +[ 0.387386] alloc kstat_irqs on node -1 +[ 0.387411] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.387624] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.387748] alloc irq_desc for 41 on node -1 +[ 0.387750] alloc kstat_irqs on node -1 +[ 0.387769] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.387994] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.388118] alloc irq_desc for 42 on node -1 +[ 0.388120] alloc kstat_irqs on node -1 +[ 0.388140] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.388344] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.388468] alloc irq_desc for 43 on node -1 +[ 0.388470] alloc kstat_irqs on node -1 +[ 0.388489] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.388714] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.388897] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.388910] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.388912] _OSC request data:1 0 1f +[ 0.389059] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389070] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389072] _OSC request data:1 0 1f +[ 0.389212] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389222] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389225] _OSC request data:1 0 1f +[ 0.389365] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389375] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389377] _OSC request data:1 0 1f +[ 0.389539] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389549] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389551] _OSC request data:1 0 1f +[ 0.389695] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389705] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389707] _OSC request data:1 0 1f +[ 0.389848] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.389858] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.389860] _OSC request data:1 0 1f +[ 0.389998] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20100428/nspredef-352) +[ 0.390007] \_SB_.PCI0:_OSC evaluation returned wrong type +[ 0.390010] _OSC request data:1 0 1f +[ 0.390034] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.392630] ACPI: AC Adapter [AC] (on-line) +[ 0.392754] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0 +[ 0.392759] ACPI: Power Button [PWRB] +[ 0.392815] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1 +[ 0.392872] ACPI: Lid Switch [LID0] +[ 0.392926] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2 +[ 0.392929] ACPI: Sleep Button [SLPB] +[ 0.393005] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.393008] ACPI: Power Button [PWRF] +[ 0.393426] ACPI: acpi_idle registered with cpuidle +[ 0.396530] Monitor-Mwait will be used to enter C-1 state +[ 0.396577] Monitor-Mwait will be used to enter C-2 state +[ 0.396607] Monitor-Mwait will be used to enter C-3 state +[ 0.396616] Marking TSC unstable due to TSC halts in idle +[ 0.397176] Switching to clocksource hpet +[ 0.439822] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.439836] ACPI: Thermal Zone [TZ01] (40 C) +[ 0.439987] ERST: Table is not found! +[ 0.441958] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.443809] brd: module loaded +[ 0.444482] loop: module loaded +[ 0.444750] ata_piix 0000:00:1f.1: version 2.13 +[ 0.444771] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.444837] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.445073] scsi0 : ata_piix +[ 0.445184] isapnp: Scanning for PnP cards... +[ 0.494261] Freeing initrd memory: 10508k freed +[ 0.495022] scsi1 : ata_piix +[ 0.496274] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x50e0 irq 14 +[ 0.496283] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x50e8 irq 15 +[ 0.496884] Fixed MDIO Bus: probed +[ 0.496942] PPP generic driver version 2.4.2 +[ 0.497266] tun: Universal TUN/TAP device driver, 1.6 +[ 0.497270] tun: (C) 1999-2004 Max Krasnyansky +[ 0.497444] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.497522] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.497577] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 0.497584] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 0.497662] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 0.497731] ehci_hcd 0000:00:1a.7: debug port 1 +[ 0.501639] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported +[ 0.501704] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xd8404c00 +[ 0.517031] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 0.517248] hub 1-0:1.0: USB hub found +[ 0.517256] hub 1-0:1.0: 4 ports detected +[ 0.517380] alloc irq_desc for 23 on node -1 +[ 0.517383] alloc kstat_irqs on node -1 +[ 0.517392] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.517422] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.517429] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.517486] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 0.517540] ehci_hcd 0000:00:1d.7: debug port 1 +[ 0.521436] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported +[ 0.521464] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd8404800 +[ 0.537031] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.537178] hub 2-0:1.0: USB hub found +[ 0.537184] hub 2-0:1.0: 6 ports detected +[ 0.537300] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.537323] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.537373] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.537386] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.537392] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 0.537438] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 0.537496] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000050c0 +[ 0.537648] hub 3-0:1.0: USB hub found +[ 0.537653] hub 3-0:1.0: 2 ports detected +[ 0.537744] alloc irq_desc for 21 on node -1 +[ 0.537747] alloc kstat_irqs on node -1 +[ 0.537753] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.537767] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 0.537773] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 0.537814] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 0.537868] uhci_hcd 0000:00:1a.1: irq 21, io base 0x000050a0 +[ 0.538019] hub 4-0:1.0: USB hub found +[ 0.538025] hub 4-0:1.0: 2 ports detected +[ 0.538112] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.538125] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.538131] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 0.538170] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 0.538210] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00005080 +[ 0.538359] hub 5-0:1.0: USB hub found +[ 0.538364] hub 5-0:1.0: 2 ports detected +[ 0.538449] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.538461] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 0.538467] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 0.538506] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 0.538561] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00005060 +[ 0.538708] hub 6-0:1.0: USB hub found +[ 0.538715] hub 6-0:1.0: 2 ports detected +[ 0.538804] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.538816] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 0.538822] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 0.538867] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 0.538909] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040 +[ 0.539059] hub 7-0:1.0: USB hub found +[ 0.539064] hub 7-0:1.0: 2 ports detected +[ 0.539226] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 +[ 0.580440] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.580460] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.580595] mice: PS/2 mouse device common for all mice +[ 0.582586] rtc_cmos 00:03: RTC can wake from S4 +[ 0.582644] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.582687] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs +[ 0.582831] device-mapper: uevent: version 1.0.3 +[ 0.583014] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.583104] device-mapper: multipath: version 1.1.1 loaded +[ 0.583107] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.583255] EISA: Probing bus 0 at eisa.0 +[ 0.583257] EISA: Cannot allocate resource for mainboard +[ 0.583260] Cannot allocate resource for EISA slot 1 +[ 0.583263] Cannot allocate resource for EISA slot 2 +[ 0.583265] Cannot allocate resource for EISA slot 3 +[ 0.583268] Cannot allocate resource for EISA slot 4 +[ 0.583270] Cannot allocate resource for EISA slot 5 +[ 0.583273] Cannot allocate resource for EISA slot 6 +[ 0.583275] Cannot allocate resource for EISA slot 7 +[ 0.583278] Cannot allocate resource for EISA slot 8 +[ 0.583280] EISA: Detected 0 cards. +[ 0.583461] cpuidle: using governor ladder +[ 0.583594] cpuidle: using governor menu +[ 0.584001] TCP cubic registered +[ 0.584162] NET: Registered protocol family 10 +[ 0.584631] lo: Disabled Privacy Extensions +[ 0.585036] NET: Registered protocol family 17 +[ 0.585581] Using IPI No-Shortcut mode +[ 0.585686] PM: Resume from disk failed. +[ 0.585700] registered taskstats version 1 +[ 0.586569] Magic number: 6:260:372 +[ 0.586691] rtc_cmos 00:03: setting system clock to 2010-08-21 08:21:31 UTC (1282378891) +[ 0.586695] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.586697] EDD information not available. +[ 0.608706] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 0.670027] ata1.00: ATAPI: HL-DT-ST DVDRAM GSA-T40N, JP01, max UDMA/33 +[ 0.685345] ata1.00: configured for UDMA/33 +[ 0.792177] ACPI: Battery Slot [BAT0] (battery present) +[ 0.810759] isapnp: No Plug & Play device found +[ 0.814471] scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T40N JP01 PQ: 0 ANSI: 5 +[ 0.825861] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 0.825865] Uniform CD-ROM driver Revision: 3.20 +[ 0.826005] sr 0:0:0:0: Attached scsi CD-ROM sr0 +[ 0.826075] sr 0:0:0:0: Attached scsi generic sg0 type 5 +[ 0.826157] Freeing unused kernel memory: 684k freed +[ 0.826635] Write protecting the kernel text: 4924k +[ 0.826707] Write protecting the kernel read-only data: 1972k +[ 0.849772] udev: starting version 151 +[ 0.944095] usb 2-3: new high speed USB device using ehci_hcd and address 2 +[ 0.972966] sdhci: Secure Digital Host Controller Interface driver +[ 0.972970] sdhci: Copyright(c) Pierre Ossman +[ 0.977640] tg3.c:v3.110 (April 9, 2010) +[ 0.977720] tg3 0000:05:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.977742] tg3 0000:05:00.0: setting latency timer to 64 +[ 0.995655] ahci 0000:00:1f.2: version 3.0 +[ 0.995685] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.995768] alloc irq_desc for 44 on node -1 +[ 0.995771] alloc kstat_irqs on node -1 +[ 0.995793] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X +[ 0.995923] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode +[ 0.995927] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems +[ 0.995939] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.024801] alloc irq_desc for 20 on node -1 +[ 1.024805] alloc kstat_irqs on node -1 +[ 1.024815] firewire_ohci 0000:07:00.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.024828] firewire_ohci 0000:07:00.0: setting latency timer to 64 +[ 1.056254] scsi2 : ahci +[ 1.087519] scsi3 : ahci +[ 1.100926] scsi4 : ahci +[ 1.101212] ata3: SATA max UDMA/133 abar m2048@0xd8404000 port 0xd8404100 irq 44 +[ 1.101218] ata4: SATA max UDMA/133 abar m2048@0xd8404000 port 0xd8404180 irq 44 +[ 1.101225] ata5: SATA max UDMA/133 abar m2048@0xd8404000 port 0xd8404200 irq 44 +[ 1.103967] tg3 0000:05:00.0: eth0: Tigon3 [partno(BCM95787m) rev b002] (PCI Express) MAC address 00:1e:ec:42:92:91 +[ 1.103972] tg3 0000:05:00.0: eth0: attached PHY is 5787 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.103977] tg3 0000:05:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.103980] tg3 0000:05:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.111693] Initializing USB Mass Storage driver... +[ 1.111840] scsi5 : usb-storage 2-3:1.0 +[ 1.111945] usbcore: registered new interface driver usb-storage +[ 1.111948] USB Mass Storage support registered. +[ 1.120046] firewire_ohci: Added fw-ohci device 0000:07:00.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x0 +[ 1.120091] sdhci-pci 0000:07:00.1: SDHCI controller found [1180:0822] (rev 22) +[ 1.120122] alloc irq_desc for 22 on node -1 +[ 1.120125] alloc kstat_irqs on node -1 +[ 1.120134] sdhci-pci 0000:07:00.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 1.121172] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.121186] sdhci-pci 0000:07:00.1: setting latency timer to 64 +[ 1.122249] Registered led device: mmc0:: +[ 1.123287] mmc0: SDHCI controller on PCI [0000:07:00.1] using DMA +[ 1.317099] usb 3-1: new full speed USB device using uhci_hcd and address 2 +[ 1.420108] ata4: SATA link down (SStatus 0 SControl 300) +[ 1.420145] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.420172] ata5: SATA link down (SStatus 0 SControl 300) +[ 1.421122] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out +[ 1.421131] ata3.00: ATA-8: ST9160827AS, 3.AAA, max UDMA/133 +[ 1.421134] ata3.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 1.422254] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out +[ 1.422282] ata3.00: configured for UDMA/133 +[ 1.436260] scsi 2:0:0:0: Direct-Access ATA ST9160827AS 3.AA PQ: 0 ANSI: 5 +[ 1.436458] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.436599] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB) +[ 1.436786] sd 2:0:0:0: [sda] Write Protect is off +[ 1.436790] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.436877] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.437298] sda: sda1 sda2 sda3 sda4 < sda5 sda6 > +[ 1.479446] sd 2:0:0:0: [sda] Attached SCSI disk +[ 1.522666] usbcore: registered new interface driver hiddev +[ 1.530373] input: Logitech USB Gaming Mouse as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input5 +[ 1.530498] generic-usb 0003:046D:C041.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Gaming Mouse] on usb-0000:00:1a.0-1/input0 +[ 1.539682] generic-usb 0003:046D:C041.0002: hiddev96,hidraw1: USB HID v1.11 Device [Logitech USB Gaming Mouse] on usb-0000:00:1a.0-1/input1 +[ 1.539706] usbcore: registered new interface driver usbhid +[ 1.539709] usbhid: USB HID core driver +[ 1.609179] firewire_core: created device fw0: GUID b6401e2000023f84, S400 +[ 2.108832] scsi 5:0:0:0: Direct-Access WD 5000AAJ External 1.06 PQ: 0 ANSI: 0 +[ 2.109639] sd 5:0:0:0: Attached scsi generic sg2 type 0 +[ 2.110165] sd 5:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 2.110931] sd 5:0:0:0: [sdb] Write Protect is off +[ 2.110936] sd 5:0:0:0: [sdb] Mode Sense: 00 00 00 00 +[ 2.110939] sd 5:0:0:0: [sdb] Assuming drive cache: write through +[ 2.112425] sd 5:0:0:0: [sdb] Assuming drive cache: write through +[ 2.112435] sdb: sdb1 +[ 2.114908] sd 5:0:0:0: [sdb] Assuming drive cache: write through +[ 2.114914] sd 5:0:0:0: [sdb] Attached SCSI disk +[ 6.853175] EXT3-fs: barriers not enabled +[ 6.864401] kjournald starting. Commit interval 5 seconds +[ 6.864447] EXT3-fs (sda2): mounted filesystem with ordered data mode +[ 9.527294] udev: starting version 151 +[ 9.531442] Swap area shorter than signature indicates +[ 10.034268] Linux agpgart interface v0.103 +[ 10.042456] lib80211: common routines for IEEE802.11 drivers +[ 10.042460] lib80211_crypt: registered algorithm 'NULL' +[ 10.188763] lp: driver loaded but no devices found +[ 10.355128] lirc_dev: IR Remote Control driver registered, major 61 +[ 10.356629] agpgart-intel 0000:00:00.0: Intel 965GM Chipset +[ 10.357805] agpgart-intel 0000:00:00.0: detected 7676K stolen memory +[ 10.365414] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 10.365633] IP: +[ 10.365702] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +[ 10.365852] [] kfifo_alloc+0x26/0x90 +[ 10.365927] *pde = 00000000 +[ 10.366069] Oops: 0002 [#1] SMP +[ 10.366275] last sysfs file: /sys/module/intel_agp/initstate +[ 10.366361] Modules linked in: lirc_ene0100(+) i2c_algo_bit intel_agp lirc_dev video snd soundcore snd_page_alloc psmouse serio_raw lib80211 agpgart output lp parport usbhid hid usb_storage firewire_ohci ahci firewire_core sdhci_pci tg3 sdhci led_class crc_itu_t libahci +[ 10.368016] +[ 10.368016] Pid: 453, comm: modprobe Not tainted 2.6.35-17-generic #23-Ubuntu Nettiling/Aspire 5720Z +[ 10.368016] EIP: 0060:[] EFLAGS: 00010286 CPU: 0 +[ 10.368016] EIP is at kfifo_alloc+0x26/0x90 +[ 10.368016] EAX: f5faa000 EBX: 00001000 ECX: c01665b2 EDX: c01665b2 +[ 10.368016] ESI: 00000000 EDI: f5d09e40 EBP: f5cf1e40 ESP: f5cf1e38 +[ 10.368016] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 10.368016] Process modprobe (pid: 453, ti=f5cf0000 task=f68a3f70 task.ti=f5cf0000) +[ 10.368016] Stack: +[ 10.368016] f695ce40 f6a1d540 f5cf1e68 f806bdb7 00000020 000080d0 f5cf1e68 f7232200 +[ 10.368016] <0> fffffff4 f806bf90 f7232200 f806c3e0 f5cf1e7c c03c737e f7232200 f806c400 +[ 10.368016] <0> f806c400 f5cf1ea0 c03ffa30 f72322d0 f5cf1ea0 c0406c87 00000000 f7232200 +[ 10.368016] Call Trace: +[ 10.368016] [] ? ene_probe+0x157/0x30b [lirc_ene0100] +[ 10.368016] [] ? pnp_device_probe+0x6e/0xd0 +[ 10.368016] [] ? really_probe+0x50/0x150 +[ 10.368016] [] ? pm_runtime_barrier+0x57/0xb0 +[ 10.368016] [] ? driver_probe_device+0x3c/0x60 +[ 10.368016] [] ? __driver_attach+0x81/0x90 +[ 10.368016] [] ? bus_for_each_dev+0x53/0x80 +[ 10.368016] [] ? driver_attach+0x1e/0x20 +[ 10.368016] [] ? __driver_attach+0x0/0x90 +[ 10.368016] [] ? bus_add_driver+0xd5/0x280 +[ 10.368016] [] ? pnp_device_remove+0x0/0x40 +[ 10.368016] [] ? driver_register+0x6a/0x130 +[ 10.368016] [] ? tracepoint_module_notify+0x27/0x30 +[ 10.368016] [] ? pnp_register_driver+0x1c/0x20 +[ 10.368016] [] ? ene_init+0x38/0x3a [lirc_ene0100] +[ 10.368016] [] ? __blocking_notifier_call_chain+0x54/0x70 +[ 10.368016] [] ? do_one_initcall+0x32/0x1a0 +[ 10.368016] [] ? ene_init+0x0/0x3a [lirc_ene0100] +[ 10.368016] [] ? sys_init_module+0x9b/0x1e0 +[ 10.368016] [] ? sys_close+0x75/0xc0 +[ 10.368016] [] ? syscall_call+0x7/0xb +[ 10.368016] Code: 90 8d 74 26 00 55 89 e5 56 53 0f 1f 44 00 00 89 d3 89 c6 85 db 89 ca 8d 43 ff 74 31 85 d8 75 25 89 d8 e8 7e 61 0a 00 85 c0 74 39 <89> 06 31 c0 89 5e 04 c7 46 0c 00 00 00 00 c7 46 08 00 00 00 00 +[ 10.368016] EIP: [] kfifo_alloc+0x26/0x90 SS:ESP 0068:f5cf1e38 +[ 10.368016] CR2: 0000000000000000 +[ 10.377304] ---[ end trace 4928562ce252ec85 ]--- +[ 10.502505] type=1400 audit(1282378901.411:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=674 comm="apparmor_parser" +[ 10.503466] type=1400 audit(1282378901.411:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=674 comm="apparmor_parser" +[ 10.504077] type=1400 audit(1282378901.415:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=674 comm="apparmor_parser" +[ 10.687978] [drm] Initialized drm 1.1.0 20060810 +[ 10.688741] r852 0000:07:00.3: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 10.688856] r852 0000:07:00.3: setting latency timer to 64 +[ 10.689093] r852: driver loaded succesfully +[ 10.777118] wl: module license 'MIXED/Proprietary' taints kernel. +[ 10.784479] wl 0000:06:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 10.784624] wl 0000:06:00.0: setting latency timer to 64 +[ 10.854238] input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input6 +[ 10.890037] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input7 +[ 10.896370] lib80211_crypt: registered algorithm 'TKIP' +[ 10.896711] eth1: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.60.48.36 +[ 11.135544] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 11.135637] i915 0000:00:02.0: setting latency timer to 64 +[ 11.172233] alloc irq_desc for 45 on node -1 +[ 11.172301] alloc kstat_irqs on node -1 +[ 11.172378] i915 0000:00:02.0: irq 45 for MSI/MSI-X +[ 11.172466] [drm] set up 7M of stolen space +[ 11.278709] [drm] initialized overlay support +[ 11.584063] Skipping EDID probe due to cached edid +[ 12.073887] Console: switching to colour frame buffer device 160x50 +[ 12.078531] fb0: inteldrmfb frame buffer device +[ 12.078533] drm: registered panic notifier +[ 12.078537] Slow work thread pool: Starting up +[ 12.078620] Slow work thread pool: Ready +[ 12.392160] acpi device:3a: registered as cooling_device2 +[ 12.392550] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8 +[ 12.392702] ACPI: Video Device [OVGA] (multi-head: yes rom: no post: no) +[ 12.392796] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 12.393125] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 12.393321] alloc irq_desc for 46 on node -1 +[ 12.393364] alloc kstat_irqs on node -1 +[ 12.393424] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X +[ 12.393547] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 12.724086] Skipping EDID probe due to cached edid +[ 12.895312] EXT3-fs (sda2): using internal journal +[ 13.299916] EXT3-fs: barriers not enabled +[ 13.311097] kjournald starting. Commit interval 5 seconds +[ 13.311329] EXT3-fs (sda1): using internal journal +[ 13.311335] EXT3-fs (sda1): mounted filesystem with ordered data mode +[ 14.180926] EXT4-fs (sda6): warning: maximal mount count reached, running e2fsck is recommended +[ 14.183731] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) +[ 19.302046] alloc irq_desc for 47 on node -1 +[ 19.302052] alloc kstat_irqs on node -1 +[ 19.302092] tg3 0000:05:00.0: irq 47 for MSI/MSI-X +[ 19.471528] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 19.694795] type=1400 audit(1282378910.603:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1040 comm="apparmor_parser" +[ 19.695670] type=1400 audit(1282378910.603:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1040 comm="apparmor_parser" +[ 19.696154] type=1400 audit(1282378910.603:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1040 comm="apparmor_parser" +[ 19.739891] type=1400 audit(1282378910.647:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1039 comm="apparmor_parser" +[ 19.948473] type=1400 audit(1282378910.859:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1042 comm="apparmor_parser" +[ 19.959537] type=1400 audit(1282378910.867:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=1042 comm="apparmor_parser" +[ 19.962053] type=1400 audit(1282378910.871:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1046 comm="apparmor_parser" +[ 19.963085] type=1400 audit(1282378910.871:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1046 comm="apparmor_parser" +[ 19.966500] type=1400 audit(1282378910.875:13): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=1042 comm="apparmor_parser" +[ 20.000288] type=1400 audit(1282378910.907:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi" pid=1048 comm="apparmor_parser" +[ 21.087780] tg3 0000:05:00.0: eth0: Link is up at 100 Mbps, full duplex +[ 21.087786] tg3 0000:05:00.0: eth0: Flow control is off for TX and off for RX +[ 21.088025] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 22.035459] apm: BIOS not found. + +Bug: 622034 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-17-generic (buildd@yellow) (gcc version 4.4.5 20100816 (prerelease) (Ubuntu/Linaro 4.4.4-9ubuntu1) ) #23-Ubuntu SMP Fri Aug 20 01:22:04 UTC 2010 (Ubuntu 2.6.35-17.23-generic 2.6.35.2) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-17-generic root=UUID=dc17aa56-caa0-4d4a-a916-96d0086fcc11 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000afd70000 (usable) +[ 0.000000] BIOS-e820: 00000000afd70000 - 00000000afdbf000 (reserved) +[ 0.000000] BIOS-e820: 00000000afdbf000 - 00000000afe58000 (usable) +[ 0.000000] BIOS-e820: 00000000afe58000 - 00000000afebf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000afebf000 - 00000000afeec000 (usable) +[ 0.000000] BIOS-e820: 00000000afeec000 - 00000000afeff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000afeff000 - 00000000aff00000 (usable) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000e1000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-through +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 00FFF00000 mask FFFFF00000 write-protect +[ 0.000000] 1 base 0000000000 mask FF80000000 write-back +[ 0.000000] 2 base 0080000000 mask FFE0000000 write-back +[ 0.000000] 3 base 00A0000000 mask FFF0000000 write-back +[ 0.000000] 4 base 0100000000 mask FFC0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] TOM2: 0000000140000000 aka 5120M +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xaff00 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000afd70000 (usable) +[ 0.000000] modified: 00000000afd70000 - 00000000afdbf000 (reserved) +[ 0.000000] modified: 00000000afdbf000 - 00000000afe58000 (usable) +[ 0.000000] modified: 00000000afe58000 - 00000000afebf000 (ACPI NVS) +[ 0.000000] modified: 00000000afebf000 - 00000000afeec000 (usable) +[ 0.000000] modified: 00000000afeec000 - 00000000afeff000 (ACPI data) +[ 0.000000] modified: 00000000afeff000 - 00000000aff00000 (usable) +[ 0.000000] modified: 00000000e0000000 - 00000000e1000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000aff00000 +[ 0.000000] 0000000000 - 00afe00000 page 2M +[ 0.000000] 00afe00000 - 00aff00000 page 4k +[ 0.000000] kernel direct mapping tables up to aff00000 @ 16000-1b000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000 +[ 0.000000] 0100000000 - 0140000000 page 2M +[ 0.000000] kernel direct mapping tables up to 140000000 @ 19000-1f000 +[ 0.000000] RAMDISK: 37574000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HP ) +[ 0.000000] ACPI: XSDT 00000000afefe120 0005C (v01 HPQOEM SLIC-MPC 00000001 01000013) +[ 0.000000] ACPI: FACP 00000000afefd000 000F4 (v04 HP TRINITY 00000003 LOHR 01000013) +[ 0.000000] ACPI: DSDT 00000000afeef000 0A2F0 (v01 HP TRINITY F0000000 LOHR 01000013) +[ 0.000000] ACPI: FACS 00000000afe61000 00040 +[ 0.000000] ACPI: HPET 00000000afefc000 00038 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013) +[ 0.000000] ACPI: APIC 00000000afefb000 00084 (v02 HPQOEM SLIC-MPC 00000001 LOHR 01000013) +[ 0.000000] ACPI: MCFG 00000000afefa000 0003C (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013) +[ 0.000000] ACPI: BOOT 00000000afeee000 00028 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013) +[ 0.000000] ACPI: SLIC 00000000afeed000 00176 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013) +[ 0.000000] ACPI: SSDT 00000000afeec000 00386 (v01 AMD PowerNow 00000001 AMD 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] Scanning NUMA topology in Northbridge 24 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000140000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801037fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00140000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[6] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000afd70 +[ 0.000000] 0: 0x000afdbf -> 0x000afe58 +[ 0.000000] 0: 0x000afebf -> 0x000afeec +[ 0.000000] 0: 0x000afeff -> 0x000aff00 +[ 0.000000] 0: 0x00100000 -> 0x00140000 +[ 0.000000] On node 0 totalpages: 982470 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 702063 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3584 pages used for memmap +[ 0.000000] Normal zone: 258560 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x1002a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [1a000 - 1a7ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000afd70000 - 00000000afdbf000 +[ 0.000000] PM: Registered nosave memory: 00000000afe58000 - 00000000afebf000 +[ 0.000000] PM: Registered nosave memory: 00000000afeec000 - 00000000afeff000 +[ 0.000000] PM: Registered nosave memory: 00000000aff00000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e1000000 +[ 0.000000] PM: Registered nosave memory: 00000000e1000000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000fff00000 +[ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at aff00000 (gap: aff00000:30100000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91456 r8192 d23232 u524288 +[ 0.000000] pcpu-alloc: s91456 r8192 d23232 u524288 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] early_res array is doubled to 128 at [1a800 - 1b7ff] +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 964550 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-17-generic root=UUID=dc17aa56-caa0-4d4a-a916-96d0086fcc11 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (60 early reservations) +[ 0.000000] #1 [0001000000 - 0001d170d4] TEXT DATA BSS +[ 0.000000] #2 [0037574000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [000009fc00 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d18000 - 0001d18254] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000019000] PGTABLE +[ 0.000000] #8 [0000019000 - 000001a000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d18280 - 0001d19280] BOOTMEM +[ 0.000000] #11 [0001d17100 - 0001d173d0] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103800000] MEMMAP 0 +[ 0.000000] #15 [0001d17400 - 0001d17580] BOOTMEM +[ 0.000000] #16 [0001d19280 - 0001d31280] BOOTMEM +[ 0.000000] #17 [0001d31280 - 0001d37280] BOOTMEM +[ 0.000000] #18 [0001d38000 - 0001d39000] BOOTMEM +[ 0.000000] #19 [0001d17580 - 0001d175c1] BOOTMEM +[ 0.000000] #20 [0001d17600 - 0001d17643] BOOTMEM +[ 0.000000] #21 [0001d17680 - 0001d17a00] BOOTMEM +[ 0.000000] #22 [0001d17a00 - 0001d17a68] BOOTMEM +[ 0.000000] #23 [0001d17a80 - 0001d17ae8] BOOTMEM +[ 0.000000] #24 [0001d17b00 - 0001d17b68] BOOTMEM +[ 0.000000] #25 [0001d17b80 - 0001d17be8] BOOTMEM +[ 0.000000] #26 [0001d17c00 - 0001d17c68] BOOTMEM +[ 0.000000] #27 [0001d17c80 - 0001d17ce8] BOOTMEM +[ 0.000000] #28 [0001d17d00 - 0001d17d68] BOOTMEM +[ 0.000000] #29 [0001d17d80 - 0001d17de8] BOOTMEM +[ 0.000000] #30 [0001d17e00 - 0001d17e68] BOOTMEM +[ 0.000000] #31 [0001d17e80 - 0001d17ee8] BOOTMEM +[ 0.000000] #32 [0001d17f00 - 0001d17f68] BOOTMEM +[ 0.000000] #33 [0001d17f80 - 0001d17fe8] BOOTMEM +[ 0.000000] #34 [0001d37280 - 0001d372e8] BOOTMEM +[ 0.000000] #35 [0001d37300 - 0001d37368] BOOTMEM +[ 0.000000] #36 [0001d37380 - 0001d373e8] BOOTMEM +[ 0.000000] #37 [0001d37400 - 0001d37420] BOOTMEM +[ 0.000000] #38 [0001d37440 - 0001d37460] BOOTMEM +[ 0.000000] #39 [0001d37480 - 0001d374a0] BOOTMEM +[ 0.000000] #40 [0001d374c0 - 0001d374e0] BOOTMEM +[ 0.000000] #41 [0001d37500 - 0001d37520] BOOTMEM +[ 0.000000] #42 [0001d37540 - 0001d375aa] BOOTMEM +[ 0.000000] #43 [0001d375c0 - 0001d3762a] BOOTMEM +[ 0.000000] #44 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #45 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #46 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #47 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #48 [0001d37640 - 0001d37648] BOOTMEM +[ 0.000000] #49 [0001d37680 - 0001d37688] BOOTMEM +[ 0.000000] #50 [0001d376c0 - 0001d376d0] BOOTMEM +[ 0.000000] #51 [0001d37700 - 0001d37720] BOOTMEM +[ 0.000000] #52 [0001d37740 - 0001d37870] BOOTMEM +[ 0.000000] #53 [0001d37880 - 0001d378d0] BOOTMEM +[ 0.000000] #54 [0001d37900 - 0001d37950] BOOTMEM +[ 0.000000] #55 [0001d39000 - 0001d41000] BOOTMEM +[ 0.000000] #56 [0001f9e000 - 0005f9e000] BOOTMEM +[ 0.000000] #57 [0001d41000 - 0001d61000] BOOTMEM +[ 0.000000] #58 [0001d61000 - 0001da1000] BOOTMEM +[ 0.000000] #59 [000001b800 - 0000023800] BOOTMEM +[ 0.000000] Memory: 3783772k/5242880k available (5698k kernel code, 1313000k absent, 146108k reserved, 5389k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:712 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 39321600 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2099.851 MHz processor. +[ 0.030010] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.69 BogoMIPS (lpj=20998470) +[ 0.030016] pid_max: default: 32768 minimum: 301 +[ 0.030045] Security Framework initialized +[ 0.030066] AppArmor: AppArmor initialized +[ 0.030068] Yama: becoming mindful. +[ 0.040094] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.042863] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.044126] Mount-cache hash table entries: 256 +[ 0.044290] Initializing cgroup subsys ns +[ 0.044295] Initializing cgroup subsys cpuacct +[ 0.044300] Initializing cgroup subsys memory +[ 0.044311] Initializing cgroup subsys devices +[ 0.044314] Initializing cgroup subsys freezer +[ 0.044316] Initializing cgroup subsys net_cls +[ 0.044348] tseg: 00aff00000 +[ 0.044351] CPU: Physical Processor ID: 0 +[ 0.044352] CPU: Processor Core ID: 0 +[ 0.044355] mce: CPU supports 5 MCE banks +[ 0.044367] Performance Events: AMD PMU driver. +[ 0.044373] ... version: 0 +[ 0.044375] ... bit width: 48 +[ 0.044377] ... generic registers: 4 +[ 0.044379] ... value mask: 0000ffffffffffff +[ 0.044381] ... max period: 00007fffffffffff +[ 0.044383] ... fixed-purpose events: 0 +[ 0.044385] ... event mask: 000000000000000f +[ 0.046800] ACPI: Core revision 20100428 +[ 0.060012] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.060018] ftrace: allocating 22644 entries in 89 pages +[ 0.070105] Setting APIC routing to flat +[ 0.070500] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.174398] CPU0: AMD Turion(tm) X2 Dual-Core Mobile RM-72 stepping 01 +[ 0.180000] Booting Node 0, Processors #1 +[ 0.340000] TSC synchronization [CPU#0 -> CPU#1]: +[ 0.340000] Measured 227621142 cycles TSC warp between CPUs, turning off TSC clock. +[ 0.340000] Marking TSC unstable due to check_tsc_sync_source failed +[ 0.340010] Brought up 2 CPUs +[ 0.340013] Total of 2 processors activated (8389.43 BogoMIPS). +[ 0.340290] devtmpfs: initialized +[ 0.340952] regulator: core version 0.5 +[ 0.341019] Time: 19:49:59 Date: 08/21/10 +[ 0.341076] NET: Registered protocol family 16 +[ 0.341242] TOM: 00000000c0000000 aka 3072M +[ 0.341245] Fam 10h mmconf [e0000000, e0ffffff] +[ 0.341253] TOM2: 0000000140000000 aka 5120M +[ 0.341264] ACPI: bus type pci registered +[ 0.341389] PCI: MMCONFIG for domain 0000 [bus 00-0f] at [mem 0xe0000000-0xe0ffffff] (base 0xe0000000) +[ 0.341393] PCI: MMCONFIG at [mem 0xe0000000-0xe0ffffff] reserved in E820 +[ 0.343570] PCI: Using configuration type 1 for base access +[ 0.343597] mtrr: your CPUs had inconsistent fixed MTRR settings +[ 0.343599] mtrr: probably your BIOS does not setup all CPUs. +[ 0.343601] mtrr: corrected configuration. +[ 0.344272] Trying to unpack rootfs image as initramfs... +[ 0.344272] bio: create slab at 0 +[ 0.344272] ACPI: EC: Look up EC in DSDT +[ 0.344272] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.351778] ACPI: BIOS _OSI(Linux) query ignored +[ 0.380138] ACPI: Interpreter enabled +[ 0.380142] ACPI: (supports S0 S3 S4 S5) +[ 0.380171] ACPI: Using IOAPIC for interrupt routing +[ 0.380867] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 0.381289] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 0.553405] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62 +[ 0.553738] ACPI: No dock devices found. +[ 0.553743] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.555096] \_SB_.PCI0:_OSC request failed +[ 0.555098] _OSC request data:1 8 1f +[ 0.555103] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.557481] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.557485] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.557488] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.557491] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] +[ 0.557493] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] +[ 0.557496] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] +[ 0.557499] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff] +[ 0.557502] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] +[ 0.557505] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.557508] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.557511] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.557513] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] +[ 0.557516] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] +[ 0.557519] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] +[ 0.557522] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] +[ 0.557525] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] +[ 0.557528] pci_root PNP0A08:00: host bridge window [mem 0xe1000000-0xffffffff] +[ 0.557736] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold +[ 0.557740] pci 0000:00:04.0: PME# disabled +[ 0.557796] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold +[ 0.557799] pci 0000:00:05.0: PME# disabled +[ 0.557855] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold +[ 0.557859] pci 0000:00:06.0: PME# disabled +[ 0.557914] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 0.557917] pci 0000:00:07.0: PME# disabled +[ 0.558009] pci 0000:00:11.0: reg 10: [io 0x8038-0x803f] +[ 0.558018] pci 0000:00:11.0: reg 14: [io 0x804c-0x804f] +[ 0.558026] pci 0000:00:11.0: reg 18: [io 0x8030-0x8037] +[ 0.558034] pci 0000:00:11.0: reg 1c: [io 0x8048-0x804b] +[ 0.558042] pci 0000:00:11.0: reg 20: [io 0x8010-0x801f] +[ 0.558051] pci 0000:00:11.0: reg 24: [mem 0xd2508000-0xd25083ff] +[ 0.558114] pci 0000:00:12.0: reg 10: [mem 0xd2507000-0xd2507fff] +[ 0.558180] pci 0000:00:12.1: reg 10: [mem 0xd2506000-0xd2506fff] +[ 0.558260] pci 0000:00:12.2: reg 10: [mem 0xd2508500-0xd25085ff] +[ 0.558323] pci 0000:00:12.2: supports D1 D2 +[ 0.558325] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot +[ 0.558331] pci 0000:00:12.2: PME# disabled +[ 0.558371] pci 0000:00:13.0: reg 10: [mem 0xd2505000-0xd2505fff] +[ 0.558437] pci 0000:00:13.1: reg 10: [mem 0xd2504000-0xd2504fff] +[ 0.558516] pci 0000:00:13.2: reg 10: [mem 0xd2508400-0xd25084ff] +[ 0.558579] pci 0000:00:13.2: supports D1 D2 +[ 0.558582] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot +[ 0.558587] pci 0000:00:13.2: PME# disabled +[ 0.558719] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007] +[ 0.558727] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003] +[ 0.558735] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007] +[ 0.558743] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003] +[ 0.558752] pci 0000:00:14.1: reg 20: [io 0x8000-0x800f] +[ 0.558827] pci 0000:00:14.2: reg 10: [mem 0xd2500000-0xd2503fff 64bit] +[ 0.558879] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.558884] pci 0000:00:14.2: PME# disabled +[ 0.559241] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref] +[ 0.559246] pci 0000:01:05.0: reg 14: [io 0x7000-0x70ff] +[ 0.559252] pci 0000:01:05.0: reg 18: [mem 0xd2400000-0xd240ffff] +[ 0.559262] pci 0000:01:05.0: reg 24: [mem 0xd2300000-0xd23fffff] +[ 0.559281] pci 0000:01:05.0: supports D1 D2 +[ 0.559305] pci 0000:01:05.1: reg 10: [mem 0xd2410000-0xd2413fff] +[ 0.559337] pci 0000:01:05.1: supports D1 D2 +[ 0.559421] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.559426] pci 0000:00:01.0: bridge window [io 0x7000-0x7fff] +[ 0.559430] pci 0000:00:01.0: bridge window [mem 0xd2300000-0xd24fffff] +[ 0.559436] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.559475] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.559480] pci 0000:00:04.0: bridge window [io 0x3000-0x6fff] +[ 0.559484] pci 0000:00:04.0: bridge window [mem 0xd1300000-0xd22fffff] +[ 0.559490] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.559555] pci 0000:08:00.0: reg 10: [mem 0xd1200300-0xd12003ff] +[ 0.559596] pci 0000:08:00.0: reg 30: [mem 0xffff0000-0xffffffff pref] +[ 0.559678] pci 0000:08:00.2: reg 10: [mem 0xd1200200-0xd12002ff] +[ 0.559793] pci 0000:08:00.3: reg 10: [mem 0xd1200100-0xd12001ff] +[ 0.559907] pci 0000:08:00.4: reg 10: [mem 0xd1200000-0xd12000ff] +[ 0.580024] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.580029] pci 0000:00:05.0: bridge window [io 0xfffffffffffff000-0x0000] (disabled) +[ 0.580033] pci 0000:00:05.0: bridge window [mem 0xd1200000-0xd12fffff] +[ 0.580039] pci 0000:00:05.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.580109] pci 0000:09:00.0: reg 10: [mem 0xd1100000-0xd110ffff 64bit] +[ 0.580189] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.580199] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.580204] pci 0000:00:06.0: bridge window [io 0xfffffffffffff000-0x0000] (disabled) +[ 0.580208] pci 0000:00:06.0: bridge window [mem 0xd1100000-0xd11fffff] +[ 0.580214] pci 0000:00:06.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.580278] pci 0000:0a:00.0: reg 10: [io 0x2000-0x20ff] +[ 0.580296] pci 0000:0a:00.0: reg 18: [mem 0xd1010000-0xd1010fff 64bit pref] +[ 0.580310] pci 0000:0a:00.0: reg 20: [mem 0xd1000000-0xd100ffff 64bit pref] +[ 0.580318] pci 0000:0a:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref] +[ 0.580355] pci 0000:0a:00.0: supports D1 D2 +[ 0.580357] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.580362] pci 0000:0a:00.0: PME# disabled +[ 0.600014] pci 0000:00:07.0: PCI bridge to [bus 0a-0a] +[ 0.600019] pci 0000:00:07.0: bridge window [io 0x2000-0x2fff] +[ 0.600023] pci 0000:00:07.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.600029] pci 0000:00:07.0: bridge window [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.600103] pci 0000:00:14.4: PCI bridge to [bus 80-8f] (subtractive decode) +[ 0.600108] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.600114] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.600119] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.600123] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.600125] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.600128] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.600131] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode) +[ 0.600134] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode) +[ 0.600137] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode) +[ 0.600140] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode) +[ 0.600143] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) +[ 0.600146] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.600149] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.600152] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.600155] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode) +[ 0.600158] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode) +[ 0.600161] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode) +[ 0.600164] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode) +[ 0.600167] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) +[ 0.600170] pci 0000:00:14.4: bridge window [mem 0xe1000000-0xffffffff] (subtractive decode) +[ 0.600234] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.600428] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT] +[ 0.600537] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT] +[ 0.600655] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT] +[ 0.600810] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP6._PRT] +[ 0.600936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB7_._PRT] +[ 0.601121] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT] +[ 0.601364] \_SB_.PCI0:_OSC request failed +[ 0.601366] _OSC request data:1 1f 1f +[ 0.623529] Freeing initrd memory: 10736k freed +[ 0.623461] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.623713] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.623962] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.624211] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.624460] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.624708] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.624957] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.625207] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.625310] HEST: Table is not found! +[ 0.625441] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.625448] vgaarb: loaded +[ 0.625631] SCSI subsystem initialized +[ 0.625768] libata version 3.00 loaded. +[ 0.625827] usbcore: registered new interface driver usbfs +[ 0.625841] usbcore: registered new interface driver hub +[ 0.625871] usbcore: registered new device driver usb +[ 0.626154] ACPI: WMI: Mapper loaded +[ 0.626156] PCI: Using ACPI for IRQ routing +[ 0.626160] PCI: pci_cache_line_size set to 64 bytes +[ 0.626345] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.626348] reserve RAM buffer: 00000000afd70000 - 00000000afffffff +[ 0.626352] reserve RAM buffer: 00000000afe58000 - 00000000afffffff +[ 0.626355] reserve RAM buffer: 00000000afeec000 - 00000000afffffff +[ 0.626358] reserve RAM buffer: 00000000aff00000 - 00000000afffffff +[ 0.626476] NetLabel: Initializing +[ 0.626478] NetLabel: domain hash size = 128 +[ 0.626480] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.626501] NetLabel: unlabeled traffic allowed by default +[ 0.626582] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.626587] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.628618] Switching to clocksource hpet +[ 0.630352] AppArmor: AppArmor Filesystem Enabled +[ 0.630373] pnp: PnP ACPI init +[ 0.630394] ACPI: bus type pnp registered +[ 0.690322] alloc irq_desc for 23 on node 0 +[ 0.690325] alloc kstat_irqs on node 0 +[ 0.691039] pnp: PnP ACPI: found 12 devices +[ 0.691041] ACPI: ACPI bus type pnp unregistered +[ 0.691058] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.691061] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.691070] system 00:08: [io 0x0400-0x04cf] has been reserved +[ 0.691073] system 00:08: [io 0x04d0-0x04d1] has been reserved +[ 0.691076] system 00:08: [io 0x04d6] has been reserved +[ 0.691079] system 00:08: [io 0x0680-0x06ff] has been reserved +[ 0.691081] system 00:08: [io 0x077a] has been reserved +[ 0.691084] system 00:08: [io 0x0c00-0x0c01] has been reserved +[ 0.691087] system 00:08: [io 0x0c14] has been reserved +[ 0.691090] system 00:08: [io 0x0c50-0x0c52] has been reserved +[ 0.691093] system 00:08: [io 0x0c6c] has been reserved +[ 0.691095] system 00:08: [io 0x0c6f] has been reserved +[ 0.691098] system 00:08: [io 0x0cd0-0x0cdb] has been reserved +[ 0.691104] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.691107] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved +[ 0.696222] pci 0000:08:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref] +[ 0.696229] pci 0000:0a:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref] +[ 0.696310] pci 0000:00:05.0: BAR 15: assigned [mem 0xd2600000-0xd26fffff pref] +[ 0.696315] pci 0000:00:07.0: BAR 14: assigned [mem 0xd2700000-0xd27fffff] +[ 0.696319] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.696323] pci 0000:00:01.0: bridge window [io 0x7000-0x7fff] +[ 0.696328] pci 0000:00:01.0: bridge window [mem 0xd2300000-0xd24fffff] +[ 0.696332] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.696337] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.696340] pci 0000:00:04.0: bridge window [io 0x3000-0x6fff] +[ 0.696345] pci 0000:00:04.0: bridge window [mem 0xd1300000-0xd22fffff] +[ 0.696349] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.696355] pci 0000:08:00.0: BAR 6: assigned [mem 0xd2600000-0xd260ffff pref] +[ 0.696359] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.696361] pci 0000:00:05.0: bridge window [io disabled] +[ 0.696365] pci 0000:00:05.0: bridge window [mem 0xd1200000-0xd12fffff] +[ 0.696369] pci 0000:00:05.0: bridge window [mem 0xd2600000-0xd26fffff pref] +[ 0.696374] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.696376] pci 0000:00:06.0: bridge window [io disabled] +[ 0.696381] pci 0000:00:06.0: bridge window [mem 0xd1100000-0xd11fffff] +[ 0.696384] pci 0000:00:06.0: bridge window [mem pref disabled] +[ 0.696390] pci 0000:0a:00.0: BAR 6: assigned [mem 0xd1020000-0xd103ffff pref] +[ 0.696393] pci 0000:00:07.0: PCI bridge to [bus 0a-0a] +[ 0.696396] pci 0000:00:07.0: bridge window [io 0x2000-0x2fff] +[ 0.696400] pci 0000:00:07.0: bridge window [mem 0xd2700000-0xd27fffff] +[ 0.696404] pci 0000:00:07.0: bridge window [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.696410] pci 0000:00:14.4: PCI bridge to [bus 80-8f] +[ 0.696447] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.696453] pci 0000:00:14.4: bridge window [mem disabled] +[ 0.696458] pci 0000:00:14.4: bridge window [mem pref disabled] +[ 0.696472] pci 0000:00:01.0: setting latency timer to 64 +[ 0.696481] alloc irq_desc for 16 on node -1 +[ 0.696483] alloc kstat_irqs on node -1 +[ 0.696489] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.696493] pci 0000:00:04.0: setting latency timer to 64 +[ 0.696501] alloc irq_desc for 17 on node -1 +[ 0.696502] alloc kstat_irqs on node -1 +[ 0.696506] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.696510] pci 0000:00:05.0: setting latency timer to 64 +[ 0.696518] alloc irq_desc for 18 on node -1 +[ 0.696519] alloc kstat_irqs on node -1 +[ 0.696523] pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.696527] pci 0000:00:06.0: setting latency timer to 64 +[ 0.696534] alloc irq_desc for 19 on node -1 +[ 0.696536] alloc kstat_irqs on node -1 +[ 0.696540] pci 0000:00:07.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 0.696544] pci 0000:00:07.0: setting latency timer to 64 +[ 0.696554] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.696556] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.696559] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.696562] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.696564] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.696567] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.696570] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff] +[ 0.696572] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff] +[ 0.696575] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff] +[ 0.696578] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff] +[ 0.696580] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff] +[ 0.696583] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff] +[ 0.696585] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff] +[ 0.696588] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff] +[ 0.696591] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff] +[ 0.696593] pci_bus 0000:00: resource 19 [mem 0xc0000000-0xdfffffff] +[ 0.696596] pci_bus 0000:00: resource 20 [mem 0xe1000000-0xffffffff] +[ 0.696599] pci_bus 0000:01: resource 0 [io 0x7000-0x7fff] +[ 0.696601] pci_bus 0000:01: resource 1 [mem 0xd2300000-0xd24fffff] +[ 0.696604] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.696607] pci_bus 0000:02: resource 0 [io 0x3000-0x6fff] +[ 0.696610] pci_bus 0000:02: resource 1 [mem 0xd1300000-0xd22fffff] +[ 0.696613] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.696616] pci_bus 0000:08: resource 1 [mem 0xd1200000-0xd12fffff] +[ 0.696618] pci_bus 0000:08: resource 2 [mem 0xd2600000-0xd26fffff pref] +[ 0.696621] pci_bus 0000:09: resource 1 [mem 0xd1100000-0xd11fffff] +[ 0.696624] pci_bus 0000:0a: resource 0 [io 0x2000-0x2fff] +[ 0.696626] pci_bus 0000:0a: resource 1 [mem 0xd2700000-0xd27fffff] +[ 0.696629] pci_bus 0000:0a: resource 2 [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.696632] pci_bus 0000:80: resource 0 [io 0x1000-0x1fff] +[ 0.696635] pci_bus 0000:80: resource 4 [io 0x0000-0x0cf7] +[ 0.696637] pci_bus 0000:80: resource 5 [io 0x0d00-0xffff] +[ 0.696640] pci_bus 0000:80: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.696642] pci_bus 0000:80: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.696645] pci_bus 0000:80: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.696648] pci_bus 0000:80: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.696650] pci_bus 0000:80: resource 10 [mem 0x000cc000-0x000cffff] +[ 0.696653] pci_bus 0000:80: resource 11 [mem 0x000d0000-0x000d3fff] +[ 0.696655] pci_bus 0000:80: resource 12 [mem 0x000d4000-0x000d7fff] +[ 0.696658] pci_bus 0000:80: resource 13 [mem 0x000d8000-0x000dbfff] +[ 0.696661] pci_bus 0000:80: resource 14 [mem 0x000dc000-0x000dffff] +[ 0.696663] pci_bus 0000:80: resource 15 [mem 0x000e0000-0x000e3fff] +[ 0.696666] pci_bus 0000:80: resource 16 [mem 0x000e4000-0x000e7fff] +[ 0.696668] pci_bus 0000:80: resource 17 [mem 0x000e8000-0x000ebfff] +[ 0.696671] pci_bus 0000:80: resource 18 [mem 0x000ec000-0x000effff] +[ 0.696674] pci_bus 0000:80: resource 19 [mem 0xc0000000-0xdfffffff] +[ 0.696676] pci_bus 0000:80: resource 20 [mem 0xe1000000-0xffffffff] +[ 0.696720] NET: Registered protocol family 2 +[ 0.696921] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.698840] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.703724] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.704300] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.704304] TCP reno registered +[ 0.704322] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.704378] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.704533] NET: Registered protocol family 1 +[ 0.704758] pci 0000:01:05.0: Boot video device +[ 0.704782] PCI: CLS 64 bytes, default 64 +[ 0.704785] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.704789] Placing 64MB software IO TLB between ffff880001f9e000 - ffff880005f9e000 +[ 0.704791] software IO TLB at phys 0x1f9e000 - 0x5f9e000 +[ 0.704867] Simple Boot Flag at 0x44 set to 0x1 +[ 0.705066] Scanning for low memory corruption every 60 seconds +[ 0.705261] audit: initializing netlink socket (disabled) +[ 0.705272] type=2000 audit(1282420198.699:1): initialized +[ 0.719826] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.721721] VFS: Disk quotas dquot_6.5.2 +[ 0.721786] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.722557] fuse init (API version 7.14) +[ 0.722678] msgmni has been set to 7411 +[ 0.725876] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.725881] io scheduler noop registered +[ 0.725883] io scheduler deadline registered +[ 0.725929] io scheduler cfq registered (default) +[ 0.726088] pcieport 0000:00:04.0: setting latency timer to 64 +[ 0.726122] alloc irq_desc for 40 on node -1 +[ 0.726124] alloc kstat_irqs on node -1 +[ 0.726136] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X +[ 0.726221] pcieport 0000:00:05.0: setting latency timer to 64 +[ 0.726250] alloc irq_desc for 41 on node -1 +[ 0.726252] alloc kstat_irqs on node -1 +[ 0.726258] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X +[ 0.726318] pcieport 0000:00:06.0: setting latency timer to 64 +[ 0.726346] alloc irq_desc for 42 on node -1 +[ 0.726348] alloc kstat_irqs on node -1 +[ 0.726354] pcieport 0000:00:06.0: irq 42 for MSI/MSI-X +[ 0.726417] pcieport 0000:00:07.0: setting latency timer to 64 +[ 0.726445] alloc irq_desc for 43 on node -1 +[ 0.726447] alloc kstat_irqs on node -1 +[ 0.726453] pcieport 0000:00:07.0: irq 43 for MSI/MSI-X +[ 0.726535] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.726699] \_SB_.PCI0:_OSC request failed +[ 0.726701] _OSC request data:1 0 1f +[ 0.726824] \_SB_.PCI0:_OSC request failed +[ 0.726826] _OSC request data:1 0 1f +[ 0.726848] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.727165] vesafb: framebuffer at 0xc012c000, mapped to 0xffffc90002100000, using 1216k, total 1216k +[ 0.727168] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.727171] vesafb: scrolling: redraw +[ 0.727174] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0 +[ 0.800835] Console: switching to colour frame buffer device 80x30 +[ 0.874465] fb0: VESA VGA frame buffer device +[ 0.878941] ACPI: AC Adapter [ACAD] (on-line) +[ 0.879025] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.879030] ACPI: Power Button [PWRB] +[ 0.879090] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 0.879257] ACPI: Lid Switch [LID] +[ 0.879303] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.879306] ACPI: Power Button [PWRF] +[ 0.879732] ACPI: acpi_idle registered with cpuidle +[ 1.013045] thermal LNXTHERM:01: registered as thermal_zone0 +[ 1.013055] ACPI: Thermal Zone [TZ01] (54 C) +[ 1.013135] ERST: Table is not found! +[ 1.014564] Linux agpgart interface v0.103 +[ 1.014601] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.016097] brd: module loaded +[ 1.016666] loop: module loaded +[ 1.016999] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.017083] pata_acpi 0000:00:14.1: setting latency timer to 64 +[ 1.017408] Fixed MDIO Bus: probed +[ 1.017447] PPP generic driver version 2.4.2 +[ 1.017487] tun: Universal TUN/TAP device driver, 1.6 +[ 1.017489] tun: (C) 1999-2004 Max Krasnyansky +[ 1.017572] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.017625] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 1.017657] ehci_hcd 0000:00:12.2: setting latency timer to 64 +[ 1.017661] ehci_hcd 0000:00:12.2: EHCI Host Controller +[ 1.017696] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1 +[ 1.017776] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround +[ 1.017792] ehci_hcd 0000:00:12.2: debug port 1 +[ 1.017825] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd2508500 +[ 1.031309] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00 +[ 1.031450] hub 1-0:1.0: USB hub found +[ 1.031456] hub 1-0:1.0: 6 ports detected +[ 1.031610] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.031624] ehci_hcd 0000:00:13.2: setting latency timer to 64 +[ 1.031628] ehci_hcd 0000:00:13.2: EHCI Host Controller +[ 1.031666] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2 +[ 1.031733] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround +[ 1.031749] ehci_hcd 0000:00:13.2: debug port 1 +[ 1.031774] ehci_hcd 0000:00:13.2: irq 19, io mem 0xd2508400 +[ 1.051282] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00 +[ 1.051389] hub 2-0:1.0: USB hub found +[ 1.051393] hub 2-0:1.0: 6 ports detected +[ 1.051503] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.051552] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.051565] ohci_hcd 0000:00:12.0: setting latency timer to 64 +[ 1.051569] ohci_hcd 0000:00:12.0: OHCI Host Controller +[ 1.051609] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3 +[ 1.051672] ohci_hcd 0000:00:12.0: irq 16, io mem 0xd2507000 +[ 1.114182] hub 3-0:1.0: USB hub found +[ 1.114225] hub 3-0:1.0: 3 ports detected +[ 1.114301] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.114316] ohci_hcd 0000:00:12.1: setting latency timer to 64 +[ 1.114320] ohci_hcd 0000:00:12.1: OHCI Host Controller +[ 1.114369] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4 +[ 1.114421] ohci_hcd 0000:00:12.1: irq 16, io mem 0xd2506000 +[ 1.174156] hub 4-0:1.0: USB hub found +[ 1.174197] hub 4-0:1.0: 3 ports detected +[ 1.174268] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.174283] ohci_hcd 0000:00:13.0: setting latency timer to 64 +[ 1.174287] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 1.174321] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5 +[ 1.174350] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd2505000 +[ 1.234167] hub 5-0:1.0: USB hub found +[ 1.234208] hub 5-0:1.0: 3 ports detected +[ 1.234283] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.234297] ohci_hcd 0000:00:13.1: setting latency timer to 64 +[ 1.234300] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 1.234335] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6 +[ 1.234352] ohci_hcd 0000:00:13.1: irq 18, io mem 0xd2504000 +[ 1.294241] hub 6-0:1.0: USB hub found +[ 1.294267] hub 6-0:1.0: 3 ports detected +[ 1.294347] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.294491] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 1.333590] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.333609] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.333689] mice: PS/2 mouse device common for all mice +[ 1.333826] rtc_cmos 00:04: RTC can wake from S4 +[ 1.333874] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 1.333940] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs +[ 1.334044] device-mapper: uevent: version 1.0.3 +[ 1.334146] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.334256] device-mapper: multipath: version 1.1.1 loaded +[ 1.334259] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.334503] cpuidle: using governor ladder +[ 1.334506] cpuidle: using governor menu +[ 1.334814] TCP cubic registered +[ 1.334943] NET: Registered protocol family 10 +[ 1.335368] lo: Disabled Privacy Extensions +[ 1.335589] NET: Registered protocol family 17 +[ 1.336402] powernow-k8: Found 1 AMD Turion(tm) X2 Dual-Core Mobile RM-72 (2 cpu cores) (version 2.20.00) +[ 1.336465] powernow-k8: 0 : pstate 0 (2100 MHz) +[ 1.336467] powernow-k8: 1 : pstate 1 (1050 MHz) +[ 1.336469] powernow-k8: 2 : pstate 2 (525 MHz) +[ 1.337857] PM: Resume from disk failed. +[ 1.337871] registered taskstats version 1 +[ 1.338328] Magic number: 6:394:850 +[ 1.338482] rtc_cmos 00:04: setting system clock to 2010-08-21 19:50:00 UTC (1282420200) +[ 1.338485] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.338488] EDD information not available. +[ 1.338591] Freeing unused kernel memory: 908k freed +[ 1.339037] Write protecting the kernel read-only data: 10240k +[ 1.339221] Freeing unused kernel memory: 424k freed +[ 1.339599] Freeing unused kernel memory: 1644k freed +[ 1.360119] usb 1-6: new high speed USB device using ehci_hcd and address 2 +[ 1.365611] udev[73]: starting version 162 +[ 1.369463] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 1.491894] ACPI: Battery Slot [BAT0] (battery present) +[ 1.703341] sdhci: Secure Digital Host Controller Interface driver +[ 1.703346] sdhci: Copyright(c) Pierre Ossman +[ 1.704889] sdhci-pci 0000:08:00.0: SDHCI controller found [197b:2382] (rev 0) +[ 1.704916] sdhci-pci 0000:08:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.704981] sdhci-pci 0000:08:00.0: setting latency timer to 64 +[ 1.705028] Registered led device: mmc0:: +[ 1.705083] mmc0: SDHCI controller on PCI [0000:08:00.0] using ADMA +[ 1.725695] scsi0 : pata_atiixp +[ 1.737284] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.737316] r8169 0000:0a:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.737388] r8169 0000:0a:00.0: setting latency timer to 64 +[ 1.737428] alloc irq_desc for 44 on node -1 +[ 1.737431] alloc kstat_irqs on node -1 +[ 1.737447] r8169 0000:0a:00.0: irq 44 for MSI/MSI-X +[ 1.738106] r8169 0000:0a:00.0: eth0: RTL8102e at 0xffffc900020b2000, 00:23:5a:9d:f6:ea, XID 04c00000 IRQ 44 +[ 1.743794] sdhci-pci 0000:08:00.2: SDHCI controller found [197b:2381] (rev 0) +[ 1.743823] sdhci-pci 0000:08:00.2: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.743836] sdhci-pci 0000:08:00.2: Refusing to bind to secondary interface. +[ 1.743843] sdhci-pci 0000:08:00.2: PCI INT A disabled +[ 1.758174] scsi1 : pata_atiixp +[ 1.759479] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x8000 irq 14 +[ 1.759482] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x8008 irq 15 +[ 1.759929] ahci 0000:00:11.0: version 3.0 +[ 1.760090] alloc irq_desc for 22 on node -1 +[ 1.760092] alloc kstat_irqs on node -1 +[ 1.760102] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.760362] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode +[ 1.760367] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc +[ 1.761898] scsi2 : ahci +[ 1.762056] scsi3 : ahci +[ 1.762120] scsi4 : ahci +[ 1.762215] scsi5 : ahci +[ 1.762312] scsi6 : ahci +[ 1.762411] scsi7 : ahci +[ 1.762497] ata3: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508100 irq 22 +[ 1.762502] ata4: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508180 irq 22 +[ 1.762506] ata5: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508200 irq 22 +[ 1.762510] ata6: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508280 irq 22 +[ 1.762514] ata7: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508300 irq 22 +[ 1.762518] ata8: SATA max UDMA/133 abar m1024@0xd2508000 port 0xd2508380 irq 22 +[ 2.100074] ata4: SATA link down (SStatus 0 SControl 300) +[ 2.100108] ata8: SATA link down (SStatus 0 SControl 300) +[ 2.110074] ata5: SATA link down (SStatus 0 SControl 300) +[ 2.110103] ata7: SATA link down (SStatus 0 SControl 300) +[ 2.280055] ata6: softreset failed (device not ready) +[ 2.280058] ata6: applying SB600 PMP SRST workaround and retrying +[ 2.290107] ata3: softreset failed (device not ready) +[ 2.290110] ata3: applying SB600 PMP SRST workaround and retrying +[ 2.460066] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.464182] ata6.00: ATAPI: HL-DT-ST DVDRAM GT20L, DC03, max UDMA/100 +[ 2.469045] ata6.00: configured for UDMA/100 +[ 2.471313] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.471848] ata3.00: ATA-8: FUJITSU MHZ2320BH G2, 8909, max UDMA/100 +[ 2.471850] ata3.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 2.472566] ata3.00: configured for UDMA/100 +[ 2.490279] scsi 2:0:0:0: Direct-Access ATA FUJITSU MHZ2320B 8909 PQ: 0 ANSI: 5 +[ 2.490477] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 2.490584] sd 2:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 2.490732] sd 2:0:0:0: [sda] Write Protect is off +[ 2.490735] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.490787] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.491085] sda: +[ 2.493606] scsi 5:0:0:0: CD-ROM HL-DT-ST DVDRAM GT20L DC03 PQ: 0 ANSI: 5 +[ 2.504908] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.504913] Uniform CD-ROM driver Revision: 3.20 +[ 2.505045] sr 5:0:0:0: Attached scsi CD-ROM sr0 +[ 2.505122] sr 5:0:0:0: Attached scsi generic sg1 type 5 +[ 2.527237] sda1 sda2 sda3 < sda5 sda6 > +[ 2.546333] sd 2:0:0:0: [sda] Attached SCSI disk +[ 3.129127] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) +[ 5.956755] Adding 8787516k swap on /dev/sda5. Priority:-1 extents:1 across:8787516k +[ 5.976184] udev[386]: starting version 162 +[ 6.054853] lirc_dev: IR Remote Control driver registered, major 61 +[ 6.057101] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 6.059918] IP: [] kfifo_alloc+0x2e/0xb0 +[ 6.061590] PGD 13ad1b067 PUD 13ad1a067 PMD 0 +[ 6.061590] Oops: 0002 [#1] SMP +[ 6.061590] last sysfs file: /sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:26/PNP0303:00/uevent +[ 6.061590] CPU 1 +[ 6.061590] Modules linked in: lirc_ene0100(+) input_polldev(+) lirc_dev parport(+) ahci r8169 mii sdhci_pci sdhci led_class pata_atiixp libahci +[ 6.061590] +[ 6.061590] Pid: 407, comm: modprobe Not tainted 2.6.35-17-generic #23-Ubuntu 30FC/HP Pavilion dv7 Notebook PC +[ 6.061590] RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +[ 6.061590] RSP: 0018:ffff88013b475d08 EFLAGS: 00010286 +[ 6.061590] RAX: ffff8801384be000 RBX: 0000000000000000 RCX: ffffffff8107f199 +[ 6.061590] RDX: ffff8801384ba000 RSI: 00000000000000d0 RDI: 0000000000000246 +[ 6.061590] RBP: ffff88013b475d18 R08: 0000000000000000 R09: 0000000000000246 +[ 6.061590] R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +[ 6.061590] R13: ffff8801394bc800 R14: ffff88013b64c280 R15: 00000000fffffff4 +[ 6.061590] FS: 00007f5fb9cd0700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +[ 6.061590] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 6.061590] CR2: 0000000000000000 CR3: 000000013ad17000 CR4: 00000000000006e0 +[ 6.061590] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 6.061590] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 6.061590] Process modprobe (pid: 407, threadinfo ffff88013b474000, task ffff88013b478000) +[ 6.061590] Stack: +[ 6.061590] ffff88013a65cb40 ffff88013b61b7e0 ffff88013b475d58 ffffffffa005ee4f +[ 6.156739] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 6.162452] acpi device:03: registered as cooling_device2 +[ 6.162685] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input4 +[ 6.162752] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 6.248502] lis3lv02d: hardware type DV7 found. +[ 6.249343] lis3lv02d: 8 bits sensor found +[ 6.497484] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 6.489816] +[ 6.489816] <0> ffff88013b475d38 ffffffffa005f060 ffff8801394bc800 ffffffffa005f580 +[ 6.489816] <0> ffffffffa005f540 00000000fffffff4 ffff88013b475d98 ffffffff8133d7d5 +[ 6.489816] Call Trace: +[ 6.489816] [] ene_probe+0x17f/0x350 [lirc_ene0100] +[ 6.489816] [] pnp_device_probe+0x95/0x100 +[ 6.489816] [] ? driver_sysfs_add+0x62/0x90 +[ 6.489816] [] really_probe+0x68/0x190 +[ 6.489816] [] driver_probe_device+0x45/0x70 +[ 6.489816] [] __driver_attach+0x9b/0xa0 +[ 6.489816] [] ? __driver_attach+0x0/0xa0 +[ 6.489816] [] bus_for_each_dev+0x68/0x90 +[ 6.489816] [] driver_attach+0x1e/0x20 +[ 6.489816] [] bus_add_driver+0xde/0x280 +[ 6.489816] [] driver_register+0x80/0x150 +[ 6.489816] [] ? ene_init+0x0/0x3e [lirc_ene0100] +[ 6.489816] [] pnp_register_driver+0x21/0x30 +[ 6.489816] [] ene_init+0x3c/0x3e [lirc_ene0100] +[ 6.489816] [] do_one_initcall+0x3c/0x1a0 +[ 6.489816] [] sys_init_module+0xbb/0x200 +[ 6.489816] [] system_call_fastpath+0x16/0x1b +[ 6.489816] Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 07 35 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +[ 6.489816] RIP [] kfifo_alloc+0x2e/0xb0 +[ 6.489816] RSP +[ 6.489816] CR2: 0000000000000000 +[ 6.692457] ---[ end trace ca37078d1bb9c7fe ]--- +[ 8.104496] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro +[ 8.151532] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input5 +[ 8.253633] EDAC MC: Ver: 2.1.0 Aug 20 2010 +[ 8.298888] lp: driver loaded but no devices found +[ 8.341356] jmb38x_ms 0000:08:00.3: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 8.420946] jmb38x_ms 0000:08:00.3: setting latency timer to 64 +[ 8.423190] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 +[ 8.622087] cfg80211: Calling CRDA to update world regulatory domain +[ 8.675153] input: HP WMI hotkeys as /devices/virtual/input/input6 +[ 8.685723] Linux video capture interface: v2.00 +[ 8.689657] uvcvideo: Found UVC 1.00 device HP Webcam (090c:c371) +[ 8.694701] input: HP Webcam as /devices/pci0000:00/0000:00:12.2/usb1/1-6/1-6:1.0/input/input7 +[ 8.694770] usbcore: registered new interface driver uvcvideo +[ 8.694772] USB Video Class driver (v0.1.0) +[ 8.699808] [drm] Initialized drm 1.1.0 20060810 +[ 9.070264] Registered led device: hp::hddprotect +[ 9.129834] lis3lv02d driver loaded. +[ 9.362550] EDAC amd64_edac: Ver: 3.3.0 Aug 20 2010 +[ 9.414648] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 9.524470] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 9.524471] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 9.524473] (Note that use of the override may cause unknown side effects.) +[ 9.550099] type=1400 audit(1282434608.680:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=666 comm="apparmor_parser" +[ 9.550393] type=1400 audit(1282434608.680:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=666 comm="apparmor_parser" +[ 9.550561] type=1400 audit(1282434608.680:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=666 comm="apparmor_parser" +[ 10.260593] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 10.326545] ath5k 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 10.391727] ath5k 0000:09:00.0: setting latency timer to 64 +[ 10.455952] ath5k 0000:09:00.0: registered as 'phy0' +[ 11.023613] ath: EEPROM regdomain: 0x64 +[ 11.088109] ath: EEPROM indicates we should expect a direct regpair map +[ 11.151074] ath: Country alpha2 being used: 00 +[ 11.211001] ath: Regpair used: 0x64 +[ 11.273339] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1a0b1, caps: 0xd04751/0xa00000/0x20000 +[ 11.468134] phy0: Selected rate control algorithm 'minstrel' +[ 11.488470] [drm] radeon defaulting to kernel modesetting. +[ 11.488474] [drm] radeon kernel modesetting enabled. +[ 11.488597] radeon 0000:01:05.0: power state changed by ACPI to D0 +[ 11.488608] radeon 0000:01:05.0: power state changed by ACPI to D0 +[ 11.488617] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 11.488623] radeon 0000:01:05.0: setting latency timer to 64 +[ 11.491951] [drm] initializing kernel modesetting (RS780 0x1002:0x9612). +[ 11.917265] [drm] register mmio base: 0xD2400000 +[ 11.919122] Registered led device: ath5k-phy0::rx +[ 11.919236] Registered led device: ath5k-phy0::tx +[ 11.919240] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) +[ 11.924275] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8 +[ 12.184424] cfg80211: World regulatory domain updated: +[ 12.184428] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 12.184431] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.184434] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.184436] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.184439] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.184441] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.516511] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 12.673900] [drm] register mmio size: 65536 +[ 12.678078] HDA Intel 0000:00:14.2: setting latency timer to 64 +[ 12.701513] ATOM BIOS: HP_TrinityUMA +[ 12.701541] [drm] Clocks initialized ! +[ 12.701557] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used) +[ 12.701560] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF +[ 12.969054] [drm] Detected VRAM RAM=256M, BAR=256M +[ 12.972790] [drm] RAM width 32bits DDR +[ 12.976492] [TTM] Zone kernel: Available graphics memory: 1898742 kiB. +[ 12.980209] [TTM] Initializing pool allocator. +[ 12.983781] [drm] radeon: 256M of VRAM memory ready +[ 12.987185] [drm] radeon: 512M of GTT memory ready. +[ 12.991010] [drm] radeon: irq initialized. +[ 12.994491] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 12.999769] [drm] Loading RS780 Microcode +[ 13.551590] input: HDA ATI SB Mic at Ext Front Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input9 +[ 13.558778] input: HDA ATI SB HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:14.2/sound/card0/input10 +[ 14.226389] [drm] ring test succeeded in 0 usecs +[ 14.230153] [drm] radeon: ib pool ready. +[ 14.233927] [drm] ib test succeeded in 0 usecs +[ 14.237253] [drm] Enabling audio support +[ 14.237586] [drm] Unknown TV standard; defaulting to NTSC +[ 14.244563] [drm] Radeon Display Connectors +[ 14.248544] [drm] Connector 0: +[ 14.252124] [drm] VGA +[ 14.255470] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 14.262416] [drm] Encoders: +[ 14.265857] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 14.269191] [drm] Connector 1: +[ 14.272617] [drm] HDMI-A +[ 14.275890] [drm] HPD1 +[ 14.278962] [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c +[ 14.285322] [drm] Encoders: +[ 14.288389] [drm] DFP1: INTERNAL_UNIPHY +[ 14.291524] [drm] Connector 2: +[ 14.294515] [drm] LVDS +[ 14.297402] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 14.303635] [drm] Encoders: +[ 14.306714] [drm] LCD1: INTERNAL_KLDSCP_LVTMA +[ 14.367081] [drm] radeon: power management initialized +[ 14.887213] [drm] fb mappable at 0xC0141000 +[ 14.890174] [drm] vram apper at 0xC0000000 +[ 14.893021] [drm] size 5300224 +[ 14.895660] [drm] fb depth is 24 +[ 14.898315] [drm] pitch is 5888 +[ 14.900959] checking generic (c012c000 130000) vs hw (c0000000 10000000) +[ 14.903748] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +[ 14.909279] Console: switching to colour dummy device 80x25 +[ 15.372946] type=1400 audit(1282434614.530:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=931 comm="apparmor_parser" +[ 15.373244] type=1400 audit(1282434614.530:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=931 comm="apparmor_parser" +[ 15.373413] type=1400 audit(1282434614.530:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=931 comm="apparmor_parser" +[ 15.397592] type=1400 audit(1282434614.550:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=930 comm="apparmor_parser" +[ 15.426585] type=1400 audit(1282434614.580:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=932 comm="apparmor_parser" +[ 15.430372] type=1400 audit(1282434614.580:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=932 comm="apparmor_parser" +[ 15.432923] type=1400 audit(1282434614.590:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=932 comm="apparmor_parser" +[ 15.447046] type=1400 audit(1282434614.600:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=935 comm="apparmor_parser" +[ 15.455709] type=1400 audit(1282434614.610:13): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=934 comm="apparmor_parser" +[ 15.456105] type=1400 audit(1282434614.610:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=934 comm="apparmor_parser" +[ 16.880192] Console: switching to colour frame buffer device 180x56 +[ 16.905389] fb0: radeondrmfb frame buffer device +[ 16.905391] drm: registered panic notifier +[ 16.905640] Slow work thread pool: Starting up +[ 16.905725] Slow work thread pool: Ready +[ 16.905733] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0 +[ 16.906231] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 16.906315] alloc irq_desc for 45 on node -1 +[ 16.906317] alloc kstat_irqs on node -1 +[ 16.906330] HDA Intel 0000:01:05.1: irq 45 for MSI/MSI-X +[ 16.906360] HDA Intel 0000:01:05.1: setting latency timer to 64 +[ 17.925025] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 17.954736] r8169 0000:0a:00.0: eth0: link down +[ 17.955868] ADDRCONF(NETDEV_UP): eth0: link is not ready + +Bug: 622200 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-17-generic (buildd@yellow) (gcc version 4.4.5 20100816 (prerelease) (Ubuntu/Linaro 4.4.4-9ubuntu1) ) #23-Ubuntu SMP Fri Aug 20 01:22:04 UTC 2010 (Ubuntu 2.6.35-17.23-generic 2.6.35.2) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-17-generic root=UUID=3a2f5553-3f7d-4405-b092-10591e22095f ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000afb8f000 (usable) +[ 0.000000] BIOS-e820: 00000000afb8f000 - 00000000afc3c000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000afc3c000 - 00000000afd70000 (usable) +[ 0.000000] BIOS-e820: 00000000afd70000 - 00000000afdbf000 (reserved) +[ 0.000000] BIOS-e820: 00000000afdbf000 - 00000000afe57000 (usable) +[ 0.000000] BIOS-e820: 00000000afe57000 - 00000000afebf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000afebf000 - 00000000afee9000 (usable) +[ 0.000000] BIOS-e820: 00000000afee9000 - 00000000afeff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000afeff000 - 00000000aff00000 (usable) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-through +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 00FFF00000 mask FFFFF00000 write-protect +[ 0.000000] 1 base 0000000000 mask FF80000000 write-back +[ 0.000000] 2 base 0080000000 mask FFE0000000 write-back +[ 0.000000] 3 base 00A0000000 mask FFF0000000 write-back +[ 0.000000] 4 base 0100000000 mask FFC0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] TOM2: 0000000140000000 aka 5120M +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xaff00 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000afb8f000 (usable) +[ 0.000000] modified: 00000000afb8f000 - 00000000afc3c000 (ACPI NVS) +[ 0.000000] modified: 00000000afc3c000 - 00000000afd70000 (usable) +[ 0.000000] modified: 00000000afd70000 - 00000000afdbf000 (reserved) +[ 0.000000] modified: 00000000afdbf000 - 00000000afe57000 (usable) +[ 0.000000] modified: 00000000afe57000 - 00000000afebf000 (ACPI NVS) +[ 0.000000] modified: 00000000afebf000 - 00000000afee9000 (usable) +[ 0.000000] modified: 00000000afee9000 - 00000000afeff000 (ACPI data) +[ 0.000000] modified: 00000000afeff000 - 00000000aff00000 (usable) +[ 0.000000] modified: 00000000e0000000 - 00000000e4000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000aff00000 +[ 0.000000] 0000000000 - 00afe00000 page 2M +[ 0.000000] 00afe00000 - 00aff00000 page 4k +[ 0.000000] kernel direct mapping tables up to aff00000 @ 16000-1b000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000 +[ 0.000000] 0100000000 - 0140000000 page 2M +[ 0.000000] kernel direct mapping tables up to 140000000 @ 19000-1f000 +[ 0.000000] RAMDISK: 37572000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HP ) +[ 0.000000] ACPI: XSDT 00000000afefe120 00064 (v01 HPQOEM SLIC-MPC 00000003 01000013) +[ 0.000000] ACPI: FACP 00000000afefd000 000F4 (v04 HP 3045 00000003 MSFT 0100000D) +[ 0.000000] ACPI: DSDT 00000000afef1000 08BC6 (v01 HP 3045 F0000000 INTL 20051117) +[ 0.000000] ACPI: FACS 00000000afe60000 00040 +[ 0.000000] ACPI: HPET 00000000afefc000 00038 (v01 HP 3045 00000001 MSFT 000F4240) +[ 0.000000] ACPI: APIC 00000000afefb000 00084 (v02 HP 3045 00000001 TFSM 000F4240) +[ 0.000000] ACPI: MCFG 00000000afefa000 0003C (v01 HP 3045 00000001 TFSM 000F4240) +[ 0.000000] ACPI: BOOT 00000000afef0000 00028 (v01 HP 3045 00000001 ? 00000001) +[ 0.000000] ACPI: SLIC 00000000afeef000 00176 (v01 HPQOEM SLIC-MPC 06040000 LTP 00000001) +[ 0.000000] ACPI: SSDT 00000000afeee000 00386 (v01 AMD PowerNow 00000001 AMD 00000001) +[ 0.000000] ACPI: SRAT 00000000afeed000 000A0 (v03 AMD AMD CRB 00000001 AMD 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0 +[ 0.000000] SRAT: Node 0 PXM 0 0-c0000000 +[ 0.000000] SRAT: Node 0 PXM 0 100000000-140000000 +[ 0.000000] SRAT: Node 0 [0,c0000000) + [100000000,140000000) -> [0,140000000) +[ 0.000000] NUMA: Using 63 for the hash shift. +[ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801037fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00140000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[7] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000afb8f +[ 0.000000] 0: 0x000afc3c -> 0x000afd70 +[ 0.000000] 0: 0x000afdbf -> 0x000afe57 +[ 0.000000] 0: 0x000afebf -> 0x000afee9 +[ 0.000000] 0: 0x000afeff -> 0x000aff00 +[ 0.000000] 0: 0x00100000 -> 0x00140000 +[ 0.000000] On node 0 totalpages: 982293 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 701886 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3584 pages used for memmap +[ 0.000000] Normal zone: 258560 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x1002a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [1a000 - 1a7ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000afb8f000 - 00000000afc3c000 +[ 0.000000] PM: Registered nosave memory: 00000000afd70000 - 00000000afdbf000 +[ 0.000000] PM: Registered nosave memory: 00000000afe57000 - 00000000afebf000 +[ 0.000000] PM: Registered nosave memory: 00000000afee9000 - 00000000afeff000 +[ 0.000000] PM: Registered nosave memory: 00000000aff00000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000 +[ 0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000fff00000 +[ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at aff00000 (gap: aff00000:30100000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91456 r8192 d23232 u524288 +[ 0.000000] early_res array is doubled to 128 at [1a800 - 1b7ff] +[ 0.000000] pcpu-alloc: s91456 r8192 d23232 u524288 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 964373 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-17-generic root=UUID=3a2f5553-3f7d-4405-b092-10591e22095f ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (63 early reservations) +[ 0.000000] #1 [0001000000 - 0001d170d4] TEXT DATA BSS +[ 0.000000] #2 [0037572000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [000009fc00 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d18000 - 0001d181f0] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000019000] PGTABLE +[ 0.000000] #8 [0000019000 - 000001a000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d18200 - 0001d19200] BOOTMEM +[ 0.000000] #11 [0001d17100 - 0001d173d0] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103800000] MEMMAP 0 +[ 0.000000] #15 [0001d17400 - 0001d17580] BOOTMEM +[ 0.000000] #16 [0001d19200 - 0001d31200] BOOTMEM +[ 0.000000] #17 [0001d31200 - 0001d37200] BOOTMEM +[ 0.000000] #18 [0001d38000 - 0001d39000] BOOTMEM +[ 0.000000] #19 [0001d17580 - 0001d175c1] BOOTMEM +[ 0.000000] #20 [0001d17600 - 0001d17643] BOOTMEM +[ 0.000000] #21 [0001d17680 - 0001d17a70] BOOTMEM +[ 0.000000] #22 [0001d17a80 - 0001d17ae8] BOOTMEM +[ 0.000000] #23 [0001d17b00 - 0001d17b68] BOOTMEM +[ 0.000000] #24 [0001d17b80 - 0001d17be8] BOOTMEM +[ 0.000000] #25 [0001d17c00 - 0001d17c68] BOOTMEM +[ 0.000000] #26 [0001d17c80 - 0001d17ce8] BOOTMEM +[ 0.000000] #27 [0001d17d00 - 0001d17d68] BOOTMEM +[ 0.000000] #28 [0001d17d80 - 0001d17de8] BOOTMEM +[ 0.000000] #29 [0001d17e00 - 0001d17e68] BOOTMEM +[ 0.000000] #30 [0001d17e80 - 0001d17ee8] BOOTMEM +[ 0.000000] #31 [0001d17f00 - 0001d17f68] BOOTMEM +[ 0.000000] #32 [0001d17f80 - 0001d17fe8] BOOTMEM +[ 0.000000] #33 [0001d37200 - 0001d37268] BOOTMEM +[ 0.000000] #34 [0001d37280 - 0001d372e8] BOOTMEM +[ 0.000000] #35 [0001d37300 - 0001d37368] BOOTMEM +[ 0.000000] #36 [0001d37380 - 0001d373e8] BOOTMEM +[ 0.000000] #37 [0001d37400 - 0001d37468] BOOTMEM +[ 0.000000] #38 [0001d37480 - 0001d374e8] BOOTMEM +[ 0.000000] #39 [0001d37500 - 0001d37520] BOOTMEM +[ 0.000000] #40 [0001d37540 - 0001d37560] BOOTMEM +[ 0.000000] #41 [0001d37580 - 0001d375a0] BOOTMEM +[ 0.000000] #42 [0001d375c0 - 0001d375e0] BOOTMEM +[ 0.000000] #43 [0001d37600 - 0001d37620] BOOTMEM +[ 0.000000] #44 [0001d37640 - 0001d37660] BOOTMEM +[ 0.000000] #45 [0001d37680 - 0001d376ea] BOOTMEM +[ 0.000000] #46 [0001d37700 - 0001d3776a] BOOTMEM +[ 0.000000] #47 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #48 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #49 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #50 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #51 [0001d37780 - 0001d37788] BOOTMEM +[ 0.000000] #52 [0001d377c0 - 0001d377c8] BOOTMEM +[ 0.000000] #53 [0001d37800 - 0001d37810] BOOTMEM +[ 0.000000] #54 [0001d37840 - 0001d37860] BOOTMEM +[ 0.000000] #55 [0001d37880 - 0001d379b0] BOOTMEM +[ 0.000000] #56 [0001d379c0 - 0001d37a10] BOOTMEM +[ 0.000000] #57 [0001d37a40 - 0001d37a90] BOOTMEM +[ 0.000000] #58 [0001d39000 - 0001d41000] BOOTMEM +[ 0.000000] #59 [0001f9e000 - 0005f9e000] BOOTMEM +[ 0.000000] #60 [0001d41000 - 0001d61000] BOOTMEM +[ 0.000000] #61 [0001d61000 - 0001da1000] BOOTMEM +[ 0.000000] #62 [000001b800 - 0000023800] BOOTMEM +[ 0.000000] Memory: 3783056k/5242880k available (5698k kernel code, 1313708k absent, 146116k reserved, 5389k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:712 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 39321600 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1100.259 MHz processor. +[ 0.030031] Calibrating delay loop (skipped), value calculated using timer frequency.. 4401.02 BogoMIPS (lpj=22005110) +[ 0.030049] pid_max: default: 32768 minimum: 301 +[ 0.030184] Security Framework initialized +[ 0.030256] AppArmor: AppArmor initialized +[ 0.030262] Yama: becoming mindful. +[ 0.032229] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.046334] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.050000] Mount-cache hash table entries: 256 +[ 0.050000] Initializing cgroup subsys ns +[ 0.050000] Initializing cgroup subsys cpuacct +[ 0.050000] Initializing cgroup subsys memory +[ 0.050000] Initializing cgroup subsys devices +[ 0.050000] Initializing cgroup subsys freezer +[ 0.050000] Initializing cgroup subsys net_cls +[ 0.050000] tseg: 00aff00000 +[ 0.050000] CPU: Physical Processor ID: 0 +[ 0.050000] CPU: Processor Core ID: 0 +[ 0.050000] mce: CPU supports 5 MCE banks +[ 0.050000] Performance Events: AMD PMU driver. +[ 0.050000] ... version: 0 +[ 0.050000] ... bit width: 48 +[ 0.050000] ... generic registers: 4 +[ 0.050000] ... value mask: 0000ffffffffffff +[ 0.050000] ... max period: 00007fffffffffff +[ 0.050000] ... fixed-purpose events: 0 +[ 0.050000] ... event mask: 000000000000000f +[ 0.050000] ACPI: Core revision 20100428 +[ 0.070128] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.070169] ftrace: allocating 22644 entries in 89 pages +[ 0.080321] Setting APIC routing to flat +[ 0.081118] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.192889] CPU0: AMD Turion(tm) X2 Ultra Dual-Core Mobile ZM-82 stepping 01 +[ 0.200000] Booting Node 0, Processors #1 +[ 0.360000] TSC synchronization [CPU#0 -> CPU#1]: +[ 0.360000] Measured 217435192 cycles TSC warp between CPUs, turning off TSC clock. +[ 0.360000] Marking TSC unstable due to check_tsc_sync_source failed +[ 0.360033] Brought up 2 CPUs +[ 0.360043] Total of 2 processors activated (8799.87 BogoMIPS). +[ 0.360798] devtmpfs: initialized +[ 0.361823] regulator: core version 0.5 +[ 0.361887] Time: 9:01:00 Date: 08/22/10 +[ 0.361995] NET: Registered protocol family 16 +[ 0.362069] Trying to unpack rootfs image as initramfs... +[ 0.362378] TOM: 00000000c0000000 aka 3072M +[ 0.362384] Fam 10h mmconf [e0000000, e0ffffff] +[ 0.362399] TOM2: 0000000140000000 aka 5120M +[ 0.362422] ACPI: bus type pci registered +[ 0.362614] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000) +[ 0.362622] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820 +[ 0.373729] PCI: Using configuration type 1 for base access +[ 0.373782] mtrr: your CPUs had inconsistent fixed MTRR settings +[ 0.373785] mtrr: probably your BIOS does not setup all CPUs. +[ 0.373789] mtrr: corrected configuration. +[ 0.380868] bio: create slab at 0 +[ 0.382911] ACPI: EC: Look up EC in DSDT +[ 0.385460] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.390000] ACPI: BIOS _OSI(Linux) query ignored +[ 0.390178] ACPI: Interpreter enabled +[ 0.390185] ACPI: (supports S0 S3 S4 S5) +[ 0.390236] ACPI: Using IOAPIC for interrupt routing +[ 0.397215] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62 +[ 0.397215] ACPI: No dock devices found. +[ 0.397215] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.400175] \_SB_.PCI0:_OSC request failed +[ 0.400179] _OSC request data:1 8 1f +[ 0.400189] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.404414] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.404420] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.404426] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.404432] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] +[ 0.404437] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] +[ 0.404443] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] +[ 0.404448] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff] +[ 0.404454] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] +[ 0.404459] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.404465] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.404470] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.404476] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] +[ 0.404481] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] +[ 0.404487] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] +[ 0.404492] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] +[ 0.404498] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] +[ 0.404504] pci_root PNP0A08:00: host bridge window [mem 0xe4000000-0xffffffff] +[ 0.404834] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold +[ 0.404842] pci 0000:00:04.0: PME# disabled +[ 0.404960] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold +[ 0.404967] pci 0000:00:05.0: PME# disabled +[ 0.405076] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold +[ 0.405083] pci 0000:00:06.0: PME# disabled +[ 0.405269] pci 0000:00:11.0: reg 10: [io 0x6038-0x603f] +[ 0.405286] pci 0000:00:11.0: reg 14: [io 0x604c-0x604f] +[ 0.405302] pci 0000:00:11.0: reg 18: [io 0x6030-0x6037] +[ 0.405318] pci 0000:00:11.0: reg 1c: [io 0x6048-0x604b] +[ 0.405335] pci 0000:00:11.0: reg 20: [io 0x6010-0x601f] +[ 0.405351] pci 0000:00:11.0: reg 24: [mem 0xd2409000-0xd24093ff] +[ 0.405476] pci 0000:00:12.0: reg 10: [mem 0xd2408000-0xd2408fff] +[ 0.405606] pci 0000:00:12.1: reg 10: [mem 0xd2407000-0xd2407fff] +[ 0.405764] pci 0000:00:12.2: reg 10: [mem 0xd2409500-0xd24095ff] +[ 0.405888] pci 0000:00:12.2: supports D1 D2 +[ 0.405893] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot +[ 0.405903] pci 0000:00:12.2: PME# disabled +[ 0.405978] pci 0000:00:13.0: reg 10: [mem 0xd2406000-0xd2406fff] +[ 0.406107] pci 0000:00:13.1: reg 10: [mem 0xd2405000-0xd2405fff] +[ 0.406273] pci 0000:00:13.2: reg 10: [mem 0xd2409400-0xd24094ff] +[ 0.406397] pci 0000:00:13.2: supports D1 D2 +[ 0.406402] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot +[ 0.406412] pci 0000:00:13.2: PME# disabled +[ 0.406672] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007] +[ 0.406689] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003] +[ 0.406705] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007] +[ 0.406721] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003] +[ 0.406737] pci 0000:00:14.1: reg 20: [io 0x6000-0x600f] +[ 0.406887] pci 0000:00:14.2: reg 10: [mem 0xd2400000-0xd2403fff 64bit] +[ 0.406990] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.407000] pci 0000:00:14.2: PME# disabled +[ 0.407249] pci 0000:00:14.5: reg 10: [mem 0xd2404000-0xd2404fff] +[ 0.407753] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref] +[ 0.407764] pci 0000:01:05.0: reg 14: [io 0x5000-0x50ff] +[ 0.407775] pci 0000:01:05.0: reg 18: [mem 0xd2300000-0xd230ffff] +[ 0.407796] pci 0000:01:05.0: reg 24: [mem 0xd2200000-0xd22fffff] +[ 0.407832] pci 0000:01:05.0: supports D1 D2 +[ 0.407960] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.407970] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 0.407979] pci 0000:00:01.0: bridge window [mem 0xd2200000-0xd23fffff] +[ 0.407989] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.408065] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.408075] pci 0000:00:04.0: bridge window [io 0x3000-0x4fff] +[ 0.408082] pci 0000:00:04.0: bridge window [mem 0xd1200000-0xd21fffff] +[ 0.408093] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.408245] pci 0000:08:00.0: reg 10: [mem 0xd1100000-0xd1103fff 64bit] +[ 0.408387] pci 0000:08:00.0: supports D1 D2 +[ 0.420039] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.420049] pci 0000:00:05.0: bridge window [io 0xfffffffffffff000-0x0000] (disabled) +[ 0.420058] pci 0000:00:05.0: bridge window [mem 0xd1100000-0xd11fffff] +[ 0.420069] pci 0000:00:05.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.420202] pci 0000:09:00.0: reg 10: [io 0x2000-0x20ff] +[ 0.420239] pci 0000:09:00.0: reg 18: [mem 0xd1010000-0xd1010fff 64bit pref] +[ 0.420266] pci 0000:09:00.0: reg 20: [mem 0xd1000000-0xd100ffff 64bit pref] +[ 0.420283] pci 0000:09:00.0: reg 30: [mem 0xffff0000-0xffffffff pref] +[ 0.420355] pci 0000:09:00.0: supports D1 D2 +[ 0.420359] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.420369] pci 0000:09:00.0: PME# disabled +[ 0.440028] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.440039] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff] +[ 0.440046] pci 0000:00:06.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.440058] pci 0000:00:06.0: bridge window [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.440205] pci 0000:00:14.4: PCI bridge to [bus 80-8f] (subtractive decode) +[ 0.440216] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.440226] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.440238] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.440244] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.440249] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.440255] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.440261] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode) +[ 0.440266] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode) +[ 0.440272] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode) +[ 0.440278] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode) +[ 0.440283] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode) +[ 0.440289] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.440294] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.440300] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.440306] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode) +[ 0.440312] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode) +[ 0.440317] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode) +[ 0.440323] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode) +[ 0.440329] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) +[ 0.440335] pci 0000:00:14.4: bridge window [mem 0xe4000000-0xffffffff] (subtractive decode) +[ 0.440454] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.441050] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT] +[ 0.441246] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT] +[ 0.441462] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT] +[ 0.441649] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB6_._PRT] +[ 0.441929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT] +[ 0.442357] \_SB_.PCI0:_OSC request failed +[ 0.442361] _OSC request data:1 1f 1f +[ 0.460000] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled. +[ 0.460000] HEST: Table is not found! +[ 0.460000] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.460000] vgaarb: loaded +[ 0.460000] SCSI subsystem initialized +[ 0.460000] libata version 3.00 loaded. +[ 0.460000] usbcore: registered new interface driver usbfs +[ 0.460000] usbcore: registered new interface driver hub +[ 0.460000] usbcore: registered new device driver usb +[ 0.460000] ACPI: WMI: Mapper loaded +[ 0.460000] PCI: Using ACPI for IRQ routing +[ 0.460000] PCI: pci_cache_line_size set to 64 bytes +[ 0.460000] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.460000] reserve RAM buffer: 00000000afb8f000 - 00000000afffffff +[ 0.460000] reserve RAM buffer: 00000000afd70000 - 00000000afffffff +[ 0.460000] reserve RAM buffer: 00000000afe57000 - 00000000afffffff +[ 0.460000] reserve RAM buffer: 00000000afee9000 - 00000000afffffff +[ 0.460000] reserve RAM buffer: 00000000aff00000 - 00000000afffffff +[ 0.460000] NetLabel: Initializing +[ 0.460000] NetLabel: domain hash size = 128 +[ 0.460000] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.460000] NetLabel: unlabeled traffic allowed by default +[ 0.470000] AppArmor: AppArmor Filesystem Enabled +[ 0.470000] pnp: PnP ACPI init +[ 0.470000] ACPI: bus type pnp registered +[ 0.475388] pnp: PnP ACPI: found 12 devices +[ 0.475388] ACPI: ACPI bus type pnp unregistered +[ 0.475388] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.475388] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.475388] system 00:09: [io 0x0400-0x04cf] has been reserved +[ 0.475388] system 00:09: [io 0x04d0-0x04d1] has been reserved +[ 0.475388] system 00:09: [io 0x04d6] has been reserved +[ 0.475388] system 00:09: [io 0x0680-0x06ff] has been reserved +[ 0.475388] system 00:09: [io 0x077a] has been reserved +[ 0.475388] system 00:09: [io 0x0c00-0x0c01] has been reserved +[ 0.475388] system 00:09: [io 0x0c14] has been reserved +[ 0.475388] system 00:09: [io 0x0c50-0x0c52] has been reserved +[ 0.475388] system 00:09: [io 0x0c6c] has been reserved +[ 0.475388] system 00:09: [io 0x0c6f] has been reserved +[ 0.475388] system 00:09: [io 0x0cd0-0x0cdb] has been reserved +[ 0.475388] system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.475388] system 00:0a: [mem 0xfff00000-0xffffffff] has been reserved +[ 0.480000] Switching to clocksource acpi_pm +[ 0.480000] pci 0000:09:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref] +[ 0.480000] pci 0000:00:06.0: BAR 14: assigned [mem 0xd2500000-0xd25fffff] +[ 0.480000] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.480000] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 0.480000] pci 0000:00:01.0: bridge window [mem 0xd2200000-0xd23fffff] +[ 0.480000] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.480000] pci 0000:00:04.0: PCI bridge to [bus 02-07] +[ 0.480000] pci 0000:00:04.0: bridge window [io 0x3000-0x4fff] +[ 0.480000] pci 0000:00:04.0: bridge window [mem 0xd1200000-0xd21fffff] +[ 0.480000] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.480000] pci 0000:00:05.0: PCI bridge to [bus 08-08] +[ 0.480000] pci 0000:00:05.0: bridge window [io disabled] +[ 0.480000] pci 0000:00:05.0: bridge window [mem 0xd1100000-0xd11fffff] +[ 0.480000] pci 0000:00:05.0: bridge window [mem pref disabled] +[ 0.480000] pci 0000:09:00.0: BAR 6: assigned [mem 0xd1020000-0xd102ffff pref] +[ 0.480000] pci 0000:00:06.0: PCI bridge to [bus 09-09] +[ 0.480000] pci 0000:00:06.0: bridge window [io 0x2000-0x2fff] +[ 0.480000] pci 0000:00:06.0: bridge window [mem 0xd2500000-0xd25fffff] +[ 0.480000] pci 0000:00:06.0: bridge window [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.480000] pci 0000:00:14.4: PCI bridge to [bus 80-8f] +[ 0.480000] pci 0000:00:14.4: bridge window [io 0x1000-0x1fff] +[ 0.480000] pci 0000:00:14.4: bridge window [mem disabled] +[ 0.480000] pci 0000:00:14.4: bridge window [mem pref disabled] +[ 0.480000] pci 0000:00:01.0: setting latency timer to 64 +[ 0.480000] alloc irq_desc for 16 on node -1 +[ 0.480000] alloc kstat_irqs on node -1 +[ 0.480000] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.480000] pci 0000:00:04.0: setting latency timer to 64 +[ 0.480000] alloc irq_desc for 17 on node -1 +[ 0.480000] alloc kstat_irqs on node -1 +[ 0.480000] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.480000] pci 0000:00:05.0: setting latency timer to 64 +[ 0.480000] alloc irq_desc for 18 on node -1 +[ 0.480000] alloc kstat_irqs on node -1 +[ 0.480000] pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.480000] pci 0000:00:06.0: setting latency timer to 64 +[ 0.480000] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.480000] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.480000] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.480000] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.480000] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.480000] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.480000] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff] +[ 0.480000] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff] +[ 0.480000] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff] +[ 0.480000] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff] +[ 0.480000] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff] +[ 0.480000] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff] +[ 0.480000] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff] +[ 0.480000] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff] +[ 0.480000] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff] +[ 0.480000] pci_bus 0000:00: resource 19 [mem 0xc0000000-0xdfffffff] +[ 0.480000] pci_bus 0000:00: resource 20 [mem 0xe4000000-0xffffffff] +[ 0.480000] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff] +[ 0.480000] pci_bus 0000:01: resource 1 [mem 0xd2200000-0xd23fffff] +[ 0.480000] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.480000] pci_bus 0000:02: resource 0 [io 0x3000-0x4fff] +[ 0.480000] pci_bus 0000:02: resource 1 [mem 0xd1200000-0xd21fffff] +[ 0.480000] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd0ffffff 64bit pref] +[ 0.480000] pci_bus 0000:08: resource 1 [mem 0xd1100000-0xd11fffff] +[ 0.480000] pci_bus 0000:09: resource 0 [io 0x2000-0x2fff] +[ 0.480000] pci_bus 0000:09: resource 1 [mem 0xd2500000-0xd25fffff] +[ 0.480000] pci_bus 0000:09: resource 2 [mem 0xd1000000-0xd10fffff 64bit pref] +[ 0.480000] pci_bus 0000:80: resource 0 [io 0x1000-0x1fff] +[ 0.480000] pci_bus 0000:80: resource 4 [io 0x0000-0x0cf7] +[ 0.480000] pci_bus 0000:80: resource 5 [io 0x0d00-0xffff] +[ 0.480000] pci_bus 0000:80: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.480000] pci_bus 0000:80: resource 7 [mem 0x000c0000-0x000c3fff] +[ 0.480000] pci_bus 0000:80: resource 8 [mem 0x000c4000-0x000c7fff] +[ 0.480000] pci_bus 0000:80: resource 9 [mem 0x000c8000-0x000cbfff] +[ 0.480000] pci_bus 0000:80: resource 10 [mem 0x000cc000-0x000cffff] +[ 0.480000] pci_bus 0000:80: resource 11 [mem 0x000d0000-0x000d3fff] +[ 0.480000] pci_bus 0000:80: resource 12 [mem 0x000d4000-0x000d7fff] +[ 0.480000] pci_bus 0000:80: resource 13 [mem 0x000d8000-0x000dbfff] +[ 0.480000] pci_bus 0000:80: resource 14 [mem 0x000dc000-0x000dffff] +[ 0.480000] pci_bus 0000:80: resource 15 [mem 0x000e0000-0x000e3fff] +[ 0.480000] pci_bus 0000:80: resource 16 [mem 0x000e4000-0x000e7fff] +[ 0.480000] pci_bus 0000:80: resource 17 [mem 0x000e8000-0x000ebfff] +[ 0.480000] pci_bus 0000:80: resource 18 [mem 0x000ec000-0x000effff] +[ 0.480000] pci_bus 0000:80: resource 19 [mem 0xc0000000-0xdfffffff] +[ 0.480000] pci_bus 0000:80: resource 20 [mem 0xe4000000-0xffffffff] +[ 0.480000] NET: Registered protocol family 2 +[ 0.480000] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.480000] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.481259] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.481931] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.481931] TCP reno registered +[ 0.481931] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.481931] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 0.481931] NET: Registered protocol family 1 +[ 0.481931] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled +[ 0.661397] pci 0000:01:05.0: Boot video device +[ 0.661431] PCI: CLS 64 bytes, default 64 +[ 0.661437] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.661444] Placing 64MB software IO TLB between ffff880001f9e000 - ffff880005f9e000 +[ 0.661449] software IO TLB at phys 0x1f9e000 - 0x5f9e000 +[ 0.661622] Simple Boot Flag at 0x44 set to 0x1 +[ 0.662027] Scanning for low memory corruption every 60 seconds +[ 0.662365] audit: initializing netlink socket (disabled) +[ 0.662398] type=2000 audit(1282467658.659:1): initialized +[ 0.679826] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.681288] VFS: Disk quotas dquot_6.5.2 +[ 0.681288] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.681288] fuse init (API version 7.14) +[ 0.681288] msgmni has been set to 7388 +[ 0.681288] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.681288] io scheduler noop registered +[ 0.681288] io scheduler deadline registered +[ 0.681288] io scheduler cfq registered (default) +[ 0.681288] pcieport 0000:00:04.0: setting latency timer to 64 +[ 0.681288] alloc irq_desc for 40 on node -1 +[ 0.681288] alloc kstat_irqs on node -1 +[ 0.681288] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X +[ 0.681288] pcieport 0000:00:05.0: setting latency timer to 64 +[ 0.681288] alloc irq_desc for 41 on node -1 +[ 0.681288] alloc kstat_irqs on node -1 +[ 0.681288] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X +[ 0.681288] pcieport 0000:00:06.0: setting latency timer to 64 +[ 0.681288] alloc irq_desc for 42 on node -1 +[ 0.681288] alloc kstat_irqs on node -1 +[ 0.681288] pcieport 0000:00:06.0: irq 42 for MSI/MSI-X +[ 0.681288] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.681288] \_SB_.PCI0:_OSC request failed +[ 0.681288] _OSC request data:1 0 1f +[ 0.681288] \_SB_.PCI0:_OSC request failed +[ 0.681288] _OSC request data:1 0 1f +[ 0.681288] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.681288] vesafb: framebuffer at 0xc012c000, mapped to 0xffffc90005100000, using 1216k, total 1216k +[ 0.681288] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 0.681288] vesafb: scrolling: redraw +[ 0.681288] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0 +[ 0.751703] Console: switching to colour frame buffer device 80x30 +[ 0.824205] fb0: VESA VGA frame buffer device +[ 0.824502] ACPI: AC Adapter [ACAD] (on-line) +[ 0.824502] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.824502] ACPI: Power Button [PWRB] +[ 0.824502] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1 +[ 0.824502] ACPI: Sleep Button [SLPB] +[ 0.824502] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 +[ 0.824502] ACPI: Lid Switch [LID] +[ 0.824502] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 0.824502] ACPI: Power Button [PWRF] +[ 0.824544] ACPI: acpi_idle registered with cpuidle +[ 0.829330] [Firmware Bug]: Invalid critical threshold (0) +[ 0.830433] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.830433] ACPI: Thermal Zone [THRM] (82 C) +[ 0.830433] ERST: Table is not found! +[ 0.832627] hpet_acpi_add: no address or irqs in _CRS +[ 0.832627] Linux agpgart interface v0.103 +[ 0.832627] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.835380] brd: module loaded +[ 0.836536] loop: module loaded +[ 0.837104] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.837183] pata_acpi 0000:00:14.1: setting latency timer to 64 +[ 0.837860] Fixed MDIO Bus: probed +[ 0.837945] PPP generic driver version 2.4.2 +[ 0.838018] tun: Universal TUN/TAP device driver, 1.6 +[ 0.838022] tun: (C) 1999-2004 Max Krasnyansky +[ 0.838190] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.838297] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.838336] ehci_hcd 0000:00:12.2: setting latency timer to 64 +[ 0.838344] ehci_hcd 0000:00:12.2: EHCI Host Controller +[ 0.838416] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1 +[ 0.838575] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.838608] ehci_hcd 0000:00:12.2: debug port 1 +[ 0.838675] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd2409500 +[ 0.851355] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00 +[ 0.851671] hub 1-0:1.0: USB hub found +[ 0.851683] hub 1-0:1.0: 6 ports detected +[ 0.852208] alloc irq_desc for 19 on node -1 +[ 0.852212] alloc kstat_irqs on node -1 +[ 0.852228] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 0.852271] ehci_hcd 0000:00:13.2: setting latency timer to 64 +[ 0.852278] ehci_hcd 0000:00:13.2: EHCI Host Controller +[ 0.852366] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2 +[ 0.852522] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround +[ 0.852553] ehci_hcd 0000:00:13.2: debug port 1 +[ 0.852599] ehci_hcd 0000:00:13.2: irq 19, io mem 0xd2409400 +[ 0.862494] ACPI: Battery Slot [BAT0] (battery present) +[ 0.871311] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00 +[ 0.871538] hub 2-0:1.0: USB hub found +[ 0.871546] hub 2-0:1.0: 6 ports detected +[ 0.871767] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.871863] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.871891] ohci_hcd 0000:00:12.0: setting latency timer to 64 +[ 0.871899] ohci_hcd 0000:00:12.0: OHCI Host Controller +[ 0.871970] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3 +[ 0.872112] ohci_hcd 0000:00:12.0: irq 16, io mem 0xd2408000 +[ 0.939535] hub 3-0:1.0: USB hub found +[ 0.939616] hub 3-0:1.0: 3 ports detected +[ 0.939752] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.939779] ohci_hcd 0000:00:12.1: setting latency timer to 64 +[ 0.939786] ohci_hcd 0000:00:12.1: OHCI Host Controller +[ 0.939854] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4 +[ 0.939889] ohci_hcd 0000:00:12.1: irq 16, io mem 0xd2407000 +[ 0.999524] hub 4-0:1.0: USB hub found +[ 0.999604] hub 4-0:1.0: 3 ports detected +[ 0.999755] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.999782] ohci_hcd 0000:00:13.0: setting latency timer to 64 +[ 0.999789] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 0.999859] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5 +[ 1.000001] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd2406000 +[ 1.002298] Freeing initrd memory: 10744k freed +[ 1.059546] hub 5-0:1.0: USB hub found +[ 1.059626] hub 5-0:1.0: 3 ports detected +[ 1.059760] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.059787] ohci_hcd 0000:00:13.1: setting latency timer to 64 +[ 1.059794] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 1.059864] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6 +[ 1.059986] ohci_hcd 0000:00:13.1: irq 18, io mem 0xd2405000 +[ 1.117071] hub 6-0:1.0: USB hub found +[ 1.117098] hub 6-0:1.0: 3 ports detected +[ 1.117243] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.117270] ohci_hcd 0000:00:14.5: setting latency timer to 64 +[ 1.117277] ohci_hcd 0000:00:14.5: OHCI Host Controller +[ 1.117350] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7 +[ 1.117471] ohci_hcd 0000:00:14.5: irq 18, io mem 0xd2404000 +[ 1.170093] usb 1-4: new high speed USB device using ehci_hcd and address 2 +[ 1.177085] hub 7-0:1.0: USB hub found +[ 1.177165] hub 7-0:1.0: 2 ports detected +[ 1.177297] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.177552] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 1.191858] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.191872] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.192067] mice: PS/2 mouse device common for all mice +[ 1.192319] rtc_cmos 00:05: RTC can wake from S4 +[ 1.192424] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0 +[ 1.192474] rtc0: alarms up to one day, 114 bytes nvram +[ 1.192698] device-mapper: uevent: version 1.0.3 +[ 1.192895] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.193047] device-mapper: multipath: version 1.1.1 loaded +[ 1.193053] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.193543] cpuidle: using governor ladder +[ 1.193548] cpuidle: using governor menu +[ 1.194442] TCP cubic registered +[ 1.194732] NET: Registered protocol family 10 +[ 1.195563] lo: Disabled Privacy Extensions +[ 1.196046] NET: Registered protocol family 17 +[ 1.196125] powernow-k8: Found 1 AMD Turion(tm) X2 Ultra Dual-Core Mobile ZM-82 (2 cpu cores) (version 2.20.00) +[ 1.196256] powernow-k8: 0 : pstate 0 (2200 MHz) +[ 1.196261] powernow-k8: 1 : pstate 1 (1100 MHz) +[ 1.196265] powernow-k8: 2 : pstate 2 (550 MHz) +[ 1.196437] PM: Resume from disk failed. +[ 1.196437] registered taskstats version 1 +[ 1.196679] Magic number: 6:579:20 +[ 1.196911] rtc_cmos 00:05: setting system clock to 2010-08-22 09:01:00 UTC (1282467660) +[ 1.196918] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.196922] EDD information not available. +[ 1.197142] Freeing unused kernel memory: 908k freed +[ 1.198000] Write protecting the kernel read-only data: 10240k +[ 1.198353] Freeing unused kernel memory: 424k freed +[ 1.199096] Freeing unused kernel memory: 1644k freed +[ 1.208215] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 1.219678] udev[74]: starting version 162 +[ 1.350008] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.350008] r8169 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.350008] r8169 0000:09:00.0: setting latency timer to 64 +[ 1.350008] alloc irq_desc for 43 on node -1 +[ 1.350008] alloc kstat_irqs on node -1 +[ 1.350008] r8169 0000:09:00.0: irq 43 for MSI/MSI-X +[ 1.350008] r8169 0000:09:00.0: eth0: RTL8168c/8111c at 0xffffc900050d8000, 00:23:8b:4f:a3:8d, XID 1c2000c0 IRQ 43 +[ 1.361288] scsi0 : pata_atiixp +[ 1.378499] scsi1 : pata_atiixp +[ 1.379878] ata1: DUMMY +[ 1.379884] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6008 irq 15 +[ 1.389839] ahci 0000:00:11.0: version 3.0 +[ 1.389887] alloc irq_desc for 22 on node -1 +[ 1.389892] alloc kstat_irqs on node -1 +[ 1.389913] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 1.390150] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 2 ports 3 Gbps 0x3 impl SATA mode +[ 1.390158] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio ccc sxs +[ 1.391295] Initializing USB Mass Storage driver... +[ 1.391295] scsi2 : ahci +[ 1.391295] scsi4 : ahci +[ 1.391295] ata3: SATA max UDMA/133 abar m1024@0xd2409000 port 0xd2409100 irq 22 +[ 1.391295] ata4: SATA max UDMA/133 abar m1024@0xd2409000 port 0xd2409180 irq 22 +[ 1.391295] scsi3 : usb-storage 1-4:1.0 +[ 1.391295] usbcore: registered new interface driver usb-storage +[ 1.391295] USB Mass Storage support registered. +[ 1.461320] usb 2-2: new high speed USB device using ehci_hcd and address 2 +[ 1.910059] ata4: softreset failed (device not ready) +[ 1.910069] ata4: applying SB600 PMP SRST workaround and retrying +[ 1.910102] ata3: softreset failed (device not ready) +[ 1.910108] ata3: applying SB600 PMP SRST workaround and retrying +[ 2.080120] usb 6-1: new full speed USB device using ohci_hcd and address 2 +[ 2.091330] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.091383] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.091604] ata3.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HA, max UDMA/133 +[ 2.091610] ata3.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 2.091971] ata3.00: configured for UDMA/133 +[ 2.092220] scsi 2:0:0:0: Direct-Access ATA INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5 +[ 2.092575] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 2.092759] sd 2:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 2.092771] sd 2:0:0:0: [sda] Write Protect is off +[ 2.092771] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.092771] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.092980] sda: sda1 sda2 < sda5 > +[ 2.094329] sd 2:0:0:0: [sda] Attached SCSI disk +[ 2.109724] ata4.00: ATAPI: TSSTcorp CDDVDW TS-L633L, 0400, max UDMA/100 +[ 2.119055] ata4.00: configured for UDMA/100 +[ 2.122600] scsi 4:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633L 0400 PQ: 0 ANSI: 5 +[ 2.130078] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.130085] Uniform CD-ROM driver Revision: 3.20 +[ 2.130263] sr 4:0:0:0: Attached scsi CD-ROM sr0 +[ 2.130395] sr 4:0:0:0: Attached scsi generic sg1 type 5 +[ 2.167438] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 2.391266] scsi 3:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS +[ 2.391314] sd 3:0:0:0: Attached scsi generic sg2 type 0 +[ 2.393984] sd 3:0:0:0: [sdb] Attached SCSI removable disk +[ 2.404199] udev[354]: starting version 162 +[ 2.405654] Adding 3227644k swap on /dev/sda5. Priority:-1 extents:1 across:3227644k SSD +[ 2.491264] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602 +[ 2.491264] shpchp 0000:00:01.0: Cannot reserve MMIO region +[ 2.492199] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 2.502037] usb 7-1: new full speed USB device using ohci_hcd and address 2 +[ 2.531295] lp: driver loaded but no devices found +[ 2.578214] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 +[ 2.581263] lib80211: common routines for IEEE802.11 drivers +[ 2.581263] lib80211_crypt: registered algorithm 'NULL' +[ 2.639623] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 2.671295] EDAC MC: Ver: 2.1.0 Aug 20 2010 +[ 2.771259] EDAC amd64_edac: Ver: 3.3.0 Aug 20 2010 +[ 2.771259] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 2.771259] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 2.771259] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 2.771259] (Note that use of the override may cause unknown side effects.) +[ 2.771259] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 2.771259] wl: module license 'MIXED/Proprietary' taints kernel. +[ 2.771259] Disabling lock debugging due to kernel taint +[ 2.861293] wl 0000:08:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.861293] wl 0000:08:00.0: setting latency timer to 64 +[ 2.861293] lirc_dev: IR Remote Control driver registered, major 61 +[ 2.887365] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 2.887373] IP: [] kfifo_alloc+0x2e/0xb0 +[ 2.887389] PGD 1375cb067 PUD 1375ce067 PMD 0 +[ 2.887396] Oops: 0002 [#1] SMP +[ 2.887401] last sysfs file: /sys/devices/virtual/vc/vcs6/uevent +[ 2.887407] CPU 1 +[ 2.887410] Modules linked in: lirc_ene0100(+) v4l2_compat_ioctl32(+) hp_wmi(+) snd(+) lirc_dev wl(P+) bluetooth(+) drm(+) video(+) psmouse output serio_raw k10temp edac_core soundcore i2c_algo_bit lib80211 i2c_piix4 snd_page_alloc edac_mce_amd shpchp lp parport usb_storage r8169 mii ahci libahci pata_atiixp +[ 2.887445] +[ 2.887452] Pid: 529, comm: modprobe Tainted: P 2.6.35-17-generic #23-Ubuntu 3045/HP TouchSmart tx2 Notebook PC +[ 2.887457] RIP: 0010:[] [] kfifo_alloc+0x2e/0xb0 +[ 2.887466] RSP: 0018:ffff880138739d08 EFLAGS: 00010286 +[ 2.887470] RAX: ffff880137500000 RBX: 0000000000000000 RCX: ffffffff8107f199 +[ 2.887474] RDX: ffff880137504000 RSI: 00000000000000d0 RDI: 0000000000000246 +[ 2.887479] RBP: ffff880138739d18 R08: 0000000000000000 R09: 0000000000000246 +[ 2.887483] R10: 0000000000000030 R11: 0000000000000000 R12: 0000000000001000 +[ 2.887487] R13: ffff88013b33c400 R14: ffff8801386a7280 R15: 00000000fffffff4 +[ 2.887493] FS: 00007f3989a31700(0000) GS:ffff880001e80000(0000) knlGS:0000000000000000 +[ 2.887498] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 2.887502] CR2: 0000000000000000 CR3: 0000000139428000 CR4: 00000000000006e0 +[ 2.887506] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 2.887511] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 2.887516] Process modprobe (pid: 529, threadinfo ffff880138738000, task ffff88013b6cc4a0) +[ 2.887520] Stack: +[ 2.887523] ffff880137c3fb40 ffff88013b49dba0 ffff880138739d58 ffffffffa010ee4f +[ 2.887529] <0> ffff880138739d38 ffffffffa010f060 ffff88013b33c400 ffffffffa010f580 +[ 2.887536] <0> ffffffffa010f540 00000000fffffff4 ffff880138739d98 ffffffff8133d7d5 +[ 2.887543] Call Trace: +[ 2.887555] [] ene_probe+0x17f/0x350 [lirc_ene0100] +[ 2.887567] [] pnp_device_probe+0x95/0x100 +[ 2.887575] [] ? driver_sysfs_add+0x62/0x90 +[ 2.887581] [] really_probe+0x68/0x190 +[ 2.887587] [] driver_probe_device+0x45/0x70 +[ 2.887593] [] __driver_attach+0x9b/0xa0 +[ 2.887599] [] ? __driver_attach+0x0/0xa0 +[ 2.887608] [] bus_for_each_dev+0x68/0x90 +[ 2.887614] [] driver_attach+0x1e/0x20 +[ 2.887621] [] bus_add_driver+0xde/0x280 +[ 2.887627] [] driver_register+0x80/0x150 +[ 2.887635] [] ? ene_init+0x0/0x3e [lirc_ene0100] +[ 2.887642] [] pnp_register_driver+0x21/0x30 +[ 2.887650] [] ene_init+0x3c/0x3e [lirc_ene0100] +[ 2.887660] [] do_one_initcall+0x3c/0x1a0 +[ 2.887669] [] sys_init_module+0xbb/0x200 +[ 2.887679] [] system_call_fastpath+0x16/0x1b +[ 2.887682] Code: e5 41 54 53 0f 1f 44 00 00 48 89 fb 89 f7 41 89 f4 48 85 ff 48 8d 47 ff 74 33 48 85 f8 75 2e 89 d6 e8 07 35 0c 00 48 85 c0 74 52 <48> 89 03 44 89 63 08 31 c0 c7 43 10 00 00 00 00 c7 43 0c 00 00 +[ 2.887724] RIP [] kfifo_alloc+0x2e/0xb0 +[ 2.887731] RSP +[ 2.887733] CR2: 0000000000000000 +[ 2.887739] ---[ end trace 729f227be20567bc ]--- +[ 4.473723] Bluetooth: Core ver 2.15 +[ 4.473723] NET: Registered protocol family 31 +[ 4.473723] Bluetooth: HCI device and connection manager initialized +[ 4.473723] Bluetooth: HCI socket layer initialized +[ 4.477535] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 4.481294] acpi device:03: registered as cooling_device2 +[ 4.481294] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input5 +[ 4.481294] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 4.481294] input: HP WMI hotkeys as /devices/virtual/input/input6 +[ 4.493671] Linux video capture interface: v2.00 +[ 4.501294] uvcvideo: Found UVC 1.00 device CNF8038 (04f2:b132) +[ 4.511295] usbcore: registered new interface driver btusb +[ 4.519848] [drm] Initialized drm 1.1.0 20060810 +[ 4.521260] input: CNF8038 as /devices/pci0000:00/0000:00:13.2/usb2/2-2/2-2:1.0/input/input7 +[ 4.521420] usbcore: registered new interface driver uvcvideo +[ 4.521425] USB Video Class driver (v0.1.0) +[ 4.532139] usb 7-2: new full speed USB device using ohci_hcd and address 3 +[ 4.622524] lib80211_crypt: registered algorithm 'TKIP' +[ 4.622524] eth1: Broadcom BCM432b 802.11 Hybrid Wireless Controller 5.60.48.36 +[ 4.665384] [drm] radeon defaulting to kernel modesetting. +[ 4.665390] [drm] radeon kernel modesetting enabled. +[ 4.665618] radeon 0000:01:05.0: power state changed by ACPI to D0 +[ 4.665638] radeon 0000:01:05.0: power state changed by ACPI to D0 +[ 4.665658] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 4.665668] radeon 0000:01:05.0: setting latency timer to 64 +[ 4.677900] [drm] initializing kernel modesetting (RS780 0x1002:0x9612). +[ 5.561288] [drm] register mmio base: 0xD2300000 +[ 5.561288] [drm] register mmio size: 65536 +[ 5.994612] ATOM BIOS: HP_Soyuz30 +[ 5.994612] [drm] Clocks initialized ! +[ 5.994612] radeon 0000:01:05.0: VRAM: 320M 0xC0000000 - 0xD3FFFFFF (320M used) +[ 5.994612] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF +[ 5.994612] [drm] Detected VRAM RAM=320M, BAR=256M +[ 5.994612] [drm] RAM width 32bits DDR +[ 5.994612] [TTM] Zone kernel: Available graphics memory: 1898388 kiB. +[ 5.994612] [TTM] Initializing pool allocator. +[ 5.994612] [drm] radeon: 320M of VRAM memory ready +[ 5.994612] [drm] radeon: 512M of GTT memory ready. +[ 5.994612] [drm] radeon: irq initialized. +[ 5.994612] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 6.032680] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 6.032866] HDA Intel 0000:00:14.2: setting latency timer to 64 +[ 6.061297] type=1400 audit(1282467665.347:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=739 comm="apparmor_parser" +[ 6.061297] type=1400 audit(1282467665.347:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=739 comm="apparmor_parser" +[ 6.061297] type=1400 audit(1282467665.347:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=739 comm="apparmor_parser" +[ 6.063827] usbcore: registered new interface driver hiddev +[ 6.066320] usbcore: registered new interface driver usbhid +[ 6.066320] usbhid: USB HID core driver +[ 6.076023] ntrig 0003:1B96:0001.0001: hidraw0: USB HID v1.10 Device [N-trig DuoSense] on usb-0000:00:14.5-2/input0 +[ 6.080599] input: N-trig DuoSense as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/input/input8 +[ 6.080599] input: N-trig DuoSense as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/input/input9 +[ 6.080599] input: N-trig DuoSense as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/input/input10 +[ 6.080599] ntrig 0003:1B96:0001.0002: input,hidraw1: USB HID v1.10 Device [N-trig DuoSense] on usb-0000:00:14.5-2/input1 +[ 6.104503] [drm] Loading RS780 Microcode +[ 6.336261] [drm] ring test succeeded in 0 usecs +[ 6.342677] [drm] radeon: ib pool ready. +[ 6.351354] [drm] ib test succeeded in 0 usecs +[ 6.355173] [drm] Enabling audio support +[ 6.355173] [drm] Default TV standard: NTSC +[ 6.381296] [drm] Default TV standard: NTSC +[ 6.386679] [drm] Radeon Display Connectors +[ 6.394683] [drm] Connector 0: +[ 6.399794] [drm] VGA +[ 6.399800] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 6.399803] [drm] Encoders: +[ 6.399807] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 6.399810] [drm] Connector 1: +[ 6.399813] [drm] DIN +[ 6.399815] [drm] Encoders: +[ 6.399818] [drm] TV1: INTERNAL_KLDSCP_DAC1 +[ 6.399821] [drm] Connector 2: +[ 6.399824] [drm] LVDS +[ 6.399828] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 6.399831] [drm] Encoders: +[ 6.399835] [drm] LCD1: INTERNAL_KLDSCP_LVTMA +[ 6.520036] [drm] radeon: power management initialized +[ 6.549515] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x180b1, caps: 0xa04711/0xa00000/0x0 +[ 6.624137] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input11 +[ 6.650716] type=1400 audit(1282467665.937:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=909 comm="apparmor_parser" +[ 6.653974] type=1400 audit(1282467665.947:6): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=908 comm="apparmor_parser" +[ 6.666329] type=1400 audit(1282467665.957:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=909 comm="apparmor_parser" +[ 6.699209] type=1400 audit(1282467665.987:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=909 comm="apparmor_parser" +[ 6.719842] type=1400 audit(1282467666.007:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=914 comm="apparmor_parser" +[ 6.732179] type=1400 audit(1282467666.027:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=912 comm="apparmor_parser" +[ 6.764994] r8169 0000:09:00.0: eth0: link down +[ 6.777027] type=1400 audit(1282467666.067:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=912 comm="apparmor_parser" +[ 6.780828] ADDRCONF(NETDEV_UP): eth0: link is not ready + +Bug: 627495 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-19-generic (buildd@allspice) (gcc version 4.4.5 20100824 (prerelease) (Ubuntu/Linaro 4.4.4-9ubuntu2) ) #28-Ubuntu SMP Sun Aug 29 06:34:38 UTC 2010 (Ubuntu 2.6.35-19.28-generic 2.6.35.3) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-19-generic root=UUID=fc87e0d4-e7e7-4150-86e6-268ca62edd36 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 0000000000093c00 (usable) +[ 0.000000] BIOS-e820: 0000000000093c00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000003f790000 (usable) +[ 0.000000] BIOS-e820: 000000003f790000 - 000000003f79e000 (ACPI data) +[ 0.000000] BIOS-e820: 000000003f79e000 - 000000003f7d0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000003f7d0000 - 000000003f7e0000 (reserved) +[ 0.000000] BIOS-e820: 000000003f7ec000 - 0000000040000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 00000003c0000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x3c0000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-D7FFF write-protect +[ 0.000000] D8000-DFFFF uncachable +[ 0.000000] E0000-E3FFF write-protect +[ 0.000000] E4000-E7FFF write-through +[ 0.000000] E8000-EBFFF write-protect +[ 0.000000] EC000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 03C0000000 mask FFC0000000 uncachable +[ 0.000000] 1 base 0000000000 mask FC00000000 write-back +[ 0.000000] 2 base 0040000000 mask FFC0000000 uncachable +[ 0.000000] 3 base 0080000000 mask FF80000000 uncachable +[ 0.000000] 4 base 003F800000 mask FFFF800000 uncachable +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] 8 disabled +[ 0.000000] 9 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 000000003f800000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0x3f790 max_arch_pfn = 0x400000000 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 0000000000093c00 (usable) +[ 0.000000] modified: 0000000000093c00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000003f790000 (usable) +[ 0.000000] modified: 000000003f790000 - 000000003f79e000 (ACPI data) +[ 0.000000] modified: 000000003f79e000 - 000000003f7d0000 (ACPI NVS) +[ 0.000000] modified: 000000003f7d0000 - 000000003f7e0000 (reserved) +[ 0.000000] modified: 000000003f7ec000 - 0000000040000000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffc00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 00000003c0000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780 +[ 0.000000] Using GB pages for direct mapping +[ 0.000000] init_memory_mapping: 0000000000000000-000000003f790000 +[ 0.000000] 0000000000 - 003f600000 page 2M +[ 0.000000] 003f600000 - 003f790000 page 4k +[ 0.000000] kernel direct mapping tables up to 3f790000 @ 16000-19000 +[ 0.000000] init_memory_mapping: 0000000100000000-00000003c0000000 +[ 0.000000] 0100000000 - 03c0000000 page 1G +[ 0.000000] kernel direct mapping tables up to 3c0000000 @ 17000-18000 +[ 0.000000] RAMDISK: 2e9cc000 - 2f9ec000 +[ 0.000000] ACPI: RSDP 00000000000f9f30 00024 (v02 ACPIAM) +[ 0.000000] ACPI: XSDT 000000003f790100 0005C (v01 062510 XSDT1536 20100625 MSFT 00000097) +[ 0.000000] ACPI: FACP 000000003f790290 000F4 (v04 062510 FACP1536 20100625 MSFT 00000097) +[ 0.000000] ACPI: DSDT 000000003f7904f0 05F5A (v02 1W555 1W555A47 00000A47 INTL 20051117) +[ 0.000000] ACPI: FACS 000000003f79e000 00040 +[ 0.000000] ACPI: APIC 000000003f790390 00118 (v02 062510 APIC1536 20100625 MSFT 00000097) +[ 0.000000] ACPI: MCFG 000000003f7904b0 0003C (v01 062510 OEMMCFG 20100625 MSFT 00000097) +[ 0.000000] ACPI: OEMB 000000003f79e040 00082 (v01 062510 OEMB1536 20100625 MSFT 00000097) +[ 0.000000] ACPI: SRAT 000000003f79a4f0 001D0 (v02 062510 OEMSRAT 00000001 INTL 00000001) +[ 0.000000] ACPI: DMAR 000000003f79e0d0 00128 (v01 AMI OEMDMAR 00000001 MSFT 00000097) +[ 0.000000] ACPI: SSDT 000000003f7a15e0 00363 (v01 DpgPmm CpuPm 00000012 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0 +[ 0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0 +[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1 +[ 0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1 +[ 0.000000] SRAT: Node 0 PXM 0 0-a0000 +[ 0.000000] SRAT: Node 0 PXM 0 100000-40000000 +[ 0.000000] SRAT: Node 0 PXM 0 100000000-240000000 +[ 0.000000] SRAT: Node 1 PXM 1 240000000-3c0000000 +[ 0.000000] SRAT: Node 0 [0,a0000) + [100000,40000000) -> [0,40000000) +[ 0.000000] SRAT: Node 0 [0,40000000) + [100000000,240000000) -> [0,240000000) +[ 0.000000] NUMA: Using 30 for the hash shift. +[ 0.000000] Initmem setup node 0 0000000000000000-0000000240000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] Initmem setup node 1 0000000240000000-00000003c0000000 +[ 0.000000] NODE_DATA [0000000240000000 - 0000000240004fff] +[ 0.000000] [ffffea0000000000-ffffea0007dfffff] PMD -> [ffff880100200000-ffff8801055fffff] on node 0 +[ 0.000000] [ffffea0007e00000-ffffea000d1fffff] PMD -> [ffff880240200000-ffff8802455fffff] on node 1 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x003c0000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x00000093 +[ 0.000000] 0: 0x00000100 -> 0x0003f790 +[ 0.000000] 0: 0x00100000 -> 0x00240000 +[ 0.000000] 1: 0x00240000 -> 0x003c0000 +[ 0.000000] On node 0 totalpages: 1570579 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3915 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 241608 pages, LIFO batch:31 +[ 0.000000] Normal zone: 17920 pages used for memmap +[ 0.000000] Normal zone: 1292800 pages, LIFO batch:31 +[ 0.000000] On node 1 totalpages: 1572864 +[ 0.000000] Normal zone: 21504 pages used for memmap +[ 0.000000] Normal zone: 1551360 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x14] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x20] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x22] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x32] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x34] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x03] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x15] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x21] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x23] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x33] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x35] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x90] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x91] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x92] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x93] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x94] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x95] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x96] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x97] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x06] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 6, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IOAPIC (id[0x07] address[0xfec8a000] gsi_base[24]) +[ 0.000000] IOAPIC[1]: apic_id 7, version 32, address 0xfec8a000, GSI 24-47 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 24 CPUs, 8 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 64 +[ 0.000000] early_res array is doubled to 64 at [17000 - 177ff] +[ 0.000000] PM: Registered nosave memory: 0000000000093000 - 0000000000094000 +[ 0.000000] PM: Registered nosave memory: 0000000000094000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 000000003f790000 - 000000003f79e000 +[ 0.000000] PM: Registered nosave memory: 000000003f79e000 - 000000003f7d0000 +[ 0.000000] PM: Registered nosave memory: 000000003f7d0000 - 000000003f7e0000 +[ 0.000000] PM: Registered nosave memory: 000000003f7e0000 - 000000003f7ec000 +[ 0.000000] PM: Registered nosave memory: 000000003f7ec000 - 0000000040000000 +[ 0.000000] PM: Registered nosave memory: 0000000040000000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffc00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bee00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:24 nr_node_ids:2 +[ 0.000000] early_res array is doubled to 128 at [17800 - 187ff] +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91456 r8192 d23232 u131072 +[ 0.000000] pcpu-alloc: s91456 r8192 d23232 u131072 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 00 01 02 03 08 09 10 11 16 18 20 22 -- -- -- -- +[ 0.000000] pcpu-alloc: [1] 04 05 06 07 12 13 14 15 17 19 21 23 -- -- -- -- +[ 0.000000] Built 2 zonelists in Zone order, mobility grouping on. Total pages: 3089683 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-19-generic root=UUID=fc87e0d4-e7e7-4150-86e6-268ca62edd36 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (79 early reservations) +[ 0.000000] #1 [0001000000 - 0001d17114] TEXT DATA BSS +[ 0.000000] #2 [002e9cc000 - 002f9ec000] RAMDISK +[ 0.000000] #3 [0001d18000 - 0001d1819d] BRK +[ 0.000000] #4 [00000ff790 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000ff780 - 00000ff790] MP-table mpf +[ 0.000000] #6 [0000093c00 - 00000fd130] BIOS reserved +[ 0.000000] #7 [00000fd3ac - 00000ff780] BIOS reserved +[ 0.000000] #8 [00000fd130 - 00000fd3ac] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000017000] PGTABLE +[ 0.000000] #12 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #13 [0240000000 - 0240005000] NODE_DATA +[ 0.000000] #14 [0001d181c0 - 0001d191c0] BOOTMEM +[ 0.000000] #15 [0001d17140 - 0001d175c0] BOOTMEM +[ 0.000000] #16 [0240005000 - 0240005480] BOOTMEM +[ 0.000000] #17 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #18 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #19 [0100200000 - 0105600000] MEMMAP 0 +[ 0.000000] #20 [0240200000 - 0245600000] MEMMAP 1 +[ 0.000000] #21 [0001d175c0 - 0001d17740] BOOTMEM +[ 0.000000] #22 [0001d191c0 - 0001d311c0] BOOTMEM +[ 0.000000] #23 [0001d311c0 - 0001d491c0] BOOTMEM +[ 0.000000] #24 [0240005480 - 024001d480] BOOTMEM +[ 0.000000] #25 [0001d4a000 - 0001d4b000] BOOTMEM +[ 0.000000] #26 [0001d17740 - 0001d177c6] BOOTMEM +[ 0.000000] #27 [0001d17800 - 0001d17aa0] BOOTMEM +[ 0.000000] #28 [0001d17ac0 - 0001d17b28] BOOTMEM +[ 0.000000] #29 [0001d17b40 - 0001d17ba8] BOOTMEM +[ 0.000000] #30 [0001d17bc0 - 0001d17c28] BOOTMEM +[ 0.000000] #31 [0001d17c40 - 0001d17ca8] BOOTMEM +[ 0.000000] #32 [0001d17cc0 - 0001d17d28] BOOTMEM +[ 0.000000] #33 [0001d17d40 - 0001d17da8] BOOTMEM +[ 0.000000] #34 [0001d17dc0 - 0001d17e28] BOOTMEM +[ 0.000000] #35 [0001d17e40 - 0001d17ea8] BOOTMEM +[ 0.000000] #36 [0001d17ec0 - 0001d17f28] BOOTMEM +[ 0.000000] #37 [0001d17f40 - 0001d17fa8] BOOTMEM +[ 0.000000] #38 [0001d491c0 - 0001d49228] BOOTMEM +[ 0.000000] #39 [0001d17fc0 - 0001d17fe0] BOOTMEM +[ 0.000000] #40 [0001d49240 - 0001d49260] BOOTMEM +[ 0.000000] #41 [0001d49280 - 0001d492ea] BOOTMEM +[ 0.000000] #42 [0001d49300 - 0001d4936a] BOOTMEM +[ 0.000000] #43 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #44 [0001e20000 - 0001e3e000] BOOTMEM +[ 0.000000] #45 [0001e40000 - 0001e5e000] BOOTMEM +[ 0.000000] #46 [0001e60000 - 0001e7e000] BOOTMEM +[ 0.000000] #47 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #48 [0001ea0000 - 0001ebe000] BOOTMEM +[ 0.000000] #49 [0001ec0000 - 0001ede000] BOOTMEM +[ 0.000000] #50 [0001ee0000 - 0001efe000] BOOTMEM +[ 0.000000] #51 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #52 [0001f20000 - 0001f3e000] BOOTMEM +[ 0.000000] #53 [0001f40000 - 0001f5e000] BOOTMEM +[ 0.000000] #54 [0001f60000 - 0001f7e000] BOOTMEM +[ 0.000000] #55 [0245600000 - 024561e000] BOOTMEM +[ 0.000000] #56 [0245620000 - 024563e000] BOOTMEM +[ 0.000000] #57 [0245640000 - 024565e000] BOOTMEM +[ 0.000000] #58 [0245660000 - 024567e000] BOOTMEM +[ 0.000000] #59 [0245680000 - 024569e000] BOOTMEM +[ 0.000000] #60 [02456a0000 - 02456be000] BOOTMEM +[ 0.000000] #61 [02456c0000 - 02456de000] BOOTMEM +[ 0.000000] #62 [02456e0000 - 02456fe000] BOOTMEM +[ 0.000000] #63 [0245700000 - 024571e000] BOOTMEM +[ 0.000000] #64 [0245720000 - 024573e000] BOOTMEM +[ 0.000000] #65 [0245740000 - 024575e000] BOOTMEM +[ 0.000000] #66 [0245760000 - 024577e000] BOOTMEM +[ 0.000000] #67 [0001d49380 - 0001d49390] BOOTMEM +[ 0.000000] #68 [0001d493c0 - 0001d493d0] BOOTMEM +[ 0.000000] #69 [0001d49400 - 0001d49460] BOOTMEM +[ 0.000000] #70 [0001d49480 - 0001d49540] BOOTMEM +[ 0.000000] #71 [0001d49540 - 0001d49650] BOOTMEM +[ 0.000000] #72 [0001d49680 - 0001d496c8] BOOTMEM +[ 0.000000] #73 [0001d49700 - 0001d49748] BOOTMEM +[ 0.000000] #74 [0001d4b000 - 0001d53000] BOOTMEM +[ 0.000000] #75 [0001f7e000 - 0005f7e000] BOOTMEM +[ 0.000000] #76 [0001d53000 - 0001d73000] BOOTMEM +[ 0.000000] #77 [0001d73000 - 0001db3000] BOOTMEM +[ 0.000000] #78 [0000018800 - 0000020800] BOOTMEM +[ 0.000000] Memory: 12302572k/15728640k available (5701k kernel code, 3154868k absent, 271200k reserved, 5388k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:1280 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 125829120 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.010000] Fast TSC calibration using PIT +[ 0.020000] Detected 2529.905 MHz processor. +[ 0.000011] Calibrating delay loop (skipped), value calculated using timer frequency.. 5059.81 BogoMIPS (lpj=25299050) +[ 0.000015] pid_max: default: 32768 minimum: 301 +[ 0.000056] Security Framework initialized +[ 0.000071] AppArmor: AppArmor initialized +[ 0.000072] Yama: becoming mindful. +[ 0.001630] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes) +[ 0.005621] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes) +[ 0.007187] Mount-cache hash table entries: 256 +[ 0.007331] Initializing cgroup subsys ns +[ 0.007335] Initializing cgroup subsys cpuacct +[ 0.007340] Initializing cgroup subsys memory +[ 0.007362] Initializing cgroup subsys devices +[ 0.007364] Initializing cgroup subsys freezer +[ 0.007365] Initializing cgroup subsys net_cls +[ 0.007397] CPU: Physical Processor ID: 0 +[ 0.007398] CPU: Processor Core ID: 0 +[ 0.007404] mce: CPU supports 9 MCE banks +[ 0.007416] CPU0: Thermal monitoring enabled (TM1) +[ 0.007425] using mwait in idle threads. +[ 0.007427] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.007433] ... version: 3 +[ 0.007434] ... bit width: 48 +[ 0.007436] ... generic registers: 4 +[ 0.007437] ... value mask: 0000ffffffffffff +[ 0.007439] ... max period: 000000007fffffff +[ 0.007440] ... fixed-purpose events: 3 +[ 0.007441] ... event mask: 000000070000000f +[ 0.009559] ACPI: Core revision 20100428 +[ 0.058453] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.058458] ftrace: allocating 22654 entries in 89 pages +[ 0.065359] DMAR: Host address width 40 +[ 0.065361] DMAR: DRHD base: 0x000000fbffe000 flags: 0x1 +[ 0.065370] IOMMU 0: reg_base_addr fbffe000 ver 1:0 cap c90780106f0462 ecap f020f6 +[ 0.065373] DMAR: RMRR base: 0x000000000ec000 end: 0x000000000effff +[ 0.065375] DMAR: RMRR base: 0x0000003f7ec000 end: 0x0000003f7fffff +[ 0.065377] DMAR: ATSR flags: 0x0 +[ 0.065547] Setting APIC routing to physical flat +[ 0.065995] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.165816] CPU0: Intel(R) Xeon(R) CPU E5630 @ 2.53GHz stepping 02 +[ 0.278672] Booting Node 0, Processors #1 #2 #3 Ok. +[ 0.817764] Booting Node 1, Processors #4 +[ 0.977323] Disabling lock debugging due to kernel taint +[ 0.997385] #5 #6 #7 Ok. +[ 1.536476] Booting Node 0, Processors #8 #9 #10 #11 Ok. +[ 2.255220] Booting Node 1, Processors #12 #13 #14 #15 +[ 2.973841] Brought up 16 CPUs +[ 2.973844] Total of 16 processors activated (80966.58 BogoMIPS). +[ 2.985910] devtmpfs: initialized +[ 2.986807] regulator: core version 0.5 +[ 2.986830] Time: 2:06:16 Date: 09/01/10 +[ 2.986870] NET: Registered protocol family 16 +[ 2.986974] ACPI: bus type pci registered +[ 2.986989] Trying to unpack rootfs image as initramfs... +[ 2.987037] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 2.987039] PCI: not using MMCONFIG +[ 2.987041] PCI: Using configuration type 1 for base access +[ 2.987894] bio: create slab at 0 +[ 2.989110] ACPI: EC: Look up EC in DSDT +[ 2.990517] ACPI: Executed 1 blocks of module-level executable AML code +[ 2.998197] ACPI: SSDT 000000003f79e200 033D4 (v01 DpgPmm P001Ist 00000011 INTL 20051117) +[ 2.998686] ACPI: Dynamic OEM Table Load: +[ 2.998688] ACPI: SSDT (null) 033D4 (v01 DpgPmm P001Ist 00000011 INTL 20051117) +[ 2.999057] ACPI: Interpreter enabled +[ 2.999059] ACPI: (supports S0 S1 S3 S4 S5) +[ 2.999077] ACPI: Using IOAPIC for interrupt routing +[ 2.999124] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 3.001018] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources +[ 3.039287] ACPI: No dock devices found. +[ 3.039290] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 3.039586] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 3.039854] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 3.039857] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 3.039858] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 3.039860] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] +[ 3.039862] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xdfffffff] +[ 3.039864] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff] +[ 3.039914] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold +[ 3.039917] pci 0000:00:00.0: PME# disabled +[ 3.039971] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 3.039974] pci 0000:00:01.0: PME# disabled +[ 3.040024] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 3.040027] pci 0000:00:02.0: PME# disabled +[ 3.040077] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 3.040079] pci 0000:00:03.0: PME# disabled +[ 3.040132] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 3.040135] pci 0000:00:07.0: PME# disabled +[ 3.040164] pci 0000:00:13.0: reg 10: [mem 0xfec8a000-0xfec8afff] +[ 3.040191] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold +[ 3.040194] pci 0000:00:13.0: PME# disabled +[ 3.040385] pci 0000:00:1a.0: reg 20: [io 0x7980-0x799f] +[ 3.040443] pci 0000:00:1a.1: reg 20: [io 0x7a00-0x7a1f] +[ 3.040501] pci 0000:00:1a.2: reg 20: [io 0x7a80-0x7a9f] +[ 3.040559] pci 0000:00:1a.7: reg 10: [mem 0xf3cf4000-0xf3cf43ff] +[ 3.040608] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold +[ 3.040612] pci 0000:00:1a.7: PME# disabled +[ 3.040671] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 3.040674] pci 0000:00:1c.0: PME# disabled +[ 3.040734] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 3.040737] pci 0000:00:1c.2: PME# disabled +[ 3.040797] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 3.040800] pci 0000:00:1c.4: PME# disabled +[ 3.040848] pci 0000:00:1d.0: reg 20: [io 0x7b00-0x7b1f] +[ 3.040906] pci 0000:00:1d.1: reg 20: [io 0x7b80-0x7b9f] +[ 3.040966] pci 0000:00:1d.2: reg 20: [io 0x7c00-0x7c1f] +[ 3.041023] pci 0000:00:1d.7: reg 10: [mem 0xf3cf6000-0xf3cf63ff] +[ 3.041073] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 3.041076] pci 0000:00:1d.7: PME# disabled +[ 3.041188] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 +[ 3.041192] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO +[ 3.041195] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO +[ 3.041199] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0a00 (mask 00ff) +[ 3.041250] pci 0000:00:1f.2: reg 10: [io 0x7d00-0x7d07] +[ 3.041255] pci 0000:00:1f.2: reg 14: [io 0x7f00-0x7f03] +[ 3.041260] pci 0000:00:1f.2: reg 18: [io 0x7e80-0x7e87] +[ 3.041264] pci 0000:00:1f.2: reg 1c: [io 0x7e00-0x7e03] +[ 3.041269] pci 0000:00:1f.2: reg 20: [io 0x7d80-0x7d9f] +[ 3.041273] pci 0000:00:1f.2: reg 24: [mem 0xf3cfc000-0xf3cfc7ff] +[ 3.041301] pci 0000:00:1f.2: PME# supported from D3hot +[ 3.041304] pci 0000:00:1f.2: PME# disabled +[ 3.041329] pci 0000:00:1f.3: reg 10: [mem 0xf3cfe000-0xf3cfe0ff 64bit] +[ 3.041341] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f] +[ 3.041405] pci 0000:0e:00.0: reg 10: [io 0xeb00-0xeb07] +[ 3.041410] pci 0000:0e:00.0: reg 14: [io 0xea80-0xea83] +[ 3.041414] pci 0000:0e:00.0: reg 18: [io 0xed00-0xed07] +[ 3.041419] pci 0000:0e:00.0: reg 1c: [io 0xec00-0xec03] +[ 3.041423] pci 0000:0e:00.0: reg 20: [io 0xeb80-0xeb8f] +[ 3.041428] pci 0000:0e:00.0: reg 24: [mem 0xfbeef000-0xfbeef7ff] +[ 3.041433] pci 0000:0e:00.0: reg 30: [mem 0xfbed0000-0xfbedffff pref] +[ 3.041451] pci 0000:0e:00.0: PME# supported from D3hot +[ 3.041454] pci 0000:0e:00.0: PME# disabled +[ 3.041479] pci 0000:0e:00.1: reg 10: [io 0xee00-0xee07] +[ 3.041483] pci 0000:0e:00.1: reg 14: [io 0xed80-0xed83] +[ 3.041488] pci 0000:0e:00.1: reg 18: [io 0xef80-0xef87] +[ 3.041492] pci 0000:0e:00.1: reg 1c: [io 0xef00-0xef03] +[ 3.041497] pci 0000:0e:00.1: reg 20: [io 0xee80-0xee8f] +[ 3.041502] pci 0000:0e:00.1: reg 24: [mem 0xfbeefc00-0xfbeefc0f] +[ 3.041506] pci 0000:0e:00.1: reg 30: [mem 0xfbef0000-0xfbefffff pref] +[ 3.041526] pci 0000:0e:00.1: PME# supported from D3hot +[ 3.041528] pci 0000:0e:00.1: PME# disabled +[ 3.053663] pci 0000:00:01.0: PCI bridge to [bus 0e-0e] +[ 3.053668] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] +[ 3.053672] pci 0000:00:01.0: bridge window [mem 0xfbe00000-0xfbefffff] +[ 3.053678] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.053748] pci 0000:0d:00.0: reg 10: [mem 0xfbdfe000-0xfbdfffff 64bit] +[ 3.053795] pci 0000:0d:00.0: PME# supported from D0 D3hot +[ 3.053798] pci 0000:0d:00.0: PME# disabled +[ 3.073627] pci 0000:00:02.0: PCI bridge to [bus 0d-0d] +[ 3.073631] pci 0000:00:02.0: bridge window [io 0xf000-0x0000] (disabled) +[ 3.073635] pci 0000:00:02.0: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 3.073641] pci 0000:00:02.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.073725] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold +[ 3.073727] pci 0000:09:00.0: PME# disabled +[ 3.093588] pci 0000:00:03.0: PCI bridge to [bus 09-0c] +[ 3.093593] pci 0000:00:03.0: bridge window [io 0xc000-0xdfff] +[ 3.093597] pci 0000:00:03.0: bridge window [mem 0xf4000000-0xfbcfffff] +[ 3.093603] pci 0000:00:03.0: bridge window [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.093679] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold +[ 3.093682] pci 0000:0a:00.0: PME# disabled +[ 3.093724] pci 0000:0a:02.0: PME# supported from D0 D3hot D3cold +[ 3.093727] pci 0000:0a:02.0: PME# disabled +[ 3.093754] pci 0000:09:00.0: PCI bridge to [bus 0a-0c] +[ 3.093758] pci 0000:09:00.0: bridge window [io 0xc000-0xdfff] +[ 3.093761] pci 0000:09:00.0: bridge window [mem 0xf4000000-0xfbcfffff] +[ 3.093766] pci 0000:09:00.0: bridge window [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.093807] pci 0000:0c:00.0: reg 10: [mem 0xf8000000-0xf9ffffff] +[ 3.093816] pci 0000:0c:00.0: reg 14: [mem 0xc8000000-0xcfffffff 64bit pref] +[ 3.093826] pci 0000:0c:00.0: reg 1c: [mem 0xc4000000-0xc7ffffff 64bit pref] +[ 3.093831] pci 0000:0c:00.0: reg 24: [io 0xdf80-0xdfff] +[ 3.093837] pci 0000:0c:00.0: reg 30: [mem 0xfbc00000-0xfbc7ffff pref] +[ 3.093895] pci 0000:0c:00.1: reg 10: [mem 0xfbcfc000-0xfbcfffff] +[ 3.113559] pci 0000:0a:00.0: PCI bridge to [bus 0c-0c] +[ 3.113566] pci 0000:0a:00.0: bridge window [io 0xd000-0xdfff] +[ 3.113570] pci 0000:0a:00.0: bridge window [mem 0xf8000000-0xfbcfffff] +[ 3.113576] pci 0000:0a:00.0: bridge window [mem 0xc4000000-0xcfffffff 64bit pref] +[ 3.113634] pci 0000:0b:00.0: reg 10: [mem 0xf4000000-0xf5ffffff] +[ 3.113644] pci 0000:0b:00.0: reg 14: [mem 0xb8000000-0xbfffffff 64bit pref] +[ 3.113654] pci 0000:0b:00.0: reg 1c: [mem 0xc0000000-0xc3ffffff 64bit pref] +[ 3.113659] pci 0000:0b:00.0: reg 24: [io 0xcf80-0xcfff] +[ 3.113665] pci 0000:0b:00.0: reg 30: [mem 0xf7f00000-0xf7f7ffff pref] +[ 3.113727] pci 0000:0b:00.1: reg 10: [mem 0xf7ffc000-0xf7ffffff] +[ 3.133524] pci 0000:0a:02.0: PCI bridge to [bus 0b-0b] +[ 3.133530] pci 0000:0a:02.0: bridge window [io 0xc000-0xcfff] +[ 3.133535] pci 0000:0a:02.0: bridge window [mem 0xf4000000-0xf7ffffff] +[ 3.133541] pci 0000:0a:02.0: bridge window [mem 0xb8000000-0xc3ffffff 64bit pref] +[ 3.133633] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold +[ 3.133636] pci 0000:05:00.0: PME# disabled +[ 3.153482] pci 0000:00:07.0: PCI bridge to [bus 05-08] +[ 3.153486] pci 0000:00:07.0: bridge window [io 0xb000-0xbfff] +[ 3.153490] pci 0000:00:07.0: bridge window [mem 0xd7d00000-0xdfffffff] +[ 3.153496] pci 0000:00:07.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.153572] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold +[ 3.153575] pci 0000:06:00.0: PME# disabled +[ 3.153618] pci 0000:06:02.0: PME# supported from D0 D3hot D3cold +[ 3.153621] pci 0000:06:02.0: PME# disabled +[ 3.153648] pci 0000:05:00.0: PCI bridge to [bus 06-08] +[ 3.153652] pci 0000:05:00.0: bridge window [io 0xb000-0xbfff] +[ 3.153655] pci 0000:05:00.0: bridge window [mem 0xd7d00000-0xdfffffff] +[ 3.153660] pci 0000:05:00.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.153702] pci 0000:08:00.0: reg 10: [mem 0xdc000000-0xddffffff] +[ 3.153712] pci 0000:08:00.0: reg 14: [mem 0xb0000000-0xb7ffffff 64bit pref] +[ 3.153722] pci 0000:08:00.0: reg 1c: [mem 0xac000000-0xafffffff 64bit pref] +[ 3.153728] pci 0000:08:00.0: reg 24: [io 0xbf80-0xbfff] +[ 3.153733] pci 0000:08:00.0: reg 30: [mem 0xdff00000-0xdff7ffff pref] +[ 3.153795] pci 0000:08:00.1: reg 10: [mem 0xdfffc000-0xdfffffff] +[ 3.173454] pci 0000:06:00.0: PCI bridge to [bus 08-08] +[ 3.173460] pci 0000:06:00.0: bridge window [io 0xb000-0xbfff] +[ 3.173464] pci 0000:06:00.0: bridge window [mem 0xdc000000-0xdfffffff] +[ 3.173470] pci 0000:06:00.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.173538] pci 0000:07:00.0: reg 10: [mem 0xd7df0000-0xd7dfffff 64bit] +[ 3.173551] pci 0000:07:00.0: reg 18: [mem 0xd7e00000-0xd7ffffff 64bit] +[ 3.173564] pci 0000:07:00.0: reg 20: [mem 0xd8000000-0xdbffffff 64bit] +[ 3.193415] pci 0000:06:02.0: PCI bridge to [bus 07-07] +[ 3.193422] pci 0000:06:02.0: bridge window [io 0xf000-0x0000] (disabled) +[ 3.193426] pci 0000:06:02.0: bridge window [mem 0xd7d00000-0xdbffffff] +[ 3.193432] pci 0000:06:02.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.193564] pci 0000:04:00.0: reg 24: [mem 0xf3fee000-0xf3feffff] +[ 3.193573] pci 0000:04:00.0: reg 30: [mem 0xf3ff0000-0xf3ffffff pref] +[ 3.193603] pci 0000:04:00.0: PME# supported from D3hot +[ 3.193608] pci 0000:04:00.0: PME# disabled +[ 3.193651] pci 0000:04:00.1: reg 10: [io 0xae00-0xae07] +[ 3.193659] pci 0000:04:00.1: reg 14: [io 0xad80-0xad83] +[ 3.193667] pci 0000:04:00.1: reg 18: [io 0xaf80-0xaf87] +[ 3.193675] pci 0000:04:00.1: reg 1c: [io 0xaf00-0xaf03] +[ 3.193683] pci 0000:04:00.1: reg 20: [io 0xae80-0xae8f] +[ 3.193741] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 3.193753] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 3.193756] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff] +[ 3.193760] pci 0000:00:1c.0: bridge window [mem 0xf3f00000-0xf3ffffff] +[ 3.193765] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.193833] pci 0000:03:00.0: reg 10: [mem 0xf3edc000-0xf3edffff 64bit] +[ 3.193840] pci 0000:03:00.0: reg 18: [io 0x9f00-0x9fff] +[ 3.193864] pci 0000:03:00.0: reg 30: [mem 0xf3ee0000-0xf3efffff pref] +[ 3.193896] pci 0000:03:00.0: supports D1 D2 +[ 3.193897] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 3.193902] pci 0000:03:00.0: PME# disabled +[ 3.213382] pci 0000:00:1c.2: PCI bridge to [bus 03-03] +[ 3.213387] pci 0000:00:1c.2: bridge window [io 0x9000-0x9fff] +[ 3.213391] pci 0000:00:1c.2: bridge window [mem 0xf3e00000-0xf3efffff] +[ 3.213398] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.213478] pci 0000:02:00.0: reg 10: [mem 0xf3ddc000-0xf3ddffff 64bit] +[ 3.213486] pci 0000:02:00.0: reg 18: [io 0x8f00-0x8fff] +[ 3.213511] pci 0000:02:00.0: reg 30: [mem 0xf3de0000-0xf3dfffff pref] +[ 3.213543] pci 0000:02:00.0: supports D1 D2 +[ 3.213544] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 3.213548] pci 0000:02:00.0: PME# disabled +[ 3.233346] pci 0000:00:1c.4: PCI bridge to [bus 02-02] +[ 3.233351] pci 0000:00:1c.4: bridge window [io 0x8000-0x8fff] +[ 3.233355] pci 0000:00:1c.4: bridge window [mem 0xf3d00000-0xf3dfffff] +[ 3.233362] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.233431] pci 0000:00:1e.0: PCI bridge to [bus 01-01] (subtractive decode) +[ 3.233435] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 3.233438] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 3.233443] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 3.233445] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 3.233447] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 3.233449] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 3.233451] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode) +[ 3.233452] pci 0000:00:1e.0: bridge window [mem 0x40000000-0xdfffffff] (subtractive decode) +[ 3.233454] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode) +[ 3.233485] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 3.233717] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT] +[ 3.233777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT] +[ 3.233835] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 3.233930] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT] +[ 3.233990] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] +[ 3.234042] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT] +[ 3.257544] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 10 *11 12 14 15) +[ 3.257653] ACPI: PCI Interrupt Link [LNKB] (IRQs *5) +[ 3.257758] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 *10 11 12 14 15) +[ 3.257864] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12 14 *15) +[ 3.257974] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled. +[ 3.258081] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 6 7 10 11 12 14 15) +[ 3.258188] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled. +[ 3.258295] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 7 10 11 12 *14 15) +[ 3.258340] HEST: Table is not found! +[ 3.258395] vgaarb: device added: PCI:0000:0c:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 3.258400] vgaarb: device added: PCI:0000:0b:00.0,decodes=io+mem,owns=none,locks=none +[ 3.258405] vgaarb: device added: PCI:0000:08:00.0,decodes=io+mem,owns=none,locks=none +[ 3.258409] vgaarb: loaded +[ 3.258508] SCSI subsystem initialized +[ 3.258748] libata version 3.00 loaded. +[ 3.258786] usbcore: registered new interface driver usbfs +[ 3.258794] usbcore: registered new interface driver hub +[ 3.258814] usbcore: registered new device driver usb +[ 3.258933] ACPI: WMI: Mapper loaded +[ 3.258935] PCI: Using ACPI for IRQ routing +[ 3.258937] PCI: pci_cache_line_size set to 64 bytes +[ 3.259066] reserve RAM buffer: 0000000000093c00 - 000000000009ffff +[ 3.259068] reserve RAM buffer: 000000003f790000 - 000000003fffffff +[ 3.259140] NetLabel: Initializing +[ 3.259141] NetLabel: domain hash size = 128 +[ 3.259142] NetLabel: protocols = UNLABELED CIPSOv4 +[ 3.259152] NetLabel: unlabeled traffic allowed by default +[ 3.259262] hpet clockevent registered +[ 3.259267] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 3.259271] hpet0: 4 comparators, 64-bit 14.318180 MHz counter +[ 3.261289] Switching to clocksource tsc +[ 3.268584] AppArmor: AppArmor Filesystem Enabled +[ 3.268591] pnp: PnP ACPI init +[ 3.268598] ACPI: bus type pnp registered +[ 3.271314] pnp: PnP ACPI: found 11 devices +[ 3.271316] ACPI: ACPI bus type pnp unregistered +[ 3.271324] system 00:01: [mem 0xfbf00000-0xfbffffff] has been reserved +[ 3.271326] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved +[ 3.271328] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved +[ 3.271331] system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved +[ 3.271333] system 00:01: [mem 0xfec8a000-0xfec8afff] could not be reserved +[ 3.271335] system 00:01: [mem 0xfed10000-0xfed10fff] has been reserved +[ 3.271339] system 00:06: [io 0x0a00-0x0adf] has been reserved +[ 3.271341] system 00:06: [io 0x0ae0-0x0aef] has been reserved +[ 3.271345] system 00:07: [io 0x04d0-0x04d1] has been reserved +[ 3.271347] system 00:07: [io 0x0800-0x087f] has been reserved +[ 3.271349] system 00:07: [io 0x0500-0x057f] could not be reserved +[ 3.271351] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 3.271353] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 3.271356] system 00:07: [mem 0xfed40000-0xfed8ffff] has been reserved +[ 3.271359] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 3.271361] system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved +[ 3.271365] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved +[ 3.271369] system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved +[ 3.271371] system 00:0a: [mem 0x000c0000-0x000cffff] has been reserved +[ 3.271373] system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved +[ 3.271375] system 00:0a: [mem 0x00100000-0x3fffffff] could not be reserved +[ 3.271377] system 00:0a: [mem 0xfed90000-0xffffffff] could not be reserved +[ 3.276102] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref] +[ 3.276105] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref] +[ 3.276108] pci 0000:00:1c.4: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref] +[ 3.276110] pci 0000:00:01.0: PCI bridge to [bus 0e-0e] +[ 3.276112] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] +[ 3.276116] pci 0000:00:01.0: bridge window [mem 0xfbe00000-0xfbefffff] +[ 3.276119] pci 0000:00:01.0: bridge window [mem pref disabled] +[ 3.276123] pci 0000:00:02.0: PCI bridge to [bus 0d-0d] +[ 3.276124] pci 0000:00:02.0: bridge window [io disabled] +[ 3.276127] pci 0000:00:02.0: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 3.276130] pci 0000:00:02.0: bridge window [mem pref disabled] +[ 3.276135] pci 0000:0a:00.0: PCI bridge to [bus 0c-0c] +[ 3.276137] pci 0000:0a:00.0: bridge window [io 0xd000-0xdfff] +[ 3.276141] pci 0000:0a:00.0: bridge window [mem 0xf8000000-0xfbcfffff] +[ 3.276144] pci 0000:0a:00.0: bridge window [mem 0xc4000000-0xcfffffff 64bit pref] +[ 3.276148] pci 0000:0a:02.0: PCI bridge to [bus 0b-0b] +[ 3.276151] pci 0000:0a:02.0: bridge window [io 0xc000-0xcfff] +[ 3.276154] pci 0000:0a:02.0: bridge window [mem 0xf4000000-0xf7ffffff] +[ 3.276157] pci 0000:0a:02.0: bridge window [mem 0xb8000000-0xc3ffffff 64bit pref] +[ 3.276162] pci 0000:09:00.0: PCI bridge to [bus 0a-0c] +[ 3.276164] pci 0000:09:00.0: bridge window [io 0xc000-0xdfff] +[ 3.276168] pci 0000:09:00.0: bridge window [mem 0xf4000000-0xfbcfffff] +[ 3.276171] pci 0000:09:00.0: bridge window [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.276175] pci 0000:00:03.0: PCI bridge to [bus 09-0c] +[ 3.276177] pci 0000:00:03.0: bridge window [io 0xc000-0xdfff] +[ 3.276181] pci 0000:00:03.0: bridge window [mem 0xf4000000-0xfbcfffff] +[ 3.276183] pci 0000:00:03.0: bridge window [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.276188] pci 0000:06:00.0: PCI bridge to [bus 08-08] +[ 3.276190] pci 0000:06:00.0: bridge window [io 0xb000-0xbfff] +[ 3.276194] pci 0000:06:00.0: bridge window [mem 0xdc000000-0xdfffffff] +[ 3.276197] pci 0000:06:00.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276202] pci 0000:06:02.0: PCI bridge to [bus 07-07] +[ 3.276203] pci 0000:06:02.0: bridge window [io disabled] +[ 3.276207] pci 0000:06:02.0: bridge window [mem 0xd7d00000-0xdbffffff] +[ 3.276210] pci 0000:06:02.0: bridge window [mem pref disabled] +[ 3.276214] pci 0000:05:00.0: PCI bridge to [bus 06-08] +[ 3.276216] pci 0000:05:00.0: bridge window [io 0xb000-0xbfff] +[ 3.276220] pci 0000:05:00.0: bridge window [mem 0xd7d00000-0xdfffffff] +[ 3.276223] pci 0000:05:00.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276227] pci 0000:00:07.0: PCI bridge to [bus 05-08] +[ 3.276230] pci 0000:00:07.0: bridge window [io 0xb000-0xbfff] +[ 3.276233] pci 0000:00:07.0: bridge window [mem 0xd7d00000-0xdfffffff] +[ 3.276236] pci 0000:00:07.0: bridge window [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276240] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 3.276243] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff] +[ 3.276247] pci 0000:00:1c.0: bridge window [mem 0xf3f00000-0xf3ffffff] +[ 3.276250] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff 64bit pref] +[ 3.276255] pci 0000:00:1c.2: PCI bridge to [bus 03-03] +[ 3.276257] pci 0000:00:1c.2: bridge window [io 0x9000-0x9fff] +[ 3.276261] pci 0000:00:1c.2: bridge window [mem 0xf3e00000-0xf3efffff] +[ 3.276264] pci 0000:00:1c.2: bridge window [mem 0x40200000-0x403fffff 64bit pref] +[ 3.276269] pci 0000:00:1c.4: PCI bridge to [bus 02-02] +[ 3.276272] pci 0000:00:1c.4: bridge window [io 0x8000-0x8fff] +[ 3.276276] pci 0000:00:1c.4: bridge window [mem 0xf3d00000-0xf3dfffff] +[ 3.276279] pci 0000:00:1c.4: bridge window [mem 0x40400000-0x405fffff 64bit pref] +[ 3.276284] pci 0000:00:1e.0: PCI bridge to [bus 01-01] +[ 3.276285] pci 0000:00:1e.0: bridge window [io disabled] +[ 3.276289] pci 0000:00:1e.0: bridge window [mem disabled] +[ 3.276292] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 3.276303] pci 0000:00:01.0: setting latency timer to 64 +[ 3.276309] pci 0000:00:02.0: setting latency timer to 64 +[ 3.276315] pci 0000:00:03.0: setting latency timer to 64 +[ 3.276322] pci 0000:09:00.0: setting latency timer to 64 +[ 3.276329] pci 0000:0a:00.0: setting latency timer to 64 +[ 3.276335] pci 0000:0a:02.0: setting latency timer to 64 +[ 3.276341] pci 0000:00:07.0: setting latency timer to 64 +[ 3.276348] pci 0000:05:00.0: setting latency timer to 64 +[ 3.276354] pci 0000:06:00.0: setting latency timer to 64 +[ 3.276361] pci 0000:06:02.0: setting latency timer to 64 +[ 3.276368] alloc irq_desc for 17 on node -1 +[ 3.276369] alloc kstat_irqs on node -1 +[ 3.276374] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.276377] pci 0000:00:1c.0: setting latency timer to 64 +[ 3.276383] alloc irq_desc for 18 on node -1 +[ 3.276384] alloc kstat_irqs on node -1 +[ 3.276387] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 3.276390] pci 0000:00:1c.2: setting latency timer to 64 +[ 3.276397] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.276400] pci 0000:00:1c.4: setting latency timer to 64 +[ 3.276405] pci 0000:00:1e.0: setting latency timer to 64 +[ 3.276408] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 3.276410] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 3.276411] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 3.276413] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff] +[ 3.276414] pci_bus 0000:00: resource 8 [mem 0x40000000-0xdfffffff] +[ 3.276416] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 3.276418] pci_bus 0000:0e: resource 0 [io 0xe000-0xefff] +[ 3.276419] pci_bus 0000:0e: resource 1 [mem 0xfbe00000-0xfbefffff] +[ 3.276421] pci_bus 0000:0d: resource 1 [mem 0xfbd00000-0xfbdfffff] +[ 3.276423] pci_bus 0000:09: resource 0 [io 0xc000-0xdfff] +[ 3.276424] pci_bus 0000:09: resource 1 [mem 0xf4000000-0xfbcfffff] +[ 3.276426] pci_bus 0000:09: resource 2 [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.276428] pci_bus 0000:0a: resource 0 [io 0xc000-0xdfff] +[ 3.276429] pci_bus 0000:0a: resource 1 [mem 0xf4000000-0xfbcfffff] +[ 3.276431] pci_bus 0000:0a: resource 2 [mem 0xb8000000-0xcfffffff 64bit pref] +[ 3.276433] pci_bus 0000:0c: resource 0 [io 0xd000-0xdfff] +[ 3.276434] pci_bus 0000:0c: resource 1 [mem 0xf8000000-0xfbcfffff] +[ 3.276436] pci_bus 0000:0c: resource 2 [mem 0xc4000000-0xcfffffff 64bit pref] +[ 3.276438] pci_bus 0000:0b: resource 0 [io 0xc000-0xcfff] +[ 3.276439] pci_bus 0000:0b: resource 1 [mem 0xf4000000-0xf7ffffff] +[ 3.276441] pci_bus 0000:0b: resource 2 [mem 0xb8000000-0xc3ffffff 64bit pref] +[ 3.276443] pci_bus 0000:05: resource 0 [io 0xb000-0xbfff] +[ 3.276444] pci_bus 0000:05: resource 1 [mem 0xd7d00000-0xdfffffff] +[ 3.276446] pci_bus 0000:05: resource 2 [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276448] pci_bus 0000:06: resource 0 [io 0xb000-0xbfff] +[ 3.276449] pci_bus 0000:06: resource 1 [mem 0xd7d00000-0xdfffffff] +[ 3.276451] pci_bus 0000:06: resource 2 [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276452] pci_bus 0000:08: resource 0 [io 0xb000-0xbfff] +[ 3.276454] pci_bus 0000:08: resource 1 [mem 0xdc000000-0xdfffffff] +[ 3.276456] pci_bus 0000:08: resource 2 [mem 0xac000000-0xb7ffffff 64bit pref] +[ 3.276457] pci_bus 0000:07: resource 1 [mem 0xd7d00000-0xdbffffff] +[ 3.276459] pci_bus 0000:04: resource 0 [io 0xa000-0xafff] +[ 3.276461] pci_bus 0000:04: resource 1 [mem 0xf3f00000-0xf3ffffff] +[ 3.276462] pci_bus 0000:04: resource 2 [mem 0x40000000-0x401fffff 64bit pref] +[ 3.276464] pci_bus 0000:03: resource 0 [io 0x9000-0x9fff] +[ 3.276466] pci_bus 0000:03: resource 1 [mem 0xf3e00000-0xf3efffff] +[ 3.276467] pci_bus 0000:03: resource 2 [mem 0x40200000-0x403fffff 64bit pref] +[ 3.276469] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] +[ 3.276471] pci_bus 0000:02: resource 1 [mem 0xf3d00000-0xf3dfffff] +[ 3.276472] pci_bus 0000:02: resource 2 [mem 0x40400000-0x405fffff 64bit pref] +[ 3.276474] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7] +[ 3.276476] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff] +[ 3.276477] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff] +[ 3.276479] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff] +[ 3.276480] pci_bus 0000:01: resource 8 [mem 0x40000000-0xdfffffff] +[ 3.276482] pci_bus 0000:01: resource 9 [mem 0xf0000000-0xfed8ffff] +[ 3.276512] NET: Registered protocol family 2 +[ 3.276889] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 3.278268] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 3.279754] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 3.279928] TCP: Hash tables configured (established 524288 bind 65536) +[ 3.279929] TCP reno registered +[ 3.279954] UDP hash table entries: 8192 (order: 6, 262144 bytes) +[ 3.280030] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes) +[ 3.280231] NET: Registered protocol family 1 +[ 3.280457] pci 0000:0c:00.0: Boot video device +[ 3.280547] PCI: CLS 256 bytes, default 64 +[ 3.280549] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 3.280551] Placing 64MB software IO TLB between ffff880001f7e000 - ffff880005f7e000 +[ 3.280553] software IO TLB at phys 0x1f7e000 - 0x5f7e000 +[ 3.281286] Scanning for low memory corruption every 60 seconds +[ 3.281385] audit: initializing netlink socket (disabled) +[ 3.281392] type=2000 audit(1283306775.990:1): initialized +[ 3.287372] Freeing initrd memory: 16512k freed +[ 3.294717] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 3.296168] VFS: Disk quotas dquot_6.5.2 +[ 3.296225] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 3.296736] fuse init (API version 7.14) +[ 3.296805] msgmni has been set to 24060 +[ 3.299062] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 3.299065] io scheduler noop registered +[ 3.299066] io scheduler deadline registered +[ 3.299100] io scheduler cfq registered (default) +[ 3.299211] pcieport 0000:00:01.0: setting latency timer to 64 +[ 3.299235] alloc irq_desc for 64 on node -1 +[ 3.299237] alloc kstat_irqs on node -1 +[ 3.299249] pcieport 0000:00:01.0: irq 64 for MSI/MSI-X +[ 3.299300] pcieport 0000:00:02.0: setting latency timer to 64 +[ 3.299323] alloc irq_desc for 65 on node -1 +[ 3.299324] alloc kstat_irqs on node -1 +[ 3.299329] pcieport 0000:00:02.0: irq 65 for MSI/MSI-X +[ 3.299383] pcieport 0000:00:03.0: setting latency timer to 64 +[ 3.299406] alloc irq_desc for 66 on node -1 +[ 3.299407] alloc kstat_irqs on node -1 +[ 3.299412] pcieport 0000:00:03.0: irq 66 for MSI/MSI-X +[ 3.299458] pcieport 0000:00:07.0: setting latency timer to 64 +[ 3.299480] alloc irq_desc for 67 on node -1 +[ 3.299482] alloc kstat_irqs on node -1 +[ 3.299486] pcieport 0000:00:07.0: irq 67 for MSI/MSI-X +[ 3.299535] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 3.299562] alloc irq_desc for 68 on node -1 +[ 3.299563] alloc kstat_irqs on node -1 +[ 3.299569] pcieport 0000:00:1c.0: irq 68 for MSI/MSI-X +[ 3.299629] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 3.299655] alloc irq_desc for 69 on node -1 +[ 3.299657] alloc kstat_irqs on node -1 +[ 3.299662] pcieport 0000:00:1c.2: irq 69 for MSI/MSI-X +[ 3.299720] pcieport 0000:00:1c.4: setting latency timer to 64 +[ 3.299747] alloc irq_desc for 70 on node -1 +[ 3.299748] alloc kstat_irqs on node -1 +[ 3.299753] pcieport 0000:00:1c.4: irq 70 for MSI/MSI-X +[ 3.300058] aer 0000:00:01.0:pcie02: service driver aer loaded +[ 3.300081] aer 0000:00:02.0:pcie02: service driver aer loaded +[ 3.300104] aer 0000:00:03.0:pcie02: service driver aer loaded +[ 3.300127] aer 0000:00:07.0:pcie02: service driver aer loaded +[ 3.300142] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 3.300353] pciehp 0000:00:1c.0:pcie04: HPC vendor_id 8086 device_id 3a40 ss_vid 3842 ss_did 101a +[ 3.300392] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded +[ 3.300403] pciehp 0000:00:1c.2:pcie04: HPC vendor_id 8086 device_id 3a44 ss_vid 3842 ss_did 101a +[ 3.300428] pciehp 0000:00:1c.2:pcie04: service driver pciehp loaded +[ 3.300438] pciehp 0000:00:1c.4:pcie04: HPC vendor_id 8086 device_id 3a48 ss_vid 3842 ss_did 101a +[ 3.300466] pciehp 0000:00:1c.4:pcie04: service driver pciehp loaded +[ 3.300471] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 3.300523] intel_idle: MWAIT substates: 0x1120 +[ 3.300525] intel_idle: v0.4 model 0x2C +[ 3.300526] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 3.300660] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 3.300663] ACPI: Power Button [PWRB] +[ 3.300694] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 3.300696] ACPI: Power Button [PWRF] +[ 3.300977] ACPI: acpi_idle yielding to intel_idle +[ 3.304707] ERST: Table is not found! +[ 3.305606] Linux agpgart interface v0.103 +[ 3.305623] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 3.306658] brd: module loaded +[ 3.307090] loop: module loaded +[ 3.307242] alloc irq_desc for 40 on node -1 +[ 3.307244] alloc kstat_irqs on node -1 +[ 3.307250] pata_acpi 0000:0e:00.1: PCI INT B -> GSI 40 (level, low) -> IRQ 40 +[ 3.307270] pata_acpi 0000:0e:00.1: setting latency timer to 64 +[ 3.307280] pata_acpi 0000:0e:00.1: PCI INT B disabled +[ 3.307295] pata_acpi 0000:04:00.1: enabling device (0000 -> 0001) +[ 3.307299] pata_acpi 0000:04:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 3.307315] pata_acpi 0000:04:00.1: setting latency timer to 64 +[ 3.307324] pata_acpi 0000:04:00.1: PCI INT B disabled +[ 3.307521] Fixed MDIO Bus: probed +[ 3.307543] PPP generic driver version 2.4.2 +[ 3.307566] tun: Universal TUN/TAP device driver, 1.6 +[ 3.307567] tun: (C) 1999-2004 Max Krasnyansky +[ 3.307614] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 3.307632] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 3.307645] ehci_hcd 0000:00:1a.7: setting latency timer to 64 +[ 3.307648] ehci_hcd 0000:00:1a.7: EHCI Host Controller +[ 3.307677] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 +[ 3.307703] ehci_hcd 0000:00:1a.7: debug port 1 +[ 3.311584] ehci_hcd 0000:00:1a.7: cache line size of 256 is not supported +[ 3.311595] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xf3cf4000 +[ 3.333281] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00 +[ 3.333393] hub 1-0:1.0: USB hub found +[ 3.333396] hub 1-0:1.0: 6 ports detected +[ 3.333457] alloc irq_desc for 23 on node -1 +[ 3.333459] alloc kstat_irqs on node -1 +[ 3.333463] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 3.333474] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 3.333477] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 3.333501] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 +[ 3.333525] ehci_hcd 0000:00:1d.7: debug port 1 +[ 3.337387] ehci_hcd 0000:00:1d.7: cache line size of 256 is not supported +[ 3.337398] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf3cf6000 +[ 3.353260] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 3.353356] hub 2-0:1.0: USB hub found +[ 3.353359] hub 2-0:1.0: 6 ports detected +[ 3.353418] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 3.353428] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.353465] alloc irq_desc for 16 on node -1 +[ 3.353467] alloc kstat_irqs on node -1 +[ 3.353471] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.353475] uhci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 3.353478] uhci_hcd 0000:00:1a.0: UHCI Host Controller +[ 3.353505] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3 +[ 3.353533] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00007980 +[ 3.353614] hub 3-0:1.0: USB hub found +[ 3.353618] hub 3-0:1.0: 2 ports detected +[ 3.353665] alloc irq_desc for 21 on node -1 +[ 3.353666] alloc kstat_irqs on node -1 +[ 3.353670] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 3.353674] uhci_hcd 0000:00:1a.1: setting latency timer to 64 +[ 3.353677] uhci_hcd 0000:00:1a.1: UHCI Host Controller +[ 3.353708] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4 +[ 3.353735] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00007a00 +[ 3.353815] hub 4-0:1.0: USB hub found +[ 3.353818] hub 4-0:1.0: 2 ports detected +[ 3.353863] alloc irq_desc for 19 on node -1 +[ 3.353864] alloc kstat_irqs on node -1 +[ 3.353868] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 3.353873] uhci_hcd 0000:00:1a.2: setting latency timer to 64 +[ 3.353875] uhci_hcd 0000:00:1a.2: UHCI Host Controller +[ 3.353909] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5 +[ 3.353937] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00007a80 +[ 3.354019] hub 5-0:1.0: USB hub found +[ 3.354022] hub 5-0:1.0: 2 ports detected +[ 3.354067] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 3.354072] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 3.354074] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 3.354100] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6 +[ 3.354128] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00007b00 +[ 3.354209] hub 6-0:1.0: USB hub found +[ 3.354211] hub 6-0:1.0: 2 ports detected +[ 3.354258] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 3.354262] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 3.354265] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 3.354296] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7 +[ 3.354317] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00007b80 +[ 3.354397] hub 7-0:1.0: USB hub found +[ 3.354400] hub 7-0:1.0: 2 ports detected +[ 3.354451] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 3.354456] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 3.354458] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 3.354485] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8 +[ 3.354506] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00007c00 +[ 3.354589] hub 8-0:1.0: USB hub found +[ 3.354592] hub 8-0:1.0: 2 ports detected +[ 3.354676] PNP: No PS/2 controller found. Probing ports directly. +[ 3.356944] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.356948] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 3.356996] mice: PS/2 mouse device common for all mice +[ 3.357070] rtc_cmos 00:03: RTC can wake from S4 +[ 3.357097] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 3.357120] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 3.357196] device-mapper: uevent: version 1.0.3 +[ 3.357256] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 3.357604] device-mapper: multipath: version 1.1.1 loaded +[ 3.357606] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 3.358631] cpuidle: using governor ladder +[ 3.359099] cpuidle: using governor menu +[ 3.359331] TCP cubic registered +[ 3.359432] NET: Registered protocol family 10 +[ 3.359825] lo: Disabled Privacy Extensions +[ 3.359975] NET: Registered protocol family 17 +[ 3.365235] PM: Resume from disk failed. +[ 3.365245] registered taskstats version 1 +[ 3.365892] Magic number: 10:365:105 +[ 3.365898] usbmon usbmon1: hash matches +[ 3.365962] rtc_cmos 00:03: setting system clock to 2010-09-01 02:06:17 UTC (1283306777) +[ 3.365965] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 3.365966] EDD information not available. +[ 3.366041] Freeing unused kernel memory: 908k freed +[ 3.366227] Write protecting the kernel read-only data: 10240k +[ 3.366457] Freeing unused kernel memory: 424k freed +[ 3.366692] Freeing unused kernel memory: 1644k freed +[ 3.380974] udev[245]: starting version 162 +[ 3.405040] ahci 0000:00:1f.2: version 3.0 +[ 3.405060] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 3.405116] alloc irq_desc for 71 on node -1 +[ 3.405118] alloc kstat_irqs on node -1 +[ 3.405129] ahci 0000:00:1f.2: irq 71 for MSI/MSI-X +[ 3.405137] ahci 0000:00:1f.2: controller can't do SNTF, turning off CAP_SNTF +[ 3.405166] ahci: SSS flag set, parallel bus scan disabled +[ 3.405204] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl RAID mode +[ 3.405207] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ccc ems sxs +[ 3.405211] ahci 0000:00:1f.2: setting latency timer to 64 +[ 3.406881] pata_jmicron 0000:04:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 3.406907] pata_jmicron 0000:04:00.1: setting latency timer to 64 +[ 3.406983] scsi0 : pata_jmicron +[ 3.407103] scsi1 : pata_jmicron +[ 3.407143] ata1: PATA max UDMA/100 cmd 0xae00 ctl 0xad80 bmdma 0xae80 irq 17 +[ 3.407146] ata2: PATA max UDMA/100 cmd 0xaf80 ctl 0xaf00 bmdma 0xae88 irq 17 +[ 3.413192] sky2: driver version 1.28 +[ 3.413220] sky2 0000:03:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 3.413229] sky2 0000:03:00.0: setting latency timer to 64 +[ 3.413262] sky2 0000:03:00.0: Yukon-2 UL 2 chip revision 0 +[ 3.413329] alloc irq_desc for 72 on node -1 +[ 3.413331] alloc kstat_irqs on node -1 +[ 3.413342] sky2 0000:03:00.0: irq 72 for MSI/MSI-X +[ 3.413898] sky2 0000:03:00.0: eth0: addr 00:1f:bc:02:96:88 +[ 3.413915] sky2 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.413923] sky2 0000:02:00.0: setting latency timer to 64 +[ 3.413947] sky2 0000:02:00.0: Yukon-2 UL 2 chip revision 0 +[ 3.414015] alloc irq_desc for 73 on node -1 +[ 3.414016] alloc kstat_irqs on node -1 +[ 3.414027] sky2 0000:02:00.0: irq 73 for MSI/MSI-X +[ 3.414575] sky2 0000:02:00.0: eth1: addr 00:1f:bc:02:96:89 +[ 3.502969] scsi2 : ahci +[ 3.503043] scsi3 : ahci +[ 3.503106] scsi4 : ahci +[ 3.503172] scsi5 : ahci +[ 3.503243] scsi6 : ahci +[ 3.503306] scsi7 : ahci +[ 3.503473] ata3: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc100 irq 71 +[ 3.503477] ata4: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc180 irq 71 +[ 3.503479] ata5: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc200 irq 71 +[ 3.503482] ata6: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc280 irq 71 +[ 3.503485] ata7: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc300 irq 71 +[ 3.503488] ata8: SATA max UDMA/133 abar m2048@0xf3cfc000 port 0xf3cfc380 irq 71 +[ 3.503530] alloc irq_desc for 28 on node -1 +[ 3.503532] alloc kstat_irqs on node -1 +[ 3.503538] ahci 0000:0e:00.0: PCI INT A -> GSI 28 (level, low) -> IRQ 28 +[ 3.503581] alloc irq_desc for 74 on node -1 +[ 3.503582] alloc kstat_irqs on node -1 +[ 3.503589] ahci 0000:0e:00.0: irq 74 for MSI/MSI-X +[ 3.522919] ahci 0000:0e:00.0: AHCI 0001.0200 32 slots 8 ports 6 Gbps 0xff impl SATA mode +[ 3.522923] ahci 0000:0e:00.0: flags: 64bit ncq pio +[ 3.522927] ahci 0000:0e:00.0: setting latency timer to 64 +[ 3.523230] scsi8 : ahci +[ 3.523291] scsi9 : ahci +[ 3.523346] scsi10 : ahci +[ 3.523399] scsi11 : ahci +[ 3.523451] scsi12 : ahci +[ 3.523504] scsi13 : ahci +[ 3.523557] scsi14 : ahci +[ 3.523608] scsi15 : ahci +[ 3.523645] ata9: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef100 irq 74 +[ 3.523648] ata10: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef180 irq 74 +[ 3.523651] ata11: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef200 irq 74 +[ 3.523654] ata12: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef280 irq 74 +[ 3.523657] ata13: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef300 irq 74 +[ 3.523660] ata14: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef380 irq 74 +[ 3.523663] ata15: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef400 irq 74 +[ 3.523666] ata16: SATA max UDMA/133 abar m2048@0xfbeef000 port 0xfbeef480 irq 74 +[ 3.523885] ahci 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.542880] ahci 0000:04:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode +[ 3.542883] ahci 0000:04:00.0: flags: 64bit ncq led clo pmp pio +[ 3.542889] ahci 0000:04:00.0: setting latency timer to 64 +[ 3.543000] scsi16 : ahci +[ 3.543059] scsi17 : ahci +[ 3.543138] ata17: SATA max UDMA/133 abar m8192@0xf3fee000 port 0xf3fee100 irq 16 +[ 3.543142] ata18: SATA max UDMA/133 abar m8192@0xf3fee000 port 0xf3fee180 irq 16 +[ 3.852344] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.855386] ata3.00: ATAPI: PIONEER BD-RW BDR-205, 1.04, max UDMA/100 +[ 3.858716] ata3.00: configured for UDMA/100 +[ 3.872282] ata16: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.872367] ata15: SATA link down (SStatus 0 SControl 300) +[ 3.872371] ata16.00: ATAPI: MARVELL VIRTUALL, 1.09, max UDMA/66 +[ 3.872389] ata13: SATA link down (SStatus 0 SControl 300) +[ 3.872406] ata12: SATA link down (SStatus 0 SControl 300) +[ 3.872409] ata11: SATA link down (SStatus 0 SControl 300) +[ 3.872428] ata10: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 3.872431] ata14: SATA link down (SStatus 0 SControl 300) +[ 3.872536] ata16.00: configured for UDMA/66 +[ 3.878209] scsi 2:0:0:0: CD-ROM PIONEER BD-RW BDR-205 1.04 PQ: 0 ANSI: 5 +[ 3.892317] ata9: SATA link down (SStatus 0 SControl 300) +[ 3.892325] ata18: SATA link down (SStatus 0 SControl 300) +[ 3.892334] ata17: SATA link down (SStatus 0 SControl 300) +[ 3.918054] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray +[ 3.918057] Uniform CD-ROM driver Revision: 3.20 +[ 3.918149] sr 2:0:0:0: Attached scsi CD-ROM sr0 +[ 3.918206] sr 2:0:0:0: Attached scsi generic sg0 type 5 +[ 3.931765] ata10.00: ATA-8: Corsair CSSD-F240GB2, 1.0, max UDMA/133 +[ 3.931768] ata10.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 31/32), AA +[ 3.981659] ata10.00: configured for UDMA/133 +[ 4.030311] usb 1-6: new high speed USB device using ehci_hcd and address 6 +[ 4.279842] ata4: SATA link down (SStatus 0 SControl 300) +[ 4.449340] usb 3-2: new full speed USB device using uhci_hcd and address 2 +[ 4.624088] usbcore: registered new interface driver hiddev +[ 4.626438] input: Thrustmaster Thrustmaster HOTAS Cougar as /devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2:1.0/input/input2 +[ 4.626527] generic-usb 0003:044F:0400.0001: input,hidraw0: USB HID v1.10 Joystick [Thrustmaster Thrustmaster HOTAS Cougar] on usb-0000:00:1a.0-2/input0 +[ 4.629452] input: Thrustmaster Thrustmaster HOTAS Cougar as /devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2:1.1/input/input3 +[ 4.629529] generic-usb 0003:044F:0400.0002: input,hidraw1: USB HID v1.00 Keyboard [Thrustmaster Thrustmaster HOTAS Cougar] on usb-0000:00:1a.0-2/input1 +[ 4.632447] input: Thrustmaster Thrustmaster HOTAS Cougar as /devices/pci0000:00/0000:00:1a.0/usb3/3-2/3-2:1.2/input/input4 +[ 4.632553] generic-usb 0003:044F:0400.0003: input,hidraw2: USB HID v1.00 Mouse [Thrustmaster Thrustmaster HOTAS Cougar] on usb-0000:00:1a.0-2/input2 +[ 4.632572] usbcore: registered new interface driver usbhid +[ 4.632574] usbhid: USB HID core driver +[ 4.898497] usb 4-1: new full speed USB device using uhci_hcd and address 2 +[ 5.049874] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 5.050978] ata5.00: ATA-8: ST3500418AS, CC38, max UDMA/133 +[ 5.050982] ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32) +[ 5.052324] ata5.00: configured for UDMA/133 +[ 5.068327] scsi 4:0:0:0: Direct-Access ATA ST3500418AS CC38 PQ: 0 ANSI: 5 +[ 5.068472] sd 4:0:0:0: Attached scsi generic sg1 type 0 +[ 5.068480] sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 5.068536] sd 4:0:0:0: [sda] Write Protect is off +[ 5.068539] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 5.068566] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 5.068741] sda: sda1 sda2 sda3 +[ 5.107886] input: Logitech USB Gaming Mouse as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1:1.0/input/input5 +[ 5.107963] generic-usb 0003:046D:C041.0004: input,hidraw3: USB HID v1.11 Mouse [Logitech USB Gaming Mouse] on usb-0000:00:1a.1-1/input0 +[ 5.117026] generic-usb 0003:046D:C041.0005: hiddev96,hidraw4: USB HID v1.11 Device [Logitech USB Gaming Mouse] on usb-0000:00:1a.1-1/input1 +[ 5.117132] sd 4:0:0:0: [sda] Attached SCSI disk +[ 5.387546] usb 4-2: new low speed USB device using uhci_hcd and address 3 +[ 5.594031] input: CH PRODUCTS CH PRO PEDALS USB as /devices/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/input/input6 +[ 5.594101] generic-usb 0003:068E:00F2.0006: input,hidraw5: USB HID v1.00 Joystick [CH PRODUCTS CH PRO PEDALS USB ] on usb-0000:00:1a.1-2/input0 +[ 5.818660] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 5.821582] ata6.00: ATA-8: WDC WD20EADS-00R6B0, 01.00A01, max UDMA/133 +[ 5.821586] ata6.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 5.825469] ata6.00: configured for UDMA/133 +[ 5.836891] scsi 5:0:0:0: Direct-Access ATA WDC WD20EADS-00R 01.0 PQ: 0 ANSI: 5 +[ 5.837044] sd 5:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB) +[ 5.837078] sd 5:0:0:0: Attached scsi generic sg2 type 0 +[ 5.837121] sd 5:0:0:0: [sdb] Write Protect is off +[ 5.837124] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 5.837145] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 5.837356] sdb: +[ 5.876653] usb 5-1: new low speed USB device using uhci_hcd and address 2 +[ 6.075442] input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/input/input7 +[ 6.075500] generic-usb 0003:0A81:0101.0007: input,hidraw6: USB HID v1.10 Keyboard [CHESEN USB Keyboard] on usb-0000:00:1a.2-1/input0 +[ 6.105289] input: CHESEN USB Keyboard as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/input/input8 +[ 6.105361] generic-usb 0003:0A81:0101.0008: input,hidraw7: USB HID v1.10 Device [CHESEN USB Keyboard] on usb-0000:00:1a.2-1/input1 +[ 6.239443] unknown partition table +[ 6.240371] sd 5:0:0:0: [sdb] Attached SCSI disk +[ 6.587140] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 6.593908] ata7.00: ATA-8: WDC WD20EARS-00J2GB0, 80.00A80, max UDMA/133 +[ 6.593912] ata7.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 6.599859] ata7.00: configured for UDMA/133 +[ 6.625515] scsi 6:0:0:0: Direct-Access ATA WDC WD20EARS-00J 80.0 PQ: 0 ANSI: 5 +[ 6.625626] sd 6:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB) +[ 6.625632] sd 6:0:0:0: Attached scsi generic sg3 type 0 +[ 6.625690] sd 6:0:0:0: [sdc] Write Protect is off +[ 6.625692] sd 6:0:0:0: [sdc] Mode Sense: 00 3a 00 00 +[ 6.625727] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 6.626225] sdc: +[ 6.657869] xor: automatically using best checksumming function: generic_sse +[ 6.660605] unknown partition table +[ 6.661244] sd 6:0:0:0: [sdc] Attached SCSI disk +[ 6.707764] generic_sse: 10585.200 MB/sec +[ 6.707766] xor: using function: generic_sse (10585.200 MB/sec) +[ 7.023222] device-mapper: dm-raid45: initialized v0.2594b +[ 7.404001] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 7.407553] ata8.00: ATA-8: WDC WD20EARS-00J2GB0, 80.00A80, max UDMA/133 +[ 7.407557] ata8.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 7.411080] ata8.00: configured for UDMA/133 +[ 7.423789] scsi 7:0:0:0: Direct-Access ATA WDC WD20EARS-00J 80.0 PQ: 0 ANSI: 5 +[ 7.423888] sd 7:0:0:0: [sdd] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB) +[ 7.423915] sd 7:0:0:0: Attached scsi generic sg4 type 0 +[ 7.423945] sd 7:0:0:0: [sdd] Write Protect is off +[ 7.423948] sd 7:0:0:0: [sdd] Mode Sense: 00 3a 00 00 +[ 7.423969] sd 7:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 7.424145] sdd: +[ 7.424158] scsi 9:0:0:0: Direct-Access ATA Corsair CSSD-F24 1.0 PQ: 0 ANSI: 5 +[ 7.424296] sd 9:0:0:0: [sde] 468862128 512-byte logical blocks: (240 GB/223 GiB) +[ 7.424301] sd 9:0:0:0: Attached scsi generic sg5 type 0 +[ 7.424356] sd 9:0:0:0: [sde] Write Protect is off +[ 7.424359] sd 9:0:0:0: [sde] Mode Sense: 00 3a 00 00 +[ 7.424385] sd 9:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 7.424563] sde: +[ 7.424750] scsi 15:0:0:0: Processor Marvell 91xx Config 1.01 PQ: 0 ANSI: 5 +[ 7.424827] scsi 15:0:0:0: Attached scsi generic sg6 type 3 +[ 7.425874] sde1 sde2 +[ 7.426711] sd 9:0:0:0: [sde] Attached SCSI disk +[ 7.855389] unknown partition table +[ 7.856323] sd 7:0:0:0: [sdd] Attached SCSI disk +[ 8.432349] ------------[ cut here ]------------ +[ 8.432408] kernel BUG at /build/buildd/linux-2.6.35/drivers/md/dm.c:2190! +[ 8.432472] invalid opcode: 0000 [#1] SMP +[ 8.432604] last sysfs file: /sys/devices/virtual/bdi/252:0/uevent +[ 8.432661] CPU 2 +[ 8.432705] Modules linked in: dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +[ 8.433154] +[ 8.433199] Pid: 581, comm: dmraid Tainted: G M 2.6.35-19-generic #28-Ubuntu EVGA Classified SR-2/To Be Filled By O.E.M. +[ 8.433272] RIP: 0010:[] [] dm_put+0x112/0x120 +[ 8.433375] RSP: 0018:ffff880236e79be8 EFLAGS: 00010202 +[ 8.433429] RAX: ffff880236f08000 RBX: ffff8802374c5800 RCX: 02000000000040c1 +[ 8.433489] RDX: 000000000000001a RSI: ffffea0007c18a00 RDI: ffff8802374c5800 +[ 8.433549] RBP: ffff880236e79c08 R08: 0000000000000067 R09: 0000000000000000 +[ 8.433609] R10: ffff8802383a3200 R11: 0000000000000000 R12: ffff880237e09000 +[ 8.433668] R13: ffff8802374c5800 R14: ffffc9001280e040 R15: 0000000000000020 +[ 8.433729] FS: 00007f258130c7a0(0000) GS:ffff880001e40000(0000) knlGS:0000000000000000 +[ 8.433791] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 8.433871] CR2: 00007ff6c84d3000 CR3: 0000000237e8b000 CR4: 00000000000006e0 +[ 8.433955] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 8.434039] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 8.434126] Process dmraid (pid: 581, threadinfo ffff880236e78000, task ffff880236d58000) +[ 8.434234] Stack: +[ 8.434302] ffffc9001280e040 0000000000000003 ffff880237e09000 ffff8802374c5800 +[ 8.434507] <0> ffff880236e79d38 ffffffffa008edd6 ffff880237d2c600 00000001000000d2 +[ 8.434814] <0> 0000000000000000 ffff880236e79ca0 00000000ffffffff 0000000000000001 +[ 8.435187] Call Trace: +[ 8.435261] [] raid_ctr+0x5f6/0xa50 [dm_raid45] +[ 8.435343] [] ? dm_split_args+0x75/0x140 +[ 8.435425] [] dm_table_add_target+0xff/0x240 +[ 8.435427] [] populate_table+0x85/0x140 +[ 8.435430] [] table_load+0x8f/0x1f0 +[ 8.435432] [] ? table_load+0x0/0x1f0 +[ 8.435434] [] ctl_ioctl+0x1a5/0x250 +[ 8.435436] [] dm_ctl_ioctl+0x13/0x20 +[ 8.435439] [] vfs_ioctl+0x3d/0xd0 +[ 8.435440] [] do_vfs_ioctl+0x81/0x340 +[ 8.435442] [] sys_ioctl+0x81/0xa0 +[ 8.435446] [] ? do_device_not_available+0xe/0x10 +[ 8.435450] [] system_call_fastpath+0x16/0x1b +[ 8.435451] Code: 00 00 48 89 df e8 2f e3 ff ff e9 44 ff ff ff eb 08 90 90 90 90 90 90 90 90 4c 89 e7 e8 98 15 00 00 4c 89 e7 e8 b0 15 00 00 eb 85 <0f> 0b eb fe eb 08 90 90 90 90 90 90 90 90 55 48 89 e5 0f 1f 44 +[ 8.435464] RIP [] dm_put+0x112/0x120 +[ 8.435466] RSP +[ 8.435468] ---[ end trace 9ae611b8c863f8b1 ]--- +[ 13.687167] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 13.687170] EXT4-fs (sda1): write access will be enabled during recovery +[ 16.016799] EXT4-fs (sda1): recovery complete +[ 16.018359] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 17.765660] udev[727]: starting version 162 +[ 17.915056] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 18.273993] type=1400 audit(1283270792.417:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=892 comm="apparmor_parser" +[ 18.274388] type=1400 audit(1283270792.427:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=892 comm="apparmor_parser" +[ 18.274598] type=1400 audit(1283270792.427:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=892 comm="apparmor_parser" +[ 18.394753] EDAC MC: Ver: 2.1.0 Aug 29 2010 +[ 18.398285] PCI: Discovered peer bus ff +[ 18.400198] PCI: Discovered peer bus fe +[ 18.402396] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0 +[ 18.402415] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED) +[ 18.402491] EDAC MC1: Giving out device to 'i7core_edac.c' 'i7 core #1': DEV 0000:fe:03.0 +[ 18.402509] EDAC PCI1: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:fe:03.0' (POLLED) +[ 18.402512] EDAC i7core: Driver loaded. +[ 18.443138] alloc irq_desc for 29 on node -1 +[ 18.443140] alloc kstat_irqs on node -1 +[ 18.443148] xhci_hcd 0000:0d:00.0: PCI INT A -> GSI 29 (level, low) -> IRQ 29 +[ 18.443675] xhci_hcd 0000:0d:00.0: setting latency timer to 64 +[ 18.443678] xhci_hcd 0000:0d:00.0: xHCI Host Controller +[ 18.443737] xhci_hcd 0000:0d:00.0: new USB bus registered, assigned bus number 9 +[ 18.443867] xhci_hcd 0000:0d:00.0: irq 29, io mem 0xfbdfe000 +[ 18.447214] usb usb9: No SuperSpeed endpoint companion for config 1 interface 0 altsetting 0 ep 129: using minimum values +[ 18.447282] xHCI xhci_add_endpoint called for root hub +[ 18.447283] xHCI xhci_check_bandwidth called for root hub +[ 18.447315] hub 9-0:1.0: USB hub found +[ 18.447320] hub 9-0:1.0: 4 ports detected +[ 18.474505] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 18.574332] lp: driver loaded but no devices found +[ 18.937735] [drm] Initialized drm 1.1.0 20060810 +[ 19.129305] alloc irq_desc for 24 on node -1 +[ 19.129307] alloc kstat_irqs on node -1 +[ 19.129316] nouveau 0000:0c:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24 +[ 19.129320] nouveau 0000:0c:00.0: setting latency timer to 64 +[ 19.132605] [drm] nouveau 0000:0c:00.0: Unsupported chipset 0x0c0000a3 +[ 19.132753] nouveau 0000:0c:00.0: PCI INT A disabled +[ 19.132757] nouveau: probe of 0000:0c:00.0 failed with error -22 +[ 19.132770] nouveau 0000:0b:00.0: enabling device (0000 -> 0003) +[ 19.132774] alloc irq_desc for 35 on node -1 +[ 19.132775] alloc kstat_irqs on node -1 +[ 19.132781] nouveau 0000:0b:00.0: PCI INT A -> GSI 35 (level, low) -> IRQ 35 +[ 19.132786] nouveau 0000:0b:00.0: setting latency timer to 64 +[ 19.136094] [drm] nouveau 0000:0b:00.0: Unsupported chipset 0x0c0000a3 +[ 19.136200] nouveau 0000:0b:00.0: PCI INT A disabled +[ 19.136204] nouveau: probe of 0000:0b:00.0 failed with error -22 +[ 19.136221] nouveau 0000:08:00.0: enabling device (0000 -> 0003) +[ 19.136226] alloc irq_desc for 30 on node -1 +[ 19.136227] alloc kstat_irqs on node -1 +[ 19.136232] nouveau 0000:08:00.0: PCI INT A -> GSI 30 (level, low) -> IRQ 30 +[ 19.136237] nouveau 0000:08:00.0: setting latency timer to 64 +[ 19.139173] [drm] nouveau 0000:08:00.0: Unsupported chipset 0x0c0000a3 +[ 19.139277] nouveau 0000:08:00.0: PCI INT A disabled +[ 19.139282] nouveau: probe of 0000:08:00.0 failed with error -22 +[ 19.257277] ip_tables: (C) 2000-2006 Netfilter Core Team +[ 19.418122] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null) +[ 19.487497] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +[ 19.487669] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +[ 19.487671] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +[ 19.487672] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +[ 19.671112] alloc irq_desc for 39 on node -1 +[ 19.671114] alloc kstat_irqs on node -1 +[ 19.671121] SB-XFi 0000:07:00.0: PCI INT A -> GSI 39 (level, low) -> IRQ 39 +[ 19.672018] SB-XFi 0000:07:00.0: setting latency timer to 64 +[ 20.134537] alloc irq_desc for 34 on node -1 +[ 20.134540] alloc kstat_irqs on node -1 +[ 20.134547] HDA Intel 0000:0c:00.1: PCI INT B -> GSI 34 (level, low) -> IRQ 34 +[ 20.134549] hda_intel: Disable MSI for Nvidia chipset +[ 20.134982] HDA Intel 0000:0c:00.1: setting latency timer to 64 +[ 20.347696] ip6_tables: (C) 2000-2006 Netfilter Core Team +[ 20.999521] ------------[ cut here ]------------ +[ 20.999532] WARNING: at /build/buildd/linux-2.6.35/lib/kobject.c:595 kobject_put+0x50/0x60() +[ 20.999535] Hardware name: To Be Filled By O.E.M. +[ 20.999537] kobject: '(null)' (ffff8802374c5998): is not initialized, yet kobject_put() is being called. +[ 20.999539] Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +[ 20.999579] Pid: 1302, comm: dmraid Tainted: G M D 2.6.35-19-generic #28-Ubuntu +[ 20.999581] Call Trace: +[ 20.999590] [] warn_slowpath_common+0x7f/0xc0 +[ 20.999594] [] warn_slowpath_fmt+0x46/0x50 +[ 20.999598] [] kobject_put+0x50/0x60 +[ 20.999605] [] dm_sysfs_exit+0x16/0x20 +[ 20.999608] [] dm_put+0x9f/0x120 +[ 20.999612] [] table_status+0x54/0xa0 +[ 20.999616] [] ? table_status+0x0/0xa0 +[ 20.999620] [] ctl_ioctl+0x1a5/0x250 +[ 20.999626] [] ? do_anonymous_page+0x11b/0x330 +[ 20.999629] [] dm_ctl_ioctl+0x13/0x20 +[ 20.999635] [] vfs_ioctl+0x3d/0xd0 +[ 20.999638] [] do_vfs_ioctl+0x81/0x340 +[ 20.999644] [] ? do_page_fault+0x15e/0x350 +[ 20.999647] [] sys_ioctl+0x81/0xa0 +[ 20.999654] [] system_call_fastpath+0x16/0x1b +[ 20.999657] ---[ end trace 9ae611b8c863f8b2 ]--- +[ 20.999664] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +[ 20.999706] IP: [] bdput+0x9/0x20 +[ 20.999737] PGD 2220c7067 PUD 2220c6067 PMD 0 +[ 20.999772] Oops: 0000 [#2] SMP +[ 20.999798] last sysfs file: /sys/devices/pci0000:00/0000:00:1f.2/host4/target4:0:0/4:0:0:0/block/sda/sda3/alignment_offset +[ 20.999837] CPU 4 +[ 20.999848] Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +[ 21.000346] +[ 21.000379] Pid: 1302, comm: dmraid Tainted: G M D W 2.6.35-19-generic #28-Ubuntu EVGA Classified SR-2/To Be Filled By O.E.M. +[ 21.000465] RIP: 0010:[] [] bdput+0x9/0x20 +[ 21.000543] RSP: 0018:ffff8803b5031d98 EFLAGS: 00010296 +[ 21.000587] RAX: ffff8802374c5860 RBX: ffff8802374c5800 RCX: 000000000003ffff +[ 21.000637] RDX: 0000000000000000 RSI: ffffffff812b8280 RDI: 0000000000000000 +[ 21.000686] RBP: ffff8803b5031d98 R08: 0000000000015629 R09: 0000000000000000 +[ 21.000735] R10: 0000000000000000 R11: 0000000000000002 R12: 00000000ffffffff +[ 21.000785] R13: ffffc90013bd4000 R14: 0000000000004000 R15: 0000000000000000 +[ 21.000834] FS: 00007f686410e7a0(0000) GS:ffff880245600000(0000) knlGS:0000000000000000 +[ 21.000909] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 21.000954] CR2: 0000000000000008 CR3: 0000000236c87000 CR4: 00000000000006e0 +[ 21.001004] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 21.001053] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 21.001103] Process dmraid (pid: 1302, threadinfo ffff8803b5030000, task ffff8803b44744a0) +[ 21.001177] Stack: +[ 21.001211] ffff8803b5031db8 ffffffff81453ddb ffff8802374c5800 0000000000000000 +[ 21.001276] <0> ffff8803b5031de8 ffffffff81455a81 0000000000000000 ffff8802374c5800 +[ 21.001374] <0> 0000000000000000 ffffc90013bd4000 ffff8803b5031e28 ffffffff8145a864 +[ 21.001499] Call Trace: +[ 21.001536] [] free_dev+0x2b/0xe0 +[ 21.001580] [] dm_put+0xf1/0x120 +[ 21.001623] [] table_status+0x54/0xa0 +[ 21.001668] [] ? table_status+0x0/0xa0 +[ 21.001713] [] ctl_ioctl+0x1a5/0x250 +[ 21.001758] [] ? do_anonymous_page+0x11b/0x330 +[ 21.001805] [] dm_ctl_ioctl+0x13/0x20 +[ 21.001850] [] vfs_ioctl+0x3d/0xd0 +[ 21.001894] [] do_vfs_ioctl+0x81/0x340 +[ 21.001939] [] ? do_page_fault+0x15e/0x350 +[ 21.001985] [] sys_ioctl+0x81/0xa0 +[ 21.002029] [] system_call_fastpath+0x16/0x1b +[ 21.002075] Code: c0 8f a2 81 e8 19 3c eb ff 66 90 48 85 db 74 09 48 8b 7b 08 e8 c9 66 fe ff 5b 41 5c c9 c3 eb 02 90 90 55 48 89 e5 0f 1f 44 00 00 <48> 8b 7f 08 e8 ae 66 fe ff c9 c3 eb 0a 90 90 90 90 90 90 90 90 +[ 21.002533] RIP [] bdput+0x9/0x20 +[ 21.002581] RSP +[ 21.002619] CR2: 0000000000000008 +[ 21.002658] ---[ end trace 9ae611b8c863f8b3 ]--- +[ 21.002664] ------------[ cut here ]------------ +[ 21.002666] kernel BUG at /build/buildd/linux-2.6.35/drivers/md/dm.c:2190! +[ 21.002668] invalid opcode: 0000 [#3] SMP +[ 21.002670] last sysfs file: /sys/devices/pci0000:00/0000:00:1f.2/host4/target4:0:0/4:0:0:0/block/sda/sda3/alignment_offset +[ 21.002672] CPU 12 +[ 21.002672] Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +[ 21.002701] +[ 21.002703] Pid: 1303, comm: dmraid Tainted: G M D W 2.6.35-19-generic #28-Ubuntu EVGA Classified SR-2/To Be Filled By O.E.M. +[ 21.002705] RIP: 0010:[] [] dm_put+0x112/0x120 +[ 21.002709] RSP: 0018:ffff8803b2217dc8 EFLAGS: 00010202 +[ 21.002710] RAX: 0000000000000000 RBX: ffff8802374c5800 RCX: 00000000000000ff +[ 21.002712] RDX: 0000000000000286 RSI: 0000000000000286 RDI: ffff8802374c5800 +[ 21.002713] RBP: ffff8803b2217de8 R08: ffff8803b566cac0 R09: ffff8803b2217bb4 +[ 21.002714] R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 +[ 21.002716] R13: ffffc90013bda000 R14: 0000000000004000 R15: 0000000000000000 +[ 21.002717] FS: 00007f583ee767a0(0000) GS:ffff880245680000(0000) knlGS:0000000000000000 +[ 21.002719] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 21.002720] CR2: 00007fffe736bff8 CR3: 00000003b4492000 CR4: 00000000000006e0 +[ 21.002722] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 21.002736] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 21.002738] Process dmraid (pid: 1303, threadinfo ffff8803b2216000, task ffff8803b611adc0) +[ 21.002739] Stack: +[ 21.002739] 0000000000000000 ffff8802374c5800 0000000000000000 ffffc90013bda000 +[ 21.002741] <0> ffff8803b2217e28 ffffffff8145a864 ffff8803b2217e00 ffff8803b611adc0 +[ 21.002744] <0> 0000000000ed0620 ffffffff8145a810 000000000000000c 0000000000000000 +[ 21.002747] Call Trace: +[ 21.002750] [] table_status+0x54/0xa0 +[ 21.002753] [] ? table_status+0x0/0xa0 +[ 21.002755] [] ctl_ioctl+0x1a5/0x250 +[ 21.002758] [] ? do_anonymous_page+0x11b/0x330 +[ 21.002760] [] dm_ctl_ioctl+0x13/0x20 +[ 21.002762] [] vfs_ioctl+0x3d/0xd0 +[ 21.002763] [] do_vfs_ioctl+0x81/0x340 +[ 21.002766] [] ? do_page_fault+0x15e/0x350 +[ 21.002782] [] sys_ioctl+0x81/0xa0 +[ 21.002785] [] system_call_fastpath+0x16/0x1b +[ 21.002786] Code: 00 00 48 89 df e8 2f e3 ff ff e9 44 ff ff ff eb 08 90 90 90 90 90 90 90 90 4c 89 e7 e8 98 15 00 00 4c 89 e7 e8 b0 15 00 00 eb 85 <0f> 0b eb fe eb 08 90 90 90 90 90 90 90 90 55 48 89 e5 0f 1f 44 +[ 21.002801] RIP [] dm_put+0x112/0x120 +[ 21.002803] RSP +[ 21.002826] ---[ end trace 9ae611b8c863f8b4 ]--- +[ 21.003028] ------------[ cut here ]------------ +[ 21.003031] kernel BUG at /build/buildd/linux-2.6.35/drivers/md/dm.c:2190! +[ 21.003032] invalid opcode: 0000 [#4] SMP +[ 21.003034] last sysfs file: /sys/devices/pci0000:00/0000:00:1f.2/host4/target4:0:0/4:0:0:0/block/sda/sda3/alignment_offset +[ 21.003037] CPU 12 +[ 21.003037] Modules linked in: ip6table_filter ip6_tables nf_nat_irc nf_conntrack_irc snd_hda_intel(+) nf_nat_ftp nf_nat snd_hda_codec snd_ctxfi nf_conntrack_ipv4 nf_defrag_ipv4 nf_conntrack_ftp nf_conntrack snd_hwdep snd_pcm snd_seq_midi snd_rawmidi iptable_filter snd_seq_midi_event ip_tables snd_seq snd_timer nouveau snd_seq_device ttm drm_kms_helper snd drm x_tables soundcore i2c_algo_bit snd_page_alloc joydev shpchp lp xhci_hcd psmouse i7core_edac serio_raw edac_core parport dm_raid45 xor usbhid hid sky2 pata_jmicron ahci libahci +[ 21.003069] +[ 21.003072] Pid: 1301, comm: dmraid Tainted: G M D W 2.6.35-19-generic #28-Ubuntu EVGA Classified SR-2/To Be Filled By O.E.M. +[ 21.003074] RIP: 0010:[] [] dm_put+0x112/0x120 +[ 21.003079] RSP: 0018:ffff880222b05dc8 EFLAGS: 00010202 +[ 21.003080] RAX: 0000000000000000 RBX: ffff8802374c5800 RCX: 00000000000000ff +[ 21.003082] RDX: 0000000000000286 RSI: 0000000000000286 RDI: ffff8802374c5800 +[ 21.003083] RBP: ffff880222b05de8 R08: ffff8803b566cae0 R09: ffff880222b05bb4 +[ 21.003085] R10: 0000000000000001 R11: 0000000000000000 R12: 0000000000000000 +[ 21.003086] R13: ffffc90013be0000 R14: 0000000000004000 R15: 0000000000000000 +[ 21.003088] FS: 00007fbbd52417a0(0000) GS:ffff880245680000(0000) knlGS:0000000000000000 +[ 21.003090] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 21.003092] CR2: 00007fffaeec7ed8 CR3: 00000003b2e62000 CR4: 00000000000006e0 +[ 21.003109] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 21.003111] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 21.003114] Process dmraid (pid: 1301, threadinfo ffff880222b04000, task ffff8802382e0000) +[ 21.003115] Stack: +[ 21.003116] 0000000000000000 ffff8802374c5800 0000000000000000 ffffc90013be0000 +[ 21.003120] <0> ffff880222b05e28 ffffffff8145a864 ffff880222b05e00 ffff8802382e0000 +[ 21.003123] <0> 0000000001dfa620 ffffffff8145a810 000000000000000c 0000000000000000 +[ 21.003127] Call Trace: +[ 21.003130] [] table_status+0x54/0xa0 +[ 21.003132] [] ? table_status+0x0/0xa0 +[ 21.003150] [] ctl_ioctl+0x1a5/0x250 +[ 21.003153] [] ? do_anonymous_page+0x11b/0x330 +[ 21.003156] [] dm_ctl_ioctl+0x13/0x20 +[ 21.003159] [] vfs_ioctl+0x3d/0xd0 +[ 21.003162] [] do_vfs_ioctl+0x81/0x340 +[ 21.003165] [] ? do_page_fault+0x15e/0x350 +[ 21.003167] [] sys_ioctl+0x81/0xa0 +[ 21.003170] [] system_call_fastpath+0x16/0x1b +[ 21.003172] Code: 00 00 48 89 df e8 2f e3 ff ff e9 44 ff ff ff eb 08 90 90 90 90 90 90 90 90 4c 89 e7 e8 98 15 00 00 4c 89 e7 e8 b0 15 00 00 eb 85 <0f> 0b eb fe eb 08 90 90 90 90 90 90 90 90 55 48 89 e5 0f 1f 44 +[ 21.003215] RIP [] dm_put+0x112/0x120 +[ 21.003217] RSP +[ 21.003221] ---[ end trace 9ae611b8c863f8b5 ]--- +[ 21.906850] alloc irq_desc for 36 on node -1 +[ 21.906870] alloc kstat_irqs on node -1 +[ 21.906892] HDA Intel 0000:0b:00.1: PCI INT B -> GSI 36 (level, low) -> IRQ 36 +[ 21.906919] hda_intel: Disable MSI for Nvidia chipset +[ 21.907742] HDA Intel 0000:0b:00.1: setting latency timer to 64 +[ 22.005172] nvidia: module license 'NVIDIA' taints kernel. +[ 22.207363] sky2 0000:03:00.0: eth0: enabling interface +[ 22.208500] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 22.211893] sky2 0000:02:00.0: eth1: enabling interface +[ 22.212881] ADDRCONF(NETDEV_UP): eth1: link is not ready +[ 22.319224] nvidia 0000:0c:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24 +[ 22.319284] nvidia 0000:0c:00.0: setting latency timer to 64 +[ 22.319332] vgaarb: device changed decodes: PCI:0000:0c:00.0,olddecodes=io+mem,decodes=none:owns=io+mem +[ 22.319409] vgaarb: transferring owner from PCI:0000:0c:00.0 to PCI:0000:08:00.0 +[ 22.650811] type=1400 audit(1283270796.807:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1609 comm="apparmor_parser" +[ 22.651244] type=1400 audit(1283270796.807:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1609 comm="apparmor_parser" +[ 22.651507] type=1400 audit(1283270796.807:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1609 comm="apparmor_parser" +[ 22.656681] type=1400 audit(1283270796.817:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1608 comm="apparmor_parser" +[ 22.657228] type=1400 audit(1283270796.817:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1612 comm="apparmor_parser" +[ 22.657845] type=1400 audit(1283270796.817:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1612 comm="apparmor_parser" +[ 22.663620] type=1400 audit(1283270796.817:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1613 comm="apparmor_parser" + +Bug: 653563 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-22-generic (buildd@rothera) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu4) ) #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 (Ubuntu 2.6.35-22.33-generic 2.6.35.4) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000004ffc0000 (usable) +[ 0.000000] BIOS-e820: 000000004ffc0000 - 000000004ffd0000 (ACPI data) +[ 0.000000] BIOS-e820: 000000004ffd0000 - 0000000050000000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ff780000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.3 present. +[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x4ffc0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-EFFFF uncachable +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FFC0000000 write-back +[ 0.000000] 1 base 0040000000 mask FFF0000000 write-back +[ 0.000000] 2 disabled +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e4000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000004ffc0000 (usable) +[ 0.000000] modified: 000000004ffc0000 - 000000004ffd0000 (ACPI data) +[ 0.000000] modified: 000000004ffd0000 - 0000000050000000 (ACPI NVS) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ff780000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00ff780] ff780 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 4f4d0000 - 4ffb0000 +[ 0.000000] Allocated new RAMDISK: 009a5000 - 01484746 +[ 0.000000] Move RAMDISK from 000000004f4d0000 - 000000004ffaf745 to 009a5000 - 01484745 +[ 0.000000] 391MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0004ffc0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0004ffc0 +[ 0.000000] On node 0 totalpages: 327503 +[ 0.000000] free_area_init_node: node 0, pgdat c07ffd40, node_mem_map c1486200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 784 pages used for memmap +[ 0.000000] HighMem zone: 99506 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] Nvidia board detected. Ignoring ACPI timer override. +[ 0.000000] If you got timer trouble try acpi_use_timer_override +[ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org +[ 0.000000] Intel MultiProcessor Specification v1.1 +[ 0.000000] Virtual Wire compatibility mode. +[ 0.000000] MPTABLE: OEM ID: TEMPLATE +[ 0.000000] MPTABLE: Product ID: +[ 0.000000] MPTABLE: APIC at: 0xFEE00000 +[ 0.000000] Processor #0 (Bootup-CPU) +[ 0.000000] I/O APIC #1 Version 17 at 0xFEC00000. +[ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 +[ 0.000000] Processors: 1 +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000 +[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 50000000 (gap: 50000000:aec00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2000000 s36416 r0 d20928 u4194304 +[ 0.000000] pcpu-alloc: s36416 r0 d20928 u4194304 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 324943 +[ 0.000000] Kernel command line: BOOT_IMAGE=/casper/vmlinuz noprompt cdrom-detect/try-usb=true persistent file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- acpi=off debian-installer/language=hu console-setup/layoutcode?=hu +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 6552000 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (46 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009a0adc] TEXT DATA BSS +[ 0.000000] #3 [00009a1000 - 00009a4170] BRK +[ 0.000000] #4 [00000ff790 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000ff780 - 00000ff790] MP-table mpf +[ 0.000000] #6 [000009fc00 - 00000f1100] BIOS reserved +[ 0.000000] #7 [00000f11f8 - 00000ff780] BIOS reserved +[ 0.000000] #8 [00000f1100 - 00000f11f8] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #10 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #11 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #12 [00009a5000 - 0001485000] NEW RAMDISK +[ 0.000000] #13 [0001485000 - 0001486000] BOOTMEM +[ 0.000000] #14 [0001486000 - 0001e86000] BOOTMEM +[ 0.000000] #15 [0001e86000 - 0001e86004] BOOTMEM +[ 0.000000] #16 [0001e86040 - 0001e86100] BOOTMEM +[ 0.000000] #17 [0001e86100 - 0001e86154] BOOTMEM +[ 0.000000] #18 [0001e86180 - 0001e89180] BOOTMEM +[ 0.000000] #19 [0001e89180 - 0001e891a8] BOOTMEM +[ 0.000000] #20 [0001e891c0 - 0001e8a9c0] BOOTMEM +[ 0.000000] #21 [0001e8a9c0 - 0001e8a9e7] BOOTMEM +[ 0.000000] #22 [0001e8aa00 - 0001e8ab18] BOOTMEM +[ 0.000000] #23 [0001e8ab40 - 0001e8ab80] BOOTMEM +[ 0.000000] #24 [0001e8ab80 - 0001e8abc0] BOOTMEM +[ 0.000000] #25 [0001e8abc0 - 0001e8ac00] BOOTMEM +[ 0.000000] #26 [0001e8ac00 - 0001e8ac40] BOOTMEM +[ 0.000000] #27 [0001e8ac40 - 0001e8ac80] BOOTMEM +[ 0.000000] #28 [0001e8ac80 - 0001e8acc0] BOOTMEM +[ 0.000000] #29 [0001e8acc0 - 0001e8ad00] BOOTMEM +[ 0.000000] #30 [0001e8ad00 - 0001e8ad40] BOOTMEM +[ 0.000000] #31 [0001e8ad40 - 0001e8ad80] BOOTMEM +[ 0.000000] #32 [0001e8ad80 - 0001e8ad90] BOOTMEM +[ 0.000000] #33 [0001e8adc0 - 0001e8aea2] BOOTMEM +[ 0.000000] #34 [0001e8aec0 - 0001e8afa2] BOOTMEM +[ 0.000000] #35 [0002000000 - 000200e000] BOOTMEM +[ 0.000000] #36 [0001e8cfc0 - 0001e8cfc4] BOOTMEM +[ 0.000000] #37 [0001e8d000 - 0001e8d004] BOOTMEM +[ 0.000000] #38 [0001e8d040 - 0001e8d044] BOOTMEM +[ 0.000000] #39 [0001e8d080 - 0001e8d084] BOOTMEM +[ 0.000000] #40 [0001e8d0c0 - 0001e8d170] BOOTMEM +[ 0.000000] #41 [0001e8d180 - 0001e8d228] BOOTMEM +[ 0.000000] #42 [0001e8d240 - 0001e91240] BOOTMEM +[ 0.000000] #43 [0001e91240 - 0001f11240] BOOTMEM +[ 0.000000] #44 [0001f11240 - 0001f51240] BOOTMEM +[ 0.000000] #45 [000200e000 - 000264d9c0] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:0004ffc0) +[ 0.000000] Memory: 1272488k/1310464k available (4928k kernel code, 37524k reserved, 2336k data, 684k init, 401160k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0819000 - 0xc08c4000 ( 684 kB) +[ 0.000000] .data : 0xc05d029e - 0xc0818668 (2336 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d029e (4928 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:256 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 1607.849 MHz processor. +[ 0.004010] Calibrating delay loop (skipped), value calculated using timer frequency.. 3215.69 BogoMIPS (lpj=6431396) +[ 0.004020] pid_max: default: 32768 minimum: 301 +[ 0.004064] Security Framework initialized +[ 0.004114] AppArmor: AppArmor initialized +[ 0.004118] Yama: becoming mindful. +[ 0.004225] Mount-cache hash table entries: 512 +[ 0.004462] Initializing cgroup subsys ns +[ 0.004470] Initializing cgroup subsys cpuacct +[ 0.004478] Initializing cgroup subsys memory +[ 0.004494] Initializing cgroup subsys devices +[ 0.004498] Initializing cgroup subsys freezer +[ 0.004503] Initializing cgroup subsys net_cls +[ 0.004550] mce: CPU supports 5 MCE banks +[ 0.004583] Performance Events: AMD PMU driver. +[ 0.004597] ... version: 0 +[ 0.004600] ... bit width: 48 +[ 0.004604] ... generic registers: 4 +[ 0.004607] ... value mask: 0000ffffffffffff +[ 0.004611] ... max period: 00007fffffffffff +[ 0.004615] ... fixed-purpose events: 0 +[ 0.004618] ... event mask: 000000000000000f +[ 0.006093] SMP alternatives: switching to UP code +[ 0.017742] Freeing SMP alternatives: 24k freed +[ 0.017799] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.017815] ftrace: allocating 21758 entries in 43 pages +[ 0.020178] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.020243] ExtINT not setup in hardware but reported by MP table +[ 0.020531] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0 +[ 0.024000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC +[ 0.024000] ...trying to set up timer (IRQ0) through the 8259A ... +[ 0.024000] ..... (found apic 0 pin 0) ... +[ 0.066688] ....... works. +[ 0.066690] CPU0: AMD Sempron(tm) Processor 2800+ stepping 02 +[ 0.172387] Brought up 1 CPUs +[ 0.172391] Total of 1 processors activated (3215.69 BogoMIPS). +[ 0.172628] devtmpfs: initialized +[ 0.174399] regulator: core version 0.5 +[ 0.174433] Time: 12:06:20 Date: 10/02/10 +[ 0.174496] NET: Registered protocol family 16 +[ 0.174683] EISA bus registered +[ 0.174692] node 0 link 0: io port [1000, ffffff] +[ 0.174699] TOM: 0000000050000000 aka 1280M +[ 0.174705] node 0 link 0: mmio [a0000, bffff] +[ 0.174710] node 0 link 0: mmio [50000000, fe0bffff] +[ 0.174714] bus: [00, ff] on node 0 link 0 +[ 0.174719] bus: 00 index 0 [io 0x0000-0xffff] +[ 0.174722] bus: 00 index 1 [mem 0x000a0000-0x000bffff] +[ 0.174725] bus: 00 index 2 [mem 0x50000000-0xffffffff] +[ 0.175899] PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=2 +[ 0.175902] PCI: Using configuration type 1 for base access +[ 0.177227] bio: create slab at 0 +[ 0.177318] ACPI: Interpreter disabled. +[ 0.177401] vgaarb: loaded +[ 0.177621] SCSI subsystem initialized +[ 0.177667] libata version 3.00 loaded. +[ 0.177729] usbcore: registered new interface driver usbfs +[ 0.177746] usbcore: registered new interface driver hub +[ 0.177956] usbcore: registered new device driver usb +[ 0.178100] PCI: Probing PCI hardware +[ 0.178104] PCI: Probing PCI hardware (bus 00) +[ 0.178160] pci 0000:00:00.0: reg 10: [mem 0xf0000000-0xf7ffffff pref] +[ 0.178246] pci 0000:00:01.1: reg 10: [io 0x5080-0x509f] +[ 0.178256] pci 0000:00:01.1: reg 20: [io 0x5000-0x503f] +[ 0.178261] pci 0000:00:01.1: reg 24: [io 0x5040-0x507f] +[ 0.178274] pci 0000:00:01.1: PME# supported from D3hot D3cold +[ 0.178279] pci 0000:00:01.1: PME# disabled +[ 0.178302] pci 0000:00:02.0: reg 10: [mem 0xff6fd000-0xff6fdfff] +[ 0.178323] pci 0000:00:02.0: supports D1 D2 +[ 0.178326] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.178330] pci 0000:00:02.0: PME# disabled +[ 0.178347] pci 0000:00:02.1: reg 10: [mem 0xff6fe000-0xff6fefff] +[ 0.178368] pci 0000:00:02.1: supports D1 D2 +[ 0.178371] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.178375] pci 0000:00:02.1: PME# disabled +[ 0.178398] pci 0000:00:02.2: reg 10: [mem 0xff6ffc00-0xff6ffcff] +[ 0.178422] pci 0000:00:02.2: supports D1 D2 +[ 0.178425] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.178429] pci 0000:00:02.2: PME# disabled +[ 0.178453] pci 0000:00:05.0: reg 10: [mem 0xff6fc000-0xff6fcfff] +[ 0.178459] pci 0000:00:05.0: reg 14: [io 0xec00-0xec07] +[ 0.178478] pci 0000:00:05.0: supports D1 D2 +[ 0.178481] pci 0000:00:05.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.178484] pci 0000:00:05.0: PME# disabled +[ 0.178502] pci 0000:00:06.0: reg 10: [io 0xe800-0xe8ff] +[ 0.178507] pci 0000:00:06.0: reg 14: [io 0xe400-0xe47f] +[ 0.178513] pci 0000:00:06.0: reg 18: [mem 0xff6fb000-0xff6fbfff] +[ 0.178530] pci 0000:00:06.0: supports D1 D2 +[ 0.178554] pci 0000:00:08.0: reg 20: [io 0xffa0-0xffaf] +[ 0.178585] pci 0000:00:0a.0: reg 10: [io 0x09f0-0x09f7] +[ 0.178590] pci 0000:00:0a.0: reg 14: [io 0x0bf0-0x0bf3] +[ 0.178595] pci 0000:00:0a.0: reg 18: [io 0x0970-0x0977] +[ 0.178599] pci 0000:00:0a.0: reg 1c: [io 0x0b70-0x0b73] +[ 0.178604] pci 0000:00:0a.0: reg 20: [io 0xc800-0xc80f] +[ 0.178609] pci 0000:00:0a.0: reg 24: [io 0xc400-0xc47f] +[ 0.178752] PCI: peer root bus 00 res updated from pci conf +[ 0.178791] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref] +[ 0.178798] pci 0000:01:00.0: reg 14: [io 0xb800-0xb8ff] +[ 0.178805] pci 0000:01:00.0: reg 18: [mem 0xff5f0000-0xff5fffff] +[ 0.178822] pci 0000:01:00.0: reg 30: [mem 0xff5c0000-0xff5dffff pref] +[ 0.178843] pci 0000:01:00.0: supports D1 D2 +[ 0.178871] pci 0000:01:00.1: reg 10: [mem 0xc0000000-0xcfffffff pref] +[ 0.178878] pci 0000:01:00.1: reg 14: [mem 0xff5e0000-0xff5effff] +[ 0.178911] pci 0000:01:00.1: supports D1 D2 +[ 0.178953] pci 0000:00:0b.0: PCI bridge to [bus 01-01] +[ 0.178958] pci 0000:00:0b.0: bridge window [io 0xb000-0xbfff] +[ 0.178963] pci 0000:00:0b.0: bridge window [mem 0xff500000-0xff5fffff] +[ 0.178968] pci 0000:00:0b.0: bridge window [mem 0xaeb00000-0xeeafffff pref] +[ 0.179005] pci 0000:00:0e.0: PCI bridge to [bus 02-02] +[ 0.179009] pci 0000:00:0e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.179013] pci 0000:00:0e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.179018] pci 0000:00:0e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.179481] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.179595] pci 0000:00:01.0: default IRQ router [10de:00e0] +[ 0.179607] PCI: pci_cache_line_size set to 64 bytes +[ 0.179655] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.179659] reserve RAM buffer: 000000004ffc0000 - 000000004fffffff +[ 0.179813] NetLabel: Initializing +[ 0.179815] NetLabel: domain hash size = 128 +[ 0.179817] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.179837] NetLabel: unlabeled traffic allowed by default +[ 0.179928] Switching to clocksource tsc +[ 0.191301] AppArmor: AppArmor Filesystem Enabled +[ 0.191310] pnp: PnP ACPI: disabled +[ 0.191317] PnPBIOS: Scanning system for PnP BIOS support... +[ 0.191356] PnPBIOS: Found PnP BIOS installation structure at 0xc00f51b0 +[ 0.191360] PnPBIOS: PnP BIOS version 1.0, entry 0xf0000:0x613a, dseg 0xf0000 +[ 0.192484] PnPBIOS: 17 nodes reported by PnP BIOS; 17 recorded by driver +[ 0.192511] system 00:00: [mem 0x00000000-0x0009fbff] could not be reserved +[ 0.192515] system 00:00: [mem 0x0009fc00-0x0009ffff] could not be reserved +[ 0.192520] system 00:00: [mem 0x000e4000-0x000fffff] could not be reserved +[ 0.192524] system 00:00: [mem 0x00100000-0x4ffbffff] could not be reserved +[ 0.192528] system 00:00: [mem 0x4ffc0000-0x4ffcffff] could not be reserved +[ 0.192532] system 00:00: [mem 0x4ffd0000-0x4fffffff] could not be reserved +[ 0.192537] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.192541] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.192545] system 00:00: [mem 0xff780000-0xffffffff] has been reserved +[ 0.192555] system 00:0b: [io 0x04d0-0x04d1] has been reserved +[ 0.192559] system 00:0b: [io 0x0cf8-0x0cff] could not be reserved +[ 0.192563] system 00:0b: [io 0x0480-0x04ff] could not be reserved +[ 0.194732] pci 0000:00:0b.0: PCI bridge to [bus 01-01] +[ 0.194738] pci 0000:00:0b.0: bridge window [io 0xb000-0xbfff] +[ 0.194745] pci 0000:00:0b.0: bridge window [mem 0xff500000-0xff5fffff] +[ 0.194751] pci 0000:00:0b.0: bridge window [mem 0xaeb00000-0xeeafffff pref] +[ 0.194757] pci 0000:00:0e.0: PCI bridge to [bus 02-02] +[ 0.194760] pci 0000:00:0e.0: bridge window [io disabled] +[ 0.194764] pci 0000:00:0e.0: bridge window [mem disabled] +[ 0.194767] pci 0000:00:0e.0: bridge window [mem pref disabled] +[ 0.194782] pci 0000:00:0e.0: setting latency timer to 64 +[ 0.194788] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] +[ 0.194791] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff] +[ 0.194795] pci_bus 0000:00: resource 6 [mem 0x50000000-0xffffffff] +[ 0.194798] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff] +[ 0.194801] pci_bus 0000:01: resource 1 [mem 0xff500000-0xff5fffff] +[ 0.194805] pci_bus 0000:01: resource 2 [mem 0xaeb00000-0xeeafffff pref] +[ 0.194881] NET: Registered protocol family 2 +[ 0.194979] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.195493] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.197605] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.198662] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.198668] TCP reno registered +[ 0.198677] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.198710] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.198886] NET: Registered protocol family 1 +[ 0.676103] pci 0000:01:00.0: Boot video device +[ 0.676111] PCI: CLS 32 bytes, default 64 +[ 0.676451] cpufreq-nforce2: No nForce2 chipset. +[ 0.676493] Scanning for low memory corruption every 60 seconds +[ 0.676661] audit: initializing netlink socket (disabled) +[ 0.676682] type=2000 audit(1286021180.676:1): initialized +[ 0.690767] Trying to unpack rootfs image as initramfs... +[ 3.705769] highmem bounce pool size: 64 pages +[ 3.705777] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 3.707546] VFS: Disk quotas dquot_6.5.2 +[ 3.707622] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 3.708480] fuse init (API version 7.14) +[ 3.708597] msgmni has been set to 1701 +[ 3.709034] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 3.709039] io scheduler noop registered +[ 3.709042] io scheduler deadline registered +[ 3.709063] io scheduler cfq registered (default) +[ 3.709260] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 3.709292] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 3.709723] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 3.709833] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 3.710265] 00:10: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 3.711683] brd: module loaded +[ 3.712476] loop: module loaded +[ 3.713002] pata_acpi 0000:00:08.0: setting latency timer to 64 +[ 3.713032] pata_acpi 0000:00:0a.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 3.713048] pata_acpi 0000:00:0a.0: setting latency timer to 64 +[ 3.713497] Fixed MDIO Bus: probed +[ 3.713545] PPP generic driver version 2.4.2 +[ 3.713604] tun: Universal TUN/TAP device driver, 1.6 +[ 3.713607] tun: (C) 1999-2004 Max Krasnyansky +[ 3.713718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 3.713735] ehci_hcd 0000:00:02.2: can't find IRQ for PCI INT C; probably buggy MP table +[ 3.713763] ehci_hcd 0000:00:02.2: setting latency timer to 64 +[ 3.713767] ehci_hcd 0000:00:02.2: EHCI Host Controller +[ 3.713821] ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1 +[ 3.713862] ehci_hcd 0000:00:02.2: debug port 1 +[ 3.713869] ehci_hcd 0000:00:02.2: cache line size of 32 is not supported +[ 3.713894] ehci_hcd 0000:00:02.2: irq 10, io mem 0xff6ffc00 +[ 3.713958] isapnp: Scanning for PnP cards... +[ 3.762989] ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00 +[ 3.763164] hub 1-0:1.0: USB hub found +[ 3.763172] hub 1-0:1.0: 8 ports detected +[ 3.763263] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 3.763281] ohci_hcd 0000:00:02.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 3.763296] ohci_hcd 0000:00:02.0: setting latency timer to 64 +[ 3.763300] ohci_hcd 0000:00:02.0: OHCI Host Controller +[ 3.763342] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2 +[ 3.763373] ohci_hcd 0000:00:02.0: irq 3, io mem 0xff6fd000 +[ 3.852554] hub 2-0:1.0: USB hub found +[ 3.852560] hub 2-0:1.0: 4 ports detected +[ 3.852625] ohci_hcd 0000:00:02.1: can't find IRQ for PCI INT B; probably buggy MP table +[ 3.852635] ohci_hcd 0000:00:02.1: setting latency timer to 64 +[ 3.852639] ohci_hcd 0000:00:02.1: OHCI Host Controller +[ 3.852692] ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 3 +[ 3.852717] ohci_hcd 0000:00:02.1: irq 9, io mem 0xff6fe000 +[ 3.941904] hub 3-0:1.0: USB hub found +[ 3.941910] hub 3-0:1.0: 4 ports detected +[ 3.941986] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.942136] PNP: PS/2 Controller [PNP0303,PNP0f13] at 0x60,0x64 irq 1,12 +[ 3.987626] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.987635] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 3.987731] mice: PS/2 mouse device common for all mice +[ 3.987863] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 3.987890] rtc0: alarms up to one day, 114 bytes nvram +[ 3.988048] device-mapper: uevent: version 1.0.3 +[ 3.988341] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 3.988407] device-mapper: multipath: version 1.1.1 loaded +[ 3.988411] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 3.988576] EISA: Probing bus 0 at eisa.0 +[ 3.988580] EISA: Cannot allocate resource for mainboard +[ 3.988583] Cannot allocate resource for EISA slot 1 +[ 3.988586] Cannot allocate resource for EISA slot 2 +[ 3.988589] Cannot allocate resource for EISA slot 3 +[ 3.988592] Cannot allocate resource for EISA slot 4 +[ 3.988595] Cannot allocate resource for EISA slot 5 +[ 3.988598] Cannot allocate resource for EISA slot 6 +[ 3.988601] Cannot allocate resource for EISA slot 7 +[ 3.988604] Cannot allocate resource for EISA slot 8 +[ 3.988606] EISA: Detected 0 cards. +[ 3.988669] cpuidle: using governor ladder +[ 3.988672] cpuidle: using governor menu +[ 3.989045] TCP cubic registered +[ 3.989210] NET: Registered protocol family 10 +[ 3.989766] lo: Disabled Privacy Extensions +[ 3.990122] NET: Registered protocol family 17 +[ 3.990177] powernow-k8: Power state transitions not supported +[ 3.990186] Using IPI No-Shortcut mode +[ 3.990334] PM: Resume from disk failed. +[ 3.990353] registered taskstats version 1 +[ 3.990575] Magic number: 14:509:126 +[ 3.990707] rtc_cmos 00:04: setting system clock to 2010-10-02 12:06:24 UTC (1286021184) +[ 3.990711] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 3.990714] EDD information not available. +[ 4.077872] isapnp: No Plug & Play device found +[ 4.089705] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 +[ 4.144237] usb 1-4: new high speed USB device using ehci_hcd and address 2 +[ 4.598116] Freeing initrd memory: 11136k freed +[ 4.619116] Freeing unused kernel memory: 684k freed +[ 4.620699] Write protecting the kernel text: 4932k +[ 4.620745] Write protecting the kernel read-only data: 1976k +[ 4.662450] udev[67]: starting version 163 +[ 4.916378] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64. +[ 4.916405] forcedeth 0000:00:05.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 4.916413] forcedeth 0000:00:05.0: setting latency timer to 64 +[ 4.916490] nv_probe: set workaround bit for reversed mac addr +[ 4.920670] Linux agpgart interface v0.103 +[ 4.932942] Initializing USB Mass Storage driver... +[ 4.938734] scsi0 : usb-storage 1-4:1.0 +[ 4.939159] usbcore: registered new interface driver usb-storage +[ 4.939162] USB Mass Storage support registered. +[ 4.960782] [drm] Initialized drm 1.1.0 20060810 +[ 5.025230] [drm] radeon defaulting to kernel modesetting. +[ 5.025237] [drm] radeon kernel modesetting enabled. +[ 5.025328] radeon 0000:01:00.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 5.030323] [drm] initializing kernel modesetting (RV350 0x1002:0x4153). +[ 5.030451] [drm] register mmio base: 0xFF5F0000 +[ 5.030454] [drm] register mmio size: 65536 +[ 5.032359] [drm:radeon_agp_init] *ERROR* Unable to acquire AGP: -19 +[ 5.032362] [drm] Forcing AGP to PCI mode +[ 5.032368] [drm] Generation 2 PCI interface, using max accessible memory +[ 5.032376] radeon 0000:01:00.0: VRAM: 256M 0xD0000000 - 0xDFFFFFFF (256M used) +[ 5.032380] radeon 0000:01:00.0: GTT: 512M 0xB0000000 - 0xCFFFFFFF +[ 5.032438] [drm] radeon: irq initialized. +[ 5.032637] [drm] Detected VRAM RAM=256M, BAR=256M +[ 5.032644] [drm] RAM width 128bits DDR +[ 5.032787] [TTM] Zone kernel: Available graphics memory: 441586 kiB. +[ 5.032790] [TTM] Zone highmem: Available graphics memory: 642166 kiB. +[ 5.032793] [TTM] Initializing pool allocator. +[ 5.032826] [drm] radeon: 256M of VRAM memory ready +[ 5.032828] [drm] radeon: 512M of GTT memory ready. +[ 5.032869] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 5.037724] [drm] radeon: 1 quad pipes, 1 Z pipes initialized. +[ 5.040505] [drm] Loading R300 Microcode +[ 5.045455] [drm] radeon: ring at 0x00000000B0000000 +[ 5.045488] [drm] ring test succeeded in 0 usecs +[ 5.045666] [drm] radeon: ib pool ready. +[ 5.045776] [drm] ib test succeeded in 0 usecs +[ 5.045933] [drm] Default TV standard: PAL +[ 5.045935] [drm] 27.000000000 MHz TV ref clk +[ 5.045940] [drm] DFP table revision: 3 +[ 5.045997] [drm] Default TV standard: PAL +[ 5.045999] [drm] 27.000000000 MHz TV ref clk +[ 5.046040] [drm] Radeon Display Connectors +[ 5.046042] [drm] Connector 0: +[ 5.046044] [drm] VGA +[ 5.046047] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60 +[ 5.046049] [drm] Encoders: +[ 5.046051] [drm] CRT1: INTERNAL_DAC1 +[ 5.046054] [drm] Connector 1: +[ 5.046055] [drm] DVI-I +[ 5.046057] [drm] HPD1 +[ 5.046060] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64 +[ 5.046062] [drm] Encoders: +[ 5.046064] [drm] CRT2: INTERNAL_DAC2 +[ 5.046066] [drm] DFP1: INTERNAL_TMDS1 +[ 5.046068] [drm] Connector 2: +[ 5.046070] [drm] S-video +[ 5.046072] [drm] Encoders: +[ 5.046074] [drm] TV1: INTERNAL_DAC2 +[ 5.198598] [drm] fb mappable at 0xD0040000 +[ 5.198604] [drm] vram apper at 0xD0000000 +[ 5.198606] [drm] size 3145728 +[ 5.198608] [drm] fb depth is 24 +[ 5.198610] [drm] pitch is 4096 +[ 5.264522] Console: switching to colour frame buffer device 128x48 +[ 5.278337] fb0: radeondrmfb frame buffer device +[ 5.278339] drm: registered panic notifier +[ 5.278345] Slow work thread pool: Starting up +[ 5.278435] Slow work thread pool: Ready +[ 5.278445] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:00.0 on minor 0 +[ 5.437079] forcedeth 0000:00:05.0: ifname eth0, PHY OUI 0x90c3 @ 1, addr 00:17:31:8e:11:eb +[ 5.437086] forcedeth 0000:00:05.0: csum timirq lnktim desc-v2 +[ 5.437290] pata_amd 0000:00:08.0: version 0.4.1 +[ 5.437366] pata_amd 0000:00:08.0: setting latency timer to 64 +[ 5.438587] scsi1 : pata_amd +[ 5.438816] scsi2 : pata_amd +[ 5.438876] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 +[ 5.438880] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 +[ 5.439089] sata_nv 0000:00:0a.0: version 3.5 +[ 5.439105] sata_nv 0000:00:0a.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 5.439173] sata_nv 0000:00:0a.0: setting latency timer to 64 +[ 5.439627] scsi3 : sata_nv +[ 5.439820] scsi4 : sata_nv +[ 5.439879] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xc800 irq 10 +[ 5.439884] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xc808 irq 10 +[ 5.440094] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1] +[ 5.440103] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB +[ 5.440112] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP +[ 5.440118] agpgart-amd64 0000:00:00.0: aperture base > 4G +[ 5.440160] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1] +[ 5.440166] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB +[ 5.440170] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP +[ 5.440174] agpgart-amd64 0000:00:00.0: aperture base > 4G +[ 5.600628] ata1.00: ATA-7: Maxtor 6E040L0, NAR61590, max UDMA/133 +[ 5.600634] ata1.00: 80293248 sectors, multi 16: LBA +[ 5.600663] ata1: nv_mode_filter: 0x7f39f&0x7f3ff->0x7f39f, BIOS=0x7f000 (0xc700c000) ACPI=0x0 +[ 5.616638] ata1.00: configured for UDMA/133 +[ 5.616829] scsi 1:0:0:0: Direct-Access ATA Maxtor 6E040L0 NAR6 PQ: 0 ANSI: 5 +[ 5.617084] sd 1:0:0:0: Attached scsi generic sg0 type 0 +[ 5.617572] sd 1:0:0:0: [sda] 80293248 512-byte logical blocks: (41.1 GB/38.2 GiB) +[ 5.617638] sd 1:0:0:0: [sda] Write Protect is off +[ 5.617642] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 5.617671] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 5.617872] sda: sda1 sda2 < sda5 sda6 > +[ 5.679565] sd 1:0:0:0: [sda] Attached SCSI disk +[ 5.752243] ata3: SATA link down (SStatus 0 SControl 300) +[ 5.780549] ata2.00: ATAPI: HL-DT-STDVD-RAM GH22NP20, 2.00, max UDMA/66 +[ 5.780581] ata2: nv_mode_filter: 0x1f39f&0x73ff->0x739f, BIOS=0x7000 (0xc700c000) ACPI=0x0 +[ 5.796511] ata2.00: configured for UDMA/33 +[ 5.798502] scsi 2:0:0:0: CD-ROM HL-DT-ST DVD-RAM GH22NP20 2.00 PQ: 0 ANSI: 5 +[ 5.802301] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 5.802308] Uniform CD-ROM driver Revision: 3.20 +[ 5.802524] sr 2:0:0:0: Attached scsi CD-ROM sr0 +[ 5.802628] sr 2:0:0:0: Attached scsi generic sg1 type 5 +[ 5.937180] scsi 0:0:0:0: Direct-Access JetFlash Transcend 2GB 8.07 PQ: 0 ANSI: 2 +[ 5.938857] sd 0:0:0:0: Attached scsi generic sg2 type 0 +[ 5.939917] sd 0:0:0:0: [sdb] 3944448 512-byte logical blocks: (2.01 GB/1.88 GiB) +[ 5.940404] sd 0:0:0:0: [sdb] Write Protect is off +[ 5.940410] sd 0:0:0:0: [sdb] Mode Sense: 03 00 00 00 +[ 5.940414] sd 0:0:0:0: [sdb] Assuming drive cache: write through +[ 5.944674] sd 0:0:0:0: [sdb] Assuming drive cache: write through +[ 5.944693] sdb: sdb1 +[ 6.051282] sd 0:0:0:0: [sdb] Assuming drive cache: write through +[ 6.051290] sd 0:0:0:0: [sdb] Attached SCSI removable disk +[ 6.112258] ata4: SATA link down (SStatus 0 SControl 300) +[ 7.337374] Btrfs loaded +[ 7.348059] xor: automatically using best checksumming function: pIII_sse +[ 7.364286] pIII_sse : 4837.000 MB/sec +[ 7.364290] xor: using function: pIII_sse (4837.000 MB/sec) +[ 7.369366] device-mapper: dm-raid45: initialized v0.2594b +[ 7.739753] EXT3-fs: barriers not enabled +[ 7.754793] kjournald starting. Commit interval 5 seconds +[ 7.754839] EXT3-fs (sda1): mounted filesystem with ordered data mode +[ 7.880061] EXT3-fs: barriers not enabled +[ 7.890915] kjournald starting. Commit interval 5 seconds +[ 7.890949] EXT3-fs (sda5): mounted filesystem with ordered data mode +[ 8.074087] aufs 2-standalone.tree-35-rcN-20100705 +[ 8.105737] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 10.037160] EXT3-fs: barriers not enabled +[ 10.037798] kjournald starting. Commit interval 5 seconds +[ 10.037853] EXT3-fs (loop1): using internal journal +[ 10.037860] EXT3-fs (loop1): mounted filesystem with ordered data mode +[ 10.043045] aufs test_add:252:exe[590]: uid/gid/perm //filesystem.squashfs 0/0/0755, 1000/1000/0755 +[ 23.643009] BUG: unable to handle kernel paging request at f8147540 +[ 23.643019] IP: [] driver_register+0xfe/0x130 +[ 23.643031] *pde = 3716d067 *pte = 00000000 +[ 23.643037] Oops: 0000 [#1] SMP +[ 23.643041] last sysfs file: /sys/devices/pci0000:00/0000:00:18.3/uevent +[ 23.643046] Modules linked in: amd64_agp(+) squashfs aufs nls_iso8859_1 nls_cp437 vfat fat dm_raid45 xor btrfs zlib_deflate crc32c libcrc32c radeon ttm drm_kms_helper drm usb_storage forcedeth pata_amd sata_nv i2c_algo_bit agpgart +[ 23.643067] +[ 23.643073] Pid: 1879, comm: modprobe Not tainted 2.6.35-22-generic #33-Ubuntu 'K8N'/K8N +[ 23.643077] EIP: 0060:[] EFLAGS: 00010282 CPU: 0 +[ 23.643081] EIP is at driver_register+0xfe/0x130 +[ 23.643085] EAX: f8147510 EBX: 00000000 ECX: f8006419 EDX: f681f780 +[ 23.643088] ESI: f8006510 EDI: c036c8a0 EBP: f6899f34 ESP: f6899f18 +[ 23.643092] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 23.643095] Process modprobe (pid: 1879, ti=f6898000 task=f642bf70 task.ti=f6898000) +[ 23.643098] Stack: +[ 23.643100] 00000001 f8006780 00000000 c07d2ae0 f80064e0 f8006780 f8006510 f6899f48 +[ 23.643108] <0> c036cba5 b78ba000 f8006780 00000000 f6899f54 f800902c 00000000 f6899f5c +[ 23.643115] <0> f80090a8 f6899f88 c0101132 f8006780 c07d0f60 b78ba000 f8006780 08b41228 +[ 23.643123] Call Trace: +[ 23.643132] [] ? __pci_register_driver+0x45/0xb0 +[ 23.643139] [] ? agp_amd64_init+0x2c/0xa0 [amd64_agp] +[ 23.643145] [] ? agp_amd64_mod_init+0x8/0xa [amd64_agp] +[ 23.643151] [] ? do_one_initcall+0x32/0x1a0 +[ 23.643156] [] ? agp_amd64_mod_init+0x0/0xa [amd64_agp] +[ 23.643164] [] ? sys_init_module+0x9b/0x1e0 +[ 23.643172] [] ? sys_write+0x42/0x70 +[ 23.643179] [] ? syscall_call+0x7/0xb +[ 23.643181] Code: 89 f0 e8 86 ea ff ff 83 c4 10 89 f8 5b 5e 5f 5d c3 8b 06 c7 04 24 2c 6a 76 c0 89 44 24 04 e8 85 59 1c 00 8b 56 04 e9 56 ff ff ff <8b> 40 30 bf f0 ff ff ff e8 d5 11 f5 ff 8b 06 c7 04 24 6c 6a 76 +[ 23.643219] EIP: [] driver_register+0xfe/0x130 SS:ESP 0068:f6899f18 +[ 23.643225] CR2: 00000000f8147540 +[ 23.643230] ---[ end trace 68a73a3e549ff0a4 ]--- +[ 29.700287] Adding 1277948k swap on /dev/sda6. Priority:-1 extents:1 across:1277948k +[ 30.047414] udev[2268]: starting version 163 +[ 30.696439] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 30.710049] i2c i2c-2: nForce2 SMBus adapter at 0x5000 +[ 30.710077] i2c i2c-3: nForce2 SMBus adapter at 0x5040 +[ 31.173536] psmouse serio1: ID: 10 00 64 +[ 31.766983] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input1 +[ 32.279402] Intel ICH 0000:00:06.0: can't find IRQ for PCI INT A; probably buggy MP table +[ 32.279457] Intel ICH 0000:00:06.0: setting latency timer to 64 +[ 32.613305] intel8x0_measure_ac97_clock: measured 52558 usecs (2584 samples) +[ 32.613312] intel8x0: clocking to 46863 + +Bug: 662299 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-22-generic (buildd@crested) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #34-Ubuntu SMP Sun Oct 10 09:26:05 UTC 2010 (Ubuntu 2.6.35-22.34-generic 2.6.35.4) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-2.6.35-22-generic root=UUID=54d9340b-4244-479b-88c9-d4d8dace8318 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000001dff0000 (usable) +[ 0.000000] BIOS-e820: 000000001dff0000 - 000000001dff3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000001dff3000 - 000000001e000000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000b0000000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] AGP bridge at 00:00:00 +[ 0.000000] Aperture from AGP @ d0000000 old size 32 MB +[ 0.000000] Aperture from AGP @ d0000000 size 128 MB (APSIZE f20) +[ 0.000000] last_pfn = 0x1dff0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-C7FFF write-protect +[ 0.000000] C8000-CBFFF uncachable +[ 0.000000] CC000-D3FFF write-back +[ 0.000000] D4000-FFFFF uncachable +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FFE0000000 write-back +[ 0.000000] 1 base 001E000000 mask FFFE000000 uncachable +[ 0.000000] 2 base 00D0000000 mask FFF8000000 write-combining +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009f800 (usable) +[ 0.000000] modified: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000001dff0000 (usable) +[ 0.000000] modified: 000000001dff0000 - 000000001dff3000 (ACPI NVS) +[ 0.000000] modified: 000000001dff3000 - 000000001e000000 (ACPI data) +[ 0.000000] modified: 00000000b0000000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000f5ab0] f5ab0 +[ 0.000000] init_memory_mapping: 0000000000000000-000000001dff0000 +[ 0.000000] 0000000000 - 001de00000 page 2M +[ 0.000000] 001de00000 - 001dff0000 page 4k +[ 0.000000] kernel direct mapping tables up to 1dff0000 @ 16000-19000 +[ 0.000000] RAMDISK: 15db7000 - 16834000 +[ 0.000000] ACPI: RSDP 00000000000f73a0 00014 (v00 HPQOEM) +[ 0.000000] ACPI: RSDT 000000001dff3000 00038 (v01 HPQOEM SLIC-BPC 42302E31 AWRD 01010101) +[ 0.000000] ACPI: FACP 000000001dff3040 00074 (v01 HPQOEM SLIC-BPC 42302E31 AWRD 01010101) +[ 0.000000] ACPI: DSDT 000000001dff30c0 0654E (v01 HPQOEM AWRDACPI 00001000 MSFT 0100000C) +[ 0.000000] ACPI: FACS 000000001dff0000 00040 +[ 0.000000] ACPI: SSDT 000000001dff96c0 00115 (v01 PTLTD POWERNOW 00000001 LTP 00000001) +[ 0.000000] ACPI: SLIC 000000001dff9800 00176 (v01 HPQOEM SLIC-BPC 42302E31 AWRD 01010101) +[ 0.000000] ACPI: MCFG 000000001dff9980 0003C (v01 HPQOEM SLIC-BPC 42302E31 AWRD 01010101) +[ 0.000000] ACPI: APIC 000000001dff9640 00074 (v01 HPQOEM SLIC-BPC 42302E31 AWRD 01010101) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] Scanning NUMA topology in Northbridge 24 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-000000001dff0000 +[ 0.000000] Initmem setup node 0 0000000000000000-000000001dff0000 +[ 0.000000] NODE_DATA [0000000001d18140 - 0000000001d1d13f] +[ 0.000000] [ffffea0000000000-ffffea00007fffff] PMD -> [ffff880002600000-ffff880002dfffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0001dff0 +[ 0.000000] On node 0 totalpages: 122751 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 1624 pages used for memmap +[ 0.000000] DMA32 zone: 117144 pages, LIFO batch:31 +[ 0.000000] Detected use of extended apic ids on hypertransport bus +[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfecc0000] gsi_base[24]) +[ 0.000000] IOAPIC[1]: apic_id 3, version 3, address 0xfecc0000, GSI 24-47 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 64 +[ 0.000000] early_res array is doubled to 64 at [17000 - 177ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 1e000000 (gap: 1e000000:92000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91520 r8192 d23168 u1048576 +[ 0.000000] pcpu-alloc: s91520 r8192 d23168 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 121071 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.35-22-generic root=UUID=54d9340b-4244-479b-88c9-d4d8dace8318 ro quiet splash +[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] AGP bridge at 00:00:00 +[ 0.000000] Aperture from AGP @ d0000000 old size 32 MB +[ 0.000000] Aperture from AGP @ d0000000 size 128 MB (APSIZE f20) +[ 0.000000] Node 0: aperture @ d0000000 size 128 MB +[ 0.000000] Subtract (44 early reservations) +[ 0.000000] #1 [0001000000 - 0001d17114] TEXT DATA BSS +[ 0.000000] #2 [0015db7000 - 0016834000] RAMDISK +[ 0.000000] #3 [0001d18000 - 0001d1811c] BRK +[ 0.000000] #4 [00000f5ac0 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000f5ab0 - 00000f5ac0] MP-table mpf +[ 0.000000] #6 [000009f800 - 00000f0d00] BIOS reserved +[ 0.000000] #7 [00000f1228 - 00000f5ab0] BIOS reserved +[ 0.000000] #8 [00000f0d00 - 00000f1228] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000017000] PGTABLE +[ 0.000000] #12 [0001d18140 - 0001d1d140] NODE_DATA +[ 0.000000] #13 [0001d1d140 - 0001d1e140] BOOTMEM +[ 0.000000] #14 [0001d17140 - 0001d171a0] BOOTMEM +[ 0.000000] #15 [000251f000 - 0002520000] BOOTMEM +[ 0.000000] #16 [0002520000 - 0002521000] BOOTMEM +[ 0.000000] #17 [0002600000 - 0002e00000] MEMMAP 0 +[ 0.000000] #18 [0001d171c0 - 0001d17340] BOOTMEM +[ 0.000000] #19 [0001d1e140 - 0001d21140] BOOTMEM +[ 0.000000] #20 [0001d22000 - 0001d23000] BOOTMEM +[ 0.000000] #21 [0001d17340 - 0001d173c6] BOOTMEM +[ 0.000000] #22 [0001d17400 - 0001d175f8] BOOTMEM +[ 0.000000] #23 [0001d17600 - 0001d17668] BOOTMEM +[ 0.000000] #24 [0001d17680 - 0001d176e8] BOOTMEM +[ 0.000000] #25 [0001d17700 - 0001d17768] BOOTMEM +[ 0.000000] #26 [0001d17780 - 0001d177e8] BOOTMEM +[ 0.000000] #27 [0001d17800 - 0001d17868] BOOTMEM +[ 0.000000] #28 [0001d17880 - 0001d178e8] BOOTMEM +[ 0.000000] #29 [0001d17900 - 0001d17968] BOOTMEM +[ 0.000000] #30 [0001d17980 - 0001d179e8] BOOTMEM +[ 0.000000] #31 [0001d17a00 - 0001d17a20] BOOTMEM +[ 0.000000] #32 [0001d17a40 - 0001d17aa5] BOOTMEM +[ 0.000000] #33 [0001d17ac0 - 0001d17b25] BOOTMEM +[ 0.000000] #34 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #35 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #36 [0001d17b40 - 0001d17b48] BOOTMEM +[ 0.000000] #37 [0001d17b80 - 0001d17b88] BOOTMEM +[ 0.000000] #38 [0001d17bc0 - 0001d17bc8] BOOTMEM +[ 0.000000] #39 [0001d17c00 - 0001d17c10] BOOTMEM +[ 0.000000] #40 [0001d17c40 - 0001d17d80] BOOTMEM +[ 0.000000] #41 [0001d17d80 - 0001d17de0] BOOTMEM +[ 0.000000] #42 [0001d17e00 - 0001d17e60] BOOTMEM +[ 0.000000] #43 [0001d23000 - 0001d27000] BOOTMEM +[ 0.000000] Memory: 458328k/491456k available (5708k kernel code, 452k absent, 32676k reserved, 5382k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:512 +[ 0.000000] spurious 8259A interrupt: IRQ7. +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 5242880 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2210.974 MHz processor. +[ 0.010009] Calibrating delay loop (skipped), value calculated using timer frequency.. 4421.94 BogoMIPS (lpj=22109740) +[ 0.010014] pid_max: default: 32768 minimum: 301 +[ 0.010041] Security Framework initialized +[ 0.010063] AppArmor: AppArmor initialized +[ 0.010065] Yama: becoming mindful. +[ 0.010182] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.010543] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes) +[ 0.010726] Mount-cache hash table entries: 256 +[ 0.010874] Initializing cgroup subsys ns +[ 0.010879] Initializing cgroup subsys cpuacct +[ 0.010883] Initializing cgroup subsys memory +[ 0.010894] Initializing cgroup subsys devices +[ 0.010897] Initializing cgroup subsys freezer +[ 0.010899] Initializing cgroup subsys net_cls +[ 0.010926] tseg: 0000000000 +[ 0.010943] mce: CPU supports 5 MCE banks +[ 0.010957] using C1E aware idle routine +[ 0.010959] Performance Events: AMD PMU driver. +[ 0.010964] ... version: 0 +[ 0.010966] ... bit width: 48 +[ 0.010967] ... generic registers: 4 +[ 0.010969] ... value mask: 0000ffffffffffff +[ 0.010971] ... max period: 00007fffffffffff +[ 0.010973] ... fixed-purpose events: 0 +[ 0.010974] ... event mask: 000000000000000f +[ 0.011007] SMP alternatives: switching to UP code +[ 0.024986] ACPI: Core revision 20100428 +[ 0.040025] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.040036] ftrace: allocating 22680 entries in 89 pages +[ 0.056405] Setting APIC routing to flat +[ 0.056805] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0 +[ 0.156818] CPU0: AMD Sempron(tm) Processor 3800+ stepping 02 +[ 0.160000] Brought up 1 CPUs +[ 0.160000] Total of 1 processors activated (4421.94 BogoMIPS). +[ 0.160000] devtmpfs: initialized +[ 0.160000] regulator: core version 0.5 +[ 0.160000] Time: 17:30:59 Date: 10/17/10 +[ 0.160000] NET: Registered protocol family 16 +[ 0.160000] node 0 link 0: io port [1000, fffff] +[ 0.160000] TOM: 0000000020000000 aka 512M +[ 0.160000] node 0 link 0: mmio [20000000, bfffffff] +[ 0.160000] node 0 link 0: mmio [c0000000, d7ffffff] +[ 0.160000] node 0 link 0: mmio [d8000000, d8ffffff] +[ 0.160000] node 0 link 0: mmio [d9000000, ff70ffff] +[ 0.160000] node 0 link 0: mmio [a0000, bffff] +[ 0.160000] bus: [00, ff] on node 0 link 0 +[ 0.160000] bus: 00 index 0 [io 0x0000-0xffff] +[ 0.160000] bus: 00 index 1 [mem 0x20000000-0xfcffffffff] +[ 0.160000] bus: 00 index 2 [mem 0x000a0000-0x000bffff] +[ 0.160000] ACPI: bus type pci registered +[ 0.160000] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000) +[ 0.160000] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820 +[ 0.169182] PCI: Using configuration type 1 for base access +[ 0.170008] bio: create slab at 0 +[ 0.171727] ACPI: EC: Look up EC in DSDT +[ 0.179519] ACPI: Interpreter enabled +[ 0.179524] ACPI: (supports S0 S3 S4 S5) +[ 0.179549] ACPI: Using IOAPIC for interrupt routing +[ 0.188128] ACPI: No dock devices found. +[ 0.188134] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.188590] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f]) +[ 0.188991] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.188993] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.188996] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.188999] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored) +[ 0.189001] pci_root PNP0A08:00: host bridge window [mem 0x20000000-0xda0fffff] (ignored) +[ 0.189004] pci_root PNP0A08:00: host bridge window [mem 0xda200000-0xfebfffff] (ignored) +[ 0.189034] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref] +[ 0.189475] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 0.189479] pci 0000:00:02.0: PME# disabled +[ 0.189552] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 0.189556] pci 0000:00:03.0: PME# disabled +[ 0.189607] pci 0000:00:0f.0: reg 10: [io 0xc800-0xc807] +[ 0.189613] pci 0000:00:0f.0: reg 14: [io 0xa000-0xa003] +[ 0.189620] pci 0000:00:0f.0: reg 18: [io 0xa400-0xa407] +[ 0.189626] pci 0000:00:0f.0: reg 1c: [io 0xa800-0xa803] +[ 0.189632] pci 0000:00:0f.0: reg 20: [io 0xac00-0xac0f] +[ 0.189638] pci 0000:00:0f.0: reg 24: [io 0xb000-0xb0ff] +[ 0.189702] pci 0000:00:0f.1: reg 20: [io 0xb400-0xb40f] +[ 0.189776] pci 0000:00:10.0: reg 20: [io 0xb800-0xb81f] +[ 0.189800] pci 0000:00:10.0: supports D1 D2 +[ 0.189802] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.189806] pci 0000:00:10.0: PME# disabled +[ 0.189847] pci 0000:00:10.1: reg 20: [io 0xbc00-0xbc1f] +[ 0.189872] pci 0000:00:10.1: supports D1 D2 +[ 0.189874] pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.189878] pci 0000:00:10.1: PME# disabled +[ 0.189919] pci 0000:00:10.2: reg 20: [io 0xc000-0xc01f] +[ 0.189943] pci 0000:00:10.2: supports D1 D2 +[ 0.189945] pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.189949] pci 0000:00:10.2: PME# disabled +[ 0.190008] pci 0000:00:10.3: reg 20: [io 0xc400-0xc41f] +[ 0.190033] pci 0000:00:10.3: supports D1 D2 +[ 0.190035] pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.190039] pci 0000:00:10.3: PME# disabled +[ 0.190065] pci 0000:00:10.4: reg 10: [mem 0xda200000-0xda2000ff] +[ 0.190105] pci 0000:00:10.4: supports D1 D2 +[ 0.190107] pci 0000:00:10.4: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.190111] pci 0000:00:10.4: PME# disabled +[ 0.190430] PCI: peer root bus 00 res updated from pci conf +[ 0.190475] pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff pref] +[ 0.190480] pci 0000:01:00.0: reg 14: [mem 0xd8000000-0xd8ffffff] +[ 0.190499] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] +[ 0.190516] pci 0000:01:00.0: supports D1 D2 +[ 0.190552] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.190556] pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.190560] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xd9ffffff] +[ 0.190564] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref] +[ 0.190602] pci 0000:00:02.0: PCI bridge to [bus 02-02] +[ 0.190606] pci 0000:00:02.0: bridge window [io 0x8000-0x8fff] +[ 0.190610] pci 0000:00:02.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.190616] pci 0000:00:02.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.190661] pci 0000:00:03.0: PCI bridge to [bus 03-03] +[ 0.190666] pci 0000:00:03.0: bridge window [io 0x7000-0x7fff] +[ 0.190670] pci 0000:00:03.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.190676] pci 0000:00:03.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.190730] pci 0000:04:04.0: reg 10: [mem 0xda000000-0xda00ffff] +[ 0.190736] pci 0000:04:04.0: reg 14: [io 0x9000-0x9007] +[ 0.190771] pci 0000:04:04.0: PME# supported from D3hot D3cold +[ 0.190775] pci 0000:04:04.0: PME# disabled +[ 0.190803] pci 0000:04:06.0: reg 10: [io 0x9400-0x94ff] +[ 0.190809] pci 0000:04:06.0: reg 14: [mem 0xda010000-0xda0100ff] +[ 0.190846] pci 0000:04:06.0: supports D1 D2 +[ 0.190848] pci 0000:04:06.0: PME# supported from D1 D2 D3hot D3cold +[ 0.190852] pci 0000:04:06.0: PME# disabled +[ 0.190886] pci 0000:00:13.1: PCI bridge to [bus 04-04] (subtractive decode) +[ 0.190890] pci 0000:00:13.1: bridge window [io 0x9000-0x9fff] +[ 0.190894] pci 0000:00:13.1: bridge window [mem 0xda000000-0xda0fffff] +[ 0.190900] pci 0000:00:13.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.190902] pci 0000:00:13.1: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.190905] pci 0000:00:13.1: bridge window [mem 0x20000000-0xfcffffffff] (subtractive decode) +[ 0.190907] pci 0000:00:13.1: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.190931] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.191265] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEXG._PRT] +[ 0.191394] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT] +[ 0.191519] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2PB._PRT] +[ 0.260538] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff]) +[ 0.260786] pci_root PNP0A08:01: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.260788] pci_root PNP0A08:01: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.260791] pci_root PNP0A08:01: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.260794] pci_root PNP0A08:01: host bridge window [mem 0xda100000-0xda1fffff] (ignored) +[ 0.260823] pci 0000:80:01.0: reg 10: [mem 0xda100000-0xda103fff 64bit] +[ 0.260863] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold +[ 0.260867] pci 0000:80:01.0: PME# disabled +[ 0.260914] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT] +[ 0.261589] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 10 11 12) *5 +[ 0.261782] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12) +[ 0.261978] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 *11 12) +[ 0.262173] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 *10 11 12) +[ 0.262338] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.262498] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.262656] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.262836] ACPI: PCI Interrupt Link [LNK1] (IRQs *3 4 6 7 10 11 12) +[ 0.262888] HEST: Table is not found! +[ 0.262988] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.262991] vgaarb: loaded +[ 0.263136] SCSI subsystem initialized +[ 0.263213] libata version 3.00 loaded. +[ 0.263264] usbcore: registered new interface driver usbfs +[ 0.263278] usbcore: registered new interface driver hub +[ 0.263302] usbcore: registered new device driver usb +[ 0.263429] ACPI: WMI: Mapper loaded +[ 0.263432] PCI: Using ACPI for IRQ routing +[ 0.263435] PCI: pci_cache_line_size set to 64 bytes +[ 0.263447] pci 0000:00:00.0: address space collision: [mem 0xd0000000-0xd7ffffff pref] conflicts with GART [mem 0xd0000000-0xd7ffffff] +[ 0.263502] pci 0000:80:01.0: address space collision: [mem 0xda100000-0xda103fff 64bit] conflicts with PCI Bus #00 [mem 0x20000000-0xfcffffffff] +[ 0.263547] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.263549] reserve RAM buffer: 000000001dff0000 - 000000001fffffff +[ 0.263652] NetLabel: Initializing +[ 0.263654] NetLabel: domain hash size = 128 +[ 0.263656] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.263669] NetLabel: unlabeled traffic allowed by default +[ 0.272940] AppArmor: AppArmor Filesystem Enabled +[ 0.272962] pnp: PnP ACPI init +[ 0.272985] ACPI: bus type pnp registered +[ 0.277485] pnp 00:0f: disabling [mem 0x000cc000-0x000d3fff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277490] pnp 00:0f: disabling [mem 0x000d5000-0x000d7fff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277495] pnp 00:0f: disabling [mem 0x000f0000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277498] pnp 00:0f: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277502] pnp 00:0f: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277506] pnp 00:0f: disabling [mem 0x00100000-0x1dfeffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.277575] pnp: PnP ACPI: found 16 devices +[ 0.277577] ACPI: ACPI bus type pnp unregistered +[ 0.277589] system 00:01: [io 0x1000-0x107f] has been reserved +[ 0.277592] system 00:01: [io 0x1400-0x140f] has been reserved +[ 0.277598] system 00:02: [io 0x04d0-0x04d1] has been reserved +[ 0.277601] system 00:02: [io 0x0800-0x087f] has been reserved +[ 0.277603] system 00:02: [io 0x0294-0x0297] has been reserved +[ 0.277616] system 00:0c: [mem 0xf0000000-0xf0000fff] has been reserved +[ 0.277621] system 00:0d: [mem 0xb0000000-0xbfffffff] has been reserved +[ 0.277626] system 00:0f: [mem 0x1dff0000-0x1dffffff] could not be reserved +[ 0.277629] system 00:0f: [mem 0xffff0000-0xffffffff] has been reserved +[ 0.277632] system 00:0f: [mem 0x1e000000-0x1fffffff] could not be reserved +[ 0.277635] system 00:0f: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.277638] system 00:0f: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.277641] system 00:0f: [mem 0xfff80000-0xfffeffff] has been reserved +[ 0.283523] Switching to clocksource acpi_pm +[ 0.283602] pci 0000:00:02.0: BAR 14: assigned [mem 0x20000000-0x201fffff] +[ 0.283606] pci 0000:00:02.0: BAR 15: assigned [mem 0x20200000-0x203fffff 64bit pref] +[ 0.283609] pci 0000:00:03.0: BAR 14: assigned [mem 0x20400000-0x205fffff] +[ 0.283612] pci 0000:00:03.0: BAR 15: assigned [mem 0x20600000-0x207fffff 64bit pref] +[ 0.283615] pci 0000:01:00.0: BAR 6: assigned [mem 0xd9000000-0xd900ffff pref] +[ 0.283619] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.283621] pci 0000:00:01.0: bridge window [io disabled] +[ 0.283626] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xd9ffffff] +[ 0.283630] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref] +[ 0.283636] pci 0000:00:02.0: PCI bridge to [bus 02-02] +[ 0.283639] pci 0000:00:02.0: bridge window [io 0x8000-0x8fff] +[ 0.283644] pci 0000:00:02.0: bridge window [mem 0x20000000-0x201fffff] +[ 0.283648] pci 0000:00:02.0: bridge window [mem 0x20200000-0x203fffff 64bit pref] +[ 0.283654] pci 0000:00:03.0: PCI bridge to [bus 03-03] +[ 0.283657] pci 0000:00:03.0: bridge window [io 0x7000-0x7fff] +[ 0.283662] pci 0000:00:03.0: bridge window [mem 0x20400000-0x205fffff] +[ 0.283666] pci 0000:00:03.0: bridge window [mem 0x20600000-0x207fffff 64bit pref] +[ 0.283673] pci 0000:00:13.1: PCI bridge to [bus 04-04] +[ 0.283676] pci 0000:00:13.1: bridge window [io 0x9000-0x9fff] +[ 0.283681] pci 0000:00:13.1: bridge window [mem 0xda000000-0xda0fffff] +[ 0.283685] pci 0000:00:13.1: bridge window [mem pref disabled] +[ 0.283699] pci 0000:00:01.0: setting latency timer to 64 +[ 0.283713] alloc irq_desc for 27 on node 0 +[ 0.283715] alloc kstat_irqs on node 0 +[ 0.283723] pci 0000:00:02.0: PCI INT A -> GSI 27 (level, low) -> IRQ 27 +[ 0.283727] pci 0000:00:02.0: setting latency timer to 64 +[ 0.283738] alloc irq_desc for 31 on node 0 +[ 0.283740] alloc kstat_irqs on node 0 +[ 0.283743] pci 0000:00:03.0: PCI INT A -> GSI 31 (level, low) -> IRQ 31 +[ 0.283747] pci 0000:00:03.0: setting latency timer to 64 +[ 0.283754] pci 0000:00:13.1: setting latency timer to 64 +[ 0.283759] pci 0000:80:01.0: BAR 0: assigned [mem 0xfd00000000-0xfd00003fff 64bit] +[ 0.283765] pci 0000:80:01.0: BAR 0: set to [mem 0xfd00000000-0xfd00003fff 64bit] (PCI address [0xfd00000000-0xfd00003fff] +[ 0.283769] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] +[ 0.283771] pci_bus 0000:00: resource 5 [mem 0x20000000-0xfcffffffff] +[ 0.283774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.283776] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd9ffffff] +[ 0.283779] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref] +[ 0.283781] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff] +[ 0.283783] pci_bus 0000:02: resource 1 [mem 0x20000000-0x201fffff] +[ 0.283786] pci_bus 0000:02: resource 2 [mem 0x20200000-0x203fffff 64bit pref] +[ 0.283788] pci_bus 0000:03: resource 0 [io 0x7000-0x7fff] +[ 0.283790] pci_bus 0000:03: resource 1 [mem 0x20400000-0x205fffff] +[ 0.283793] pci_bus 0000:03: resource 2 [mem 0x20600000-0x207fffff 64bit pref] +[ 0.283795] pci_bus 0000:04: resource 0 [io 0x9000-0x9fff] +[ 0.283797] pci_bus 0000:04: resource 1 [mem 0xda000000-0xda0fffff] +[ 0.283800] pci_bus 0000:04: resource 4 [io 0x0000-0xffff] +[ 0.283802] pci_bus 0000:04: resource 5 [mem 0x20000000-0xfcffffffff] +[ 0.283804] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.283807] pci_bus 0000:80: resource 0 [io 0x0000-0xffff] +[ 0.283809] pci_bus 0000:80: resource 1 [mem 0x00000000-0xffffffffffffffff] +[ 0.283851] NET: Registered protocol family 2 +[ 0.283925] IP route cache hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.284148] TCP established hash table entries: 16384 (order: 6, 262144 bytes) +[ 0.284312] TCP bind hash table entries: 16384 (order: 6, 262144 bytes) +[ 0.284465] TCP: Hash tables configured (established 16384 bind 16384) +[ 0.284468] TCP reno registered +[ 0.284474] UDP hash table entries: 256 (order: 1, 8192 bytes) +[ 0.284484] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) +[ 0.284579] NET: Registered protocol family 1 +[ 0.284592] pci 0000:00:00.0: MSI quirk detected; MSI disabled +[ 0.284614] pci 0000:00:01.0: disabling DAC on VIA PCI bridge +[ 0.284618] pci 0000:00:02.0: MSI quirk detected; subordinate MSI disabled +[ 0.284722] pci 0000:01:00.0: Boot video device +[ 0.284732] PCI: CLS 32 bytes, default 64 +[ 0.284880] Trying to unpack rootfs image as initramfs... +[ 0.289997] agpgart-amd64 0000:00:00.0: AGP bridge [1106/0336] +[ 0.290479] agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xd0000000 +[ 0.290663] Scanning for low memory corruption every 60 seconds +[ 0.290782] audit: initializing netlink socket (disabled) +[ 0.290796] type=2000 audit(1287336659.280:1): initialized +[ 0.320396] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.321846] VFS: Disk quotas dquot_6.5.2 +[ 0.321906] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.322535] fuse init (API version 7.14) +[ 0.322622] msgmni has been set to 895 +[ 0.330688] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.330692] io scheduler noop registered +[ 0.330694] io scheduler deadline registered +[ 0.330730] io scheduler cfq registered (default) +[ 0.340084] pcieport 0000:00:02.0: setting latency timer to 64 +[ 0.340271] pcieport 0000:00:03.0: setting latency timer to 64 +[ 0.340406] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.340781] pciehp 0000:00:02.0:pcie04: HPC vendor_id 1106 device_id a238 ss_vid 0 ss_did 0 +[ 0.340823] pciehp 0000:00:02.0:pcie04: service driver pciehp loaded +[ 0.340839] pciehp 0000:00:03.0:pcie04: HPC vendor_id 1106 device_id c238 ss_vid 0 ss_did 0 +[ 0.340864] pciehp 0000:00:03.0:pcie04: service driver pciehp loaded +[ 0.340871] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.341045] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.341052] ACPI: Power Button [PWRB] +[ 0.341103] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.341106] ACPI: Power Button [PWRF] +[ 0.341803] ACPI: acpi_idle registered with cpuidle +[ 0.345958] ERST: Table is not found! +[ 0.346105] Linux agpgart interface v0.103 +[ 0.346110] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.346226] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.346519] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.347625] brd: module loaded +[ 0.348123] loop: module loaded +[ 0.348453] alloc irq_desc for 21 on node 0 +[ 0.348456] alloc kstat_irqs on node 0 +[ 0.348465] pata_acpi 0000:00:0f.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.348512] pata_acpi 0000:00:0f.0: PCI INT B disabled +[ 0.360652] Fixed MDIO Bus: probed +[ 0.360689] PPP generic driver version 2.4.2 +[ 0.360761] tun: Universal TUN/TAP device driver, 1.6 +[ 0.360763] tun: (C) 1999-2004 Max Krasnyansky +[ 0.360856] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.360929] ehci_hcd 0000:00:10.4: PCI INT C -> GSI 21 (level, low) -> IRQ 21 +[ 0.360951] ehci_hcd 0000:00:10.4: EHCI Host Controller +[ 0.360987] ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1 +[ 0.361044] ehci_hcd 0000:00:10.4: irq 21, io mem 0xda200000 +[ 0.380153] ehci_hcd 0000:00:10.4: USB 2.0 started, EHCI 1.00 +[ 0.380325] hub 1-0:1.0: USB hub found +[ 0.380330] hub 1-0:1.0: 8 ports detected +[ 0.380443] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.380459] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.390269] alloc irq_desc for 20 on node 0 +[ 0.390273] alloc kstat_irqs on node 0 +[ 0.390284] uhci_hcd 0000:00:10.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 0.390296] uhci_hcd 0000:00:10.0: UHCI Host Controller +[ 0.390388] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2 +[ 0.390430] uhci_hcd 0000:00:10.0: irq 20, io base 0x0000b800 +[ 0.390573] hub 2-0:1.0: USB hub found +[ 0.390578] hub 2-0:1.0: 2 ports detected +[ 0.390719] alloc irq_desc for 22 on node 0 +[ 0.390722] alloc kstat_irqs on node 0 +[ 0.390728] uhci_hcd 0000:00:10.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 0.390737] uhci_hcd 0000:00:10.1: UHCI Host Controller +[ 0.390786] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3 +[ 0.390821] uhci_hcd 0000:00:10.1: irq 22, io base 0x0000bc00 +[ 0.390950] hub 3-0:1.0: USB hub found +[ 0.390954] hub 3-0:1.0: 2 ports detected +[ 0.391065] uhci_hcd 0000:00:10.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21 +[ 0.391076] uhci_hcd 0000:00:10.2: UHCI Host Controller +[ 0.391129] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4 +[ 0.391154] uhci_hcd 0000:00:10.2: irq 21, io base 0x0000c000 +[ 0.391277] hub 4-0:1.0: USB hub found +[ 0.391281] hub 4-0:1.0: 2 ports detected +[ 0.391396] alloc irq_desc for 23 on node 0 +[ 0.391398] alloc kstat_irqs on node 0 +[ 0.391407] uhci_hcd 0000:00:10.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23 +[ 0.391415] uhci_hcd 0000:00:10.3: UHCI Host Controller +[ 0.391461] uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5 +[ 0.391497] uhci_hcd 0000:00:10.3: irq 23, io base 0x0000c400 +[ 0.391634] hub 5-0:1.0: USB hub found +[ 0.391639] hub 5-0:1.0: 2 ports detected +[ 0.391778] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.392186] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.392191] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.392267] mice: PS/2 mouse device common for all mice +[ 0.392360] rtc_cmos 00:04: RTC can wake from S4 +[ 0.392401] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 0.392435] rtc0: alarms up to one year, y3k, 242 bytes nvram +[ 0.392554] device-mapper: uevent: version 1.0.3 +[ 0.396255] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.400827] device-mapper: multipath: version 1.1.1 loaded +[ 0.400833] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.409110] cpuidle: using governor ladder +[ 0.409114] cpuidle: using governor menu +[ 0.409424] TCP cubic registered +[ 0.409564] NET: Registered protocol family 10 +[ 0.409918] lo: Disabled Privacy Extensions +[ 0.410168] NET: Registered protocol family 17 +[ 0.410206] powernow-k8: Found 1 AMD Sempron(tm) Processor 3800+ (1 cpu cores) (version 2.20.00) +[ 0.410259] powernow-k8: 0 : fid 0xe (2200 MHz), vid 0x6 +[ 0.410261] powernow-k8: 1 : fid 0xc (2000 MHz), vid 0x8 +[ 0.410263] powernow-k8: 2 : fid 0xa (1800 MHz), vid 0xa +[ 0.410265] powernow-k8: 3 : fid 0x2 (1000 MHz), vid 0x12 +[ 0.410403] PM: Resume from disk failed. +[ 0.410421] registered taskstats version 1 +[ 0.410703] Magic number: 14:582:542 +[ 0.410812] rtc_cmos 00:04: setting system clock to 2010-10-17 17:31:00 UTC (1287336660) +[ 0.410815] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.410816] EDD information not available. +[ 0.417780] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +[ 0.579771] Freeing initrd memory: 10740k freed +[ 0.586098] Freeing unused kernel memory: 908k freed +[ 0.586636] Write protecting the kernel read-only data: 10240k +[ 0.586796] Freeing unused kernel memory: 416k freed +[ 0.587171] Freeing unused kernel memory: 1644k freed +[ 0.615298] udev[76]: starting version 163 +[ 0.785192] sata_via 0000:00:0f.0: version 2.6 +[ 0.785211] sata_via 0000:00:0f.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.785256] sata_via 0000:00:0f.0: routed to hard irq line 11 +[ 0.822385] scsi0 : sata_via +[ 0.850391] FDC 0 is a post-1991 82077 +[ 0.875229] scsi1 : sata_via +[ 0.876717] ata1: SATA max UDMA/133 cmd 0xc800 ctl 0xa000 bmdma 0xac00 irq 21 +[ 0.876721] ata2: SATA max UDMA/133 cmd 0xa400 ctl 0xa800 bmdma 0xac08 irq 21 +[ 0.902510] pata_via 0000:00:0f.1: version 0.3.4 +[ 0.919847] scsi2 : pata_via +[ 0.926937] scsi3 : pata_via +[ 0.928552] ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xb400 irq 14 +[ 0.928555] ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xb408 irq 15 +[ 1.080019] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 1.140345] ata3.00: HPA unlocked: 66055244 -> 78242976, native 78242976 +[ 1.140350] ata3.00: ATA-6: SAMSUNG SV4002H, QP100-09, max UDMA/100 +[ 1.140353] ata3.00: 78242976 sectors, multi 16: LBA +[ 1.140381] ata3.01: ATAPI: HL-DT-STDVD-RAM GH22NP20, 1.04, max UDMA/66 +[ 1.180353] ata3.00: configured for UDMA/100 +[ 1.220327] ata3.01: configured for UDMA/66 +[ 1.260200] ata1.00: ATA-7: WDC WD800JD-60LSA5, 10.01E03, max UDMA/100 +[ 1.260203] ata1.00: 156301488 sectors, multi 16: LBA48 +[ 1.280215] ata1.00: configured for UDMA/100 +[ 1.280317] scsi 0:0:0:0: Direct-Access ATA WDC WD800JD-60LS 10.0 PQ: 0 ANSI: 5 +[ 1.280485] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.280761] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 1.280808] sd 0:0:0:0: [sda] Write Protect is off +[ 1.280811] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.280831] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.280969] sda: sda1 sda2 < sda5 sda6 > +[ 1.315484] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.490021] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 1.670382] ata2.00: ATA-8: ST3250318AS, CC38, max UDMA/133 +[ 1.670385] ata2.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.710390] ata2.00: configured for UDMA/133 +[ 1.710471] scsi 1:0:0:0: Direct-Access ATA ST3250318AS CC38 PQ: 0 ANSI: 5 +[ 1.710628] sd 1:0:0:0: Attached scsi generic sg1 type 0 +[ 1.710862] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.710907] sd 1:0:0:0: [sdb] Write Protect is off +[ 1.710910] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.710930] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.711068] sdb: +[ 1.711201] scsi 2:0:0:0: Direct-Access ATA SAMSUNG SV4002H QP10 PQ: 0 ANSI: 5 +[ 1.711512] sd 2:0:0:0: Attached scsi generic sg2 type 0 +[ 1.712237] sd 2:0:0:0: [sdc] 78242976 512-byte logical blocks: (40.0 GB/37.3 GiB) +[ 1.712283] sd 2:0:0:0: [sdc] Write Protect is off +[ 1.712286] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00 +[ 1.712306] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.712446] sdc: sdc1 sdc2 sdc3 sdc4 < +[ 1.723280] scsi 2:0:1:0: CD-ROM HL-DT-ST DVD-RAM GH22NP20 1.04 PQ: 0 ANSI: 5 +[ 1.727803] sdb1 sdb2 +[ 1.728457] sd 1:0:0:0: [sdb] Attached SCSI disk +[ 1.734640] sdc5 sdc6 sdc7 > +[ 1.786037] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.786041] Uniform CD-ROM driver Revision: 3.20 +[ 1.786466] sr 2:0:1:0: Attached scsi CD-ROM sr0 +[ 1.786618] sr 2:0:1:0: Attached scsi generic sg3 type 5 +[ 1.786816] sd 2:0:0:0: [sdc] Attached SCSI disk +[ 1.962697] 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004) +[ 1.966369] 8139cp 0000:04:06.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too +[ 1.972087] 8139too: 8139too Fast Ethernet driver 0.9.28 +[ 1.977755] alloc irq_desc for 19 on node 0 +[ 1.977760] alloc kstat_irqs on node 0 +[ 1.977771] 8139too 0000:04:06.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.978719] 8139too 0000:04:06.0: eth0: RealTek RTL8139 at 0x9400, 00:1a:4d:1c:53:54, IRQ 19 +[ 3.691696] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null) +[ 5.192180] Adding 996024k swap on /dev/sdc3. Priority:-1 extents:1 across:996024k +[ 5.350720] udev[378]: starting version 163 +[ 6.119192] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 6.510416] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 6.622692] lp: driver loaded but no devices found +[ 6.641739] EDAC MC: Ver: 2.1.0 Oct 10 2010 +[ 6.668061] EDAC amd64_edac: Ver: 3.3.0 Oct 10 2010 +[ 6.668147] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 6.668152] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 6.668153] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 6.668154] (Note that use of the override may cause unknown side effects.) +[ 6.668172] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 6.767396] parport_pc 00:09: reported by Plug and Play ACPI +[ 6.767428] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP] +[ 6.840847] lp0: using parport0 (interrupt-driven). +[ 6.958072] ppdev: user-space parallel port driver +[ 7.178032] type=1400 audit(1287336667.257:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=643 comm="apparmor_parser" +[ 7.178307] type=1400 audit(1287336667.257:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=643 comm="apparmor_parser" +[ 7.178464] type=1400 audit(1287336667.257:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=643 comm="apparmor_parser" +[ 7.633975] input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input3 +[ 7.673239] alloc irq_desc for 17 on node 0 +[ 7.673243] alloc kstat_irqs on node 0 +[ 7.673253] HDA Intel 0000:80:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.673303] HDA Intel 0000:80:01.0: setting latency timer to 64 +[ 7.673315] BUG: unable to handle kernel paging request at ffffc900102b8000 +[ 7.673461] IP: [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 7.673568] PGD 1d897067 PUD 1d898067 PMD 1693c067 PTE 800000fd00000173 +[ 7.673803] Oops: 0009 [#1] SMP +[ 7.673943] last sysfs file: /sys/devices/platform/i8042/serio1/input/input3/event3/uevent +[ 7.674000] CPU 0 +[ 7.674048] Modules linked in: snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore ppdev psmouse serio_raw parport_pc i2c_viapro edac_core lp snd_page_alloc parport k8temp edac_mce_amd shpchp 8139too 8139cp mii floppy pata_via sata_via +[ 7.675570] +[ 7.675620] Pid: 735, comm: work_for_cpu Not tainted 2.6.35-22-generic #34-Ubuntu 0A88h/HP dx2255 MT(RL028AV) +[ 7.675679] RIP: 0010:[] [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 7.675786] RSP: 0018:ffff88001a7d7e20 EFLAGS: 00010282 +[ 7.675838] RAX: ffffc900102b8000 RBX: ffff88001a7d7e80 RCX: 0000000000000000 +[ 7.675894] RDX: 0000000000000000 RSI: 0000000000000286 RDI: 0000000000000286 +[ 7.675949] RBP: ffff88001a7d7e70 R08: 0000000000000001 R09: 0000000000000040 +[ 7.676004] R10: 0000000000000008 R11: 0000000000000003 R12: ffff88001cf02000 +[ 7.676059] R13: ffff880016b0b000 R14: 0000000000000000 R15: ffff880016b0b400 +[ 7.676115] FS: 00007fe9f4940700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +[ 7.676190] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 7.676252] CR2: ffffc900102b8000 CR3: 000000001c49c000 CR4: 00000000000006f0 +[ 7.676317] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 7.676381] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 7.676446] Process work_for_cpu (pid: 735, threadinfo ffff88001a7d6000, task ffff88001694c4a0) +[ 7.676521] Stack: +[ 7.676579] ffffffffa00b71e0 ffffffffa014cd78 ffffffff00000000 000000001a7d7e88 +[ 7.676778] <0> 0000000000000000 ffff88001cf02000 ffffffffa014c520 ffff88001cf02090 +[ 7.677076] <0> 0000000000000000 0000000000000000 ffff88001a7d7eb0 ffffffffa014b100 +[ 7.677428] Call Trace: +[ 7.677491] [] azx_probe+0xb8/0x284 [snd_hda_intel] +[ 7.677559] [] ? do_work_for_cpu+0x0/0x30 +[ 7.677624] [] local_pci_probe+0x17/0x20 +[ 7.677688] [] do_work_for_cpu+0x18/0x30 +[ 7.677752] [] kthread+0x96/0xa0 +[ 7.677815] [] kernel_thread_helper+0x4/0x10 +[ 7.677879] [] ? kthread+0x0/0xa0 +[ 7.677941] [] ? kernel_thread_helper+0x0/0x10 +[ 7.678004] Code: ef 31 f6 4c 89 ef 89 4d c0 e8 17 d5 ff ff 85 c0 0f 88 c3 03 00 00 4c 89 e7 e8 87 9d 18 e1 41 8b 7d 40 e8 1e 01 f8 e0 49 8b 45 38 <66> 44 8b 30 41 8b 45 14 8b 4d c0 8d 50 fd 83 fa 01 77 3f 31 d2 +[ 7.680013] RIP [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 7.680013] RSP +[ 7.680013] CR2: ffffc900102b8000 +[ 7.680013] ---[ end trace 7a55942e8f0cb675 ]--- +[ 9.514281] EXT4-fs (sdc2): re-mounted. Opts: errors=remount-ro +[ 9.892514] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null) +[ 10.760997] EXT4-fs (sdc6): mounted filesystem with ordered data mode. Opts: (null) +[ 10.961083] EXT4-fs (sdc5): mounted filesystem with ordered data mode. Opts: (null) +[ 11.241124] EXT4-fs (sdc7): mounted filesystem with ordered data mode. Opts: (null) +[ 13.094713] type=1400 audit(1287336673.177:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=887 comm="apparmor_parser" +[ 13.096858] type=1400 audit(1287336673.177:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=888 comm="apparmor_parser" +[ 13.097223] type=1400 audit(1287336673.177:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=888 comm="apparmor_parser" +[ 13.097473] type=1400 audit(1287336673.177:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=888 comm="apparmor_parser" +[ 13.248552] type=1400 audit(1287336673.327:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=889 comm="apparmor_parser" +[ 13.252562] type=1400 audit(1287336673.337:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=889 comm="apparmor_parser" +[ 13.254974] type=1400 audit(1287336673.337:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=889 comm="apparmor_parser" +[ 13.386792] type=1400 audit(1287336673.467:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=891 comm="apparmor_parser" +[ 13.387244] type=1400 audit(1287336673.467:13): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=891 comm="apparmor_parser" +[ 13.518653] type=1400 audit(1287336673.607:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=892 comm="apparmor_parser" +[ 14.099675] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1 + +Bug: 662973 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-7-generic (buildd@rothera) (gcc version 4.4.4 (Ubuntu 4.4.4-6ubuntu1) ) #11-Ubuntu SMP Wed Jul 7 02:28:58 UTC 2010 (Ubuntu 2.6.35-7.11-generic 2.6.35-rc4) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable) +[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000dfff0000 (usable) +[ 0.000000] BIOS-e820: 00000000dfff0000 - 00000000dfff3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000dfff3000 - 00000000e0000000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: approximated by x86 segment limits +[ 0.000000] DMI 2.2 present. +[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0xdfff0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-EFFFF uncachable +[ 0.000000] F0000-FFFFF write-through +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 080000000 mask FC0000000 write-back +[ 0.000000] 2 base 0C0000000 mask FE0000000 write-back +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009f800 (usable) +[ 0.000000] modified: 000000000009f800 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000dfff0000 (usable) +[ 0.000000] modified: 00000000dfff0000 - 00000000dfff3000 (ACPI NVS) +[ 0.000000] modified: 00000000dfff3000 - 00000000e0000000 (ACPI data) +[ 0.000000] modified: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] found SMP MP-table at [c00f5df0] f5df0 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 37511000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 009b9000 - 0149754c +[ 0.000000] Move RAMDISK from 0000000037511000 - 0000000037fef54b to 009b9000 - 0149754b +[ 0.000000] ACPI: RSDP 000f77a0 00014 (v00 IntelR) +[ 0.000000] ACPI: RSDT dfff3000 0002C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: FACP dfff3040 00074 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: DSDT dfff30c0 0433B (v01 INTELR AWRDACPI 00001000 MSFT 0100000E) +[ 0.000000] ACPI: FACS dfff0000 00040 +[ 0.000000] ACPI: APIC dfff7400 00068 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 2695MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x000dfff0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000dfff0 +[ 0.000000] On node 0 totalpages: 917375 +[ 0.000000] free_area_init_node: node 0, pgdat c0813880, node_mem_map c1499200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 5392 pages used for memmap +[ 0.000000] HighMem zone: 684770 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at e0000000 (gap: e0000000:1ec00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c3400000 s36352 r0 d20992 u2097152 +[ 0.000000] pcpu-alloc: s36352 r0 d20992 u2097152 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 910207 +[ 0.000000] Kernel command line: root=UUID=483d70c7-88c7-42a9-b21f-8fb1dd4e135e ro vga=794 quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 18349440 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (45 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009b491c] TEXT DATA BSS +[ 0.000000] #3 [00009b5000 - 00009b8088] BRK +[ 0.000000] #4 [00000f5e00 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000f5df0 - 00000f5e00] MP-table mpf +[ 0.000000] #6 [000009f800 - 00000f1400] BIOS reserved +[ 0.000000] #7 [00000f1568 - 00000f5df0] BIOS reserved +[ 0.000000] #8 [00000f1400 - 00000f1568] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #10 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #11 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #12 [00009b9000 - 0001498000] NEW RAMDISK +[ 0.000000] #13 [0001498000 - 0001499000] BOOTMEM +[ 0.000000] #14 [0001499000 - 0003099000] BOOTMEM +[ 0.000000] #15 [0003099000 - 0003099004] BOOTMEM +[ 0.000000] #16 [0003099040 - 0003099100] BOOTMEM +[ 0.000000] #17 [0003099100 - 0003099154] BOOTMEM +[ 0.000000] #18 [0003099180 - 000309c180] BOOTMEM +[ 0.000000] #19 [000309c180 - 000309c280] BOOTMEM +[ 0.000000] #20 [000309c280 - 00030a8280] BOOTMEM +[ 0.000000] #21 [00030a8280 - 00030a82a7] BOOTMEM +[ 0.000000] #22 [00030a82c0 - 00030a83a0] BOOTMEM +[ 0.000000] #23 [00030a83c0 - 00030a8400] BOOTMEM +[ 0.000000] #24 [00030a8400 - 00030a8440] BOOTMEM +[ 0.000000] #25 [00030a8440 - 00030a8480] BOOTMEM +[ 0.000000] #26 [00030a8480 - 00030a84c0] BOOTMEM +[ 0.000000] #27 [00030a84c0 - 00030a8500] BOOTMEM +[ 0.000000] #28 [00030a8500 - 00030a8540] BOOTMEM +[ 0.000000] #29 [00030a8540 - 00030a8580] BOOTMEM +[ 0.000000] #30 [00030a8580 - 00030a8590] BOOTMEM +[ 0.000000] #31 [00030a85c0 - 00030a8608] BOOTMEM +[ 0.000000] #32 [00030a8640 - 00030a8688] BOOTMEM +[ 0.000000] #33 [0003400000 - 000340e000] BOOTMEM +[ 0.000000] #34 [0003600000 - 000360e000] BOOTMEM +[ 0.000000] #35 [00030aa6c0 - 00030aa6c4] BOOTMEM +[ 0.000000] #36 [00030aa700 - 00030aa704] BOOTMEM +[ 0.000000] #37 [00030aa740 - 00030aa748] BOOTMEM +[ 0.000000] #38 [00030aa780 - 00030aa788] BOOTMEM +[ 0.000000] #39 [00030aa7c0 - 00030aa868] BOOTMEM +[ 0.000000] #40 [00030aa880 - 00030aa8e8] BOOTMEM +[ 0.000000] #41 [00030aa900 - 00030ae900] BOOTMEM +[ 0.000000] #42 [00030ae900 - 000312e900] BOOTMEM +[ 0.000000] #43 [000312e900 - 000316e900] BOOTMEM +[ 0.000000] #44 [000360e000 - 000478dd80] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:000dfff0) +[ 0.000000] Memory: 3601852k/3669952k available (4942k kernel code, 67648k reserved, 2401k data, 684k init, 2760648k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc082d000 - 0xc08d8000 ( 684 kB) +[ 0.000000] .data : 0xc05d3b52 - 0xc082c168 (2401 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d3b52 (4942 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:512 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 3313.601 MHz processor. +[ 0.008004] Calibrating delay loop (skipped), value calculated using timer frequency.. 6627.20 BogoMIPS (lpj=13254404) +[ 0.008010] pid_max: default: 32768 minimum: 301 +[ 0.008033] Security Framework initialized +[ 0.008054] AppArmor: AppArmor initialized +[ 0.008058] Yama: becoming mindful. +[ 0.008122] Mount-cache hash table entries: 512 +[ 0.008284] Initializing cgroup subsys ns +[ 0.008289] Initializing cgroup subsys cpuacct +[ 0.008295] Initializing cgroup subsys memory +[ 0.008307] Initializing cgroup subsys devices +[ 0.008310] Initializing cgroup subsys freezer +[ 0.008313] Initializing cgroup subsys net_cls +[ 0.008351] CPU: Physical Processor ID: 0 +[ 0.008354] CPU: Processor Core ID: 0 +[ 0.008358] mce: CPU supports 4 MCE banks +[ 0.008370] CPU0: Thermal monitoring enabled (TM1) +[ 0.008375] using mwait in idle threads. +[ 0.008383] Performance Events: Netburst events, Netburst P4/Xeon PMU driver. +[ 0.008395] ... version: 0 +[ 0.008397] ... bit width: 40 +[ 0.008400] ... generic registers: 18 +[ 0.008402] ... value mask: 000000ffffffffff +[ 0.008405] ... max period: 0000007fffffffff +[ 0.008408] ... fixed-purpose events: 0 +[ 0.008410] ... event mask: 000000000003ffff +[ 0.012099] ACPI: Core revision 20100428 +[ 0.020013] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.020019] ftrace: allocating 21734 entries in 43 pages +[ 0.024059] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.024341] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.066291] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 03 +[ 0.068000] Booting Node 0, Processors #1 Ok. +[ 0.012000] Initializing CPU#1 +[ 0.156018] Brought up 2 CPUs +[ 0.156024] Total of 2 processors activated (13254.98 BogoMIPS). +[ 0.156382] devtmpfs: initialized +[ 0.157394] regulator: core version 0.5 +[ 0.157417] Time: 17:35:43 Date: 10/18/10 +[ 0.157467] NET: Registered protocol family 16 +[ 0.157479] Trying to unpack rootfs image as initramfs... +[ 0.157675] EISA bus registered +[ 0.157689] ACPI: bus type pci registered +[ 0.158871] PCI: PCI BIOS revision 2.10 entry at 0xfb9e0, last bus=4 +[ 0.158876] PCI: Using configuration type 1 for base access +[ 0.161652] bio: create slab at 0 +[ 0.163703] ACPI: EC: Look up EC in DSDT +[ 0.171117] ACPI: Interpreter enabled +[ 0.171124] ACPI: (supports S0 S3 S4 S5) +[ 0.171167] ACPI: Using IOAPIC for interrupt routing +[ 0.179540] ACPI: No dock devices found. +[ 0.179547] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.179706] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.180027] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.180033] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.180038] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.180043] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored) +[ 0.180049] pci_root PNP0A03:00: host bridge window [mem 0xe0000000-0xfebfffff] (ignored) +[ 0.180070] pci 0000:00:00.0: Enabling MCH 'Overflow' Device +[ 0.180083] pci 0000:00:00.0: reg 10: [mem 0xf0000000-0xf7ffffff pref] +[ 0.180216] pci 0000:00:06.0: reg 10: [mem 0xfecf0000-0xfecf0fff] +[ 0.180320] pci 0000:00:1d.0: reg 20: [io 0xbc00-0xbc1f] +[ 0.180381] pci 0000:00:1d.1: reg 20: [io 0xb000-0xb01f] +[ 0.180443] pci 0000:00:1d.2: reg 20: [io 0xb400-0xb41f] +[ 0.180507] pci 0000:00:1d.3: reg 20: [io 0xb800-0xb81f] +[ 0.180564] pci 0000:00:1d.7: reg 10: [mem 0xfa200000-0xfa2003ff] +[ 0.180623] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.180630] pci 0000:00:1d.7: PME# disabled +[ 0.180726] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 +[ 0.180735] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH4 ACPI/GPIO/TCO +[ 0.180742] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH4 GPIO +[ 0.180770] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.180780] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.180789] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] +[ 0.180799] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] +[ 0.180808] pci 0000:00:1f.1: reg 20: [io 0xf000-0xf00f] +[ 0.180817] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff] +[ 0.180854] pci 0000:00:1f.2: reg 10: [io 0xc000-0xc007] +[ 0.180863] pci 0000:00:1f.2: reg 14: [io 0xc400-0xc403] +[ 0.180872] pci 0000:00:1f.2: reg 18: [io 0xc800-0xc807] +[ 0.180881] pci 0000:00:1f.2: reg 1c: [io 0xcc00-0xcc03] +[ 0.180889] pci 0000:00:1f.2: reg 20: [io 0xd000-0xd00f] +[ 0.180949] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f] +[ 0.181004] pci 0000:00:1f.6: reg 10: [io 0xe000-0xe0ff] +[ 0.181014] pci 0000:00:1f.6: reg 14: [io 0xe400-0xe47f] +[ 0.181060] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold +[ 0.181067] pci 0000:00:1f.6: PME# disabled +[ 0.181122] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff pref] +[ 0.181132] pci 0000:01:00.0: reg 14: [io 0xa000-0xa0ff] +[ 0.181142] pci 0000:01:00.0: reg 18: [mem 0xf9000000-0xf900ffff] +[ 0.181166] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] +[ 0.181197] pci 0000:01:00.0: supports D1 D2 +[ 0.181238] pci 0000:01:00.1: reg 10: [mem 0xf9010000-0xf9013fff] +[ 0.181292] pci 0000:01:00.1: supports D1 D2 +[ 0.181345] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.181352] pci 0000:00:01.0: bridge window [io 0xa000-0xafff] +[ 0.181358] pci 0000:00:01.0: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.181365] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff pref] +[ 0.181404] pci 0000:02:01.0: reg 10: [mem 0xfa000000-0xfa01ffff] +[ 0.181417] pci 0000:02:01.0: reg 18: [io 0x9000-0x901f] +[ 0.181454] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold +[ 0.181460] pci 0000:02:01.0: PME# disabled +[ 0.181505] pci 0000:00:03.0: PCI bridge to [bus 02-02] +[ 0.181511] pci 0000:00:03.0: bridge window [io 0x9000-0x9fff] +[ 0.181517] pci 0000:00:03.0: bridge window [mem 0xfa000000-0xfa0fffff] +[ 0.181524] pci 0000:00:03.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.181625] pci 0000:03:0c.0: supports D1 D2 +[ 0.181629] pci 0000:03:0c.0: PME# supported from D1 D2 D3hot D3cold +[ 0.181636] pci 0000:03:0c.0: PME# disabled +[ 0.181673] pci 0000:03:0e.0: reg 10: [io 0x8000-0x803f] +[ 0.181723] pci 0000:03:0e.0: supports D2 +[ 0.181727] pci 0000:03:0e.0: PME# supported from D0 D2 D3hot +[ 0.181734] pci 0000:03:0e.0: PME# disabled +[ 0.181766] pci 0000:00:1e.0: PCI bridge to [bus 03-04] (subtractive decode) +[ 0.181773] pci 0000:00:1e.0: bridge window [io 0x7000-0x8fff] +[ 0.181780] pci 0000:00:1e.0: bridge window [mem 0xfa100000-0xfa1fffff] +[ 0.181788] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.181793] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.181798] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode) +[ 0.181867] pci 0000:04:00.0: reg 10: [mem 0xfa100000-0xfa100fff] +[ 0.181927] pci 0000:04:00.0: supports D1 D2 +[ 0.181931] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot +[ 0.181938] pci 0000:04:00.0: PME# disabled +[ 0.181977] pci 0000:04:00.1: reg 10: [mem 0xfa101000-0xfa101fff] +[ 0.182037] pci 0000:04:00.1: supports D1 D2 +[ 0.182041] pci 0000:04:00.1: PME# supported from D0 D1 D2 D3hot +[ 0.182048] pci 0000:04:00.1: PME# disabled +[ 0.182086] pci 0000:04:00.2: reg 10: [mem 0xfa102000-0xfa1020ff] +[ 0.182146] pci 0000:04:00.2: supports D1 D2 +[ 0.182150] pci 0000:04:00.2: PME# supported from D0 D1 D2 D3hot +[ 0.182157] pci 0000:04:00.2: PME# disabled +[ 0.182208] pci 0000:04:01.0: reg 10: [mem 0xfa103000-0xfa1037ff] +[ 0.182219] pci 0000:04:01.0: reg 14: [io 0x7000-0x707f] +[ 0.182274] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold +[ 0.182281] pci 0000:04:01.0: PME# disabled +[ 0.182342] pci 0000:03:0c.0: PCI bridge to [bus 04-04] +[ 0.182349] pci 0000:03:0c.0: bridge window [io 0x7000-0x7fff] +[ 0.182356] pci 0000:03:0c.0: bridge window [mem 0xfa100000-0xfa1fffff] +[ 0.182363] pci 0000:03:0c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.182389] pci_bus 0000:00: on NUMA node 0 +[ 0.182397] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.182625] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT] +[ 0.201982] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 *10 11 12 14 15) +[ 0.202155] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 *12 14 15) +[ 0.202327] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12 14 15) +[ 0.202498] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 7 9 10 11 12 14 15) +[ 0.202669] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. +[ 0.202843] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. +[ 0.203019] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled. +[ 0.203191] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 *7 9 10 11 12 14 15) +[ 0.203272] HEST: Table is not found! +[ 0.203409] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.203428] vgaarb: loaded +[ 0.203733] SCSI subsystem initialized +[ 0.203857] libata version 3.00 loaded. +[ 0.203956] usbcore: registered new interface driver usbfs +[ 0.203983] usbcore: registered new interface driver hub +[ 0.204066] usbcore: registered new device driver usb +[ 0.204291] ACPI: WMI: Mapper loaded +[ 0.204295] PCI: Using ACPI for IRQ routing +[ 0.204302] PCI: pci_cache_line_size set to 64 bytes +[ 0.204446] reserve RAM buffer: 000000000009f800 - 000000000009ffff +[ 0.204451] reserve RAM buffer: 00000000dfff0000 - 00000000dfffffff +[ 0.204618] NetLabel: Initializing +[ 0.204622] NetLabel: domain hash size = 128 +[ 0.204625] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.204645] NetLabel: unlabeled traffic allowed by default +[ 0.204771] hpet clockevent registered +[ 0.204777] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.204785] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.204794] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.208056] Switching to clocksource tsc +[ 0.227429] AppArmor: AppArmor Filesystem Enabled +[ 0.227451] pnp: PnP ACPI init +[ 0.227482] ACPI: bus type pnp registered +[ 0.231174] pnp: PnP ACPI: found 9 devices +[ 0.231179] ACPI: ACPI bus type pnp unregistered +[ 0.231185] PnPBIOS: Disabled by ACPI PNP +[ 0.231204] system 00:01: [io 0x0b78-0x0b7b] has been reserved +[ 0.231210] system 00:01: [io 0x0f78-0x0f7b] has been reserved +[ 0.231215] system 00:01: [io 0x0a78-0x0a7b] has been reserved +[ 0.231221] system 00:01: [io 0x0e78-0x0e7b] has been reserved +[ 0.231226] system 00:01: [io 0x0bbc-0x0bbf] has been reserved +[ 0.231232] system 00:01: [io 0x0fbc-0x0fbf] has been reserved +[ 0.231237] system 00:01: [io 0x04d0-0x04d1] has been reserved +[ 0.231242] system 00:01: [io 0x0294-0x0297] has been reserved +[ 0.231257] system 00:06: [io 0x0400-0x04bf] could not be reserved +[ 0.231278] system 00:08: [mem 0x000d0000-0x000d3fff] has been reserved +[ 0.231285] system 00:08: [mem 0x000f0000-0x000f7fff] could not be reserved +[ 0.231290] system 00:08: [mem 0x000f8000-0x000fbfff] could not be reserved +[ 0.231296] system 00:08: [mem 0x000fc000-0x000fffff] could not be reserved +[ 0.231302] system 00:08: [mem 0xdfff0000-0xdfffffff] could not be reserved +[ 0.231307] system 00:08: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.231313] system 00:08: [mem 0x00100000-0xdffeffff] could not be reserved +[ 0.231319] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.231325] system 00:08: [mem 0xfec01000-0xfed8ffff] could not be reserved +[ 0.231330] system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.231336] system 00:08: [mem 0xffb00000-0xffb7ffff] has been reserved +[ 0.231341] system 00:08: [mem 0xfff00000-0xffffffff] has been reserved +[ 0.231347] system 00:08: [mem 0x000e0000-0x000effff] has been reserved +[ 0.266242] pci 0000:00:1f.1: BAR 5: assigned [mem 0xfa200400-0xfa2007ff] +[ 0.266253] pci 0000:00:1f.1: BAR 5: set to [mem 0xfa200400-0xfa2007ff] (PCI address [0xfa200400-0xfa2007ff] +[ 0.266262] pci 0000:01:00.0: BAR 6: assigned [mem 0xf8000000-0xf801ffff pref] +[ 0.266268] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.266274] pci 0000:00:01.0: bridge window [io 0xa000-0xafff] +[ 0.266281] pci 0000:00:01.0: bridge window [mem 0xf8000000-0xf9ffffff] +[ 0.266288] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff pref] +[ 0.266297] pci 0000:00:03.0: PCI bridge to [bus 02-02] +[ 0.266302] pci 0000:00:03.0: bridge window [io 0x9000-0x9fff] +[ 0.266310] pci 0000:00:03.0: bridge window [mem 0xfa000000-0xfa0fffff] +[ 0.266316] pci 0000:00:03.0: bridge window [mem pref disabled] +[ 0.266325] pci 0000:03:0c.0: PCI bridge to [bus 04-04] +[ 0.266331] pci 0000:03:0c.0: bridge window [io 0x7000-0x7fff] +[ 0.266339] pci 0000:03:0c.0: bridge window [mem 0xfa100000-0xfa1fffff] +[ 0.266345] pci 0000:03:0c.0: bridge window [mem pref disabled] +[ 0.266354] pci 0000:00:1e.0: PCI bridge to [bus 03-04] +[ 0.266359] pci 0000:00:1e.0: bridge window [io 0x7000-0x8fff] +[ 0.266367] pci 0000:00:1e.0: bridge window [mem 0xfa100000-0xfa1fffff] +[ 0.266374] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.266400] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.266416] pci_bus 0000:00: resource 0 [io 0x0000-0xffff] +[ 0.266421] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff] +[ 0.266426] pci_bus 0000:01: resource 0 [io 0xa000-0xafff] +[ 0.266431] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xf9ffffff] +[ 0.266436] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff pref] +[ 0.266441] pci_bus 0000:02: resource 0 [io 0x9000-0x9fff] +[ 0.266446] pci_bus 0000:02: resource 1 [mem 0xfa000000-0xfa0fffff] +[ 0.266451] pci_bus 0000:03: resource 0 [io 0x7000-0x8fff] +[ 0.266456] pci_bus 0000:03: resource 1 [mem 0xfa100000-0xfa1fffff] +[ 0.266461] pci_bus 0000:03: resource 4 [io 0x0000-0xffff] +[ 0.266465] pci_bus 0000:03: resource 5 [mem 0x00000000-0xffffffff] +[ 0.266470] pci_bus 0000:04: resource 0 [io 0x7000-0x7fff] +[ 0.266475] pci_bus 0000:04: resource 1 [mem 0xfa100000-0xfa1fffff] +[ 0.266534] NET: Registered protocol family 2 +[ 0.266649] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.267080] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.267675] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.267958] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.267963] TCP reno registered +[ 0.267969] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.267981] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.268134] NET: Registered protocol family 1 +[ 0.268281] pci 0000:01:00.0: Boot video device +[ 0.268346] PCI: CLS 32 bytes, default 64 +[ 0.268614] cpufreq-nforce2: No nForce2 chipset. +[ 0.268663] Scanning for low memory corruption every 60 seconds +[ 0.268838] audit: initializing netlink socket (disabled) +[ 0.268853] type=2000 audit(1287423343.264:1): initialized +[ 0.281413] highmem bounce pool size: 64 pages +[ 0.281423] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.284242] VFS: Disk quotas dquot_6.5.2 +[ 0.284368] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.285525] fuse init (API version 7.14) +[ 0.285695] msgmni has been set to 1642 +[ 0.286042] alg: No test for stdrng (krng) +[ 0.286147] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.286153] io scheduler noop registered +[ 0.286156] io scheduler deadline registered +[ 0.286185] io scheduler cfq registered (default) +[ 0.286461] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.286504] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.286658] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.286664] ACPI: Power Button [PWRB] +[ 0.286760] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.286765] ACPI: Power Button [PWRF] +[ 0.286850] ACPI: Fan [FAN] (on) +[ 0.287164] ACPI: acpi_idle registered with cpuidle +[ 0.292405] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.292423] ACPI: Thermal Zone [THRM] (55 C) +[ 0.292531] ERST: Table is not found! +[ 0.296623] vesafb: framebuffer at 0xe0000000, mapped to 0xf8080000, using 5120k, total 16384k +[ 0.296629] vesafb: mode is 1280x1024x16, linelength=2560, pages=5 +[ 0.296633] vesafb: protected mode interface info at c000:a0ba +[ 0.296637] vesafb: pmi: set display start = c00ca15c, set palette = c00ca21a +[ 0.296641] vesafb: scrolling: redraw +[ 0.296646] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +[ 0.300161] isapnp: Scanning for PnP cards... +[ 0.321388] Console: switching to colour frame buffer device 160x64 +[ 0.345954] fb0: VESA VGA frame buffer device +[ 0.345995] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.346475] alloc irq_desc for 17 on node -1 +[ 0.346479] alloc kstat_irqs on node -1 +[ 0.346489] serial 0000:00:1f.6: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.346497] serial 0000:00:1f.6: PCI INT B disabled +[ 0.396475] brd: module loaded +[ 0.397368] loop: module loaded +[ 0.397684] ata_piix 0000:00:1f.1: version 2.13 +[ 0.397702] alloc irq_desc for 18 on node -1 +[ 0.397706] alloc kstat_irqs on node -1 +[ 0.397715] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.397767] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 0.411739] scsi0 : ata_piix +[ 0.436794] scsi1 : ata_piix +[ 0.438121] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14 +[ 0.438126] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15 +[ 0.438156] ata_piix 0000:00:1f.2: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 0.438164] ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ] +[ 0.438219] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 0.448128] scsi2 : ata_piix +[ 0.448239] scsi3 : ata_piix +[ 0.449276] ata3: SATA max UDMA/133 cmd 0xc000 ctl 0xc400 bmdma 0xd000 irq 18 +[ 0.449281] ata4: SATA max UDMA/133 cmd 0xc800 ctl 0xcc00 bmdma 0xd008 irq 18 +[ 0.449864] Fixed MDIO Bus: probed +[ 0.449925] PPP generic driver version 2.4.2 +[ 0.449999] tun: Universal TUN/TAP device driver, 1.6 +[ 0.450002] tun: (C) 1999-2004 Max Krasnyansky +[ 0.450142] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.450172] alloc irq_desc for 23 on node -1 +[ 0.450176] alloc kstat_irqs on node -1 +[ 0.450185] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23 +[ 0.450205] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 0.450211] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 0.450265] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 +[ 0.454177] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported +[ 0.454201] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfa200000 +[ 0.479901] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 0.480107] hub 1-0:1.0: USB hub found +[ 0.480115] hub 1-0:1.0: 8 ports detected +[ 0.480252] ehci_hcd 0000:04:00.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.480272] ehci_hcd 0000:04:00.2: EHCI Host Controller +[ 0.480328] ehci_hcd 0000:04:00.2: new USB bus registered, assigned bus number 2 +[ 0.503867] ehci_hcd 0000:04:00.2: irq 18, io mem 0xfa102000 +[ 0.515876] ehci_hcd 0000:04:00.2: USB 2.0 started, EHCI 0.95 +[ 0.516086] hub 2-0:1.0: USB hub found +[ 0.516095] hub 2-0:1.0: 5 ports detected +[ 0.516218] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.516254] alloc irq_desc for 16 on node -1 +[ 0.516258] alloc kstat_irqs on node -1 +[ 0.516267] ohci_hcd 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.516288] ohci_hcd 0000:04:00.0: OHCI Host Controller +[ 0.516345] ohci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3 +[ 0.516378] ohci_hcd 0000:04:00.0: irq 16, io mem 0xfa100000 +[ 0.610552] isapnp: No Plug & Play device found +[ 0.676346] Freeing initrd memory: 11132k freed +[ 0.687871] ata1.00: ATA-7: SAMSUNG SP0802N, TK100-24, max UDMA/100 +[ 0.687877] ata1.00: 156368016 sectors, multi 16: LBA48 +[ 0.695780] ata1.00: configured for UDMA/100 +[ 0.695947] scsi 0:0:0:0: Direct-Access ATA SAMSUNG SP0802N TK10 PQ: 0 ANSI: 5 +[ 0.696188] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 0.696316] sd 0:0:0:0: [sda] 156368016 512-byte logical blocks: (80.0 GB/74.5 GiB) +[ 0.696410] sd 0:0:0:0: [sda] Write Protect is off +[ 0.696416] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 0.696456] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.078256] hub 3-0:1.0: USB hub found +[ 1.078266] hub 3-0:1.0: 3 ports detected +[ 1.078380] ohci_hcd 0000:04:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 1.078401] ohci_hcd 0000:04:00.1: OHCI Host Controller +[ 1.078466] ohci_hcd 0000:04:00.1: new USB bus registered, assigned bus number 4 +[ 1.078501] ohci_hcd 0000:04:00.1: irq 17, io mem 0xfa101000 +[ 1.088917] sda: +[ 1.095817] ata3.00: ATA-7: Maxtor 7Y250M0, YAR511W0, max UDMA/100 +[ 1.095823] ata3.00: 488397168 sectors, multi 16: LBA48 +[ 1.098764] sda1 sda2 sda3 < +[ 1.103922] ata2.00: ATAPI: PIONEER DVD-RW DVR-111D, 1.23, max UDMA/66 +[ 1.103967] ata2.01: ATAPI: SONY CD-RW CRX300E, KYS1, max UDMA/33 +[ 1.111850] ata3.00: configured for UDMA/100 +[ 1.112314] sda5 +[ 1.119897] ata2.00: configured for UDMA/66 +[ 1.133019] sda6 +[ 1.135856] ata2.01: configured for UDMA/33 +[ 1.148647] scsi 1:0:0:0: CD-ROM PIONEER DVD-RW DVR-111D 1.23 PQ: 0 ANSI: 5 +[ 1.171763] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray +[ 1.171769] Uniform CD-ROM driver Revision: 3.20 +[ 1.171914] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 1.171996] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 1.173075] scsi 1:0:1:0: CD-ROM SONY CD-RW CRX300E KYS1 PQ: 0 ANSI: 5 +[ 1.177493] sr1: scsi3-mmc drive: 0x/48x writer cd/rw xa/form2 cdda tray +[ 1.177625] sr 1:0:1:0: Attached scsi CD-ROM sr1 +[ 1.177698] sr 1:0:1:0: Attached scsi generic sg2 type 5 +[ 1.177855] scsi 2:0:0:0: Direct-Access ATA Maxtor 7Y250M0 YAR5 PQ: 0 ANSI: 5 +[ 1.178050] sd 2:0:0:0: Attached scsi generic sg3 type 0 +[ 1.178150] sd 2:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB) +[ 1.178243] sd 2:0:0:0: [sdb] Write Protect is off +[ 1.178248] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.178288] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.645742] sda7 > sda4 +[ 1.646240] hub 4-0:1.0: USB hub found +[ 1.646249] hub 4-0:1.0: 2 ports detected +[ 1.646358] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.646401] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.646411] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.646416] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 1.646480] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5 +[ 1.646507] uhci_hcd 0000:00:1d.0: irq 16, io base 0x0000bc00 +[ 1.646693] hub 5-0:1.0: USB hub found +[ 1.646700] hub 5-0:1.0: 2 ports detected +[ 1.646796] alloc irq_desc for 19 on node -1 +[ 1.646800] alloc kstat_irqs on node -1 +[ 1.646809] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.646817] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 1.646822] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 1.646874] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6 +[ 1.646912] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000b000 +[ 1.647103] hub 6-0:1.0: USB hub found +[ 1.647111] hub 6-0:1.0: 2 ports detected +[ 1.647207] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.647215] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 1.647220] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 1.647273] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7 +[ 1.647297] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000b400 +[ 1.647480] hub 7-0:1.0: USB hub found +[ 1.647488] hub 7-0:1.0: 2 ports detected +[ 1.647583] uhci_hcd 0000:00:1d.3: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.647591] uhci_hcd 0000:00:1d.3: setting latency timer to 64 +[ 1.647596] uhci_hcd 0000:00:1d.3: UHCI Host Controller +[ 1.647650] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 8 +[ 1.647673] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000b800 +[ 1.647854] hub 8-0:1.0: USB hub found +[ 1.647862] hub 8-0:1.0: 2 ports detected +[ 1.648054] PNP: No PS/2 controller found. Probing ports directly. +[ 1.649485] sdb: +[ 1.649635] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.657054] sdb1 +[ 1.657324] sd 2:0:0:0: [sdb] Attached SCSI disk +[ 1.812021] usb 1-4: new high speed USB device using ehci_hcd and address 3 +[ 1.901291] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.901408] mice: PS/2 mouse device common for all mice +[ 1.901517] rtc_cmos 00:03: RTC can wake from S4 +[ 1.901576] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 1.901599] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs +[ 1.901749] device-mapper: uevent: version 1.0.3 +[ 1.901902] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.902002] device-mapper: multipath: version 1.1.1 loaded +[ 1.902007] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.902158] EISA: Probing bus 0 at eisa.0 +[ 1.902189] Cannot allocate resource for EISA slot 7 +[ 1.902192] Cannot allocate resource for EISA slot 8 +[ 1.902194] EISA: Detected 0 cards. +[ 1.902304] cpuidle: using governor ladder +[ 1.902308] cpuidle: using governor menu +[ 1.902837] TCP cubic registered +[ 1.903008] NET: Registered protocol family 10 +[ 1.903561] lo: Disabled Privacy Extensions +[ 1.903958] NET: Registered protocol family 17 +[ 1.904033] Using IPI No-Shortcut mode +[ 1.904134] PM: Resume from disk failed. +[ 1.904150] registered taskstats version 1 +[ 1.904402] Magic number: 14:210:593 +[ 1.904471] rtc_cmos 00:03: setting system clock to 2010-10-18 17:35:45 UTC (1287423345) +[ 1.904475] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.904478] EDD information not available. +[ 1.904550] Freeing unused kernel memory: 684k freed +[ 1.905039] Write protecting the kernel text: 4944k +[ 1.905107] Write protecting the kernel read-only data: 2012k +[ 1.930378] udev: starting version 151 +[ 1.948702] hub 1-4:1.0: USB hub found +[ 1.948793] hub 1-4:1.0: 7 ports detected +[ 2.064082] usb 1-7: new high speed USB device using ehci_hcd and address 4 +[ 2.173916] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI +[ 2.173922] e1000: Copyright (c) 1999-2006 Intel Corporation. +[ 2.173975] e1000 0000:02:01.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 2.173988] e1000 0000:02:01.0: setting latency timer to 64 +[ 2.188407] firewire_ohci 0000:04:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.261551] Initializing USB Mass Storage driver... +[ 2.261747] scsi4 : usb-storage 1-7:1.0 +[ 2.261895] usbcore: registered new interface driver usb-storage +[ 2.261899] USB Mass Storage support registered. +[ 2.281015] firewire_ohci: Added fw-ohci device 0000:04:01.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1 +[ 2.360018] usb 5-1: new low speed USB device using uhci_hcd and address 2 +[ 2.564779] usbcore: registered new interface driver hiddev +[ 2.564953] usbcore: registered new interface driver usbhid +[ 2.564958] usbhid: USB HID core driver +[ 2.583025] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.0/input/input2 +[ 2.583168] logitech 0003:046D:C512.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1/input0 +[ 2.618794] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.1/input/input3 +[ 2.618980] logitech 0003:046D:C512.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1/input1 +[ 2.628172] usb 1-4.1: new high speed USB device using ehci_hcd and address 5 +[ 2.773128] firewire_core: created device fw0: GUID 0001080037002e25, S400 +[ 2.810556] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:01:29:24:27:6e +[ 2.810566] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection +[ 2.936121] usb 1-4.7: new full speed USB device using ehci_hcd and address 6 +[ 3.007246] EXT3-fs (sda6): recovery required on readonly filesystem +[ 3.007253] EXT3-fs (sda6): write access will be enabled during recovery +[ 3.011016] EXT3-fs: barriers not enabled +[ 3.269460] scsi 4:0:0:0: Direct-Access Y-E DATA CF Card Reader 3.02 PQ: 0 ANSI: 0 +[ 3.273080] scsi 4:0:0:1: Direct-Access Y-E DATA SM Card Reader 3.02 PQ: 0 ANSI: 0 +[ 3.276829] scsi 4:0:0:2: Direct-Access Y-E DATA MS Card Reader 3.02 PQ: 0 ANSI: 0 +[ 3.279951] scsi 4:0:0:3: Direct-Access Y-E DATA SD Card Reader 3.02 PQ: 0 ANSI: 0 +[ 3.280676] sd 4:0:0:0: Attached scsi generic sg4 type 0 +[ 3.280943] sd 4:0:0:1: Attached scsi generic sg5 type 0 +[ 3.281296] sd 4:0:0:2: Attached scsi generic sg6 type 0 +[ 3.282654] sd 4:0:0:3: Attached scsi generic sg7 type 0 +[ 3.585409] sd 4:0:0:2: [sde] Attached SCSI removable disk +[ 3.594522] sd 4:0:0:0: [sdc] Attached SCSI removable disk +[ 3.598390] sd 4:0:0:1: [sdd] Attached SCSI removable disk +[ 3.605773] sd 4:0:0:3: [sdf] Attached SCSI removable disk +[ 5.453924] kjournald starting. Commit interval 5 seconds +[ 5.453956] EXT3-fs (sda6): recovery complete +[ 5.454289] EXT3-fs (sda6): mounted filesystem with ordered data mode +[ 31.336355] udev: starting version 151 +[ 31.579370] intel_rng: FWH not detected +[ 31.591578] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 31.672252] Linux agpgart interface v0.103 +[ 31.838249] Adding 4000148k swap on /dev/sda7. Priority:-1 extents:1 across:4000148k +[ 31.952229] Bluetooth: Core ver 2.15 +[ 31.952313] NET: Registered protocol family 31 +[ 31.952317] Bluetooth: HCI device and connection manager initialized +[ 31.952322] Bluetooth: HCI socket layer initialized +[ 31.964339] agpgart-intel 0000:00:00.0: Intel i875 Chipset +[ 31.979112] agpgart-intel 0000:00:00.0: AGP aperture is 128M @ 0xf0000000 +[ 32.017353] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 32.018654] usbcore: registered new interface driver btusb +[ 32.049535] lp: driver loaded but no devices found +[ 32.080276] type=1400 audit(1287437775.671:2): operation="profile_load" pid=717 name="/sbin/dhclient3" pid=717 comm="apparmor_parser" +[ 32.081033] type=1400 audit(1287437775.671:3): operation="profile_load" pid=717 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=717 comm="apparmor_parser" +[ 32.081476] type=1400 audit(1287437775.671:4): operation="profile_load" pid=717 name="/usr/lib/connman/scripts/dhclient-script" pid=717 comm="apparmor_parser" +[ 32.195514] Adding 1048572k swap on /dev/mapper/vg0-swap0. Priority:-2 extents:1 across:1048572k +[ 32.201545] [drm] Initialized drm 1.1.0 20060810 +[ 32.256893] type=1400 audit(1287437775.847:5): operation="profile_load" pid=725 name="/usr/sbin/ntpd" pid=725 comm="apparmor_parser" +[ 32.482376] Linux video capture interface: v2.00 +[ 32.548838] EDAC MC: Ver: 2.1.0 Jul 7 2010 +[ 32.609535] RPC: Registered udp transport module. +[ 32.609541] RPC: Registered tcp transport module. +[ 32.609545] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 32.766995] EDAC i82875p: i82875p init one +[ 32.768731] EDAC MC0: Giving out device to 'i82875p_edac' 'i82875p': DEV 0000:00:00.0 +[ 32.769944] EDAC PCI0: Giving out device to module 'i82875p_edac' controller 'EDAC PCI controller': DEV '0000:00:00.0' (POLLED) +[ 32.798130] uvcvideo: Found UVC 1.00 device (046d:0994) +[ 32.813354] input: UVC Camera (046d:0994) as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4.1/1-4.1:1.0/input/input4 +[ 32.813462] usbcore: registered new interface driver uvcvideo +[ 32.813466] USB Video Class driver (v0.1.0) +[ 33.047539] [drm] radeon defaulting to kernel modesetting. +[ 33.047544] [drm] radeon kernel modesetting enabled. +[ 33.047611] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 33.049541] [drm] initializing kernel modesetting (RV630 0x1002:0x9586). +[ 33.049676] [drm] register mmio base: 0xF9000000 +[ 33.049679] [drm] register mmio size: 65536 +[ 33.049800] modprobe:592 freeing invalid memtype e0000000-e0040000 +[ 33.051755] ATOM BIOS: 113 +[ 33.051768] [drm] Clocks initialized ! +[ 33.051810] agpgart-intel 0000:00:00.0: AGP 3.0 bridge +[ 33.051834] agpgart-intel 0000:00:00.0: putting AGP V3 device into 4x mode +[ 33.051883] radeon 0000:01:00.0: putting AGP V3 device into 4x mode +[ 33.051939] radeon 0000:01:00.0: GTT: 128M 0xF0000000 - 0xF7FFFFFF +[ 33.051946] radeon 0000:01:00.0: VRAM: 512M 0xD0000000 - 0xEFFFFFFF (512M used) +[ 33.052316] [drm] Detected VRAM RAM=512M, BAR=256M +[ 33.052322] [drm] RAM width 128bits DDR +[ 33.052415] [TTM] Zone kernel: Available graphics memory: 426510 kiB. +[ 33.052418] [TTM] Zone highmem: Available graphics memory: 1806834 kiB. +[ 33.052421] [TTM] Initializing pool allocator. +[ 33.052443] [drm] radeon: 512M of VRAM memory ready +[ 33.052446] [drm] radeon: 128M of GTT memory ready. +[ 33.052497] [drm] radeon: irq initialized. +[ 33.052501] [drm] GART: num cpu pages 32768, num gpu pages 32768 +[ 33.052687] [drm] Loading RV630 Microcode +[ 33.437316] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 33.437466] IP: [] __mutex_lock_slowpath+0x9a/0x140 +[ 33.437587] *pde = df469067 +[ 33.437650] Oops: 0002 [#1] SMP +[ 33.437727] last sysfs file: /sys/devices/platform/radeon_cp.0/firmware/radeon_cp.0/loading +[ 33.437888] Modules linked in: snd_seq_midi_event radeon(+) snd_seq sbp2 uvcvideo i82875p_edac snd_timer snd_seq_device ieee1394 sunrpc edac_core videodev ttm v4l1_compat drm_kms_helper snd drm i2c_algo_bit snd_page_alloc btusb soundcore intel_agp lp bluetooth agpgart parport shpchp serio_raw hid_logitech ff_memless usbhid hid usb_storage firewire_ohci e1000 firewire_core crc_itu_t +[ 33.438742] +[ 33.438775] Pid: 353, comm: plymouthd Not tainted 2.6.35-7-generic #11-Ubuntu Canterwood/ +[ 33.438934] EIP: 0060:[] EFLAGS: 00010246 CPU: 0 +[ 33.439041] EIP is at __mutex_lock_slowpath+0x9a/0x140 +[ 33.439141] EAX: 00000000 EBX: f2796e90 ECX: f2796e98 EDX: f6a71ec0 +[ 33.439262] ESI: f2796e94 EDI: f2796e90 EBP: f6a71ed8 ESP: f6a71eb4 +[ 33.439384] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 33.439488] Process plymouthd (pid: 353, ti=f6a70000 task=c106cc20 task.ti=f6a70000) +[ 33.439637] Stack: +[ 33.439676] f6a71ec4 c106cc20 f2796e98 f2796e98 00000000 f2796c00 f2796e90 f6b1fb00 +[ 33.439862] <0> f2796e90 f6a71ee8 c05cb095 f6b1fb00 f6b1fb00 f6a71efc f87e7dc3 f6b1fb00 +[ 33.440063] <0> f6b1fb60 f2796c00 f6a71f44 f87df337 00000001 f87efe25 f87ef220 f87f1590 +[ 33.440076] Call Trace: +[ 33.440076] [] ? mutex_lock+0x25/0x40 +[ 33.440076] [] ? drm_fb_release+0x23/0x70 [drm] +[ 33.440076] [] ? drm_release+0x3e7/0x4c0 [drm] +[ 33.440076] [] ? __fput+0xdf/0x1f0 +[ 33.440076] [] ? fput+0x1d/0x30 +[ 33.440076] [] ? filp_close+0x4c/0x80 +[ 33.440076] [] ? sys_close+0x75/0xc0 +[ 33.440076] [] ? syscall_call+0x7/0xb +[ 33.440076] Code: 83 79 18 63 7f b3 8d 76 00 8d 73 04 89 f0 e8 5e 11 00 00 8d 53 08 89 55 e4 8d 55 e8 8b 43 0c 89 53 0c 8b 4d e4 89 45 ec 89 4d e8 <89> 10 8b 45 e0 ba ff ff ff ff 89 45 f0 89 d0 87 03 83 f8 01 74 +[ 33.440076] EIP: [] __mutex_lock_slowpath+0x9a/0x140 SS:ESP 0068:f6a71eb4 +[ 33.440076] CR2: 0000000000000000 +[ 33.442242] ---[ end trace 53be06f38f812f8c ]--- +[ 33.534989] [drm] ring test succeeded in 1 usecs +[ 33.535510] [drm] radeon: ib pool ready. +[ 33.535694] [drm] ib test succeeded in 0 usecs +[ 33.535785] [drm] Enabling audio support +[ 33.535870] failed to evaluate ATIF got AE_BAD_PARAMETER +[ 33.535979] radeon 0000:01:00.0: Error during ACPI methods call +[ 33.536528] [drm] Default TV standard: NTSC +[ 33.536623] [drm] Default TV standard: NTSC +[ 33.536986] [drm] Default TV standard: NTSC +[ 33.537582] [drm] Radeon Display Connectors +[ 33.537672] [drm] Connector 0: +[ 33.537735] [drm] DVI-I +[ 33.537790] [drm] HPD1 +[ 33.537845] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 33.537994] [drm] Encoders: +[ 33.538056] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +[ 33.538151] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +[ 33.538247] [drm] Connector 1: +[ 33.538309] [drm] DIN +[ 33.538359] [drm] Encoders: +[ 33.538418] [drm] TV1: INTERNAL_KLDSCP_DAC2 +[ 33.538510] [drm] Connector 2: +[ 33.538573] [drm] DVI-I +[ 33.538627] [drm] HPD2 +[ 33.538681] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 33.538830] [drm] Encoders: +[ 33.538890] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 33.544571] [drm] DFP2: INTERNAL_LVTM1 +[ 33.659456] [drm] Internal thermal controller with fan control +[ 33.665086] [drm] radeon: power management initialized +[ 34.264177] [drm] fb mappable at 0xE0081000 +[ 34.269831] [drm] vram apper at 0xE0000000 +[ 34.275368] [drm] size 8294400 +[ 34.280589] [drm] fb depth is 24 +[ 34.285599] [drm] pitch is 7680 +[ 34.290454] checking generic (e0000000 1000000) vs hw (e0000000 20000000) +[ 34.295384] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +[ 34.300401] Console: switching to colour dummy device 80x25 +[ 34.416407] usbcore: registered new interface driver snd-usb-audio +[ 34.477816] ENS1371 0000:03:0e.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 35.916168] Console: switching to colour frame buffer device 160x64 +[ 35.948830] fb0: radeondrmfb frame buffer device +[ 35.948836] drm: registered panic notifier +[ 35.948844] Slow work thread pool: Starting up +[ 35.949100] Slow work thread pool: Ready +[ 35.949127] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:00.0 on minor 0 +[ 35.949862] HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 35.984072] vga16fb: initializing +[ 35.984211] vga16fb: mapped to 0xc00a0000 +[ 35.984750] fb1: VGA16 VGA frame buffer device +[ 35.985397] EXT3-fs (sda6): using internal journal +[ 36.292394] EXT3-fs: barriers not enabled +[ 36.292729] kjournald starting. Commit interval 5 seconds +[ 36.293023] EXT3-fs (sda2): using internal journal +[ 36.293230] EXT3-fs (sda2): mounted filesystem with ordered data mode +[ 39.807764] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) +[ 44.395518] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null) +[ 46.967894] EXT3-fs: barriers not enabled +[ 47.028483] kjournald starting. Commit interval 5 seconds +[ 47.037283] EXT3-fs (dm-1): using internal journal +[ 47.045546] EXT3-fs (dm-1): mounted filesystem with ordered data mode +[ 47.223769] FS-Cache: Loaded +[ 47.370597] type=1400 audit(1287437790.959:6): operation="profile_load" pid=1222 name="/usr/share/gdm/guest-session/Xsession" pid=1222 comm="apparmor_parser" +[ 47.376643] type=1400 audit(1287437790.963:7): operation="profile_replace" pid=1223 name="/sbin/dhclient3" pid=1223 comm="apparmor_parser" +[ 47.377566] type=1400 audit(1287437790.963:8): operation="profile_replace" pid=1223 name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1223 comm="apparmor_parser" +[ 47.378039] type=1400 audit(1287437790.963:9): operation="profile_replace" pid=1223 name="/usr/lib/connman/scripts/dhclient-script" pid=1223 comm="apparmor_parser" +[ 47.391207] type=1400 audit(1287437790.963:10): operation="profile_load" pid=1224 name="/usr/bin/evince" pid=1224 comm="apparmor_parser" +[ 47.402006] type=1400 audit(1287437790.983:11): operation="profile_load" pid=1224 name="/usr/bin/evince-previewer" pid=1224 comm="apparmor_parser" +[ 47.408684] type=1400 audit(1287437790.983:12): operation="profile_load" pid=1224 name="/usr/bin/evince-thumbnailer" pid=1224 comm="apparmor_parser" +[ 47.523213] FS-Cache: Netfs 'nfs' registered for caching +[ 47.588387] type=1400 audit(1287437791.179:13): operation="profile_load" pid=1226 name="/usr/lib/libvirt/virt-aa-helper" pid=1226 comm="apparmor_parser" +[ 47.602703] type=1400 audit(1287437791.191:14): operation="profile_load" pid=1242 name="/usr/lib/cups/backend/cups-pdf" pid=1242 comm="apparmor_parser" +[ 47.614847] type=1400 audit(1287437791.203:15): operation="profile_load" pid=1242 name="/usr/sbin/cupsd" pid=1242 comm="apparmor_parser" +[ 47.730774] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 47.781243] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 47.814996] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX +[ 47.855271] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready + +Bug: 665424 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-22-generic (buildd@allspice) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu4) ) #33-Ubuntu SMP Sun Sep 19 20:32:27 UTC 2010 (Ubuntu 2.6.35-22.33-generic 2.6.35.4) +[ 0.000000] Command line: file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d000 (usable) +[ 0.000000] BIOS-e820: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bb63f000 (usable) +[ 0.000000] BIOS-e820: 00000000bb63f000 - 00000000bb6bf000 (reserved) +[ 0.000000] BIOS-e820: 00000000bb6bf000 - 00000000bb7bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bb7bf000 - 00000000bb7ff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bb7ff000 - 00000000bb800000 (usable) +[ 0.000000] BIOS-e820: 00000000bb800000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe80000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS! +[ 0.000000] DMI 2.6 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x138000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-combining +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 0FFE80000 mask FFFF80000 write-protect +[ 0.000000] 2 base 0FFF00000 mask FFFF00000 write-protect +[ 0.000000] 3 base 080000000 mask FC0000000 write-back +[ 0.000000] 4 base 0BC000000 mask FFC000000 uncachable +[ 0.000000] 5 base 0BB800000 mask FFF800000 uncachable +[ 0.000000] 6 base 100000000 mask FC0000000 write-back +[ 0.000000] 7 base 138000000 mask FF8000000 uncachable +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xbb800 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009d000 (usable) +[ 0.000000] modified: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bb63f000 (usable) +[ 0.000000] modified: 00000000bb63f000 - 00000000bb6bf000 (reserved) +[ 0.000000] modified: 00000000bb6bf000 - 00000000bb7bf000 (ACPI NVS) +[ 0.000000] modified: 00000000bb7bf000 - 00000000bb7ff000 (ACPI data) +[ 0.000000] modified: 00000000bb7ff000 - 00000000bb800000 (usable) +[ 0.000000] modified: 00000000bb800000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffe80000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bb800000 +[ 0.000000] 0000000000 - 00bb800000 page 2M +[ 0.000000] kernel direct mapping tables up to bb800000 @ 16000-1a000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000138000000 +[ 0.000000] 0100000000 - 0138000000 page 2M +[ 0.000000] kernel direct mapping tables up to 138000000 @ 18000-1e000 +[ 0.000000] RAMDISK: 7f4c1000 - 80000000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 TOSQCI) +[ 0.000000] ACPI: XSDT 00000000bb7fe120 00074 (v01 TOSQCI TOSQCI00 00000001 01000013) +[ 0.000000] ACPI: FACP 00000000bb7fc000 000F4 (v04 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT 00000000bb7ed000 0BFF8 (v02 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS 00000000bb76e000 00040 +[ 0.000000] ACPI: ASF! 00000000bb7fd000 000A5 (v32 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: HPET 00000000bb7fb000 00038 (v01 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: APIC 00000000bb7fa000 0008C (v02 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG 00000000bb7f9000 0003C (v01 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC 00000000bb7ec000 00176 (v01 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: BOOT 00000000bb7e8000 00028 (v01 TOSQCI TOSQCI00 00000001 MSFT 01000013) +[ 0.000000] ACPI: ASPT 00000000bb7e5000 00034 (v04 INTEL Calpella 00000001 MSFT 01000013) +[ 0.000000] ACPI: WDAT 00000000bb7e4000 00224 (v01 INTEL Calpella 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 00000000bb7e3000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000138000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000138000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801039fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00138000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x000bb63f +[ 0.000000] 0: 0x000bb7ff -> 0x000bb800 +[ 0.000000] 0: 0x00100000 -> 0x00138000 +[ 0.000000] On node 0 totalpages: 996813 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3925 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 749176 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3136 pages used for memmap +[ 0.000000] Normal zone: 226240 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [19000 - 197ff] +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000bb63f000 - 00000000bb6bf000 +[ 0.000000] PM: Registered nosave memory: 00000000bb6bf000 - 00000000bb7bf000 +[ 0.000000] PM: Registered nosave memory: 00000000bb7bf000 - 00000000bb7ff000 +[ 0.000000] PM: Registered nosave memory: 00000000bb800000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 +[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000feb00000 +[ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000 +[ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000 +[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000 +[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000 +[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1b000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1b000 - 00000000fed20000 +[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe80000 +[ 0.000000] PM: Registered nosave memory: 00000000ffe80000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91520 r8192 d23168 u262144 +[ 0.000000] early_res array is doubled to 128 at [19800 - 1a7ff] +[ 0.000000] pcpu-alloc: s91520 r8192 d23168 u262144 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 979341 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (65 early reservations) +[ 0.000000] #1 [0001000000 - 0001d17114] TEXT DATA BSS +[ 0.000000] #2 [007f4c1000 - 0080000000] RAMDISK +[ 0.000000] #3 [000009d000 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d18000 - 0001d1827a] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000018000] PGTABLE +[ 0.000000] #8 [0000018000 - 0000019000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d18280 - 0001d19280] BOOTMEM +[ 0.000000] #11 [0001d17140 - 0001d17428] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103a00000] MEMMAP 0 +[ 0.000000] #15 [0001d17440 - 0001d175c0] BOOTMEM +[ 0.000000] #16 [0001d19280 - 0001d31280] BOOTMEM +[ 0.000000] #17 [0001d31280 - 0001d37280] BOOTMEM +[ 0.000000] #18 [0001d38000 - 0001d39000] BOOTMEM +[ 0.000000] #19 [0001d175c0 - 0001d17601] BOOTMEM +[ 0.000000] #20 [0001d17640 - 0001d17683] BOOTMEM +[ 0.000000] #21 [0001d176c0 - 0001d17ae8] BOOTMEM +[ 0.000000] #22 [0001d17b00 - 0001d17b68] BOOTMEM +[ 0.000000] #23 [0001d17b80 - 0001d17be8] BOOTMEM +[ 0.000000] #24 [0001d17c00 - 0001d17c68] BOOTMEM +[ 0.000000] #25 [0001d17c80 - 0001d17ce8] BOOTMEM +[ 0.000000] #26 [0001d17d00 - 0001d17d68] BOOTMEM +[ 0.000000] #27 [0001d17d80 - 0001d17de8] BOOTMEM +[ 0.000000] #28 [0001d17e00 - 0001d17e68] BOOTMEM +[ 0.000000] #29 [0001d17e80 - 0001d17ee8] BOOTMEM +[ 0.000000] #30 [0001d17f00 - 0001d17f68] BOOTMEM +[ 0.000000] #31 [0001d17f80 - 0001d17fe8] BOOTMEM +[ 0.000000] #32 [0001d37280 - 0001d372e8] BOOTMEM +[ 0.000000] #33 [0001d37300 - 0001d37368] BOOTMEM +[ 0.000000] #34 [0001d37380 - 0001d373e8] BOOTMEM +[ 0.000000] #35 [0001d37400 - 0001d37468] BOOTMEM +[ 0.000000] #36 [0001d37480 - 0001d374e8] BOOTMEM +[ 0.000000] #37 [0001d37500 - 0001d37568] BOOTMEM +[ 0.000000] #38 [0001d37580 - 0001d375e8] BOOTMEM +[ 0.000000] #39 [0001d37600 - 0001d37668] BOOTMEM +[ 0.000000] #40 [0001d37680 - 0001d376a0] BOOTMEM +[ 0.000000] #41 [0001d376c0 - 0001d376e0] BOOTMEM +[ 0.000000] #42 [0001d37700 - 0001d37720] BOOTMEM +[ 0.000000] #43 [0001d37740 - 0001d377a4] BOOTMEM +[ 0.000000] #44 [0001d377c0 - 0001d37824] BOOTMEM +[ 0.000000] #45 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #46 [0001e40000 - 0001e5e000] BOOTMEM +[ 0.000000] #47 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #48 [0001ec0000 - 0001ede000] BOOTMEM +[ 0.000000] #49 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #50 [0001f40000 - 0001f5e000] BOOTMEM +[ 0.000000] #51 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #52 [0001fc0000 - 0001fde000] BOOTMEM +[ 0.000000] #53 [0001d37840 - 0001d37848] BOOTMEM +[ 0.000000] #54 [0001d37880 - 0001d37888] BOOTMEM +[ 0.000000] #55 [0001d378c0 - 0001d378e0] BOOTMEM +[ 0.000000] #56 [0001d37900 - 0001d37940] BOOTMEM +[ 0.000000] #57 [0001d37940 - 0001d37a60] BOOTMEM +[ 0.000000] #58 [0001d37a80 - 0001d37ac8] BOOTMEM +[ 0.000000] #59 [0001d37b00 - 0001d37b48] BOOTMEM +[ 0.000000] #60 [0001d39000 - 0001d41000] BOOTMEM +[ 0.000000] #61 [0001fde000 - 0005fde000] BOOTMEM +[ 0.000000] #62 [0001d41000 - 0001d61000] BOOTMEM +[ 0.000000] #63 [0001d61000 - 0001da1000] BOOTMEM +[ 0.000000] #64 [000001a800 - 0000022800] BOOTMEM +[ 0.000000] Memory: 3837840k/5111808k available (5708k kernel code, 1124556k absent, 149412k reserved, 5382k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:744 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 40632320 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.010000] Detected 1994.914 MHz processor. +[ 0.000009] Calibrating delay loop (skipped), value calculated using timer frequency.. 3989.82 BogoMIPS (lpj=19949140) +[ 0.000014] pid_max: default: 32768 minimum: 301 +[ 0.000037] Security Framework initialized +[ 0.000055] AppArmor: AppArmor initialized +[ 0.000056] Yama: becoming mindful. +[ 0.000520] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.001616] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.002041] Mount-cache hash table entries: 256 +[ 0.002163] Initializing cgroup subsys ns +[ 0.002168] Initializing cgroup subsys cpuacct +[ 0.002172] Initializing cgroup subsys memory +[ 0.002180] Initializing cgroup subsys devices +[ 0.002182] Initializing cgroup subsys freezer +[ 0.002185] Initializing cgroup subsys net_cls +[ 0.002209] CPU: Physical Processor ID: 0 +[ 0.002210] CPU: Processor Core ID: 0 +[ 0.002216] mce: CPU supports 9 MCE banks +[ 0.002227] CPU0: Thermal monitoring handled by SMI +[ 0.002235] using mwait in idle threads. +[ 0.002237] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.002246] ... version: 3 +[ 0.002247] ... bit width: 48 +[ 0.002249] ... generic registers: 4 +[ 0.002251] ... value mask: 0000ffffffffffff +[ 0.002252] ... max period: 000000007fffffff +[ 0.002254] ... fixed-purpose events: 3 +[ 0.002255] ... event mask: 000000070000000f +[ 0.004707] ACPI: Core revision 20100428 +[ 0.047035] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.047040] ftrace: allocating 22680 entries in 89 pages +[ 0.055631] Setting APIC routing to flat +[ 0.056044] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.155994] CPU0: Intel(R) Pentium(R) CPU P6100 @ 2.00GHz stepping 05 +[ 0.273195] Booting Node 0, Processors #1 +[ 0.433002] CPU1: Thermal monitoring handled by SMI +[ 0.453047] Brought up 2 CPUs +[ 0.453050] Total of 2 processors activated (7979.81 BogoMIPS). +[ 0.453723] devtmpfs: initialized +[ 0.454849] regulator: core version 0.5 +[ 0.454880] Time: 6:27:32 Date: 10/22/10 +[ 0.454919] NET: Registered protocol family 16 +[ 0.454995] Trying to unpack rootfs image as initramfs... +[ 0.455044] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 0.455047] ACPI: bus type pci registered +[ 0.455129] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.455133] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.496811] PCI: Using configuration type 1 for base access +[ 1.452641] bio: create slab at 0 +[ 1.455465] ACPI: EC: Look up EC in DSDT +[ 1.458442] ACPI: Executed 1 blocks of module-level executable AML code +[ 1.464327] ACPI: BIOS _OSI(Linux) query ignored +[ 1.467249] ACPI: SSDT 00000000bb691c18 0037E (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 1.467956] ACPI: Dynamic OEM Table Load: +[ 1.467959] ACPI: SSDT (null) 0037E (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 1.468466] ACPI: SSDT 00000000bb68f018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 1.469177] ACPI: Dynamic OEM Table Load: +[ 1.469180] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 1.469945] ACPI: SSDT 00000000bb690a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 1.470739] ACPI: Dynamic OEM Table Load: +[ 1.470742] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 1.471027] ACPI: SSDT 00000000bb68ed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 1.471772] ACPI: Dynamic OEM Table Load: +[ 1.471775] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 1.472160] ACPI: Interpreter enabled +[ 1.472163] ACPI: (supports S0 S3 S4 S5) +[ 1.472203] ACPI: Using IOAPIC for interrupt routing +[ 1.484998] ACPI: EC: GPE = 0x1e, I/O: command/status = 0x66, data = 0x62 +[ 1.485782] ACPI: ACPI Dock Station Driver: 1 docks/bays found +[ 1.485786] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 1.486885] \_SB_.PCI0:_OSC invalid UUID +[ 1.486887] _OSC request data:1 8 1f +[ 1.486891] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 1.488510] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 1.488513] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 1.488516] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 1.488519] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfeafffff] +[ 1.488576] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit] +[ 1.488582] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 1.488586] pci 0000:00:02.0: reg 20: [io 0x5050-0x5057] +[ 1.488674] pci 0000:00:16.0: reg 10: [mem 0xd6406100-0xd640610f 64bit] +[ 1.488735] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 1.488741] pci 0000:00:16.0: PME# disabled +[ 1.488803] pci 0000:00:1a.0: reg 10: [mem 0xd6405c00-0xd6405fff] +[ 1.488871] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 1.488876] pci 0000:00:1a.0: PME# disabled +[ 1.488922] pci 0000:00:1b.0: reg 10: [mem 0xd6400000-0xd6403fff 64bit] +[ 1.488983] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 1.488988] pci 0000:00:1b.0: PME# disabled +[ 1.489084] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 1.489089] pci 0000:00:1c.0: PME# disabled +[ 1.489190] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 1.489195] pci 0000:00:1c.4: PME# disabled +[ 1.489291] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 1.489296] pci 0000:00:1c.5: PME# disabled +[ 1.489354] pci 0000:00:1d.0: reg 10: [mem 0xd6405800-0xd6405bff] +[ 1.489420] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 1.489425] pci 0000:00:1d.0: PME# disabled +[ 1.489632] pci 0000:00:1f.2: reg 10: [io 0x5048-0x504f] +[ 1.489639] pci 0000:00:1f.2: reg 14: [io 0x505c-0x505f] +[ 1.489647] pci 0000:00:1f.2: reg 18: [io 0x5040-0x5047] +[ 1.489654] pci 0000:00:1f.2: reg 1c: [io 0x5058-0x505b] +[ 1.489662] pci 0000:00:1f.2: reg 20: [io 0x5020-0x503f] +[ 1.489670] pci 0000:00:1f.2: reg 24: [mem 0xd6405000-0xd64057ff] +[ 1.489715] pci 0000:00:1f.2: PME# supported from D3hot +[ 1.489720] pci 0000:00:1f.2: PME# disabled +[ 1.489759] pci 0000:00:1f.3: reg 10: [mem 0xd6406000-0xd64060ff 64bit] +[ 1.489778] pci 0000:00:1f.3: reg 20: [io 0x5000-0x501f] +[ 1.489841] pci 0000:00:1f.6: reg 10: [mem 0xd6404000-0xd6404fff 64bit] +[ 1.489964] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 1.489970] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 1.489975] pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff] +[ 1.489983] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 1.490088] pci 0000:02:00.0: reg 10: [io 0x3000-0x30ff] +[ 1.490117] pci 0000:02:00.0: reg 18: [mem 0xd4400000-0xd4403fff 64bit] +[ 1.490197] pci 0000:02:00.0: supports D1 D2 +[ 1.490199] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.490207] pci 0000:02:00.0: PME# disabled +[ 1.490242] pci 0000:00:1c.4: PCI bridge to [bus 02-02] +[ 1.490247] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 1.490252] pci 0000:00:1c.4: bridge window [mem 0xd4400000-0xd53fffff] +[ 1.490259] pci 0000:00:1c.4: bridge window [mem 0xd1400000-0xd23fffff 64bit pref] +[ 1.490362] pci 0000:03:00.0: reg 10: [mem 0xd3400000-0xd343ffff 64bit] +[ 1.490372] pci 0000:03:00.0: reg 18: [io 0x2000-0x207f] +[ 1.490448] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.490454] pci 0000:03:00.0: PME# disabled +[ 1.490484] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 1.490487] pci 0000:00:1c.5: PCI bridge to [bus 03-03] +[ 1.490492] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff] +[ 1.490497] pci 0000:00:1c.5: bridge window [mem 0xd3400000-0xd43fffff] +[ 1.490504] pci 0000:00:1c.5: bridge window [mem 0xd2400000-0xd33fffff 64bit pref] +[ 1.490581] pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode) +[ 1.490586] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.490592] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 1.490600] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.490602] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 1.490605] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 1.490607] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 1.490609] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode) +[ 1.490643] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 1.490911] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 1.491151] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 1.491309] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT] +[ 1.491670] \_SB_.PCI0:_OSC invalid UUID +[ 1.491672] _OSC request data:1 19 1f +[ 1.514447] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 1.515094] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 1.515275] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 1.515453] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 1.515632] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 1.515810] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 1.515988] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 1.516166] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 1.516345] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 1.516427] HEST: Table is not found! +[ 1.516502] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 1.516513] vgaarb: loaded +[ 1.516643] SCSI subsystem initialized +[ 1.516717] libata version 3.00 loaded. +[ 1.516766] usbcore: registered new interface driver usbfs +[ 1.516776] usbcore: registered new interface driver hub +[ 1.516797] usbcore: registered new device driver usb +[ 1.517009] ACPI: WMI: Mapper loaded +[ 1.517011] PCI: Using ACPI for IRQ routing +[ 1.517013] PCI: pci_cache_line_size set to 64 bytes +[ 1.517107] reserve RAM buffer: 000000000009d000 - 000000000009ffff +[ 1.517110] reserve RAM buffer: 00000000bb63f000 - 00000000bbffffff +[ 1.517112] reserve RAM buffer: 00000000bb800000 - 00000000bbffffff +[ 1.517201] NetLabel: Initializing +[ 1.517203] NetLabel: domain hash size = 128 +[ 1.517204] NetLabel: protocols = UNLABELED CIPSOv4 +[ 1.517221] NetLabel: unlabeled traffic allowed by default +[ 1.517258] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 1.517265] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 1.519284] Switching to clocksource tsc +[ 2.454034] AppArmor: AppArmor Filesystem Enabled +[ 2.454053] pnp: PnP ACPI init +[ 2.454076] ACPI: bus type pnp registered +[ 2.458027] pnp: PnP ACPI: found 11 devices +[ 2.458030] ACPI: ACPI bus type pnp unregistered +[ 2.458049] system 00:05: [io 0x0680-0x069f] has been reserved +[ 2.458052] system 00:05: [io 0x0800-0x080f] has been reserved +[ 2.458054] system 00:05: [io 0x0810-0x0813] has been reserved +[ 2.458057] system 00:05: [io 0xffff] has been reserved +[ 2.458060] system 00:05: [io 0x0400-0x047f] has been reserved +[ 2.458062] system 00:05: [io 0x0500-0x057f] has been reserved +[ 2.458065] system 00:05: [io 0x164e-0x164f] has been reserved +[ 2.458074] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 2.458076] system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved +[ 2.458079] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved +[ 2.458082] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved +[ 2.458086] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved +[ 2.458089] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 2.458091] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 2.458094] system 00:09: [mem 0xff000000-0xffffffff] could not be reserved +[ 2.458097] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 2.458099] system 00:09: [mem 0xd6500000-0xd6500fff] has been reserved +[ 2.458102] system 00:09: [mem 0xff808000-0xff8080ff] has been reserved +[ 2.463974] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 2.463981] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 2.463987] pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff] +[ 2.463993] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 2.464002] pci 0000:00:1c.4: PCI bridge to [bus 02-02] +[ 2.464005] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 2.464011] pci 0000:00:1c.4: bridge window [mem 0xd4400000-0xd53fffff] +[ 2.464017] pci 0000:00:1c.4: bridge window [mem 0xd1400000-0xd23fffff 64bit pref] +[ 2.464025] pci 0000:00:1c.5: PCI bridge to [bus 03-03] +[ 2.464029] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff] +[ 2.464035] pci 0000:00:1c.5: bridge window [mem 0xd3400000-0xd43fffff] +[ 2.464040] pci 0000:00:1c.5: bridge window [mem 0xd2400000-0xd33fffff 64bit pref] +[ 2.464049] pci 0000:00:1e.0: PCI bridge to [bus 04-04] +[ 2.464050] pci 0000:00:1e.0: bridge window [io disabled] +[ 2.464056] pci 0000:00:1e.0: bridge window [mem disabled] +[ 2.464061] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 2.464085] alloc irq_desc for 17 on node -1 +[ 2.464087] alloc kstat_irqs on node -1 +[ 2.464096] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.464102] pci 0000:00:1c.0: setting latency timer to 64 +[ 2.464114] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.464119] pci 0000:00:1c.4: setting latency timer to 64 +[ 2.464130] alloc irq_desc for 16 on node -1 +[ 2.464131] alloc kstat_irqs on node -1 +[ 2.464135] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 2.464140] pci 0000:00:1c.5: setting latency timer to 64 +[ 2.464149] pci 0000:00:1e.0: setting latency timer to 64 +[ 2.464154] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 2.464156] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 2.464159] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 2.464161] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff] +[ 2.464163] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff] +[ 2.464165] pci_bus 0000:01: resource 1 [mem 0xd5400000-0xd63fffff] +[ 2.464167] pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref] +[ 2.464169] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] +[ 2.464171] pci_bus 0000:02: resource 1 [mem 0xd4400000-0xd53fffff] +[ 2.464173] pci_bus 0000:02: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref] +[ 2.464176] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff] +[ 2.464178] pci_bus 0000:03: resource 1 [mem 0xd3400000-0xd43fffff] +[ 2.464180] pci_bus 0000:03: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref] +[ 2.464182] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7] +[ 2.464184] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff] +[ 2.464186] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff] +[ 2.464188] pci_bus 0000:04: resource 7 [mem 0xc0000000-0xfeafffff] +[ 2.464232] NET: Registered protocol family 2 +[ 2.464409] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 2.465593] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 2.467710] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 2.467963] TCP: Hash tables configured (established 524288 bind 65536) +[ 2.467965] TCP reno registered +[ 2.467978] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 2.468008] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 2.468136] NET: Registered protocol family 1 +[ 2.468153] pci 0000:00:02.0: Boot video device +[ 2.505744] PCI: CLS 64 bytes, default 64 +[ 2.505749] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 2.505752] Placing 64MB software IO TLB between ffff880001fde000 - ffff880005fde000 +[ 2.505754] software IO TLB at phys 0x1fde000 - 0x5fde000 +[ 2.505794] Simple Boot Flag at 0x44 set to 0x1 +[ 2.505982] Scanning for low memory corruption every 60 seconds +[ 2.506122] audit: initializing netlink socket (disabled) +[ 2.506135] type=2000 audit(1287728854.380:1): initialized +[ 2.522312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 2.523718] VFS: Disk quotas dquot_6.5.2 +[ 2.523776] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 2.524355] fuse init (API version 7.14) +[ 2.524439] msgmni has been set to 7495 +[ 2.524793] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 2.524796] io scheduler noop registered +[ 2.524797] io scheduler deadline registered +[ 2.524837] io scheduler cfq registered (default) +[ 2.524941] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 2.524990] alloc irq_desc for 40 on node -1 +[ 2.524991] alloc kstat_irqs on node -1 +[ 2.525006] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 2.525100] pcieport 0000:00:1c.4: setting latency timer to 64 +[ 2.525144] alloc irq_desc for 41 on node -1 +[ 2.525146] alloc kstat_irqs on node -1 +[ 2.525155] pcieport 0000:00:1c.4: irq 41 for MSI/MSI-X +[ 2.525243] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 2.525287] alloc irq_desc for 42 on node -1 +[ 2.525289] alloc kstat_irqs on node -1 +[ 2.525297] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X +[ 2.525394] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 2.525587] \_SB_.PCI0:_OSC invalid UUID +[ 2.525589] _OSC request data:1 0 1f +[ 2.525766] \_SB_.PCI0:_OSC invalid UUID +[ 2.525768] _OSC request data:1 0 1f +[ 2.525932] \_SB_.PCI0:_OSC invalid UUID +[ 2.525934] _OSC request data:1 0 1f +[ 2.526112] \_SB_.PCI0:_OSC invalid UUID +[ 2.526113] _OSC request data:1 0 1f +[ 2.526275] \_SB_.PCI0:_OSC invalid UUID +[ 2.526277] _OSC request data:1 0 1f +[ 2.526439] \_SB_.PCI0:_OSC invalid UUID +[ 2.526441] _OSC request data:1 0 1f +[ 2.526479] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 2.526551] intel_idle: MWAIT substates: 0x120 +[ 2.526553] intel_idle: v0.4 model 0x25 +[ 2.526554] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 2.526737] ACPI: AC Adapter [ACAD] (on-line) +[ 2.526805] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 2.526811] ACPI: Power Button [PWRB] +[ 2.526846] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 2.526972] ACPI: Lid Switch [LID] +[ 2.527015] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 2.527018] ACPI: Power Button [PWRF] +[ 2.528046] ACPI: acpi_idle yielding to intel_idle +[ 3.248714] ERST: Table is not found! +[ 3.249104] Linux agpgart interface v0.103 +[ 3.249130] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 3.250384] brd: module loaded +[ 3.250859] loop: module loaded +[ 3.251334] Fixed MDIO Bus: probed +[ 3.251362] PPP generic driver version 2.4.2 +[ 3.251398] tun: Universal TUN/TAP device driver, 1.6 +[ 3.251400] tun: (C) 1999-2004 Max Krasnyansky +[ 3.251473] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 3.251502] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.251546] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 3.251550] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 3.251586] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 3.251623] ehci_hcd 0000:00:1a.0: debug port 2 +[ 3.255566] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 3.255589] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd6405c00 +[ 3.259602] ACPI: Battery Slot [BAT1] (battery absent) +[ 3.262792] Freeing initrd memory: 11516k freed +[ 3.275288] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 3.275463] hub 1-0:1.0: USB hub found +[ 3.275469] hub 1-0:1.0: 3 ports detected +[ 3.275551] alloc irq_desc for 23 on node -1 +[ 3.275553] alloc kstat_irqs on node -1 +[ 3.275561] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 3.275588] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 3.275593] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 3.275632] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 3.275666] ehci_hcd 0000:00:1d.0: debug port 2 +[ 3.279603] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 3.279623] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd6405800 +[ 3.295239] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 3.295366] hub 2-0:1.0: USB hub found +[ 3.295369] hub 2-0:1.0: 3 ports detected +[ 3.295428] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 3.295442] uhci_hcd: USB Universal Host Controller Interface driver +[ 3.295561] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 3.297562] i8042.c: Detected active multiplexing controller, rev 1.1. +[ 3.299906] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 3.299912] serio: i8042 AUX0 port at 0x60,0x64 irq 12 +[ 3.299915] serio: i8042 AUX1 port at 0x60,0x64 irq 12 +[ 3.299917] serio: i8042 AUX2 port at 0x60,0x64 irq 12 +[ 3.299920] serio: i8042 AUX3 port at 0x60,0x64 irq 12 +[ 3.299989] mice: PS/2 mouse device common for all mice +[ 3.300105] rtc_cmos 00:06: RTC can wake from S4 +[ 3.300142] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0 +[ 3.300173] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs +[ 3.300265] device-mapper: uevent: version 1.0.3 +[ 3.300369] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 3.300435] device-mapper: multipath: version 1.1.1 loaded +[ 3.300438] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 3.300623] cpuidle: using governor ladder +[ 3.300685] cpuidle: using governor menu +[ 3.300961] TCP cubic registered +[ 3.301079] NET: Registered protocol family 10 +[ 3.301425] lo: Disabled Privacy Extensions +[ 3.301619] NET: Registered protocol family 17 +[ 3.302820] PM: Resume from disk failed. +[ 3.302831] registered taskstats version 1 +[ 3.303183] Magic number: 14:238:469 +[ 3.303314] rtc_cmos 00:06: setting system clock to 2010-10-22 06:27:35 UTC (1287728855) +[ 3.303317] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 3.303319] EDD information not available. +[ 3.303404] Freeing unused kernel memory: 908k freed +[ 3.303589] Write protecting the kernel read-only data: 10240k +[ 3.303806] Freeing unused kernel memory: 416k freed +[ 3.304068] Freeing unused kernel memory: 1644k freed +[ 3.326447] udev[81]: starting version 163 +[ 3.329173] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 3.413581] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset +[ 3.414449] agpgart-intel 0000:00:00.0: detected 32764K stolen memory +[ 3.486066] atl1c 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.486079] atl1c 0000:03:00.0: setting latency timer to 64 +[ 3.493601] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +[ 3.493630] ahci 0000:00:1f.2: version 3.0 +[ 3.493646] alloc irq_desc for 19 on node -1 +[ 3.493648] alloc kstat_irqs on node -1 +[ 3.493657] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 3.493694] alloc irq_desc for 43 on node -1 +[ 3.493696] alloc kstat_irqs on node -1 +[ 3.493706] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X +[ 3.493795] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode +[ 3.493799] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems sxs apst +[ 3.493804] ahci 0000:00:1f.2: setting latency timer to 64 +[ 3.513953] [drm] Initialized drm 1.1.0 20060810 +[ 3.554958] scsi0 : ahci +[ 3.555155] scsi1 : ahci +[ 3.555209] scsi2 : ahci +[ 3.555262] scsi3 : ahci +[ 3.555314] scsi4 : ahci +[ 3.555366] scsi5 : ahci +[ 3.555410] ata1: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405100 irq 43 +[ 3.555414] ata2: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405180 irq 43 +[ 3.555416] ata3: DUMMY +[ 3.555417] ata4: DUMMY +[ 3.555421] ata5: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405300 irq 43 +[ 3.555424] ata6: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405380 irq 43 +[ 3.555483] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 3.555487] i915 0000:00:02.0: setting latency timer to 64 +[ 3.610096] mtrr: no more MTRRs available +[ 3.610099] [drm] MTRR allocation failed. Graphics performance may suffer. +[ 3.610291] alloc irq_desc for 44 on node -1 +[ 3.610297] alloc kstat_irqs on node -1 +[ 3.610313] i915 0000:00:02.0: irq 44 for MSI/MSI-X +[ 3.610328] [drm] set up 31M of stolen space +[ 3.614451] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 3.666087] atl1c 0000:03:00.0: version 1.0.0.2-NAPI +[ 3.721975] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 3.765137] hub 1-1:1.0: USB hub found +[ 3.765281] hub 1-1:1.0: 6 ports detected +[ 3.884922] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 3.904922] ata6: SATA link down (SStatus 0 SControl 300) +[ 3.904972] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.905015] ata5: SATA link down (SStatus 0 SControl 300) +[ 3.905065] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 3.906123] ata1.00: ATA-8: Hitachi HTS545032B9A300, PB3OC64G, max UDMA/133 +[ 3.906126] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA +[ 3.906790] ata2.00: ATAPI: MATSHITADVD-RAM UJ890AS, 1.40, max UDMA/100 +[ 3.907385] ata1.00: configured for UDMA/133 +[ 3.909654] ata2.00: configured for UDMA/100 +[ 3.925022] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54503 PB3O PQ: 0 ANSI: 5 +[ 3.925148] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 3.925336] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 3.925382] sd 0:0:0:0: [sda] Write Protect is off +[ 3.925385] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 3.925404] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 3.925530] sda: +[ 3.928048] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ890AS 1.40 PQ: 0 ANSI: 5 +[ 3.930621] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 3.930625] Uniform CD-ROM driver Revision: 3.20 +[ 3.930720] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 3.930769] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 3.950760] sda1 sda2 < sda5 > +[ 3.986010] sd 0:0:0:0: [sda] Attached SCSI disk +[ 4.035475] hub 2-1:1.0: USB hub found +[ 4.035619] hub 2-1:1.0: 8 ports detected +[ 4.076394] Skipping EDID probe due to cached edid +[ 4.114987] usb 1-1.2: new low speed USB device using ehci_hcd and address 3 +[ 4.242086] usbcore: registered new interface driver hiddev +[ 4.244706] input: PS/2+USB Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4 +[ 4.244881] generic-usb 0003:04F3:0212.0001: input,hidraw0: USB HID v1.11 Mouse [PS/2+USB Mouse] on usb-0000:00:1a.0-1.2/input0 +[ 4.245001] usbcore: registered new interface driver usbhid +[ 4.245003] usbhid: USB HID core driver +[ 4.455426] Console: switching to colour frame buffer device 170x48 +[ 4.458763] fb0: inteldrmfb frame buffer device +[ 4.458764] drm: registered panic notifier +[ 4.458768] Slow work thread pool: Starting up +[ 4.458838] Slow work thread pool: Ready +[ 4.464112] acpi device:01: registered as cooling_device2 +[ 4.465064] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5 +[ 4.465103] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 4.465153] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 4.524156] usb 2-1.4: new high speed USB device using ehci_hcd and address 3 +[ 4.910636] Initializing USB Mass Storage driver... +[ 4.910734] scsi6 : usb-storage 2-1.4:1.0 +[ 4.910808] usbcore: registered new interface driver usb-storage +[ 4.910810] USB Mass Storage support registered. +[ 5.802487] Skipping EDID probe due to cached edid +[ 5.904745] Btrfs loaded +[ 5.906649] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS +[ 5.907458] sd 6:0:0:0: Attached scsi generic sg2 type 0 +[ 5.910717] xor: automatically using best checksumming function: generic_sse +[ 5.912619] sd 6:0:0:0: [sdb] Attached SCSI removable disk +[ 5.953041] generic_sse: 7571.600 MB/sec +[ 5.953043] xor: using function: generic_sse (7571.600 MB/sec) +[ 5.955764] device-mapper: dm-raid45: initialized v0.2594b +[ 6.161510] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 8.581823] ISO 9660 Extensions: Microsoft Joliet Level 3 +[ 8.677985] ISO 9660 Extensions: RRIP_1991A +[ 8.987512] aufs 2-standalone.tree-35-rcN-20100705 +[ 9.120509] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 86.748713] Adding 11287548k swap on /dev/sda5. Priority:-1 extents:1 across:11287548k +[ 89.100451] udev[1390]: starting version 163 +[ 95.234188] intel ips 0000:00:1f.6: No CPUID match found. +[ 95.234201] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +[ 95.234206] IP: [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +[ 95.234213] PGD 130ef4067 PUD 130ef3067 PMD 0 +[ 95.234217] Oops: 0000 [#1] SMP +[ 95.234220] last sysfs file: /sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4/name +[ 95.234224] CPU 1 +[ 95.234225] Modules linked in: intel_ips(+) serio_raw snd_page_alloc squashfs aufs nls_cp437 isofs dm_raid45 xor btrfs zlib_deflate crc32c libcrc32c usb_storage usbhid hid i915 drm_kms_helper drm atl1c ahci intel_agp i2c_algo_bit video output libahci +[ 95.234244] +[ 95.234248] Pid: 1463, comm: modprobe Not tainted 2.6.35-22-generic #33-Ubuntu Base Board Product Name/Satellite L655 +[ 95.234251] RIP: 0010:[] [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +[ 95.234256] RSP: 0018:ffff88012d92bc48 EFLAGS: 00010202 +[ 95.234258] RAX: 0000000000c800c8 RBX: 0000000000000000 RCX: 0000000000c800c8 +[ 95.234260] RDX: 0000000000000000 RSI: ffff88012d92bc64 RDI: 0000000000c800c8 +[ 95.234262] RBP: ffff88012d92bc88 R08: 0000000000000000 R09: 0000000000000000 +[ 95.234264] R10: 0000000000000000 R11: 0000000000000002 R12: 0000000000c800c8 +[ 95.234266] R13: ffff8801303a90c0 R14: ffff880131703090 R15: 00000000fffffff4 +[ 95.234269] FS: 00007ff77fdc8700(0000) GS:ffff880001e40000(0000) knlGS:0000000000000000 +[ 95.234271] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 95.234273] CR2: 0000000000000008 CR3: 000000012e690000 CR4: 00000000000006e0 +[ 95.234276] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 95.234278] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 95.234280] Process modprobe (pid: 1463, threadinfo ffff88012d92a000, task ffff880130ee16e0) +[ 95.234282] Stack: +[ 95.234284] ffff88012d92bc88 ffffffff81142fa4 ffff88012d92bc78 0000000031703000 +[ 95.234287] <0> ffff880131703000 ffff8801303a90c0 ffff880131703000 00000000fffffff4 +[ 95.234291] <0> ffff88012d92bcd8 ffffffffa012dfb1 ffff88012d92bcb8 ffff8801321edb90 +[ 95.234295] Call Trace: +[ 95.234302] [] ? kmem_cache_alloc_notrace+0xb4/0xd0 +[ 95.234306] [] ips_probe+0x71/0x710 [intel_ips] +[ 95.234312] [] local_pci_probe+0x17/0x20 +[ 95.234316] [] __pci_device_probe+0xe9/0xf0 +[ 95.234322] [] ? kobject_get+0x1a/0x30 +[ 95.234329] [] ? get_device+0x19/0x20 +[ 95.234332] [] pci_device_probe+0x3a/0x60 +[ 95.234336] [] really_probe+0x68/0x190 +[ 95.234339] [] driver_probe_device+0x45/0x70 +[ 95.234341] [] __driver_attach+0x9b/0xa0 +[ 95.234344] [] ? __driver_attach+0x0/0xa0 +[ 95.234347] [] bus_for_each_dev+0x68/0x90 +[ 95.234350] [] driver_attach+0x1e/0x20 +[ 95.234353] [] bus_add_driver+0xde/0x280 +[ 95.234355] [] driver_register+0x80/0x150 +[ 95.234361] [] ? notifier_call_chain+0x56/0x80 +[ 95.234365] [] __pci_register_driver+0x56/0xd0 +[ 95.234370] [] ? __blocking_notifier_call_chain+0x65/0x80 +[ 95.234374] [] ? ips_init+0x0/0x20 [intel_ips] +[ 95.234378] [] ips_init+0x1e/0x20 [intel_ips] +[ 95.234383] [] do_one_initcall+0x3c/0x1a0 +[ 95.234389] [] sys_init_module+0xbb/0x200 +[ 95.234395] [] system_call_fastpath+0x16/0x1b +[ 95.234397] Code: a0 48 c7 c7 88 ec ac 81 48 c7 c3 80 fa 12 a0 e8 c1 0c 19 e1 48 85 c0 74 44 bf ac 01 00 00 4c 89 e6 e8 3f 8e f0 e0 66 90 41 89 c4 <8b> 53 08 41 c1 e4 12 41 c1 ec 15 41 69 c4 e8 03 00 00 39 c2 0f +[ 95.234426] RIP [] ips_detect_cpu+0x76/0x1d0 [intel_ips] +[ 95.234430] RSP +[ 95.234431] CR2: 0000000000000008 +[ 95.234434] ---[ end trace abcb80a2a30d178c ]--- +[ 96.508060] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000 +[ 96.508069] synaptics: Toshiba Satellite L655 detected, limiting rate to 40pps. +[ 96.541849] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6 +[ 100.459933] alloc irq_desc for 45 on node -1 +[ 100.459938] alloc kstat_irqs on node -1 +[ 100.459956] atl1c 0000:03:00.0: irq 45 for MSI/MSI-X +[ 100.460112] atl1c 0000:03:00.0: atl1c: eth0 NIC Link is Up<100 Mbps Full Duplex> +[ 101.820064] atl1c 0000:03:00.0: atl1c: eth0 NIC Link is Down +[ 103.504869] atl1c 0000:03:00.0: atl1c: eth0 NIC Link is Up<100 Mbps Full Duplex> + +Bug: 668017 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-22-generic-pae (buildd@vernadsky) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #35-Ubuntu SMP Sat Oct 16 22:16:51 UTC 2010 (Ubuntu 2.6.35-22.35-generic-pae 2.6.35.4) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d000 (usable) +[ 0.000000] BIOS-e820: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000b363f000 (usable) +[ 0.000000] BIOS-e820: 00000000b363f000 - 00000000b36bf000 (reserved) +[ 0.000000] BIOS-e820: 00000000b36bf000 - 00000000b37bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000b37bf000 - 00000000b37ff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000b37ff000 - 00000000b3800000 (usable) +[ 0.000000] BIOS-e820: 00000000b3800000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.6 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x138000 max_arch_pfn = 0x1000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-combining +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect +[ 0.000000] 2 base 080000000 mask FC0000000 write-back +[ 0.000000] 3 base 0B8000000 mask FF8000000 uncachable +[ 0.000000] 4 base 0B4000000 mask FFC000000 uncachable +[ 0.000000] 5 base 0B3800000 mask FFF800000 uncachable +[ 0.000000] 6 base 100000000 mask FC0000000 write-back +[ 0.000000] 7 base 138000000 mask FF8000000 uncachable +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009d000 (usable) +[ 0.000000] modified: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000b363f000 (usable) +[ 0.000000] modified: 00000000b363f000 - 00000000b36bf000 (reserved) +[ 0.000000] modified: 00000000b36bf000 - 00000000b37bf000 (ACPI NVS) +[ 0.000000] modified: 00000000b37bf000 - 00000000b37ff000 (ACPI data) +[ 0.000000] modified: 00000000b37ff000 - 00000000b3800000 (usable) +[ 0.000000] modified: 00000000b3800000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] initial memory mapped : 0 - 00e00000 +[ 0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000 +[ 0.000000] 0000000000 - 0000200000 page 4k +[ 0.000000] 0000200000 - 0037a00000 page 2M +[ 0.000000] 0037a00000 - 0037bfe000 page 4k +[ 0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 375b3000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 00a02000 - 0143e964 +[ 0.000000] Move RAMDISK from 00000000375b3000 - 0000000037fef963 to 00a02000 - 0143e963 +[ 0.000000] ACPI: RSDP 000fe020 00024 (v02 Sony) +[ 0.000000] ACPI: XSDT b37fe120 00064 (v01 Sony VAIO 20100614 01000013) +[ 0.000000] ACPI: FACP b37fc000 000F4 (v04 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: DSDT b37ee000 0A95F (v02 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: FACS b376e000 00040 +[ 0.000000] ACPI: ASF! b37fd000 000A5 (v32 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: HPET b37fb000 00038 (v01 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: APIC b37fa000 0008C (v02 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: MCFG b37f9000 0003C (v01 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: SLIC b37ed000 00176 (v01 Sony VAIO 20100614 Sony 01000000) +[ 0.000000] ACPI: BOOT b37e9000 00028 (v01 Sony VAIO 20100614 MSFT 01000013) +[ 0.000000] ACPI: SSDT b37e6000 009F1 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 4100MB HIGHMEM available. +[ 0.000000] 891MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 37bfe000 +[ 0.000000] low ram: 0 - 37bfe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x00037bfe +[ 0.000000] HighMem 0x00037bfe -> 0x00138000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[5] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x000b363f +[ 0.000000] 0: 0x000b37ff -> 0x000b3800 +[ 0.000000] 0: 0x00100000 -> 0x00138000 +[ 0.000000] On node 0 totalpages: 964046 +[ 0.000000] free_area_init_node: node 0, pgdat c083ea40, node_mem_map c1440020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3950 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1752 pages used for memmap +[ 0.000000] Normal zone: 222502 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 8201 pages used for memmap +[ 0.000000] HighMem zone: 727609 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 15 pages/cpu @c3c00000 s39872 r0 d21568 u262144 +[ 0.000000] pcpu-alloc: s39872 r0 d21568 u262144 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] early_res array is doubled to 128 at [16800 - 177ff] +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 954061 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic-pae root=UUID=d8799835-d288-4c17-85a5-23ebde743a39 ro i8042.nopnp +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 25559020 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (60 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009f965c] TEXT DATA BSS +[ 0.000000] #3 [000009d000 - 0000100000] BIOS reserved +[ 0.000000] #4 [00009fa000 - 0000a011a0] BRK +[ 0.000000] #5 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #6 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #7 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #8 [0000a02000 - 000143f000] NEW RAMDISK +[ 0.000000] #9 [000143f000 - 0001440000] BOOTMEM +[ 0.000000] #10 [0001440000 - 0003b40000] BOOTMEM +[ 0.000000] #11 [0003b40000 - 0003b40004] BOOTMEM +[ 0.000000] #12 [0003b40040 - 0003b40100] BOOTMEM +[ 0.000000] #13 [0003b40100 - 0003b401a8] BOOTMEM +[ 0.000000] #14 [0003b401c0 - 0003b431c0] BOOTMEM +[ 0.000000] #15 [0003b431c0 - 0003b434c4] BOOTMEM +[ 0.000000] #16 [0003b43500 - 0003b4f500] BOOTMEM +[ 0.000000] #17 [0003b4f500 - 0003b4f52d] BOOTMEM +[ 0.000000] #18 [0003b4f540 - 0003b4f56f] BOOTMEM +[ 0.000000] #19 [0003b4f580 - 0003b4f874] BOOTMEM +[ 0.000000] #20 [0003b4f880 - 0003b4f8c0] BOOTMEM +[ 0.000000] #21 [0003b4f8c0 - 0003b4f900] BOOTMEM +[ 0.000000] #22 [0003b4f900 - 0003b4f940] BOOTMEM +[ 0.000000] #23 [0003b4f940 - 0003b4f980] BOOTMEM +[ 0.000000] #24 [0003b4f980 - 0003b4f9c0] BOOTMEM +[ 0.000000] #25 [0003b4f9c0 - 0003b4fa00] BOOTMEM +[ 0.000000] #26 [0003b4fa00 - 0003b4fa40] BOOTMEM +[ 0.000000] #27 [0003b4fa40 - 0003b4fa80] BOOTMEM +[ 0.000000] #28 [0003b4fa80 - 0003b4fac0] BOOTMEM +[ 0.000000] #29 [0003b4fac0 - 0003b4fb00] BOOTMEM +[ 0.000000] #30 [0003b4fb00 - 0003b4fb40] BOOTMEM +[ 0.000000] #31 [0003b4fb40 - 0003b4fb80] BOOTMEM +[ 0.000000] #32 [0003b4fb80 - 0003b4fbc0] BOOTMEM +[ 0.000000] #33 [0003b4fbc0 - 0003b4fc00] BOOTMEM +[ 0.000000] #34 [0003b4fc00 - 0003b4fc40] BOOTMEM +[ 0.000000] #35 [0003b4fc40 - 0003b4fc80] BOOTMEM +[ 0.000000] #36 [0003b4fc80 - 0003b4fcc0] BOOTMEM +[ 0.000000] #37 [0003b4fcc0 - 0003b4fd00] BOOTMEM +[ 0.000000] #38 [0003b4fd00 - 0003b4fd10] BOOTMEM +[ 0.000000] #39 [0003b4fd40 - 0003b4fd50] BOOTMEM +[ 0.000000] #40 [0003b4fd80 - 0003b4fded] BOOTMEM +[ 0.000000] #41 [0003b4fe00 - 0003b4fe6d] BOOTMEM +[ 0.000000] #42 [0003c00000 - 0003c0f000] BOOTMEM +[ 0.000000] #43 [0003c40000 - 0003c4f000] BOOTMEM +[ 0.000000] #44 [0003c80000 - 0003c8f000] BOOTMEM +[ 0.000000] #45 [0003cc0000 - 0003ccf000] BOOTMEM +[ 0.000000] #46 [0003d00000 - 0003d0f000] BOOTMEM +[ 0.000000] #47 [0003d40000 - 0003d4f000] BOOTMEM +[ 0.000000] #48 [0003d80000 - 0003d8f000] BOOTMEM +[ 0.000000] #49 [0003dc0000 - 0003dcf000] BOOTMEM +[ 0.000000] #50 [0003b51e80 - 0003b51e84] BOOTMEM +[ 0.000000] #51 [0003b51ec0 - 0003b51ec4] BOOTMEM +[ 0.000000] #52 [0003b51f00 - 0003b51f20] BOOTMEM +[ 0.000000] #53 [0003b51f40 - 0003b51f60] BOOTMEM +[ 0.000000] #54 [0003b51f80 - 0003b52010] BOOTMEM +[ 0.000000] #55 [0003b52040 - 0003b52070] BOOTMEM +[ 0.000000] #56 [0003b52080 - 0003b56080] BOOTMEM +[ 0.000000] #57 [0003b56080 - 0003bd6080] BOOTMEM +[ 0.000000] #58 [0003dcf000 - 0003e0f000] BOOTMEM +[ 0.000000] #59 [0003e0f000 - 000566efec] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (00037bfe:00138000) +[ 0.000000] Memory: 3770212k/5111808k available (5085k kernel code, 85972k reserved, 2432k data, 704k init, 2943240k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xffc00000 - 0xffe00000 (2048 kB) +[ 0.000000] vmalloc : 0xf83fe000 - 0xffbfe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf7bfe000 ( 891 MB) +[ 0.000000] .init : 0xc0858000 - 0xc0908000 ( 704 kB) +[ 0.000000] .data : 0xc05f750a - 0xc0857768 (2432 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05f750a (5085 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:744 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.004000] Detected 1196.920 MHz processor. +[ 0.000007] Calibrating delay loop (skipped), value calculated using timer frequency.. 2393.84 BogoMIPS (lpj=4787680) +[ 0.000158] pid_max: default: 32768 minimum: 301 +[ 0.000254] Security Framework initialized +[ 0.000342] AppArmor: AppArmor initialized +[ 0.000412] Yama: becoming mindful. +[ 0.000557] Mount-cache hash table entries: 512 +[ 0.000798] Initializing cgroup subsys ns +[ 0.000871] Initializing cgroup subsys cpuacct +[ 0.000947] Initializing cgroup subsys memory +[ 0.001028] Initializing cgroup subsys devices +[ 0.001101] Initializing cgroup subsys freezer +[ 0.001173] Initializing cgroup subsys net_cls +[ 0.001278] CPU: Physical Processor ID: 0 +[ 0.001348] CPU: Processor Core ID: 0 +[ 0.001423] mce: CPU supports 9 MCE banks +[ 0.001505] CPU0: Thermal monitoring handled by SMI +[ 0.001516] using mwait in idle threads. +[ 0.001591] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.001793] ... version: 3 +[ 0.001862] ... bit width: 48 +[ 0.001932] ... generic registers: 4 +[ 0.002001] ... value mask: 0000ffffffffffff +[ 0.002075] ... max period: 000000007fffffff +[ 0.002149] ... fixed-purpose events: 3 +[ 0.002219] ... event mask: 000000070000000f +[ 0.006894] ACPI: Core revision 20100428 +[ 0.055491] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.055571] ftrace: allocating 22394 entries in 44 pages +[ 0.068596] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.069105] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.108842] CPU0: Intel(R) Pentium(R) CPU U5400 @ 1.20GHz stepping 05 +[ 0.215141] Booting Node 0, Processors #1 +[ 0.225533] Initializing CPU#1 +[ 0.302941] CPU1: Thermal monitoring handled by SMI +[ 0.323077] Brought up 2 CPUs +[ 0.323266] Total of 2 processors activated (4787.80 BogoMIPS). +[ 0.324339] devtmpfs: initialized +[ 0.326447] regulator: core version 0.5 +[ 0.326548] Time: 18:12:43 Date: 10/28/10 +[ 0.326679] NET: Registered protocol family 16 +[ 0.326862] Trying to unpack rootfs image as initramfs... +[ 0.326932] EISA bus registered +[ 0.326943] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 0.326946] ACPI: bus type pci registered +[ 0.327058] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.327063] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.327066] PCI: Using MMCONFIG for extended config space +[ 0.327082] PCI: Using configuration type 1 for base access +[ 0.335280] bio: create slab at 0 +[ 0.340048] ACPI: EC: Look up EC in DSDT +[ 0.341759] ACPI Error: No handler for Region [RAM_] (f74212f8) [EmbeddedControl] (20100428/evregion-369) +[ 0.341940] ACPI Error: Region EmbeddedControl(0x3) has no handler (20100428/exfldio-293) +[ 0.342116] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.SNC_.SBRT] (Node f742f228), AE_NOT_EXIST +[ 0.342409] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_._REG] (Node f7422d98), AE_NOT_EXIST +[ 0.344986] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.353464] ACPI: BIOS _OSI(Linux) query ignored +[ 0.357003] ACPI: SSDT b3691c18 00264 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.358481] ACPI: Dynamic OEM Table Load: +[ 0.358612] ACPI: SSDT (null) 00264 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.359506] ACPI: SSDT b368f018 00842 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.360900] ACPI: Dynamic OEM Table Load: +[ 0.361029] ACPI: SSDT (null) 00842 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.362367] ACPI: SSDT b3690a98 00303 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.363955] ACPI: Dynamic OEM Table Load: +[ 0.364086] ACPI: SSDT (null) 00303 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.364675] ACPI: SSDT b368ed98 00119 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.366133] ACPI: Dynamic OEM Table Load: +[ 0.366262] ACPI: SSDT (null) 00119 (v01 Sony VAIO 20100614 INTL 20051117) +[ 0.386879] ACPI: Interpreter enabled +[ 0.386955] ACPI: (supports S0 S3 S4 S5) +[ 0.387211] ACPI: Using IOAPIC for interrupt routing +[ 0.415627] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62 +[ 0.416248] ACPI: No dock devices found. +[ 0.416322] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.418125] \_SB_.PCI0:_OSC invalid UUID +[ 0.418128] _OSC request data:1 8 1f +[ 0.418137] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 0.420683] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.420764] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.420845] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.420954] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfeafffff] +[ 0.421149] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit] +[ 0.421159] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.421166] pci 0000:00:02.0: reg 20: [io 0x5050-0x5057] +[ 0.421297] pci 0000:00:16.0: reg 10: [mem 0xd9406100-0xd940610f 64bit] +[ 0.421394] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 0.421401] pci 0000:00:16.0: PME# disabled +[ 0.421492] pci 0000:00:1a.0: reg 10: [mem 0xd9405c00-0xd9405fff] +[ 0.421589] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 0.421596] pci 0000:00:1a.0: PME# disabled +[ 0.421664] pci 0000:00:1b.0: reg 10: [mem 0xd9400000-0xd9403fff 64bit] +[ 0.421753] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.421760] pci 0000:00:1b.0: PME# disabled +[ 0.421895] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.421902] pci 0000:00:1c.0: PME# disabled +[ 0.422042] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.422049] pci 0000:00:1c.1: PME# disabled +[ 0.422190] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.422197] pci 0000:00:1c.2: PME# disabled +[ 0.422337] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.422344] pci 0000:00:1c.3: PME# disabled +[ 0.422430] pci 0000:00:1d.0: reg 10: [mem 0xd9405800-0xd9405bff] +[ 0.422529] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 0.422536] pci 0000:00:1d.0: PME# disabled +[ 0.422838] pci 0000:00:1f.2: reg 10: [io 0x5048-0x504f] +[ 0.422850] pci 0000:00:1f.2: reg 14: [io 0x505c-0x505f] +[ 0.422861] pci 0000:00:1f.2: reg 18: [io 0x5040-0x5047] +[ 0.422873] pci 0000:00:1f.2: reg 1c: [io 0x5058-0x505b] +[ 0.422884] pci 0000:00:1f.2: reg 20: [io 0x5020-0x503f] +[ 0.422895] pci 0000:00:1f.2: reg 24: [mem 0xd9405000-0xd94057ff] +[ 0.422963] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.422970] pci 0000:00:1f.2: PME# disabled +[ 0.423032] pci 0000:00:1f.3: reg 10: [mem 0xd9406000-0xd94060ff 64bit] +[ 0.423060] pci 0000:00:1f.3: reg 20: [io 0x5000-0x501f] +[ 0.423156] pci 0000:00:1f.6: reg 10: [mem 0xd9404000-0xd9404fff 64bit] +[ 0.423381] pci 0000:02:00.0: reg 10: [mem 0xd8400000-0xd840ffff 64bit] +[ 0.423475] pci 0000:02:00.0: supports D1 +[ 0.423479] pci 0000:02:00.0: PME# supported from D0 D1 D3hot D3cold +[ 0.423486] pci 0000:02:00.0: PME# disabled +[ 0.423523] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.423603] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.423610] pci 0000:00:1c.0: bridge window [mem 0xd8400000-0xd93fffff] +[ 0.423622] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.423785] pci 0000:03:00.0: reg 10: [mem 0xd7400a00-0xd7400aff] +[ 0.423917] pci 0000:03:00.0: supports D1 D2 +[ 0.423921] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.423960] pci 0000:03:00.0: PME# disabled +[ 0.424046] pci 0000:03:00.1: reg 10: [mem 0xd7400900-0xd74009ff] +[ 0.424180] pci 0000:03:00.1: supports D1 D2 +[ 0.424183] pci 0000:03:00.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.424223] pci 0000:03:00.1: PME# disabled +[ 0.424305] pci 0000:03:00.3: reg 10: [mem 0xd7400000-0xd74007ff] +[ 0.424438] pci 0000:03:00.3: supports D1 D2 +[ 0.424441] pci 0000:03:00.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.424480] pci 0000:03:00.3: PME# disabled +[ 0.424559] pci 0000:03:00.4: reg 10: [mem 0xd7400800-0xd74008ff] +[ 0.424692] pci 0000:03:00.4: supports D1 D2 +[ 0.424695] pci 0000:03:00.4: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.424735] pci 0000:03:00.4: PME# disabled +[ 0.424782] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.424861] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.424869] pci 0000:00:1c.1: bridge window [mem 0xd7400000-0xd83fffff] +[ 0.424881] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref] +[ 0.425025] pci 0000:04:00.0: reg 10: [mem 0xd6400000-0xd643ffff 64bit] +[ 0.425039] pci 0000:04:00.0: reg 18: [io 0x2000-0x207f] +[ 0.425145] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.425153] pci 0000:04:00.0: PME# disabled +[ 0.425190] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.425268] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.425275] pci 0000:00:1c.2: bridge window [mem 0xd6400000-0xd73fffff] +[ 0.425287] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref] +[ 0.425374] pci 0000:00:1c.3: PCI bridge to [bus 05-0c] +[ 0.425453] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.425461] pci 0000:00:1c.3: bridge window [mem 0xd4400000-0xd63fffff] +[ 0.425472] pci 0000:00:1c.3: bridge window [mem 0xd3400000-0xd43fffff 64bit pref] +[ 0.425588] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode) +[ 0.425674] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.425681] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.425693] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.425697] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.425701] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.425705] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.425710] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode) +[ 0.425758] pci_bus 0000:00: on NUMA node 0 +[ 0.425772] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.426318] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 0.426720] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.426930] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.427256] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.427465] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.428018] \_SB_.PCI0:_OSC invalid UUID +[ 0.428020] _OSC request data:1 19 1f +[ 0.464268] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 0.464803] pci_bus 0000:ff: on NUMA node 0 +[ 0.465382] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 *7 10 12 14 15) +[ 0.466093] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.466857] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.467623] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *7 11 12 14 15) +[ 0.468327] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 0.469118] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.469823] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.470583] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 0.471202] HEST: Table is not found! +[ 0.471379] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.471508] vgaarb: loaded +[ 0.471797] SCSI subsystem initialized +[ 0.471968] libata version 3.00 loaded. +[ 0.472040] usbcore: registered new interface driver usbfs +[ 0.472130] usbcore: registered new interface driver hub +[ 0.472232] usbcore: registered new device driver usb +[ 0.472633] ACPI: WMI: Mapper loaded +[ 0.472702] PCI: Using ACPI for IRQ routing +[ 0.472773] PCI: pci_cache_line_size set to 64 bytes +[ 0.472999] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.473004] reserve RAM buffer: 000000000009d000 - 000000000009ffff +[ 0.473008] reserve RAM buffer: 00000000b363f000 - 00000000b3ffffff +[ 0.473013] reserve RAM buffer: 00000000b3800000 - 00000000b3ffffff +[ 0.473146] NetLabel: Initializing +[ 0.473214] NetLabel: domain hash size = 128 +[ 0.473284] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.473373] NetLabel: unlabeled traffic allowed by default +[ 0.473498] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 0.473847] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 0.475961] Switching to clocksource tsc +[ 0.490990] AppArmor: AppArmor Filesystem Enabled +[ 0.491086] pnp: PnP ACPI init +[ 0.491175] ACPI: bus type pnp registered +[ 0.493732] pnp 00:05: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.3 BAR 13 [io 0x1000-0x1fff] +[ 0.496544] pnp: PnP ACPI: found 10 devices +[ 0.496615] ACPI: ACPI bus type pnp unregistered +[ 0.496689] PnPBIOS: Disabled by ACPI PNP +[ 0.496775] system 00:05: [io 0x0680-0x069f] has been reserved +[ 0.496853] system 00:05: [io 0x0800-0x080f] has been reserved +[ 0.496931] system 00:05: [io 0x0810-0x0813] has been reserved +[ 0.497009] system 00:05: [io 0xffff] has been reserved +[ 0.497085] system 00:05: [io 0x0400-0x047f] has been reserved +[ 0.497163] system 00:05: [io 0x0500-0x057f] has been reserved +[ 0.497247] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.497328] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved +[ 0.497408] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.497489] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.497571] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.497652] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.497733] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved +[ 0.497815] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 0.497898] system 00:08: [mem 0xd9500000-0xd9500fff] has been reserved +[ 0.534569] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 0.534652] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.534736] pci 0000:00:1c.0: bridge window [mem 0xd8400000-0xd93fffff] +[ 0.534821] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.534938] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.535019] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff] +[ 0.535102] pci 0000:00:1c.1: bridge window [mem 0xd7400000-0xd83fffff] +[ 0.535187] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref] +[ 0.536293] pci 0000:00:1c.2: PCI bridge to [bus 04-04] +[ 0.536370] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.536453] pci 0000:00:1c.2: bridge window [mem 0xd6400000-0xd73fffff] +[ 0.536537] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref] +[ 0.536653] pci 0000:00:1c.3: PCI bridge to [bus 05-0c] +[ 0.536730] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff] +[ 0.536813] pci 0000:00:1c.3: bridge window [mem 0xd4400000-0xd63fffff] +[ 0.536898] pci 0000:00:1c.3: bridge window [mem 0xd3400000-0xd43fffff 64bit pref] +[ 0.537015] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] +[ 0.537089] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.537171] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.537252] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.537356] alloc irq_desc for 17 on node -1 +[ 0.537360] alloc kstat_irqs on node -1 +[ 0.537370] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 0.537455] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.537474] alloc irq_desc for 16 on node -1 +[ 0.537476] alloc kstat_irqs on node -1 +[ 0.537483] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 0.537568] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.537582] alloc irq_desc for 18 on node -1 +[ 0.537584] alloc kstat_irqs on node -1 +[ 0.537590] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.537674] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.537691] alloc irq_desc for 19 on node -1 +[ 0.537693] alloc kstat_irqs on node -1 +[ 0.537699] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.537782] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.537795] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.537803] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.537807] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.537810] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.537814] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff] +[ 0.537818] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff] +[ 0.537822] pci_bus 0000:02: resource 1 [mem 0xd8400000-0xd93fffff] +[ 0.537826] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref] +[ 0.537830] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff] +[ 0.537833] pci_bus 0000:03: resource 1 [mem 0xd7400000-0xd83fffff] +[ 0.537837] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref] +[ 0.537841] pci_bus 0000:04: resource 0 [io 0x2000-0x2fff] +[ 0.537844] pci_bus 0000:04: resource 1 [mem 0xd6400000-0xd73fffff] +[ 0.537848] pci_bus 0000:04: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref] +[ 0.537852] pci_bus 0000:05: resource 0 [io 0x1000-0x1fff] +[ 0.537856] pci_bus 0000:05: resource 1 [mem 0xd4400000-0xd63fffff] +[ 0.537859] pci_bus 0000:05: resource 2 [mem 0xd3400000-0xd43fffff 64bit pref] +[ 0.537864] pci_bus 0000:0d: resource 4 [io 0x0000-0x0cf7] +[ 0.537867] pci_bus 0000:0d: resource 5 [io 0x0d00-0xffff] +[ 0.537871] pci_bus 0000:0d: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.537874] pci_bus 0000:0d: resource 7 [mem 0xc0000000-0xfeafffff] +[ 0.537932] NET: Registered protocol family 2 +[ 0.538097] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.538471] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.539089] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.539408] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.539488] TCP reno registered +[ 0.539556] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.539639] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.539843] NET: Registered protocol family 1 +[ 0.539933] pci 0000:00:02.0: Boot video device +[ 0.571050] PCI: CLS 64 bytes, default 64 +[ 0.571087] Simple Boot Flag at 0x44 set to 0x1 +[ 0.571422] cpufreq-nforce2: No nForce2 chipset. +[ 0.571532] Scanning for low memory corruption every 60 seconds +[ 0.571803] audit: initializing netlink socket (disabled) +[ 0.571892] type=2000 audit(1288289562.420:1): initialized +[ 0.592701] highmem bounce pool size: 64 pages +[ 0.592782] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.594961] VFS: Disk quotas dquot_6.5.2 +[ 0.595126] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.596076] fuse init (API version 7.14) +[ 0.596278] msgmni has been set to 1615 +[ 0.596725] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.596834] io scheduler noop registered +[ 0.596904] io scheduler deadline registered +[ 0.596992] io scheduler cfq registered (default) +[ 0.597238] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.597308] alloc irq_desc for 40 on node -1 +[ 0.597311] alloc kstat_irqs on node -1 +[ 0.597329] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.597463] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.597527] alloc irq_desc for 41 on node -1 +[ 0.597529] alloc kstat_irqs on node -1 +[ 0.597543] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.597675] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.597740] alloc irq_desc for 42 on node -1 +[ 0.597742] alloc kstat_irqs on node -1 +[ 0.597756] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.597884] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.597949] alloc irq_desc for 43 on node -1 +[ 0.597952] alloc kstat_irqs on node -1 +[ 0.597964] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.598120] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.598463] \_SB_.PCI0:_OSC invalid UUID +[ 0.598466] _OSC request data:1 0 1f +[ 0.598717] \_SB_.PCI0:_OSC invalid UUID +[ 0.598719] _OSC request data:1 0 1f +[ 0.598972] \_SB_.PCI0:_OSC invalid UUID +[ 0.598975] _OSC request data:1 0 1f +[ 0.599220] \_SB_.PCI0:_OSC invalid UUID +[ 0.599222] _OSC request data:1 0 1f +[ 0.599491] \_SB_.PCI0:_OSC invalid UUID +[ 0.599493] _OSC request data:1 0 1f +[ 0.599736] \_SB_.PCI0:_OSC invalid UUID +[ 0.599739] _OSC request data:1 0 1f +[ 0.599980] \_SB_.PCI0:_OSC invalid UUID +[ 0.599983] _OSC request data:1 0 1f +[ 0.600226] \_SB_.PCI0:_OSC invalid UUID +[ 0.600228] _OSC request data:1 0 1f +[ 0.600282] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.600480] intel_idle: MWAIT substates: 0x1120 +[ 0.600483] intel_idle: v0.4 model 0x25 +[ 0.600486] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 0.601484] ACPI: AC Adapter [ADP1] (on-line) +[ 0.601697] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0 +[ 0.601819] ACPI: Sleep Button [SLPB] +[ 0.601949] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 0.603285] ACPI: Lid Switch [LID0] +[ 0.603421] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.603531] ACPI: Power Button [PWRF] +[ 0.605214] ACPI: acpi_idle yielding to intel_idle +[ 0.639586] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.639677] ACPI: Thermal Zone [TZS0] (43 C) +[ 0.648202] thermal LNXTHERM:02: registered as thermal_zone1 +[ 0.648287] ACPI: Thermal Zone [TZS1] (40 C) +[ 0.648523] ERST: Table is not found! +[ 0.649117] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.651290] brd: module loaded +[ 0.652139] loop: module loaded +[ 0.652928] Fixed MDIO Bus: probed +[ 0.653039] PPP generic driver version 2.4.2 +[ 0.653155] tun: Universal TUN/TAP device driver, 1.6 +[ 0.653228] tun: (C) 1999-2004 Max Krasnyansky +[ 0.653409] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.653521] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.653620] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.653626] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 0.653747] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 0.653890] ehci_hcd 0000:00:1a.0: debug port 2 +[ 0.657860] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 0.657918] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd9405c00 +[ 0.661901] isapnp: Scanning for PnP cards... +[ 0.711252] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 0.711544] hub 1-0:1.0: USB hub found +[ 0.711627] hub 1-0:1.0: 3 ports detected +[ 0.711822] alloc irq_desc for 23 on node -1 +[ 0.711825] alloc kstat_irqs on node -1 +[ 0.711836] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.711948] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.711954] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 0.712084] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 0.712227] ehci_hcd 0000:00:1d.0: debug port 2 +[ 0.716245] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 0.716280] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd9405800 +[ 0.764005] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 0.764307] hub 2-0:1.0: USB hub found +[ 0.764381] hub 2-0:1.0: 3 ports detected +[ 0.764559] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.764657] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.764793] i8042: PNP detection disabled +[ 0.799336] Freeing initrd memory: 10484k freed +[ 0.812317] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.812406] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.812622] mice: PS/2 mouse device common for all mice +[ 0.812887] rtc_cmos 00:06: RTC can wake from S4 +[ 0.813017] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0 +[ 0.813130] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs +[ 0.813380] device-mapper: uevent: version 1.0.3 +[ 0.813625] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.813815] device-mapper: multipath: version 1.1.1 loaded +[ 0.813892] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.814139] EISA: Probing bus 0 at eisa.0 +[ 0.814210] EISA: Cannot allocate resource for mainboard +[ 0.814286] Cannot allocate resource for EISA slot 1 +[ 0.814360] Cannot allocate resource for EISA slot 2 +[ 0.814451] Cannot allocate resource for EISA slot 3 +[ 0.814528] Cannot allocate resource for EISA slot 4 +[ 0.814601] Cannot allocate resource for EISA slot 5 +[ 0.814683] Cannot allocate resource for EISA slot 6 +[ 0.814756] Cannot allocate resource for EISA slot 7 +[ 0.814829] Cannot allocate resource for EISA slot 8 +[ 0.814902] EISA: Detected 0 cards. +[ 0.815156] cpuidle: using governor ladder +[ 0.815410] cpuidle: using governor menu +[ 0.815909] TCP cubic registered +[ 0.816173] NET: Registered protocol family 10 +[ 0.816782] lo: Disabled Privacy Extensions +[ 0.817164] NET: Registered protocol family 17 +[ 0.818624] Using IPI No-Shortcut mode +[ 0.818808] PM: Resume from disk failed. +[ 0.818824] registered taskstats version 1 +[ 0.819584] Magic number: 14:207:242 +[ 0.819764] rtc_cmos 00:06: setting system clock to 2010-10-28 18:12:43 UTC (1288289563) +[ 0.819875] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.819952] EDD information not available. +[ 0.849457] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.890104] ACPI: Battery Slot [BAT0] (battery present) +[ 1.040988] isapnp: No Plug & Play device found +[ 1.041077] Freeing unused kernel memory: 704k freed +[ 1.041556] Write protecting the kernel text: 5088k +[ 1.041724] Write protecting the kernel read-only data: 2012k +[ 1.062496] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 1.065144] udev[76]: starting version 163 +[ 1.196673] hub 1-1:1.0: USB hub found +[ 1.196875] hub 1-1:1.0: 6 ports detected +[ 1.245805] atl1c 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.245906] atl1c 0000:04:00.0: setting latency timer to 64 +[ 1.247089] sdhci: Secure Digital Host Controller Interface driver +[ 1.247167] sdhci: Copyright(c) Pierre Ossman +[ 1.249680] sdhci-pci 0000:03:00.0: SDHCI controller found [1180:e822] (rev 0) +[ 1.249841] sdhci-pci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.250009] sdhci-pci 0000:03:00.0: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.250158] sdhci-pci 0000:03:00.0: setting latency timer to 64 +[ 1.251278] Registered led device: mmc0:: +[ 1.299628] mmc0: SDHCI controller on PCI [0000:03:00.0] using DMA +[ 1.299737] sdhci-pci 0000:03:00.4: SDHCI controller found [1180:e822] (rev 0) +[ 1.301898] sdhci-pci 0000:03:00.4: PCI INT C -> GSI 19 (level, low) -> IRQ 19 +[ 1.308179] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 1.323141] sdhci-pci 0000:03:00.4: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.323267] sdhci-pci 0000:03:00.4: setting latency timer to 64 +[ 1.324350] Registered led device: mmc1:: +[ 1.325403] mmc1: SDHCI controller on PCI [0000:03:00.4] using DMA +[ 1.339601] firewire_ohci 0000:03:00.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16 +[ 1.339721] firewire_ohci 0000:03:00.3: setting latency timer to 64 +[ 1.344376] ahci 0000:00:1f.2: version 3.0 +[ 1.344396] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.344532] alloc irq_desc for 44 on node -1 +[ 1.344535] alloc kstat_irqs on node -1 +[ 1.344552] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X +[ 1.344639] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x1 impl SATA mode +[ 1.344752] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part apst +[ 1.344862] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.345247] scsi0 : ahci +[ 1.345565] scsi1 : ahci +[ 1.345779] scsi2 : ahci +[ 1.345987] scsi3 : ahci +[ 1.346131] ata1: SATA max UDMA/133 abar m2048@0xd9405000 port 0xd9405100 irq 44 +[ 1.346237] ata2: DUMMY +[ 1.346299] ata3: DUMMY +[ 1.346361] ata4: DUMMY +[ 1.357070] atl1c 0000:04:00.0: version 1.0.0.2-NAPI +[ 1.440591] hub 2-1:1.0: USB hub found +[ 1.440791] hub 2-1:1.0: 8 ports detected +[ 1.483827] firewire_ohci: Added fw-ohci device 0000:03:00.3, OHCI v1.0, 4 IR + 4 IT contexts, quirks 0x0 +[ 1.512049] usb 1-1.2: new high speed USB device using ehci_hcd and address 3 +[ 1.663738] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.679983] usb 1-1.5: new full speed USB device using ehci_hcd and address 4 +[ 1.711800] ata1.00: ATA-8: TOSHIBA MK3265GSX, GJ002H, max UDMA/100 +[ 1.711891] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.713054] ata1.00: configured for UDMA/100 +[ 1.728018] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK3265GS GJ00 PQ: 0 ANSI: 5 +[ 1.728328] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.728514] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 1.728690] sd 0:0:0:0: [sda] Write Protect is off +[ 1.728763] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.728793] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.729092] sda: sda1 sda2 < sda5 > +[ 1.799339] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.847878] usb 2-1.5: new low speed USB device using ehci_hcd and address 3 +[ 1.968860] usbcore: registered new interface driver hiddev +[ 1.971354] input: OPM-U06 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input4 +[ 1.971588] generic-usb 0003:054C:036B.0001: input,hidraw0: USB HID v11.10 Mouse [OPM-U06] on usb-0000:00:1d.0-1.5/input0 +[ 1.971740] usbcore: registered new interface driver usbhid +[ 1.971814] usbhid: USB HID core driver +[ 1.975650] firewire_core: created device fw0: GUID 0800460304fbdc84, S400 +[ 2.204102] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 2.204248] EXT4-fs (sda1): write access will be enabled during recovery +[ 2.357750] EXT4-fs (sda1): recovery complete +[ 2.359315] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 5.650878] udev[447]: starting version 163 +[ 5.693138] lp: driver loaded but no devices found +[ 5.705010] Adding 8472572k swap on /dev/sda5. Priority:-1 extents:1 across:8472572k +[ 5.824068] sony-laptop: Sony Notebook Control Driver v0.6. +[ 5.847068] intel ips 0000:00:1f.6: No CPUID match found. +[ 5.847081] BUG: unable to handle kernel NULL pointer dereference at 00000008 +[ 5.847226] IP: [] ips_detect_cpu+0x62/0x180 [intel_ips] +[ 5.847340] *pdpt = 0000000035926001 *pde = 0000000000000000 +[ 5.847478] Oops: 0000 [#1] SMP +[ 5.847604] last sysfs file: /sys/devices/platform/pcspkr/uevent +[ 5.847682] Modules linked in: intel_ips(+) sony_laptop(+) video output lp parport usbhid hid firewire_ohci ahci sdhci_pci atl1c libahci firewire_core sdhci led_class crc_itu_t +[ 5.848384] +[ 5.848448] Pid: 569, comm: modprobe Not tainted 2.6.35-22-generic-pae #35-Ubuntu VAIO/VPCY21S1E +[ 5.848560] EIP: 0060:[] EFLAGS: 00010286 CPU: 0 +[ 5.848638] EIP is at ips_detect_cpu+0x62/0x180 [intel_ips] +[ 5.848714] EAX: 00580058 EBX: 00000000 ECX: 00580058 EDX: 00000000 +[ 5.848792] ESI: f5965e04 EDI: f60eac00 EBP: f5965e14 ESP: f5965de4 +[ 5.848871] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 5.848948] Process modprobe (pid: 569, ti=f5964000 task=f593b2c0 task.ti=f5964000) +[ 5.849054] Stack: +[ 5.849116] f88f6efc f88f6e9e f759db40 f5965e14 c02162f1 f5965e08 c05ee9c9 f88f5eef +[ 5.849406] <0> 00000000 f60eac00 f75e9000 fffffff4 f5965e4c f88f5f2b c027b6cd f5965e4c +[ 5.849779] <0> c027ac77 f5965e4c c027b07a f5965e38 f75e9000 f75e9060 c037614e f75e9000 +[ 5.850209] Call Trace: +[ 5.850284] [] ? kmem_cache_alloc_notrace+0x91/0xb0 +[ 5.850367] [] ? mutex_lock+0x19/0x40 +[ 5.850443] [] ? ips_probe+0x1f/0x6a0 [intel_ips] +[ 5.850523] [] ? ips_probe+0x5b/0x6a0 [intel_ips] +[ 5.850604] [] ? sysfs_add_one+0x1d/0x110 +[ 5.850680] [] ? sysfs_new_dirent+0x67/0x100 +[ 5.850756] [] ? sysfs_addrm_finish+0x1a/0xb0 +[ 5.850837] [] ? pci_match_device+0xbe/0xd0 +[ 5.850914] [] ? local_pci_probe+0x13/0x20 +[ 5.850992] [] ? pci_device_probe+0x68/0x90 +[ 5.851070] [] ? really_probe+0x50/0x150 +[ 5.851147] [] ? pm_runtime_barrier+0x57/0xb0 +[ 5.851225] [] ? driver_probe_device+0x3c/0x60 +[ 5.851302] [] ? __driver_attach+0x81/0x90 +[ 5.851379] [] ? bus_for_each_dev+0x53/0x80 +[ 5.851455] [] ? driver_attach+0x1e/0x20 +[ 5.851530] [] ? __driver_attach+0x0/0x90 +[ 5.851605] [] ? bus_add_driver+0xd5/0x280 +[ 5.851682] [] ? pci_device_remove+0x0/0x40 +[ 5.851758] [] ? driver_register+0x6a/0x130 +[ 5.851835] [] ? __pci_register_driver+0x45/0xb0 +[ 5.851914] [] ? ips_init+0x17/0x19 [intel_ips] +[ 5.851992] [] ? do_one_initcall+0x32/0x1a0 +[ 5.852070] [] ? ips_init+0x0/0x19 [intel_ips] +[ 5.852150] [] ? sys_init_module+0x9b/0x1e0 +[ 5.852229] [] ? sys_write+0x42/0x70 +[ 5.852306] [] ? sysenter_do_call+0x12/0x28 +[ 5.852381] Code: d5 83 c7 90 ba f5 6d 8f f8 b8 8c 42 85 c0 e8 56 ea a6 c7 bb 80 74 8f f8 85 c0 74 35 b8 ac 01 00 00 89 f2 e8 21 d5 83 c7 90 89 c1 <8b> 53 08 c1 e1 12 c1 e9 15 69 c1 e8 03 00 00 39 c2 75 75 89 d8 +[ 5.854476] EIP: [] ips_detect_cpu+0x62/0x180 [intel_ips] SS:ESP 0068:f5965de4 +[ 5.854650] CR2: 0000000000000008 +[ 5.854729] ---[ end trace b5ba95051b73c5bf ]--- +[ 6.031948] Linux agpgart interface v0.103 +[ 6.217868] Linux video capture interface: v2.00 +[ 6.218547] acer-wmi: Acer Laptop ACPI-WMI Extras +[ 6.223562] cfg80211: Calling CRDA to update world regulatory domain +[ 6.224807] uvcvideo: Found UVC 1.00 device (05ca:18b7) +[ 6.229748] Bluetooth: Core ver 2.15 +[ 6.229892] NET: Registered protocol family 31 +[ 6.229965] Bluetooth: HCI device and connection manager initialized +[ 6.230124] Bluetooth: HCI socket layer initialized +[ 6.235044] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 6.254865] input: UVC Camera (05ca:18b7) as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input5 +[ 6.255689] usbcore: registered new interface driver uvcvideo +[ 6.255766] USB Video Class driver (v0.1.0) +[ 6.258458] usbcore: registered new interface driver btusb +[ 6.329880] cfg80211: World regulatory domain updated: +[ 6.329961] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 6.330069] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 6.330151] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 6.330233] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 6.330314] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 6.330395] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 6.337007] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b/SNY5001:00/input/input6 +[ 6.337248] input: Sony Vaio Jogdial as /devices/virtual/input/input7 +[ 6.337396] sony-laptop: brightness ignored, must be controlled by ACPI video driver +[ 6.407318] type=1400 audit(1288289569.086:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=775 comm="apparmor_parser" +[ 6.408391] type=1400 audit(1288289569.086:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=775 comm="apparmor_parser" +[ 6.409078] type=1400 audit(1288289569.090:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=775 comm="apparmor_parser" +[ 6.614691] ath9k 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 6.614791] ath9k 0000:02:00.0: setting latency timer to 64 +[ 6.666258] ath: EEPROM regdomain: 0x65 +[ 6.666331] ath: EEPROM indicates we should expect a direct regpair map +[ 6.666412] ath: Country alpha2 being used: 00 +[ 6.666483] ath: Regpair used: 0x65 +[ 6.713960] phy0: Selected rate control algorithm 'ath9k_rate_control' +[ 6.714931] Registered led device: ath9k-phy0::radio +[ 6.715034] Registered led device: ath9k-phy0::assoc +[ 6.715135] Registered led device: ath9k-phy0::tx +[ 6.715232] Registered led device: ath9k-phy0::rx +[ 6.715311] phy0: Atheros AR9285 Rev:2 mem=0xf8b40000, irq=16 +[ 7.044433] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xa40000/0xa0400 +[ 7.104079] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8 +[ 7.488115] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 8.996259] type=1400 audit(1288289571.678:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=997 comm="apparmor_parser" +[ 8.997339] type=1400 audit(1288289571.678:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=997 comm="apparmor_parser" +[ 8.998021] type=1400 audit(1288289571.678:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=997 comm="apparmor_parser" +[ 9.144884] type=1400 audit(1288289571.826:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=996 comm="apparmor_parser" +[ 9.168353] type=1400 audit(1288289571.850:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=998 comm="apparmor_parser" +[ 9.180532] type=1400 audit(1288289571.862:10): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=998 comm="apparmor_parser" +[ 9.188413] type=1400 audit(1288289571.870:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=998 comm="apparmor_parser" +[ 10.636280] alloc irq_desc for 45 on node -1 +[ 10.636359] alloc kstat_irqs on node -1 +[ 10.636451] atl1c 0000:04:00.0: irq 45 for MSI/MSI-X +[ 10.637126] ADDRCONF(NETDEV_UP): eth0: link is not ready + +Bug: 674479 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-22-generic (buildd@yellow) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #35-Ubuntu SMP Sat Oct 16 20:45:36 UTC 2010 (Ubuntu 2.6.35-22.35-generic 2.6.35.4) +[ 0.000000] Command line: root=UUID=bde6a039-9ce1-455c-87fc-488db22ddd78 ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable) +[ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 0000000077ef0000 (usable) +[ 0.000000] BIOS-e820: 0000000077ef0000 - 0000000077ef3000 (ACPI NVS) +[ 0.000000] BIOS-e820: 0000000077ef3000 - 0000000077f00000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.4 present. +[ 0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working around it. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] AGP bridge at 00:00:00 +[ 0.000000] Aperture from AGP @ d0000000 old size 32 MB +[ 0.000000] Aperture from AGP @ d0000000 size 128 MB (APSIZE f20) +[ 0.000000] last_pfn = 0x77ef0 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-C7FFF write-protect +[ 0.000000] C8000-CBFFF uncachable +[ 0.000000] CC000-D3FFF write-back +[ 0.000000] D4000-FFFFF uncachable +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FFC0000000 write-back +[ 0.000000] 1 base 0040000000 mask FFE0000000 write-back +[ 0.000000] 2 base 0060000000 mask FFF0000000 write-back +[ 0.000000] 3 base 0070000000 mask FFF8000000 write-back +[ 0.000000] 4 base 0077F00000 mask FFFFF00000 uncachable +[ 0.000000] 5 base 00D0000000 mask FFF8000000 write-combining +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009f000 (usable) +[ 0.000000] modified: 000000000009f000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000f0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 0000000077ef0000 (usable) +[ 0.000000] modified: 0000000077ef0000 - 0000000077ef3000 (ACPI NVS) +[ 0.000000] modified: 0000000077ef3000 - 0000000077f00000 (ACPI data) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 0000000100000000 (reserved) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] found SMP MP-table at [ffff8800000f3e90] f3e90 +[ 0.000000] init_memory_mapping: 0000000000000000-0000000077ef0000 +[ 0.000000] 0000000000 - 0077e00000 page 2M +[ 0.000000] 0077e00000 - 0077ef0000 page 4k +[ 0.000000] kernel direct mapping tables up to 77ef0000 @ 16000-1a000 +[ 0.000000] RAMDISK: 3756f000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000f7cb0 00014 (v00 K8M890) +[ 0.000000] ACPI: RSDT 0000000077ef3040 00030 (v01 K8M890 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: FACP 0000000077ef30c0 00074 (v01 K8M890 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: DSDT 0000000077ef3180 06CD7 (v01 K8M890 AWRDACPI 00001000 MSFT 0100000E) +[ 0.000000] ACPI: FACS 0000000077ef0000 00040 +[ 0.000000] ACPI: MCFG 0000000077ef9f80 0003C (v01 K8M890 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: APIC 0000000077ef9ec0 00074 (v01 K8M890 AWRDACPI 42302E31 AWRD 00000000) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] Scanning NUMA topology in Northbridge 24 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000077ef0000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000077ef0000 +[ 0.000000] NODE_DATA [0000000001d18100 - 0000000001d1d0ff] +[ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002600000-ffff8800041fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal empty +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x00077ef0 +[ 0.000000] On node 0 totalpages: 491135 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 6661 pages used for memmap +[ 0.000000] DMA32 zone: 480491 pages, LIFO batch:31 +[ 0.000000] Detected use of extended apic ids on hypertransport bus +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfecc0000] gsi_base[24]) +[ 0.000000] IOAPIC[1]: apic_id 3, version 3, address 0xfecc0000, GSI 24-47 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 64 +[ 0.000000] early_res array is doubled to 64 at [18000 - 187ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 +[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 77f00000 (gap: 77f00000:68100000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91520 r8192 d23168 u1048576 +[ 0.000000] pcpu-alloc: s91520 r8192 d23168 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 484418 +[ 0.000000] Policy zone: DMA32 +[ 0.000000] Kernel command line: root=UUID=bde6a039-9ce1-455c-87fc-488db22ddd78 ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] AGP bridge at 00:00:00 +[ 0.000000] Aperture from AGP @ d0000000 old size 32 MB +[ 0.000000] Aperture from AGP @ d0000000 size 128 MB (APSIZE f20) +[ 0.000000] Node 0: aperture @ d0000000 size 128 MB +[ 0.000000] Subtract (44 early reservations) +[ 0.000000] #1 [0001000000 - 0001d17114] TEXT DATA BSS +[ 0.000000] #2 [003756f000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [0001d18000 - 0001d180fe] BRK +[ 0.000000] #4 [00000f3ea0 - 0000100000] BIOS reserved +[ 0.000000] #5 [00000f3e90 - 00000f3ea0] MP-table mpf +[ 0.000000] #6 [000009f000 - 00000f2114] BIOS reserved +[ 0.000000] #7 [00000f2278 - 00000f3e90] BIOS reserved +[ 0.000000] #8 [00000f2114 - 00000f2278] MP-table mpc +[ 0.000000] #9 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #10 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #11 [0000016000 - 0000018000] PGTABLE +[ 0.000000] #12 [0001d18100 - 0001d1d100] NODE_DATA +[ 0.000000] #13 [0001d1d100 - 0001d1e100] BOOTMEM +[ 0.000000] #14 [0001d17140 - 0001d172a8] BOOTMEM +[ 0.000000] #15 [000251f000 - 0002520000] BOOTMEM +[ 0.000000] #16 [0002520000 - 0002521000] BOOTMEM +[ 0.000000] #17 [0002600000 - 0004200000] MEMMAP 0 +[ 0.000000] #18 [0001d172c0 - 0001d17440] BOOTMEM +[ 0.000000] #19 [0001d1e100 - 0001d2a100] BOOTMEM +[ 0.000000] #20 [0001d2b000 - 0001d2c000] BOOTMEM +[ 0.000000] #21 [0001d17440 - 0001d174c6] BOOTMEM +[ 0.000000] #22 [0001d17500 - 0001d176f8] BOOTMEM +[ 0.000000] #23 [0001d17700 - 0001d17768] BOOTMEM +[ 0.000000] #24 [0001d17780 - 0001d177e8] BOOTMEM +[ 0.000000] #25 [0001d17800 - 0001d17868] BOOTMEM +[ 0.000000] #26 [0001d17880 - 0001d178e8] BOOTMEM +[ 0.000000] #27 [0001d17900 - 0001d17968] BOOTMEM +[ 0.000000] #28 [0001d17980 - 0001d179e8] BOOTMEM +[ 0.000000] #29 [0001d17a00 - 0001d17a68] BOOTMEM +[ 0.000000] #30 [0001d17a80 - 0001d17ae8] BOOTMEM +[ 0.000000] #31 [0001d17b00 - 0001d17b20] BOOTMEM +[ 0.000000] #32 [0001d17b40 - 0001d17b80] BOOTMEM +[ 0.000000] #33 [0001d17b80 - 0001d17bc0] BOOTMEM +[ 0.000000] #34 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #35 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #36 [0001d17bc0 - 0001d17bc8] BOOTMEM +[ 0.000000] #37 [0001d17c00 - 0001d17c08] BOOTMEM +[ 0.000000] #38 [0001d17c40 - 0001d17c48] BOOTMEM +[ 0.000000] #39 [0001d17c80 - 0001d17c90] BOOTMEM +[ 0.000000] #40 [0001d17cc0 - 0001d17e00] BOOTMEM +[ 0.000000] #41 [0001d17e00 - 0001d17e60] BOOTMEM +[ 0.000000] #42 [0001d17e80 - 0001d17ee0] BOOTMEM +[ 0.000000] #43 [0001d2c000 - 0001d34000] BOOTMEM +[ 0.000000] Memory: 1911312k/1964992k available (5708k kernel code, 452k absent, 53228k reserved, 5382k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:512 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 19660800 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2199.612 MHz processor. +[ 0.010008] Calibrating delay loop (skipped), value calculated using timer frequency.. 4399.22 BogoMIPS (lpj=21996120) +[ 0.010013] pid_max: default: 32768 minimum: 301 +[ 0.010039] Security Framework initialized +[ 0.010058] AppArmor: AppArmor initialized +[ 0.010060] Yama: becoming mindful. +[ 0.010342] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.011491] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.012010] Mount-cache hash table entries: 256 +[ 0.012153] Initializing cgroup subsys ns +[ 0.012158] Initializing cgroup subsys cpuacct +[ 0.012162] Initializing cgroup subsys memory +[ 0.012173] Initializing cgroup subsys devices +[ 0.012175] Initializing cgroup subsys freezer +[ 0.012177] Initializing cgroup subsys net_cls +[ 0.012204] tseg: 0077f00000 +[ 0.012206] CPU: Physical Processor ID: 0 +[ 0.012208] CPU: Processor Core ID: 0 +[ 0.012210] mce: CPU supports 5 MCE banks +[ 0.012222] using C1E aware idle routine +[ 0.012224] Performance Events: AMD PMU driver. +[ 0.012229] ... version: 0 +[ 0.012231] ... bit width: 48 +[ 0.012233] ... generic registers: 4 +[ 0.012234] ... value mask: 0000ffffffffffff +[ 0.012236] ... max period: 00007fffffffffff +[ 0.012238] ... fixed-purpose events: 0 +[ 0.012240] ... event mask: 000000000000000f +[ 0.020426] ACPI: Core revision 20100428 +[ 0.028042] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.028053] ftrace: allocating 22680 entries in 89 pages +[ 0.030087] Setting APIC routing to flat +[ 0.030485] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0 +[ 0.135385] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ stepping 02 +[ 0.140000] Booting Node 0, Processors #1 Ok. +[ 0.290054] Brought up 2 CPUs +[ 0.290057] Total of 2 processors activated (8799.29 BogoMIPS). +[ 0.290272] devtmpfs: initialized +[ 0.290859] regulator: core version 0.5 +[ 0.290903] Time: 11:28:50 Date: 11/12/10 +[ 0.290948] NET: Registered protocol family 16 +[ 0.291075] TOM: 0000000080000000 aka 2048M +[ 0.291078] node 0 link 0: mmio [a0000, bffff] +[ 0.291082] node 0 link 0: mmio [80000000, bfffffff] +[ 0.291084] node 0 link 0: mmio [c0000000, cfffffff] +[ 0.291087] node 0 link 0: mmio [d0000000, dcffffff] +[ 0.291090] node 0 link 0: mmio [dd000000, ddffffff] +[ 0.291092] node 0 link 0: mmio [de000000, ffff] +[ 0.291095] bus: [00, ff] on node 0 link 0 +[ 0.291098] bus: 00 index 0 [io 0x0000-0xffff] +[ 0.291100] bus: 00 index 1 [mem 0x000a0000-0x000bffff] +[ 0.291103] bus: 00 index 2 [mem 0x80000000-0xfcffffffff] +[ 0.291110] ACPI: bus type pci registered +[ 0.291180] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.291183] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.311086] Trying to unpack rootfs image as initramfs... +[ 0.311815] PCI: Using configuration type 1 for base access +[ 0.320134] bio: create slab at 0 +[ 0.321990] ACPI: EC: Look up EC in DSDT +[ 0.330441] ACPI: Interpreter enabled +[ 0.330445] ACPI: (supports S0 S1 S4 S5) +[ 0.330467] ACPI: Using IOAPIC for interrupt routing +[ 0.339296] ACPI: No dock devices found. +[ 0.339301] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug +[ 0.339787] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f]) +[ 0.340316] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.340319] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.340322] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.340325] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored) +[ 0.340327] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xbfefffff] (ignored) +[ 0.340330] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff] (ignored) +[ 0.340360] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xd7ffffff pref] +[ 0.340803] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 0.340807] pci 0000:00:02.0: PME# disabled +[ 0.340880] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 0.340884] pci 0000:00:03.0: PME# disabled +[ 0.340934] pci 0000:00:0f.0: reg 10: [io 0xff00-0xff07] +[ 0.340941] pci 0000:00:0f.0: reg 14: [io 0xfe00-0xfe03] +[ 0.340947] pci 0000:00:0f.0: reg 18: [io 0xfd00-0xfd07] +[ 0.340954] pci 0000:00:0f.0: reg 1c: [io 0xfc00-0xfc03] +[ 0.340960] pci 0000:00:0f.0: reg 20: [io 0xfb00-0xfb0f] +[ 0.340967] pci 0000:00:0f.0: reg 24: [io 0xf400-0xf4ff] +[ 0.341031] pci 0000:00:0f.1: reg 20: [io 0xfa00-0xfa0f] +[ 0.341107] pci 0000:00:10.0: reg 20: [io 0xf900-0xf91f] +[ 0.341132] pci 0000:00:10.0: supports D1 D2 +[ 0.341134] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341138] pci 0000:00:10.0: PME# disabled +[ 0.341181] pci 0000:00:10.1: reg 20: [io 0xf800-0xf81f] +[ 0.341206] pci 0000:00:10.1: supports D1 D2 +[ 0.341208] pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341212] pci 0000:00:10.1: PME# disabled +[ 0.341254] pci 0000:00:10.2: reg 20: [io 0xf700-0xf71f] +[ 0.341279] pci 0000:00:10.2: supports D1 D2 +[ 0.341281] pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341285] pci 0000:00:10.2: PME# disabled +[ 0.341326] pci 0000:00:10.3: reg 20: [io 0xf600-0xf61f] +[ 0.341351] pci 0000:00:10.3: supports D1 D2 +[ 0.341353] pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341357] pci 0000:00:10.3: PME# disabled +[ 0.341384] pci 0000:00:10.4: reg 10: [mem 0xdffff000-0xdffff0ff] +[ 0.341424] pci 0000:00:10.4: supports D1 D2 +[ 0.341426] pci 0000:00:10.4: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341430] pci 0000:00:10.4: PME# disabled +[ 0.341583] pci 0000:00:12.0: reg 10: [io 0xf200-0xf2ff] +[ 0.341589] pci 0000:00:12.0: reg 14: [mem 0xdfffe000-0xdfffe0ff] +[ 0.341627] pci 0000:00:12.0: supports D1 D2 +[ 0.341629] pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.341633] pci 0000:00:12.0: PME# disabled +[ 0.341832] PCI: peer root bus 00 res updated from pci conf +[ 0.341876] pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff pref] +[ 0.341882] pci 0000:01:00.0: reg 14: [mem 0xdd000000-0xddffffff] +[ 0.341900] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0000ffff pref] +[ 0.341918] pci 0000:01:00.0: supports D1 D2 +[ 0.341954] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.341958] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] +[ 0.341962] pci 0000:00:01.0: bridge window [mem 0xdd000000-0xdeffffff] +[ 0.341966] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref] +[ 0.342005] pci 0000:00:02.0: PCI bridge to [bus 02-02] +[ 0.342009] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff] +[ 0.342013] pci 0000:00:02.0: bridge window [mem 0xdfc00000-0xdfcfffff] +[ 0.342019] pci 0000:00:02.0: bridge window [mem 0xdfb00000-0xdfbfffff 64bit pref] +[ 0.342064] pci 0000:00:03.0: PCI bridge to [bus 03-03] +[ 0.342068] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff] +[ 0.342073] pci 0000:00:03.0: bridge window [mem 0xdfe00000-0xdfefffff] +[ 0.342080] pci 0000:00:03.0: bridge window [mem 0xdfd00000-0xdfdfffff 64bit pref] +[ 0.342143] pci 0000:00:13.1: PCI bridge to [bus 04-04] (subtractive decode) +[ 0.342147] pci 0000:00:13.1: bridge window [io 0xb000-0xbfff] +[ 0.342152] pci 0000:00:13.1: bridge window [mem 0xdfa00000-0xdfafffff] +[ 0.342157] pci 0000:00:13.1: bridge window [mem 0xdf900000-0xdf9fffff 64bit pref] +[ 0.342160] pci 0000:00:13.1: bridge window [io 0x0000-0xffff] (subtractive decode) +[ 0.342163] pci 0000:00:13.1: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.342166] pci 0000:00:13.1: bridge window [mem 0x80000000-0xfcffffffff] (subtractive decode) +[ 0.342188] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.342540] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEXG._PRT] +[ 0.342662] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT] +[ 0.342783] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2PB._PRT] +[ 0.416558] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-ff]) +[ 0.416808] pci_root PNP0A08:01: host bridge window [io 0x0000-0x0cf7] (ignored) +[ 0.416811] pci_root PNP0A08:01: host bridge window [io 0x0d00-0xffff] (ignored) +[ 0.416814] pci_root PNP0A08:01: host bridge window [mem 0x000a0000-0x000bffff] (ignored) +[ 0.416816] pci_root PNP0A08:01: host bridge window [mem 0xbff00000-0xbfffffff] (ignored) +[ 0.416842] pci 0000:80:01.0: reg 10: [mem 0xbfffc000-0xbfffffff 64bit] +[ 0.416880] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold +[ 0.416884] pci 0000:80:01.0: PME# disabled +[ 0.416930] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT] +[ 0.417613] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12) +[ 0.417808] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12) +[ 0.418004] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 *11 12) +[ 0.418198] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 *10 11 12) +[ 0.418364] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.418528] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.418687] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 6 7 10 11 12) *0, disabled. +[ 0.418860] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 6 7 10 11 12) *5 +[ 0.418913] HEST: Table is not found! +[ 0.419036] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.419039] vgaarb: loaded +[ 0.419195] SCSI subsystem initialized +[ 0.419309] libata version 3.00 loaded. +[ 0.419365] usbcore: registered new interface driver usbfs +[ 0.419377] usbcore: registered new interface driver hub +[ 0.419402] usbcore: registered new device driver usb +[ 0.419552] ACPI: WMI: Mapper loaded +[ 0.419555] PCI: Using ACPI for IRQ routing +[ 0.419557] PCI: pci_cache_line_size set to 64 bytes +[ 0.419569] pci 0000:00:00.0: address space collision: [mem 0xd0000000-0xd7ffffff pref] conflicts with GART [mem 0xd0000000-0xd7ffffff] +[ 0.419626] pci 0000:80:01.0: address space collision: [mem 0xbfffc000-0xbfffffff 64bit] conflicts with PCI Bus #00 [mem 0x80000000-0xfcffffffff] +[ 0.419672] reserve RAM buffer: 000000000009f000 - 000000000009ffff +[ 0.419675] reserve RAM buffer: 0000000077ef0000 - 0000000077ffffff +[ 0.419779] NetLabel: Initializing +[ 0.419781] NetLabel: domain hash size = 128 +[ 0.419782] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.419795] NetLabel: unlabeled traffic allowed by default +[ 0.429944] AppArmor: AppArmor Filesystem Enabled +[ 0.429970] pnp: PnP ACPI init +[ 0.430036] ACPI: bus type pnp registered +[ 0.435225] pnp 00:0e: disabling [mem 0x000cc000-0x000cffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435230] pnp 00:0e: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435234] pnp 00:0e: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435238] pnp 00:0e: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435242] pnp 00:0e: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435246] pnp 00:0e: disabling [mem 0x00100000-0x77eeffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x07ffffff pref] +[ 0.435360] pnp: PnP ACPI: found 15 devices +[ 0.435362] ACPI: ACPI bus type pnp unregistered +[ 0.435378] system 00:01: [io 0x0400-0x047f] has been reserved +[ 0.435381] system 00:01: [io 0x0500-0x050f] has been reserved +[ 0.435386] system 00:02: [io 0x04d0-0x04d1] has been reserved +[ 0.435389] system 00:02: [io 0x0290-0x0297] has been reserved +[ 0.435397] system 00:0b: [mem 0xf0000000-0xf0000fff] has been reserved +[ 0.435402] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.435408] system 00:0e: [mem 0x77f00000-0x77ffffff] could not be reserved +[ 0.435412] system 00:0e: [mem 0x77ef0000-0x77efffff] could not be reserved +[ 0.435415] system 00:0e: [mem 0xffff0000-0xffffffff] has been reserved +[ 0.435418] system 00:0e: [mem 0x78000000-0x7fffffff] has been reserved +[ 0.435421] system 00:0e: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.435424] system 00:0e: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.435427] system 00:0e: [mem 0xfff80000-0xfffeffff] has been reserved +[ 0.441436] Switching to clocksource acpi_pm +[ 0.441665] pci 0000:01:00.0: BAR 6: assigned [mem 0xde000000-0xde00ffff pref] +[ 0.441669] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 0.441673] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] +[ 0.441678] pci 0000:00:01.0: bridge window [mem 0xdd000000-0xdeffffff] +[ 0.441682] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref] +[ 0.441688] pci 0000:00:02.0: PCI bridge to [bus 02-02] +[ 0.441691] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff] +[ 0.441696] pci 0000:00:02.0: bridge window [mem 0xdfc00000-0xdfcfffff] +[ 0.441700] pci 0000:00:02.0: bridge window [mem 0xdfb00000-0xdfbfffff 64bit pref] +[ 0.441706] pci 0000:00:03.0: PCI bridge to [bus 03-03] +[ 0.441709] pci 0000:00:03.0: bridge window [io 0xc000-0xcfff] +[ 0.441715] pci 0000:00:03.0: bridge window [mem 0xdfe00000-0xdfefffff] +[ 0.441720] pci 0000:00:03.0: bridge window [mem 0xdfd00000-0xdfdfffff 64bit pref] +[ 0.441726] pci 0000:00:13.1: PCI bridge to [bus 04-04] +[ 0.441729] pci 0000:00:13.1: bridge window [io 0xb000-0xbfff] +[ 0.441734] pci 0000:00:13.1: bridge window [mem 0xdfa00000-0xdfafffff] +[ 0.441738] pci 0000:00:13.1: bridge window [mem 0xdf900000-0xdf9fffff 64bit pref] +[ 0.441753] pci 0000:00:01.0: setting latency timer to 64 +[ 0.441764] alloc irq_desc for 27 on node 0 +[ 0.441766] alloc kstat_irqs on node 0 +[ 0.441775] pci 0000:00:02.0: PCI INT A -> GSI 27 (level, low) -> IRQ 27 +[ 0.441779] pci 0000:00:02.0: setting latency timer to 64 +[ 0.441787] alloc irq_desc for 31 on node 0 +[ 0.441788] alloc kstat_irqs on node 0 +[ 0.441793] pci 0000:00:03.0: PCI INT A -> GSI 31 (level, low) -> IRQ 31 +[ 0.441797] pci 0000:00:03.0: setting latency timer to 64 +[ 0.441803] pci 0000:00:13.1: setting latency timer to 64 +[ 0.441808] pci 0000:80:01.0: BAR 0: assigned [mem 0xfd00000000-0xfd00003fff 64bit] +[ 0.441815] pci 0000:80:01.0: BAR 0: set to [mem 0xfd00000000-0xfd00003fff 64bit] (PCI address [0xfd00000000-0xfd00003fff] +[ 0.441819] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] +[ 0.441822] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff] +[ 0.441824] pci_bus 0000:00: resource 6 [mem 0x80000000-0xfcffffffff] +[ 0.441827] pci_bus 0000:01: resource 0 [io 0xe000-0xefff] +[ 0.441829] pci_bus 0000:01: resource 1 [mem 0xdd000000-0xdeffffff] +[ 0.441832] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref] +[ 0.441834] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff] +[ 0.441837] pci_bus 0000:02: resource 1 [mem 0xdfc00000-0xdfcfffff] +[ 0.441839] pci_bus 0000:02: resource 2 [mem 0xdfb00000-0xdfbfffff 64bit pref] +[ 0.441842] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff] +[ 0.441844] pci_bus 0000:03: resource 1 [mem 0xdfe00000-0xdfefffff] +[ 0.441847] pci_bus 0000:03: resource 2 [mem 0xdfd00000-0xdfdfffff 64bit pref] +[ 0.441849] pci_bus 0000:04: resource 0 [io 0xb000-0xbfff] +[ 0.441852] pci_bus 0000:04: resource 1 [mem 0xdfa00000-0xdfafffff] +[ 0.441854] pci_bus 0000:04: resource 2 [mem 0xdf900000-0xdf9fffff 64bit pref] +[ 0.441857] pci_bus 0000:04: resource 4 [io 0x0000-0xffff] +[ 0.441859] pci_bus 0000:04: resource 5 [mem 0x000a0000-0x000bffff] +[ 0.441862] pci_bus 0000:04: resource 6 [mem 0x80000000-0xfcffffffff] +[ 0.441864] pci_bus 0000:80: resource 0 [io 0x0000-0xffff] +[ 0.441867] pci_bus 0000:80: resource 1 [mem 0x00000000-0xffffffffffffffff] +[ 0.441910] NET: Registered protocol family 2 +[ 0.442039] IP route cache hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.443081] TCP established hash table entries: 262144 (order: 10, 4194304 bytes) +[ 0.445112] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.445635] TCP: Hash tables configured (established 262144 bind 65536) +[ 0.445638] TCP reno registered +[ 0.445649] UDP hash table entries: 1024 (order: 3, 32768 bytes) +[ 0.445677] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes) +[ 0.445795] NET: Registered protocol family 1 +[ 0.445808] pci 0000:00:00.0: MSI quirk detected; MSI disabled +[ 0.445830] pci 0000:00:01.0: disabling DAC on VIA PCI bridge +[ 0.445835] pci 0000:00:02.0: MSI quirk detected; subordinate MSI disabled +[ 0.445953] pci 0000:01:00.0: Boot video device +[ 0.445959] PCI: CLS 32 bytes, default 64 +[ 0.449988] agpgart-amd64 0000:00:00.0: AGP bridge [1106/0336] +[ 0.453090] agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xd0000000 +[ 0.453389] Scanning for low memory corruption every 60 seconds +[ 0.453529] audit: initializing netlink socket (disabled) +[ 0.453540] type=2000 audit(1289561329.440:1): initialized +[ 0.482937] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.484555] VFS: Disk quotas dquot_6.5.2 +[ 0.484617] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.485268] fuse init (API version 7.14) +[ 0.485361] msgmni has been set to 3733 +[ 0.488235] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.488241] io scheduler noop registered +[ 0.488244] io scheduler deadline registered +[ 0.488283] io scheduler cfq registered (default) +[ 0.500205] pcieport 0000:00:02.0: setting latency timer to 64 +[ 0.500699] pcieport 0000:00:03.0: setting latency timer to 64 +[ 0.500862] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.501241] pciehp 0000:00:02.0:pcie04: HPC vendor_id 1106 device_id a238 ss_vid 0 ss_did 0 +[ 0.501281] pciehp 0000:00:02.0:pcie04: service driver pciehp loaded +[ 0.501296] pciehp 0000:00:03.0:pcie04: HPC vendor_id 1106 device_id c238 ss_vid 0 ss_did 0 +[ 0.501326] pciehp 0000:00:03.0:pcie04: service driver pciehp loaded +[ 0.501334] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.501523] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.501531] ACPI: Power Button [PWRB] +[ 0.501586] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.501589] ACPI: Power Button [PWRF] +[ 0.502255] ACPI: acpi_idle registered with cpuidle +[ 0.506642] ERST: Table is not found! +[ 0.506803] Linux agpgart interface v0.103 +[ 0.506807] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.506906] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.506996] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 0.507260] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.507379] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 0.508601] brd: module loaded +[ 0.509149] loop: module loaded +[ 0.509495] alloc irq_desc for 21 on node 0 +[ 0.509497] alloc kstat_irqs on node 0 +[ 0.509506] pata_acpi 0000:00:0f.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.509560] pata_acpi 0000:00:0f.0: PCI INT B disabled +[ 0.510054] Fixed MDIO Bus: probed +[ 0.510087] PPP generic driver version 2.4.2 +[ 0.510143] tun: Universal TUN/TAP device driver, 1.6 +[ 0.510144] tun: (C) 1999-2004 Max Krasnyansky +[ 0.510224] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.510271] ehci_hcd 0000:00:10.4: PCI INT C -> GSI 21 (level, low) -> IRQ 21 +[ 0.510294] ehci_hcd 0000:00:10.4: EHCI Host Controller +[ 0.510331] ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 1 +[ 0.510384] ehci_hcd 0000:00:10.4: irq 21, io mem 0xdffff000 +[ 0.530013] ehci_hcd 0000:00:10.4: USB 2.0 started, EHCI 1.00 +[ 0.530152] hub 1-0:1.0: USB hub found +[ 0.530158] hub 1-0:1.0: 8 ports detected +[ 0.530259] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.530275] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.530384] alloc irq_desc for 20 on node 0 +[ 0.530386] alloc kstat_irqs on node 0 +[ 0.530394] uhci_hcd 0000:00:10.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 0.530402] uhci_hcd 0000:00:10.0: UHCI Host Controller +[ 0.530450] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2 +[ 0.530483] uhci_hcd 0000:00:10.0: irq 20, io base 0x0000f900 +[ 0.530611] hub 2-0:1.0: USB hub found +[ 0.530615] hub 2-0:1.0: 2 ports detected +[ 0.530724] alloc irq_desc for 22 on node 0 +[ 0.530727] alloc kstat_irqs on node 0 +[ 0.530731] uhci_hcd 0000:00:10.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 0.530737] uhci_hcd 0000:00:10.1: UHCI Host Controller +[ 0.530780] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3 +[ 0.530811] uhci_hcd 0000:00:10.1: irq 22, io base 0x0000f800 +[ 0.530929] hub 3-0:1.0: USB hub found +[ 0.530933] hub 3-0:1.0: 2 ports detected +[ 0.531032] uhci_hcd 0000:00:10.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21 +[ 0.531038] uhci_hcd 0000:00:10.2: UHCI Host Controller +[ 0.531074] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 4 +[ 0.531095] uhci_hcd 0000:00:10.2: irq 21, io base 0x0000f700 +[ 0.531218] hub 4-0:1.0: USB hub found +[ 0.531222] hub 4-0:1.0: 2 ports detected +[ 0.531314] alloc irq_desc for 23 on node 0 +[ 0.531316] alloc kstat_irqs on node 0 +[ 0.531321] uhci_hcd 0000:00:10.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23 +[ 0.531326] uhci_hcd 0000:00:10.3: UHCI Host Controller +[ 0.531365] uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 5 +[ 0.531396] uhci_hcd 0000:00:10.3: irq 23, io base 0x0000f600 +[ 0.531521] hub 5-0:1.0: USB hub found +[ 0.531524] hub 5-0:1.0: 2 ports detected +[ 0.531654] PNP: No PS/2 controller found. Probing ports directly. +[ 0.532060] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.532068] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.532141] mice: PS/2 mouse device common for all mice +[ 0.532273] rtc_cmos 00:04: RTC can wake from S4 +[ 0.532320] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 +[ 0.532354] rtc0: alarms up to one year, y3k, 242 bytes nvram +[ 0.532476] device-mapper: uevent: version 1.0.3 +[ 0.532562] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.532644] device-mapper: multipath: version 1.1.1 loaded +[ 0.532647] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.532801] cpuidle: using governor ladder +[ 0.532803] cpuidle: using governor menu +[ 0.533097] TCP cubic registered +[ 0.533236] NET: Registered protocol family 10 +[ 0.533616] lo: Disabled Privacy Extensions +[ 0.533823] NET: Registered protocol family 17 +[ 0.533860] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ (2 cpu cores) (version 2.20.00) +[ 0.533870] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found. +[ 0.533871] [Firmware Bug]: powernow-k8: Try again with latest BIOS. +[ 0.533997] PM: Resume from disk failed. +[ 0.534015] registered taskstats version 1 +[ 0.534314] Magic number: 2:25:479 +[ 0.534430] rtc_cmos 00:04: setting system clock to 2010-11-12 11:28:50 UTC (1289561330) +[ 0.534433] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.534435] EDD information not available. +[ 0.576911] Freeing initrd memory: 10756k freed +[ 0.582020] Freeing unused kernel memory: 908k freed +[ 0.582406] Write protecting the kernel read-only data: 10240k +[ 0.582580] Freeing unused kernel memory: 416k freed +[ 0.582935] Freeing unused kernel memory: 1644k freed +[ 0.604736] udev[88]: starting version 163 +[ 0.686853] via-rhine.c:v1.10-LK1.4.3 2007-03-06 Written by Donald Becker +[ 0.721421] sata_via 0000:00:0f.0: version 2.6 +[ 0.721443] sata_via 0000:00:0f.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21 +[ 0.721487] sata_via 0000:00:0f.0: routed to hard irq line 11 +[ 0.756240] scsi0 : sata_via +[ 0.764116] FDC 0 is a post-1991 82077 +[ 0.764415] scsi1 : sata_via +[ 0.766598] ata1: SATA max UDMA/133 cmd 0xff00 ctl 0xfe00 bmdma 0xfb00 irq 21 +[ 0.766601] ata2: SATA max UDMA/133 cmd 0xfd00 ctl 0xfc00 bmdma 0xfb08 irq 21 +[ 0.766724] pata_via 0000:00:0f.1: version 0.3.4 +[ 0.766876] scsi2 : pata_via +[ 0.766947] scsi3 : pata_via +[ 0.768888] ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14 +[ 0.768891] ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15 +[ 0.769020] via-rhine 0000:00:12.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.769609] eth0: VIA Rhine II at 0xdfffe000, 00:19:db:b6:1f:02, IRQ 23. +[ 0.770348] eth0: MII PHY found at address 1, status 0x786d advertising 01e1 Link 45e1. +[ 0.970018] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 1.010536] ata3.00: ATA-6: ST3120026A, 3.06, max UDMA/100 +[ 1.010539] ata3.00: 234441648 sectors, multi 16: LBA48 +[ 1.050411] ata3.00: configured for UDMA/100 +[ 1.193756] ata1.00: ATA-7: MAXTOR STM3320620AS, 3.AAE, max UDMA/133 +[ 1.193759] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.277070] ata1.00: configured for UDMA/133 +[ 1.277220] scsi 0:0:0:0: Direct-Access ATA MAXTOR STM332062 3.AA PQ: 0 ANSI: 5 +[ 1.277423] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.277467] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 1.277552] sd 0:0:0:0: [sda] Write Protect is off +[ 1.277556] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.277578] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.277740] sda: sda1 sda2 < +[ 1.320016] usb 2-1: new full speed USB device using uhci_hcd and address 2 +[ 1.326011] sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 > +[ 1.455437] sd 0:0:0:0: [sda] Attached SCSI disk +[ 1.490015] ata2: SATA link down 1.5 Gbps (SStatus 0 SControl 300) +[ 1.500791] scsi 2:0:0:0: Direct-Access ATA ST3120026A 3.06 PQ: 0 ANSI: 5 +[ 1.500935] sd 2:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/111 GiB) +[ 1.501014] sd 2:0:0:0: [sdb] Write Protect is off +[ 1.501017] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.501039] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.501104] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 1.501212] sdb: sdb1 sdb2 < sdb5 sdb6 sdb7 > +[ 1.536237] sd 2:0:0:0: [sdb] Attached SCSI disk +[ 1.564564] usbcore: registered new interface driver hiddev +[ 1.567876] input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:10.0/usb2/2-1/2-1:1.0/input/input2 +[ 1.567981] generic-usb 0003:046D:C318.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech Logitech Illuminated Keyboard] on usb-0000:00:10.0-1/input0 +[ 1.571633] input: Logitech Logitech Illuminated Keyboard as /devices/pci0000:00/0000:00:10.0/usb2/2-1/2-1:1.1/input/input3 +[ 1.571758] generic-usb 0003:046D:C318.0002: input,hiddev96,hidraw1: USB HID v1.11 Device [Logitech Logitech Illuminated Keyboard] on usb-0000:00:10.0-1/input1 +[ 1.571777] usbcore: registered new interface driver usbhid +[ 1.571780] usbhid: USB HID core driver +[ 1.700376] ata4.00: ATAPI: TSSTcorpCD/DVDW SH-S182D, SB04, max UDMA/33 +[ 1.700407] ata4.01: ATAPI: TSSTcorp CDDVDW SH-S202J, SB02, max UDMA/66 +[ 1.700429] ata4.01: limited to UDMA/33 due to 40-wire cable +[ 1.740257] ata4.00: configured for UDMA/33 +[ 1.780252] ata4.01: configured for UDMA/33 +[ 1.781869] scsi 3:0:0:0: CD-ROM TSSTcorp CD/DVDW SH-S182D SB04 PQ: 0 ANSI: 5 +[ 1.788470] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.788474] Uniform CD-ROM driver Revision: 3.20 +[ 1.788599] sr 3:0:0:0: Attached scsi CD-ROM sr0 +[ 1.788668] sr 3:0:0:0: Attached scsi generic sg2 type 5 +[ 1.789298] scsi 3:0:1:0: CD-ROM TSSTcorp CDDVDW SH-S202J SB02 PQ: 0 ANSI: 5 +[ 1.792684] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 1.792781] sr 3:0:1:0: Attached scsi CD-ROM sr1 +[ 1.792836] sr 3:0:1:0: Attached scsi generic sg3 type 5 +[ 1.802790] usb 3-1: new low speed USB device using uhci_hcd and address 2 +[ 2.006221] input: Microsoft Microsoft Wheel Mouse Optical® as /devices/pci0000:00/0000:00:10.1/usb3/3-1/3-1:1.0/input/input4 +[ 2.006408] generic-usb 0003:045E:0040.0003: input,hidraw2: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:10.1-1/input0 +[ 2.968805] EXT3-fs: barriers not enabled +[ 2.973653] kjournald starting. Commit interval 5 seconds +[ 2.973688] EXT3-fs (sda11): mounted filesystem with ordered data mode +[ 4.449890] Adding 995992k swap on /dev/sda12. Priority:-1 extents:1 across:995992k +[ 4.761509] udev[405]: starting version 163 +[ 5.790404] type=1400 audit(1289557735.750:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=556 comm="apparmor_parser" +[ 5.790704] type=1400 audit(1289557735.750:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=556 comm="apparmor_parser" +[ 5.790864] type=1400 audit(1289557735.750:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=556 comm="apparmor_parser" +[ 8.031075] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 8.138711] EDAC MC: Ver: 2.1.0 Oct 16 2010 +[ 8.142143] EDAC amd64_edac: Ver: 3.3.0 Oct 16 2010 +[ 8.142236] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3). +[ 8.142243] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load. +[ 8.142245] Either enable ECC checking or force module loading by setting 'ecc_enable_override'. +[ 8.142246] (Note that use of the override may cause unknown side effects.) +[ 8.142416] amd64_edac: probe of 0000:00:18.2 failed with error -22 +[ 8.161151] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 8.185993] parport_pc 00:0a: reported by Plug and Play ACPI +[ 8.186045] parport0: PC-style at 0x378, irq 7 [PCSPP] +[ 8.204875] lp: driver loaded but no devices found +[ 8.260175] lp0: using parport0 (interrupt-driven). +[ 8.260455] ppdev: user-space parallel port driver +[ 8.555845] alloc irq_desc for 17 on node 0 +[ 8.555849] alloc kstat_irqs on node 0 +[ 8.555861] HDA Intel 0000:80:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 8.555916] HDA Intel 0000:80:01.0: setting latency timer to 64 +[ 8.555929] BUG: unable to handle kernel paging request at ffffc90000360000 +[ 8.556077] IP: [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 8.556184] PGD 75417067 PUD 75418067 PMD 75522067 PTE 800000fd00000173 +[ 8.556421] Oops: 0009 [#1] SMP +[ 8.556561] last sysfs file: /sys/devices/pci0000:00/0000:00:0f.0/host0/target0:0:0/0:0:0:0/block/sda/sda17/alignment_offset +[ 8.556623] CPU 0 +[ 8.556672] Modules linked in: snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore snd_page_alloc ppdev lp parport_pc k8temp edac_core edac_mce_amd i2c_viapro parport shpchp psmouse joydev serio_raw usbhid hid floppy via_rhine pata_via mii sata_via +[ 8.558292] +[ 8.558342] Pid: 856, comm: work_for_cpu Not tainted 2.6.35-22-generic #35-Ubuntu MS-7253/MS-7253 +[ 8.558400] RIP: 0010:[] [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 8.558508] RSP: 0018:ffff880073aa5e20 EFLAGS: 00010282 +[ 8.558560] RAX: ffffc90000360000 RBX: ffff880073aa5e80 RCX: 0000000000000000 +[ 8.558615] RDX: 0000000000000000 RSI: 0000000000000286 RDI: 0000000000000286 +[ 8.558671] RBP: ffff880073aa5e70 R08: 0000000000000001 R09: 0000000000000040 +[ 8.558726] R10: 0000000000000008 R11: 0000000000000003 R12: ffff8800752af000 +[ 8.558790] R13: ffff88007575e400 R14: 0000000000000000 R15: ffff88007575d400 +[ 8.558855] FS: 00007f7f480467a0(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +[ 8.558930] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 8.558993] CR2: ffffc90000360000 CR3: 000000007536b000 CR4: 00000000000006f0 +[ 8.559057] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 8.559122] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 8.559187] Process work_for_cpu (pid: 856, threadinfo ffff880073aa4000, task ffff88007417adc0) +[ 8.559262] Stack: +[ 8.559320] ffffffffa00bf1e0 ffffffffa009ad78 ffffffff00000000 0000000073aa5e88 +[ 8.559519] <0> 0000000000000000 ffff8800752af000 ffffffffa009a520 ffff8800752af090 +[ 8.559818] <0> 0000000000000000 0000000000000000 ffff880073aa5eb0 ffffffffa0099100 +[ 8.560168] Call Trace: +[ 8.560231] [] azx_probe+0xb8/0x284 [snd_hda_intel] +[ 8.560298] [] ? do_work_for_cpu+0x0/0x30 +[ 8.560363] [] local_pci_probe+0x17/0x20 +[ 8.560426] [] do_work_for_cpu+0x18/0x30 +[ 8.560489] [] kthread+0x96/0xa0 +[ 8.560552] [] kernel_thread_helper+0x4/0x10 +[ 8.560616] [] ? kthread+0x0/0xa0 +[ 8.560678] [] ? kernel_thread_helper+0x0/0x10 +[ 8.560740] Code: ef 31 f6 4c 89 ef 89 4d c0 e8 17 d5 ff ff 85 c0 0f 88 c3 03 00 00 4c 89 e7 e8 87 bd 23 e1 41 8b 7d 40 e8 1e 21 03 e1 49 8b 45 38 <66> 44 8b 30 41 8b 45 14 8b 4d c0 8d 50 fd 83 fa 01 77 3f 31 d2 +[ 8.563732] RIP [] azx_create+0x36b/0x73d [snd_hda_intel] +[ 8.563843] RSP +[ 8.563902] CR2: ffffc90000360000 +[ 8.563962] ---[ end trace ea6a32672ca8c0d1 ]--- +[ 9.011387] EXT3-fs (sda11): using internal journal +[ 9.201459] EXT3-fs: barriers not enabled +[ 9.213179] kjournald starting. Commit interval 5 seconds +[ 9.213323] EXT3-fs (sda13): using internal journal +[ 9.213475] EXT3-fs (sda13): mounted filesystem with ordered data mode +[ 9.659852] EXT3-fs: barriers not enabled +[ 9.665279] kjournald starting. Commit interval 5 seconds +[ 9.665445] EXT3-fs (sda17): using internal journal +[ 9.665597] EXT3-fs (sda17): mounted filesystem with ordered data mode +[ 9.982821] EXT3-fs: barriers not enabled +[ 9.983072] kjournald starting. Commit interval 5 seconds +[ 9.983224] EXT3-fs (sda16): using internal journal +[ 9.983376] EXT3-fs (sda16): mounted filesystem with ordered data mode +[ 10.243061] EXT3-fs: barriers not enabled +[ 10.243329] kjournald starting. Commit interval 5 seconds +[ 10.243488] EXT3-fs (sda15): using internal journal +[ 10.243641] EXT3-fs (sda15): mounted filesystem with ordered data mode +[ 10.769174] EXT3-fs: barriers not enabled +[ 10.781022] kjournald starting. Commit interval 5 seconds +[ 10.781168] EXT3-fs (sda14): using internal journal +[ 10.781321] EXT3-fs (sda14): mounted filesystem with ordered data mode +[ 12.678212] type=1400 audit(1289557742.630:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=975 comm="apparmor_parser" +[ 12.678575] type=1400 audit(1289557742.630:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=975 comm="apparmor_parser" +[ 12.678828] type=1400 audit(1289557742.630:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=975 comm="apparmor_parser" +[ 12.706775] type=1400 audit(1289557742.660:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=974 comm="apparmor_parser" +[ 12.741569] type=1400 audit(1289557742.690:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=978 comm="apparmor_parser" +[ 12.742025] type=1400 audit(1289557742.690:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=978 comm="apparmor_parser" +[ 12.760879] type=1400 audit(1289557742.710:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=976 comm="apparmor_parser" +[ 12.764672] type=1400 audit(1289557742.720:12): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=976 comm="apparmor_parser" +[ 12.767077] type=1400 audit(1289557742.720:13): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=976 comm="apparmor_parser" +[ 12.770019] type=1400 audit(1289557742.720:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=979 comm="apparmor_parser" +[ 13.672933] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1 + +Bug: 697514 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-24-generic (buildd@yellow) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #42-Ubuntu SMP Thu Dec 2 02:41:37 UTC 2010 (Ubuntu 2.6.35-24.42-generic 2.6.35.8) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic root=UUID=3a3bdef2-d2b1-42e9-b4f4-8774f733d24a ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d000 (usable) +[ 0.000000] BIOS-e820: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000009b63f000 (usable) +[ 0.000000] BIOS-e820: 000000009b63f000 - 000000009b6bf000 (reserved) +[ 0.000000] BIOS-e820: 000000009b6bf000 - 000000009b7bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000009b7bf000 - 000000009b7ff000 (ACPI data) +[ 0.000000] BIOS-e820: 000000009b7ff000 - 000000009b800000 (usable) +[ 0.000000] BIOS-e820: 000000009b800000 - 00000000a0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000158000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.6 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x158000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-combining +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect +[ 0.000000] 2 base 080000000 mask FE0000000 write-back +[ 0.000000] 3 base 09C000000 mask FFC000000 uncachable +[ 0.000000] 4 base 09B800000 mask FFF800000 uncachable +[ 0.000000] 5 base 100000000 mask F80000000 write-back +[ 0.000000] 6 base 158000000 mask FF8000000 uncachable +[ 0.000000] 7 base 160000000 mask FE0000000 uncachable +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0x9b800 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009d000 (usable) +[ 0.000000] modified: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 000000009b63f000 (usable) +[ 0.000000] modified: 000000009b63f000 - 000000009b6bf000 (reserved) +[ 0.000000] modified: 000000009b6bf000 - 000000009b7bf000 (ACPI NVS) +[ 0.000000] modified: 000000009b7bf000 - 000000009b7ff000 (ACPI data) +[ 0.000000] modified: 000000009b7ff000 - 000000009b800000 (usable) +[ 0.000000] modified: 000000009b800000 - 00000000a0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000158000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-000000009b800000 +[ 0.000000] 0000000000 - 009b800000 page 2M +[ 0.000000] kernel direct mapping tables up to 9b800000 @ 16000-1a000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000158000000 +[ 0.000000] 0100000000 - 0158000000 page 2M +[ 0.000000] kernel direct mapping tables up to 158000000 @ 18000-1f000 +[ 0.000000] RAMDISK: 37570000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HP ) +[ 0.000000] ACPI: XSDT 000000009b7fe120 00094 (v01 HPQOEM SLIC-MPC 00000001 01000013) +[ 0.000000] ACPI: FACP 000000009b7fc000 000F4 (v04 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT 000000009b7e9000 0FA19 (v02 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS 000000009b75f000 00040 +[ 0.000000] ACPI: ASF! 000000009b7fd000 000A5 (v32 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: HPET 000000009b7fb000 00038 (v01 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: APIC 000000009b7fa000 0008C (v02 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG 000000009b7f9000 0003C (v01 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC 000000009b7e8000 00176 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 000000009b7e6000 01152 (v01 TrmRef PtidDevc 00001000 INTL 20051117) +[ 0.000000] ACPI: SSDT 000000009b7e5000 00172 (v01 VaRef Va_Acpi 00003000 INTL 20051117) +[ 0.000000] ACPI: BOOT 000000009b7e4000 00028 (v01 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 000000009b7e3000 00C39 (v01 INTEL SataPri 00001000 INTL 20051117) +[ 0.000000] ACPI: SSDT 000000009b7e2000 006C5 (v01 INTEL SataSec 00001000 INTL 20051117) +[ 0.000000] ACPI: ASPT 000000009b7e1000 00034 (v04 HP SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SSDT 000000009b7e0000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: SSDT 000000009b7de000 01A8F (v01 AmdRef AmdTabl 00001000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000158000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000158000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff880100200000-ffff8801039fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00158000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x0009b63f +[ 0.000000] 0: 0x0009b7ff -> 0x0009b800 +[ 0.000000] 0: 0x00100000 -> 0x00158000 +[ 0.000000] On node 0 totalpages: 996813 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3925 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 618104 pages, LIFO batch:31 +[ 0.000000] Normal zone: 4928 pages used for memmap +[ 0.000000] Normal zone: 355520 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [1a000 - 1a7ff] +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 000000009b63f000 - 000000009b6bf000 +[ 0.000000] PM: Registered nosave memory: 000000009b6bf000 - 000000009b7bf000 +[ 0.000000] PM: Registered nosave memory: 000000009b7bf000 - 000000009b7ff000 +[ 0.000000] PM: Registered nosave memory: 000000009b800000 - 00000000a0000000 +[ 0.000000] PM: Registered nosave memory: 00000000a0000000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 +[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000feb00000 +[ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000 +[ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000 +[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000 +[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000 +[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000 +[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at a0000000 (gap: a0000000:40000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91520 r8192 d23168 u262144 +[ 0.000000] early_res array is doubled to 128 at [1a800 - 1b7ff] +[ 0.000000] pcpu-alloc: s91520 r8192 d23168 u262144 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 977549 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic root=UUID=3a3bdef2-d2b1-42e9-b4f4-8774f733d24a ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (65 early reservations) +[ 0.000000] #1 [0001000000 - 0001d17114] TEXT DATA BSS +[ 0.000000] #2 [0037570000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [000009d000 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d18000 - 0001d182f6] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000018000] PGTABLE +[ 0.000000] #8 [0000018000 - 000001a000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d18300 - 0001d19300] BOOTMEM +[ 0.000000] #11 [0001d17140 - 0001d17428] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103a00000] MEMMAP 0 +[ 0.000000] #15 [0001d17440 - 0001d175c0] BOOTMEM +[ 0.000000] #16 [0001d19300 - 0001d31300] BOOTMEM +[ 0.000000] #17 [0001d31300 - 0001d3d300] BOOTMEM +[ 0.000000] #18 [0001d3e000 - 0001d3f000] BOOTMEM +[ 0.000000] #19 [0001d175c0 - 0001d17601] BOOTMEM +[ 0.000000] #20 [0001d17640 - 0001d17683] BOOTMEM +[ 0.000000] #21 [0001d176c0 - 0001d17ae8] BOOTMEM +[ 0.000000] #22 [0001d17b00 - 0001d17b68] BOOTMEM +[ 0.000000] #23 [0001d17b80 - 0001d17be8] BOOTMEM +[ 0.000000] #24 [0001d17c00 - 0001d17c68] BOOTMEM +[ 0.000000] #25 [0001d17c80 - 0001d17ce8] BOOTMEM +[ 0.000000] #26 [0001d17d00 - 0001d17d68] BOOTMEM +[ 0.000000] #27 [0001d17d80 - 0001d17de8] BOOTMEM +[ 0.000000] #28 [0001d17e00 - 0001d17e68] BOOTMEM +[ 0.000000] #29 [0001d17e80 - 0001d17ee8] BOOTMEM +[ 0.000000] #30 [0001d17f00 - 0001d17f68] BOOTMEM +[ 0.000000] #31 [0001d17f80 - 0001d17fe8] BOOTMEM +[ 0.000000] #32 [0001d3d300 - 0001d3d368] BOOTMEM +[ 0.000000] #33 [0001d3d380 - 0001d3d3e8] BOOTMEM +[ 0.000000] #34 [0001d3d400 - 0001d3d468] BOOTMEM +[ 0.000000] #35 [0001d3d480 - 0001d3d4e8] BOOTMEM +[ 0.000000] #36 [0001d3d500 - 0001d3d568] BOOTMEM +[ 0.000000] #37 [0001d3d580 - 0001d3d5e8] BOOTMEM +[ 0.000000] #38 [0001d3d600 - 0001d3d668] BOOTMEM +[ 0.000000] #39 [0001d3d680 - 0001d3d6e8] BOOTMEM +[ 0.000000] #40 [0001d3d700 - 0001d3d720] BOOTMEM +[ 0.000000] #41 [0001d3d740 - 0001d3d760] BOOTMEM +[ 0.000000] #42 [0001d3d780 - 0001d3d7a0] BOOTMEM +[ 0.000000] #43 [0001d3d7c0 - 0001d3d82a] BOOTMEM +[ 0.000000] #44 [0001d3d840 - 0001d3d8aa] BOOTMEM +[ 0.000000] #45 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #46 [0001e40000 - 0001e5e000] BOOTMEM +[ 0.000000] #47 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #48 [0001ec0000 - 0001ede000] BOOTMEM +[ 0.000000] #49 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #50 [0001f40000 - 0001f5e000] BOOTMEM +[ 0.000000] #51 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #52 [0001fc0000 - 0001fde000] BOOTMEM +[ 0.000000] #53 [0001d3d8c0 - 0001d3d8c8] BOOTMEM +[ 0.000000] #54 [0001d3d900 - 0001d3d908] BOOTMEM +[ 0.000000] #55 [0001d3d940 - 0001d3d960] BOOTMEM +[ 0.000000] #56 [0001d3d980 - 0001d3d9c0] BOOTMEM +[ 0.000000] #57 [0001d3d9c0 - 0001d3dae0] BOOTMEM +[ 0.000000] #58 [0001d3db00 - 0001d3db48] BOOTMEM +[ 0.000000] #59 [0001d3db80 - 0001d3dbc8] BOOTMEM +[ 0.000000] #60 [0001d3f000 - 0001d47000] BOOTMEM +[ 0.000000] #61 [0001fde000 - 0005fde000] BOOTMEM +[ 0.000000] #62 [0001d47000 - 0001d67000] BOOTMEM +[ 0.000000] #63 [0001d67000 - 0001da7000] BOOTMEM +[ 0.000000] #64 [000001b800 - 0000023800] BOOTMEM +[ 0.000000] Memory: 3838576k/5636096k available (5711k kernel code, 1648844k absent, 148676k reserved, 5379k data, 908k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:744 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 40632320 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.010000] Detected 1196.995 MHz processor. +[ 0.000011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2393.99 BogoMIPS (lpj=11969950) +[ 0.000017] pid_max: default: 32768 minimum: 301 +[ 0.000047] Security Framework initialized +[ 0.000072] AppArmor: AppArmor initialized +[ 0.000074] Yama: becoming mindful. +[ 0.000715] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.002245] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.002847] Mount-cache hash table entries: 256 +[ 0.003007] Initializing cgroup subsys ns +[ 0.003013] Initializing cgroup subsys cpuacct +[ 0.003018] Initializing cgroup subsys memory +[ 0.003029] Initializing cgroup subsys devices +[ 0.003032] Initializing cgroup subsys freezer +[ 0.003035] Initializing cgroup subsys net_cls +[ 0.003066] CPU: Physical Processor ID: 0 +[ 0.003068] CPU: Processor Core ID: 0 +[ 0.003077] mce: CPU supports 9 MCE banks +[ 0.003090] CPU0: Thermal monitoring handled by SMI +[ 0.003102] using mwait in idle threads. +[ 0.003105] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.003116] ... version: 3 +[ 0.003118] ... bit width: 48 +[ 0.003120] ... generic registers: 4 +[ 0.003122] ... value mask: 0000ffffffffffff +[ 0.003125] ... max period: 000000007fffffff +[ 0.003127] ... fixed-purpose events: 3 +[ 0.003129] ... event mask: 000000070000000f +[ 0.006423] ACPI: Core revision 20100428 +[ 0.062793] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.062800] ftrace: allocating 22678 entries in 89 pages +[ 0.074447] Setting APIC routing to flat +[ 0.074825] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.174782] CPU0: Intel(R) Core(TM) i5 CPU U 430 @ 1.20GHz stepping 05 +[ 0.286661] Booting Node 0, Processors #1 +[ 0.446436] CPU1: Thermal monitoring handled by SMI +[ 0.466685] #2 +[ 0.626332] CPU2: Thermal monitoring handled by SMI +[ 0.646509] #3 +[ 0.806231] CPU3: Thermal monitoring handled by SMI +[ 0.826323] Brought up 4 CPUs +[ 0.826327] Total of 4 processors activated (9575.98 BogoMIPS). +[ 0.828675] devtmpfs: initialized +[ 0.830180] regulator: core version 0.5 +[ 0.830210] Time: 21:04:34 Date: 01/04/11 +[ 0.830254] NET: Registered protocol family 16 +[ 0.830384] Trying to unpack rootfs image as initramfs... +[ 0.830406] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 0.830409] ACPI: bus type pci registered +[ 0.830519] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.830524] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.887492] PCI: Using configuration type 1 for base access +[ 0.888622] bio: create slab at 0 +[ 0.893249] ACPI: EC: Look up EC in DSDT +[ 0.897658] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.908766] ACPI: BIOS _OSI(Linux) query ignored +[ 0.921439] ACPI: SSDT 000000009b691a98 0033A (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.922633] ACPI: Dynamic OEM Table Load: +[ 0.922637] ACPI: SSDT (null) 0033A (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 0.923328] ACPI: SSDT 000000009b690018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.924483] ACPI: Dynamic OEM Table Load: +[ 0.924487] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 0.925616] ACPI: SSDT 000000009b691718 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 0.926890] ACPI: Dynamic OEM Table Load: +[ 0.926894] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 0.927322] ACPI: SSDT 000000009b68fd98 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 0.928566] ACPI: Dynamic OEM Table Load: +[ 0.928570] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 1.180296] Freeing initrd memory: 10752k freed +[ 1.336305] ACPI: Interpreter enabled +[ 1.336313] ACPI: (supports S0 S3 S4 S5) +[ 1.336381] ACPI: Using IOAPIC for interrupt routing +[ 1.339421] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 1.356441] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 1.364758] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62 +[ 1.364922] ACPI: Power Resource [FN00] (on) +[ 1.365475] ACPI: No dock devices found. +[ 1.365479] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 1.367052] \_SB_.PCI0:_OSC invalid UUID +[ 1.367054] _OSC request data:1 8 1f +[ 1.367061] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 1.369268] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 1.369273] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 1.369276] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 1.369281] pci_root PNP0A08:00: host bridge window [mem 0xa0000000-0xfeafffff] +[ 1.369379] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 1.369383] pci 0000:00:01.0: PME# disabled +[ 1.369414] pci 0000:00:02.0: reg 10: [mem 0xc0000000-0xc03fffff 64bit] +[ 1.369422] pci 0000:00:02.0: reg 18: [mem 0xb0000000-0xbfffffff 64bit pref] +[ 1.369428] pci 0000:00:02.0: reg 20: [io 0x4050-0x4057] +[ 1.369523] pci 0000:00:16.0: reg 10: [mem 0xc4506100-0xc450610f 64bit] +[ 1.369579] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 1.369584] pci 0000:00:16.0: PME# disabled +[ 1.369646] pci 0000:00:1a.0: reg 10: [mem 0xc4505c00-0xc4505fff] +[ 1.369708] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 1.369714] pci 0000:00:1a.0: PME# disabled +[ 1.369754] pci 0000:00:1b.0: reg 10: [mem 0xc4500000-0xc4503fff 64bit] +[ 1.369804] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 1.369809] pci 0000:00:1b.0: PME# disabled +[ 1.369890] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 1.369895] pci 0000:00:1c.0: PME# disabled +[ 1.369974] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 1.369979] pci 0000:00:1c.1: PME# disabled +[ 1.370040] pci 0000:00:1d.0: reg 10: [mem 0xc4505800-0xc4505bff] +[ 1.370103] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 1.370109] pci 0000:00:1d.0: PME# disabled +[ 1.370319] pci 0000:00:1f.2: reg 10: [io 0x4048-0x404f] +[ 1.370327] pci 0000:00:1f.2: reg 14: [io 0x405c-0x405f] +[ 1.370335] pci 0000:00:1f.2: reg 18: [io 0x4040-0x4047] +[ 1.370343] pci 0000:00:1f.2: reg 1c: [io 0x4058-0x405b] +[ 1.370351] pci 0000:00:1f.2: reg 20: [io 0x4020-0x403f] +[ 1.370359] pci 0000:00:1f.2: reg 24: [mem 0xc4505000-0xc45057ff] +[ 1.370407] pci 0000:00:1f.2: PME# supported from D3hot +[ 1.370412] pci 0000:00:1f.2: PME# disabled +[ 1.370449] pci 0000:00:1f.3: reg 10: [mem 0xc4506000-0xc45060ff 64bit] +[ 1.370465] pci 0000:00:1f.3: reg 20: [io 0x4000-0x401f] +[ 1.370524] pci 0000:00:1f.6: reg 10: [mem 0xc4504000-0xc4504fff 64bit] +[ 1.370648] pci 0000:01:00.0: reg 10: [mem 0xa0000000-0xafffffff 64bit pref] +[ 1.370662] pci 0000:01:00.0: reg 18: [mem 0xc4400000-0xc441ffff 64bit] +[ 1.370670] pci 0000:01:00.0: reg 20: [io 0x3000-0x30ff] +[ 1.370684] pci 0000:01:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref] +[ 1.370715] pci 0000:01:00.0: supports D1 D2 +[ 1.370761] pci 0000:01:00.1: reg 10: [mem 0xc4420000-0xc4423fff 64bit] +[ 1.370819] pci 0000:01:00.1: supports D1 D2 +[ 1.370847] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.370851] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff] +[ 1.370855] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff] +[ 1.370861] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref] +[ 1.370943] pci 0000:02:00.0: reg 10: [io 0x2000-0x20ff] +[ 1.370966] pci 0000:02:00.0: reg 18: [mem 0xc0404000-0xc0404fff 64bit pref] +[ 1.370983] pci 0000:02:00.0: reg 20: [mem 0xc0400000-0xc0403fff 64bit pref] +[ 1.371035] pci 0000:02:00.0: supports D1 D2 +[ 1.371038] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.371044] pci 0000:02:00.0: PME# disabled +[ 1.371077] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 1.371082] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 1.371087] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff] +[ 1.371095] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref] +[ 1.371198] pci 0000:03:00.0: reg 10: [mem 0xc2400000-0xc2401fff 64bit] +[ 1.371301] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold +[ 1.371308] pci 0000:03:00.0: PME# disabled +[ 1.371341] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 1.371346] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff] +[ 1.371351] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff] +[ 1.371358] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref] +[ 1.371439] pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode) +[ 1.371445] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.371451] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 1.371459] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.371462] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 1.371466] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 1.371469] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 1.371472] pci 0000:00:1e.0: bridge window [mem 0xa0000000-0xfeafffff] (subtractive decode) +[ 1.371507] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 1.371910] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT] +[ 1.372122] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 1.372494] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 1.372729] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 1.373312] \_SB_.PCI0:_OSC invalid UUID +[ 1.373314] _OSC request data:1 19 1f +[ 1.435825] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 1.436754] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 1.437036] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 1.437315] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 1.437591] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15) +[ 1.437867] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 1.438144] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 1.438422] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 1.438700] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 1.438831] HEST: Table is not found! +[ 1.438928] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 1.438941] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none +[ 1.438949] vgaarb: loaded +[ 1.439130] SCSI subsystem initialized +[ 1.439274] libata version 3.00 loaded. +[ 1.439364] usbcore: registered new interface driver usbfs +[ 1.439378] usbcore: registered new interface driver hub +[ 1.439410] usbcore: registered new device driver usb +[ 1.439886] ACPI: WMI: Mapper loaded +[ 1.439889] PCI: Using ACPI for IRQ routing +[ 1.439893] PCI: pci_cache_line_size set to 64 bytes +[ 1.439997] reserve RAM buffer: 000000000009d000 - 000000000009ffff +[ 1.440000] reserve RAM buffer: 000000009b63f000 - 000000009bffffff +[ 1.440004] reserve RAM buffer: 000000009b800000 - 000000009bffffff +[ 1.440129] NetLabel: Initializing +[ 1.440132] NetLabel: domain hash size = 128 +[ 1.440133] NetLabel: protocols = UNLABELED CIPSOv4 +[ 1.440150] NetLabel: unlabeled traffic allowed by default +[ 1.440198] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 1.440206] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 1.442231] Switching to clocksource tsc +[ 1.453454] AppArmor: AppArmor Filesystem Enabled +[ 1.453480] pnp: PnP ACPI init +[ 1.453519] ACPI: bus type pnp registered +[ 1.455814] pnp 00:05: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.1 BAR 13 [io 0x1000-0x1fff] +[ 1.456345] alloc irq_desc for 23 on node 0 +[ 1.456348] alloc kstat_irqs on node 0 +[ 1.459097] pnp: PnP ACPI: found 12 devices +[ 1.459100] ACPI: ACPI bus type pnp unregistered +[ 1.459117] system 00:05: [io 0x0680-0x069f] has been reserved +[ 1.459121] system 00:05: [io 0x0800-0x080f] has been reserved +[ 1.459124] system 00:05: [io 0x0810-0x0813] has been reserved +[ 1.459127] system 00:05: [io 0xffff] has been reserved +[ 1.459135] system 00:05: [io 0x0400-0x047f] has been reserved +[ 1.459139] system 00:05: [io 0x0500-0x0501] has been reserved +[ 1.459142] system 00:05: [io 0x0700-0x077f] has been reserved +[ 1.459150] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 1.459154] system 00:0a: [mem 0xfed10000-0xfed13fff] has been reserved +[ 1.459157] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved +[ 1.459160] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved +[ 1.459164] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved +[ 1.459168] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 1.459171] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 1.459175] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved +[ 1.459178] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 1.459182] system 00:0a: [mem 0xc4600000-0xc4600fff] has been reserved +[ 1.465365] pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref] +[ 1.465415] pci 0000:01:00.0: BAR 6: assigned [mem 0xc4440000-0xc445ffff pref] +[ 1.465419] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.465423] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff] +[ 1.465428] pci 0000:00:01.0: bridge window [mem 0xc4400000-0xc44fffff] +[ 1.465432] pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref] +[ 1.465439] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 1.465443] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] +[ 1.465449] pci 0000:00:1c.0: bridge window [mem 0xc3400000-0xc43fffff] +[ 1.465454] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc13fffff 64bit pref] +[ 1.465462] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 1.465466] pci 0000:00:1c.1: bridge window [io 0x1000-0x1fff] +[ 1.465472] pci 0000:00:1c.1: bridge window [mem 0xc2400000-0xc33fffff] +[ 1.465477] pci 0000:00:1c.1: bridge window [mem 0xc1400000-0xc23fffff 64bit pref] +[ 1.465485] pci 0000:00:1e.0: PCI bridge to [bus 04-04] +[ 1.465487] pci 0000:00:1e.0: bridge window [io disabled] +[ 1.465493] pci 0000:00:1e.0: bridge window [mem disabled] +[ 1.465498] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 1.465514] alloc irq_desc for 16 on node -1 +[ 1.465516] alloc kstat_irqs on node -1 +[ 1.465523] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.465529] pci 0000:00:01.0: setting latency timer to 64 +[ 1.465540] alloc irq_desc for 17 on node -1 +[ 1.465542] alloc kstat_irqs on node -1 +[ 1.465547] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.465552] pci 0000:00:1c.0: setting latency timer to 64 +[ 1.465563] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 1.465568] pci 0000:00:1c.1: setting latency timer to 64 +[ 1.465577] pci 0000:00:1e.0: setting latency timer to 64 +[ 1.465583] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 1.465586] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 1.465588] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.465591] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfeafffff] +[ 1.465595] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff] +[ 1.465597] pci_bus 0000:01: resource 1 [mem 0xc4400000-0xc44fffff] +[ 1.465600] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref] +[ 1.465603] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff] +[ 1.465606] pci_bus 0000:02: resource 1 [mem 0xc3400000-0xc43fffff] +[ 1.465609] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc13fffff 64bit pref] +[ 1.465612] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff] +[ 1.465615] pci_bus 0000:03: resource 1 [mem 0xc2400000-0xc33fffff] +[ 1.465618] pci_bus 0000:03: resource 2 [mem 0xc1400000-0xc23fffff 64bit pref] +[ 1.465621] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7] +[ 1.465624] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff] +[ 1.465627] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.465629] pci_bus 0000:04: resource 7 [mem 0xa0000000-0xfeafffff] +[ 1.465678] NET: Registered protocol family 2 +[ 1.465891] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 1.467466] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 1.469871] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 1.470154] TCP: Hash tables configured (established 524288 bind 65536) +[ 1.470157] TCP reno registered +[ 1.470171] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 1.470206] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 1.470361] NET: Registered protocol family 1 +[ 1.470387] pci 0000:00:02.0: Boot video device +[ 1.502324] PCI: CLS 64 bytes, default 64 +[ 1.502328] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 1.502332] Placing 64MB software IO TLB between ffff880001fde000 - ffff880005fde000 +[ 1.502335] software IO TLB at phys 0x1fde000 - 0x5fde000 +[ 1.502380] Simple Boot Flag at 0x44 set to 0x1 +[ 1.502760] Scanning for low memory corruption every 60 seconds +[ 1.502942] audit: initializing netlink socket (disabled) +[ 1.502955] type=2000 audit(1294175074.360:1): initialized +[ 1.524568] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 1.526540] VFS: Disk quotas dquot_6.5.2 +[ 1.526620] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 1.527389] fuse init (API version 7.14) +[ 1.527503] msgmni has been set to 7518 +[ 1.530410] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 1.530414] io scheduler noop registered +[ 1.530416] io scheduler deadline registered +[ 1.530468] io scheduler cfq registered (default) +[ 1.530601] pcieport 0000:00:01.0: setting latency timer to 64 +[ 1.530632] alloc irq_desc for 40 on node -1 +[ 1.530635] alloc kstat_irqs on node -1 +[ 1.530648] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X +[ 1.530721] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 1.530756] alloc irq_desc for 41 on node -1 +[ 1.530758] alloc kstat_irqs on node -1 +[ 1.530767] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X +[ 1.530848] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 1.530883] alloc irq_desc for 42 on node -1 +[ 1.530885] alloc kstat_irqs on node -1 +[ 1.530893] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X +[ 1.530992] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 1.531281] \_SB_.PCI0:_OSC invalid UUID +[ 1.531283] _OSC request data:1 0 1f +[ 1.531538] \_SB_.PCI0:_OSC invalid UUID +[ 1.531540] _OSC request data:1 0 1f +[ 1.531810] \_SB_.PCI0:_OSC invalid UUID +[ 1.531812] _OSC request data:1 0 1f +[ 1.532060] \_SB_.PCI0:_OSC invalid UUID +[ 1.532063] _OSC request data:1 0 1f +[ 1.532120] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 1.532216] intel_idle: MWAIT substates: 0x1120 +[ 1.532219] intel_idle: v0.4 model 0x25 +[ 1.532221] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 1.534434] ACPI: AC Adapter [AC] (on-line) +[ 1.534551] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 +[ 1.534709] ACPI: Lid Switch [LID0] +[ 1.534760] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 +[ 1.534767] ACPI: Power Button [PWRB] +[ 1.534818] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 1.534822] ACPI: Power Button [PWRF] +[ 1.535202] ACPI: Fan [FAN0] (on) +[ 1.536847] ACPI: acpi_idle yielding to intel_idle +[ 1.555150] thermal LNXTHERM:01: registered as thermal_zone0 +[ 1.555159] ACPI: Thermal Zone [TZ00] (45 C) +[ 1.556232] thermal LNXTHERM:02: registered as thermal_zone1 +[ 1.556241] ACPI: Thermal Zone [TZ01] (31 C) +[ 1.557467] thermal LNXTHERM:03: registered as thermal_zone2 +[ 1.557479] ACPI: Thermal Zone [TZ02] (47 C) +[ 1.557625] ERST: Table is not found! +[ 1.558391] Linux agpgart interface v0.103 +[ 1.558427] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.560465] brd: module loaded +[ 1.561210] loop: module loaded +[ 1.561900] Fixed MDIO Bus: probed +[ 1.561937] PPP generic driver version 2.4.2 +[ 1.561975] tun: Universal TUN/TAP device driver, 1.6 +[ 1.561977] tun: (C) 1999-2004 Max Krasnyansky +[ 1.562061] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.562091] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.562150] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 1.562155] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 1.562208] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 1.562246] ehci_hcd 0000:00:1a.0: debug port 2 +[ 1.566177] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 1.566201] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xc4505c00 +[ 1.581660] ACPI: Battery Slot [BAT0] (battery present) +[ 1.583443] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 1.583613] hub 1-0:1.0: USB hub found +[ 1.583619] hub 1-0:1.0: 3 ports detected +[ 1.583700] alloc irq_desc for 20 on node -1 +[ 1.583702] alloc kstat_irqs on node -1 +[ 1.583710] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.583728] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.583732] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 1.583772] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 1.583802] ehci_hcd 0000:00:1d.0: debug port 2 +[ 1.587738] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 1.587755] ehci_hcd 0000:00:1d.0: irq 20, io mem 0xc4505800 +[ 1.603428] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 1.603578] hub 2-0:1.0: USB hub found +[ 1.603583] hub 2-0:1.0: 3 ports detected +[ 1.603652] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.603667] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.603798] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 1.607319] i8042.c: Detected active multiplexing controller, rev 1.1. +[ 1.610870] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.610879] serio: i8042 AUX0 port at 0x60,0x64 irq 12 +[ 1.610884] serio: i8042 AUX1 port at 0x60,0x64 irq 12 +[ 1.610889] serio: i8042 AUX2 port at 0x60,0x64 irq 12 +[ 1.610894] serio: i8042 AUX3 port at 0x60,0x64 irq 12 +[ 1.610995] mice: PS/2 mouse device common for all mice +[ 1.611170] rtc_cmos 00:06: RTC can wake from S4 +[ 1.611217] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0 +[ 1.611249] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs +[ 1.611371] device-mapper: uevent: version 1.0.3 +[ 1.611493] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.611615] device-mapper: multipath: version 1.1.1 loaded +[ 1.611620] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.612044] cpuidle: using governor ladder +[ 1.612240] cpuidle: using governor menu +[ 1.612591] TCP cubic registered +[ 1.612749] NET: Registered protocol family 10 +[ 1.613194] lo: Disabled Privacy Extensions +[ 1.613464] NET: Registered protocol family 17 +[ 1.616018] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +[ 1.616034] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +[ 1.616243] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +[ 1.617854] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +[ 1.617868] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +[ 1.618075] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +[ 1.618281] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU1._PPC] (Node ffff88015334d9e0), AE_NOT_FOUND +[ 1.619737] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +[ 1.619751] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +[ 1.619958] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +[ 1.620164] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU2._PPC] (Node ffff88015334dbc0), AE_NOT_FOUND +[ 1.620909] ACPI Error (psargs-0359): [NPSS] Namespace lookup failure, AE_NOT_FOUND +[ 1.620916] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0.PPC_] (Node ffff88015334da00), AE_NOT_FOUND +[ 1.621002] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU0._PPC] (Node ffff88015334d920), AE_NOT_FOUND +[ 1.621081] ACPI Error (psparse-0537): Method parse/execution failed [\_PR_.CPU3._PPC] (Node ffff88015334db40), AE_NOT_FOUND +[ 1.621386] PM: Resume from disk failed. +[ 1.621399] registered taskstats version 1 +[ 1.621721] Magic number: 11:10:95 +[ 1.621897] rtc_cmos 00:06: setting system clock to 2011-01-04 21:04:35 UTC (1294175075) +[ 1.621901] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.621903] EDD information not available. +[ 1.622005] Freeing unused kernel memory: 908k freed +[ 1.622226] Write protecting the kernel read-only data: 10240k +[ 1.622564] Freeing unused kernel memory: 412k freed +[ 1.622901] Freeing unused kernel memory: 1644k freed +[ 1.644406] udev[98]: starting version 163 +[ 1.653848] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 1.771855] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 1.771895] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.773598] r8169 0000:02:00.0: setting latency timer to 64 +[ 1.773663] alloc irq_desc for 43 on node -1 +[ 1.773668] alloc kstat_irqs on node -1 +[ 1.773693] r8169 0000:02:00.0: irq 43 for MSI/MSI-X +[ 1.774739] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xffffc900110dc000, 1c:c1:de:8f:3e:32, XID 083000c0 IRQ 43 +[ 1.790588] ahci 0000:00:1f.2: version 3.0 +[ 1.790618] alloc irq_desc for 19 on node -1 +[ 1.790623] alloc kstat_irqs on node -1 +[ 1.790637] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.790722] alloc irq_desc for 44 on node -1 +[ 1.790726] alloc kstat_irqs on node -1 +[ 1.790743] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X +[ 1.790823] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x1 impl SATA mode +[ 1.790830] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems apst +[ 1.790839] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.797321] scsi0 : ahci +[ 1.797553] scsi1 : ahci +[ 1.797681] scsi2 : ahci +[ 1.797851] scsi3 : ahci +[ 1.798183] ata1: SATA max UDMA/133 abar m2048@0xc4505000 port 0xc4505100 irq 44 +[ 1.798188] ata2: DUMMY +[ 1.798190] ata3: DUMMY +[ 1.798193] ata4: DUMMY +[ 1.903357] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 2.052918] hub 1-1:1.0: USB hub found +[ 2.053100] hub 1-1:1.0: 6 ports detected +[ 2.141963] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.142868] ata1.00: ATA-8: Hitachi HTS725050A9A364, PC4OC72E, max UDMA/100 +[ 2.142874] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 2.144086] ata1.00: configured for UDMA/100 +[ 2.171947] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 2.172131] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS72505 PC4O PQ: 0 ANSI: 5 +[ 2.172374] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 2.172471] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 2.172553] sd 0:0:0:0: [sda] Write Protect is off +[ 2.172557] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.172582] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.172733] sda: sda1 sda2 sda3 sda4 +[ 2.214895] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.332851] hub 2-1:1.0: USB hub found +[ 2.332913] hub 2-1:1.0: 8 ports detected +[ 2.411893] usb 1-1.3: new full speed USB device using ehci_hcd and address 3 +[ 2.621772] usb 1-1.4: new full speed USB device using ehci_hcd and address 4 +[ 2.627249] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) +[ 2.832376] usb 2-1.5: new full speed USB device using ehci_hcd and address 3 +[ 3.023477] usb 2-1.6: new full speed USB device using ehci_hcd and address 4 +[ 3.201656] usb 2-1.6: new high speed USB device using ehci_hcd and address 5 +[ 11.718445] Adding 4194300k swap on /dev/sda2. Priority:-1 extents:1 across:4194300k +[ 11.735178] udev[491]: starting version 163 +[ 12.078602] type=1400 audit(1294203885.955:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=724 comm="apparmor_parser" +[ 12.079531] type=1400 audit(1294203885.955:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=724 comm="apparmor_parser" +[ 12.080014] type=1400 audit(1294203885.955:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=724 comm="apparmor_parser" +[ 12.086115] lp: driver loaded but no devices found +[ 12.266073] Bluetooth: Core ver 2.15 +[ 12.266173] NET: Registered protocol family 31 +[ 12.266176] Bluetooth: HCI device and connection manager initialized +[ 12.266181] Bluetooth: HCI socket layer initialized +[ 12.290899] cfg80211: Calling CRDA to update world regulatory domain +[ 12.297563] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 12.297684] cfg80211: World regulatory domain updated: +[ 12.297688] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 12.297695] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.297700] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.297705] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 12.297710] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.297714] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 12.298709] usbcore: registered new interface driver btusb +[ 12.299531] input: Wacom ISDv4 E3 Finger as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input4 +[ 12.304798] input: Wacom ISDv4 E3 Pen as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.1/input/input5 +[ 12.305011] usbcore: registered new interface driver wacom +[ 12.305015] wacom: v1.52:USB Wacom tablet driver +[ 12.320830] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset +[ 12.322118] agpgart-intel 0000:00:00.0: detected 32764K stolen memory +[ 12.415662] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xb0000000 +[ 12.456807] lis3lv02d: laptop model unknown, using default axes configuration +[ 12.457759] lis3lv02d: 8 bits sensor found +[ 12.498205] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input6 +[ 12.498391] Registered led device: hp::hddprotect +[ 12.498429] lis3lv02d driver loaded. +[ 12.552273] intel ips 0000:00:1f.6: Warning: CPU TDP doesn't match expected value (found 11, expected 18) +[ 12.552302] alloc irq_desc for 21 on node -1 +[ 12.552305] alloc kstat_irqs on node -1 +[ 12.552316] intel ips 0000:00:1f.6: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 12.552517] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled +[ 12.552706] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 65535 +[ 12.587086] Linux video capture interface: v2.00 +[ 12.714246] usbcore: registered new interface driver hiddev +[ 12.714364] usbcore: registered new interface driver usbhid +[ 12.714369] usbhid: USB HID core driver +[ 12.746985] [drm] Initialized drm 1.1.0 20060810 +[ 12.754275] uvcvideo: Found UVC 1.00 device HP Webcam (10f1:1a16) +[ 12.762138] input: HP Webcam as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input7 +[ 12.762226] usbcore: registered new interface driver uvcvideo +[ 12.762230] USB Video Class driver (v0.1.0) +[ 12.946977] input: HP WMI hotkeys as /devices/virtual/input/input8 +[ 12.977629] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 12.977638] i915 0000:00:02.0: setting latency timer to 64 +[ 13.000999] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: +[ 13.001005] iwlagn: Copyright(c) 2003-2010 Intel Corporation +[ 13.001099] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 13.001110] iwlagn 0000:03:00.0: setting latency timer to 64 +[ 13.001212] iwlagn 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 1000 BGN, REV=0x6C +[ 13.019887] iwlagn 0000:03:00.0: Tunable channels: 13 802.11bg, 0 802.11a channels +[ 13.019983] alloc irq_desc for 45 on node -1 +[ 13.019987] alloc kstat_irqs on node -1 +[ 13.020033] iwlagn 0000:03:00.0: irq 45 for MSI/MSI-X +[ 13.062540] mtrr: no more MTRRs available +[ 13.062544] [drm] MTRR allocation failed. Graphics performance may suffer. +[ 13.062688] alloc irq_desc for 46 on node -1 +[ 13.062694] alloc kstat_irqs on node -1 +[ 13.062716] i915 0000:00:02.0: irq 46 for MSI/MSI-X +[ 13.062737] [drm] set up 31M of stolen space +[ 13.066726] iwlagn 0000:03:00.0: loaded firmware version 128.50.3.1 build 13488 +[ 13.093167] input: PS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input9 +[ 13.174463] [drm] radeon defaulting to kernel modesetting. +[ 13.174468] [drm] radeon kernel modesetting enabled. +[ 13.174513] VGA switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle +[ 13.174573] radeon 0000:01:00.0: enabling device (0000 -> 0003) +[ 13.174586] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 13.174593] radeon 0000:01:00.0: setting latency timer to 64 +[ 13.176167] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem +[ 13.176176] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0 +[ 13.176414] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E0). +[ 13.176665] [drm] register mmio base: 0xC4400000 +[ 13.176668] [drm] register mmio size: 131072 +[ 13.176671] vga_switcheroo: enabled +[ 13.176899] radeon atpx: version is 1 +[ 13.219726] phy0: Selected rate control algorithm 'iwl-agn-rs' +[ 13.301916] ATOM BIOS: HP +[ 13.301943] [drm] Clocks initialized ! +[ 13.301965] radeon 0000:01:00.0: limiting VRAM +[ 13.301969] radeon 0000:01:00.0: VRAM: 3584M 0x00000000 - 0xDFFFFFFF (3584M used) +[ 13.301973] radeon 0000:01:00.0: GTT: 512M 0xE0000000 - 0xFFFFFFFF +[ 13.302004] mtrr: no more MTRRs available +[ 13.302006] [drm] Detected VRAM RAM=3584M, BAR=256M +[ 13.302009] [drm] RAM width 128bits DDR +[ 13.302079] [TTM] Zone kernel: Available graphics memory: 1926146 kiB. +[ 13.302082] [TTM] Initializing pool allocator. +[ 13.302111] [drm] radeon: 3584M of VRAM memory ready +[ 13.302113] [drm] radeon: 512M of GTT memory ready. +[ 13.302185] alloc irq_desc for 47 on node -1 +[ 13.302187] alloc kstat_irqs on node -1 +[ 13.302206] radeon 0000:01:00.0: irq 47 for MSI/MSI-X +[ 13.302215] radeon 0000:01:00.0: radeon: using MSI. +[ 13.302233] radeon 0000:01:00.0: IH ring buffer overflow (0xFFFFFFFF, 0, 15) +[ 13.302273] [drm] radeon: irq initialized. +[ 13.302277] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 13.303071] [drm] Loading CEDAR Microcode +[ 13.565501] Skipping EDID probe due to cached edid +[ 14.021385] Console: switching to colour frame buffer device 160x50 +[ 14.024816] fb0: inteldrmfb frame buffer device +[ 14.024819] drm: registered panic notifier +[ 14.024824] Slow work thread pool: Starting up +[ 14.024944] Slow work thread pool: Ready +[ 14.028299] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function +[ 14.030443] acpi device:01: registered as cooling_device5 +[ 14.032012] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10 +[ 14.032130] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 14.032195] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS +[ 14.035737] acpi device:0a: registered as cooling_device6 +[ 14.038003] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08/LNXVIDEO:01/input/input11 +[ 14.038091] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no) +[ 14.038223] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 14.072965] Skipping EDID probe due to cached edid +[ 14.301663] radeon 0000:01:00.0: Wait for MC idle timedout ! +[ 14.497906] radeon 0000:01:00.0: Wait for MC idle timedout ! +[ 14.517338] BUG: unable to handle kernel paging request at ffffc90422101ffc +[ 14.517348] IP: [] evergreen_cp_start+0x4c/0x570 [radeon] +[ 14.517397] PGD 157c0c067 PUD 0 +[ 14.517403] Oops: 0002 [#1] SMP +[ 14.517407] last sysfs file: /sys/module/snd_rawmidi/initstate +[ 14.517412] CPU 0 +[ 14.517414] Modules linked in: snd_rawmidi snd_seq_midi_event snd_seq arc4 snd_timer radeon(+) snd_seq_device snd ttm iwlagn i915 iwlcore soundcore drm_kms_helper uvcvideo drm joydev usbhid mac80211 hid snd_page_alloc videodev v4l1_compat v4l2_compat_ioctl32 intel_ips hp_wmi hp_accel lis3lv02d input_polldev video intel_agp btusb wacom cfg80211 bluetooth i2c_algo_bit led_class psmouse output serio_raw lp parport ahci libahci r8169 mii +[ 14.517468] +[ 14.517475] Pid: 564, comm: modprobe Not tainted 2.6.35-24-generic #42-Ubuntu 1486/HP TouchSmart tm2 Notebook PC +[ 14.517480] RIP: 0010:[] [] evergreen_cp_start+0x4c/0x570 [radeon] +[ 14.517513] RSP: 0018:ffff880145bcbb48 EFLAGS: 00010286 +[ 14.517515] RAX: 0000000000000000 RBX: 0000000000000000 RCX: ffff880145bcbfd8 +[ 14.517518] RDX: ffffc90422101ffc RSI: 0000000000000007 RDI: 0000000000000010 +[ 14.517521] RBP: ffff880145bcbb58 R08: ffff880145bca000 R09: 00000000ffffffff +[ 14.517524] R10: 00000000ffffffff R11: 0000000000000001 R12: ffff880153604000 +[ 14.517527] R13: 0000000000c10027 R14: 00000000fffffff4 R15: ffffffffa0408c80 +[ 14.517531] FS: 00007f3dabda0700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +[ 14.517534] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 14.517537] CR2: ffffc90422101ffc CR3: 000000014eb1c000 CR4: 00000000000006f0 +[ 14.517541] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 14.517545] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 14.517550] Process modprobe (pid: 564, threadinfo ffff880145bca000, task ffff880145b80000) +[ 14.517553] Stack: +[ 14.517556] ffff880153604000 0000000008000911 ffff880145bcbb78 ffffffffa03e174d +[ 14.517562] <0> ffff880153604000 0000000000000000 ffff880145bcbb98 ffffffffa03e1a6f +[ 14.517569] <0> ffff880153604000 0000000000000000 ffff880145bcbbc8 ffffffffa03e1d63 +[ 14.517576] Call Trace: +[ 14.517616] [] evergreen_cp_resume+0x2ad/0x520 [radeon] +[ 14.517648] [] evergreen_startup+0xaf/0x140 [radeon] +[ 14.517678] [] evergreen_init+0x263/0x4d0 [radeon] +[ 14.517703] [] radeon_device_init+0x344/0x4a0 [radeon] +[ 14.517729] [] radeon_driver_load_kms+0xa3/0x250 [radeon] +[ 14.517745] [] drm_get_dev+0x15f/0x2c0 [drm] +[ 14.517754] [] ? sysfs_add_one+0x2c/0x130 +[ 14.517783] [] radeon_pci_probe+0x15/0x269 [radeon] +[ 14.517789] [] local_pci_probe+0x17/0x20 +[ 14.517794] [] __pci_device_probe+0xe9/0xf0 +[ 14.517800] [] ? kobject_get+0x1a/0x30 +[ 14.517806] [] ? get_device+0x19/0x20 +[ 14.517811] [] pci_device_probe+0x3a/0x60 +[ 14.517815] [] really_probe+0x68/0x190 +[ 14.517820] [] driver_probe_device+0x45/0x70 +[ 14.517824] [] __driver_attach+0x9b/0xa0 +[ 14.517827] [] ? __driver_attach+0x0/0xa0 +[ 14.517831] [] bus_for_each_dev+0x68/0x90 +[ 14.517835] [] driver_attach+0x1e/0x20 +[ 14.517839] [] bus_add_driver+0xde/0x280 +[ 14.517843] [] driver_register+0x80/0x150 +[ 14.517848] [] __pci_register_driver+0x56/0xd0 +[ 14.517858] [] drm_init+0x111/0x120 [drm] +[ 14.517865] [] ? vga_switcheroo_register_handler+0x3a/0x60 +[ 14.517887] [] ? radeon_init+0x0/0xc6 [radeon] +[ 14.517907] [] radeon_init+0xc4/0xc6 [radeon] +[ 14.517915] [] do_one_initcall+0x3c/0x1a0 +[ 14.517923] [] sys_init_module+0xbb/0x200 +[ 14.517929] [] system_call_fastpath+0x16/0x1b +[ 14.517931] Code: 00 00 41 8b bc 24 e4 09 00 00 85 ff 0f 8e ce 03 00 00 41 8b 84 24 d4 09 00 00 89 c2 83 c0 01 48 c1 e2 02 49 03 94 24 c8 09 00 00 02 00 44 05 c0 41 8b 94 24 e4 09 00 00 41 23 84 24 f4 09 00 +[ 14.517971] RIP [] evergreen_cp_start+0x4c/0x570 [radeon] +[ 14.518002] RSP +[ 14.518004] CR2: ffffc90422101ffc +[ 14.518007] ---[ end trace 747350649dc20cc7 ]--- +[ 14.578903] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro +[ 14.673607] alloc irq_desc for 22 on node -1 +[ 14.673614] alloc kstat_irqs on node -1 +[ 14.673628] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 14.673734] alloc irq_desc for 48 on node -1 +[ 14.673737] alloc kstat_irqs on node -1 +[ 14.673752] HDA Intel 0000:00:1b.0: irq 48 for MSI/MSI-X +[ 14.673792] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 14.875280] input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 +[ 14.875431] input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13 +[ 15.102590] r8169 0000:02:00.0: eth0: link down +[ 15.103544] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 15.111473] type=1400 audit(1294203888.985:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1221 comm="apparmor_parser" +[ 15.113657] type=1400 audit(1294203888.985:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1222 comm="apparmor_parser" +[ 15.114537] type=1400 audit(1294203888.985:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1222 comm="apparmor_parser" +[ 15.115052] type=1400 audit(1294203888.995:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1222 comm="apparmor_parser" +[ 15.115707] type=1400 audit(1294203888.995:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1226 comm="apparmor_parser" +[ 15.118529] type=1400 audit(1294203888.995:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1225 comm="apparmor_parser" +[ 15.119551] type=1400 audit(1294203888.995:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1225 comm="apparmor_parser" +[ 15.246768] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 15.349765] Skipping EDID probe due to cached edid +[ 15.366737] Skipping EDID probe due to cached edid + +Bug: 708286 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-25-generic (buildd@palmer) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #44-Ubuntu SMP Fri Jan 21 17:40:48 UTC 2011 (Ubuntu 2.6.35-25.44-generic 2.6.35.10) +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009ec00 (usable) +[ 0.000000] BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000b70d0000 (usable) +[ 0.000000] BIOS-e820: 00000000b70d0000 - 00000000b70d0200 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000b70d0200 - 00000000b70d2000 (reserved) +[ 0.000000] BIOS-e820: 00000000b70d2000 - 00000000b71d0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000b71d0000 - 00000000b71f0000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000b71f0000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel! +[ 0.000000] DMI 2.4 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0xb70d0 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-D3FFF write-protect +[ 0.000000] D4000-DFFFF uncachable +[ 0.000000] E0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0FFE00000 mask FFFE00000 uncachable +[ 0.000000] 1 base 000000000 mask F80000000 write-back +[ 0.000000] 2 base 080000000 mask FC0000000 write-back +[ 0.000000] 3 base 0B8000000 mask FF8000000 uncachable +[ 0.000000] 4 base 100000000 mask FC0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000b8000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000001000 (reserved) +[ 0.000000] modified: 0000000000001000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009ec00 (usable) +[ 0.000000] modified: 000000000009ec00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000b70d0000 (usable) +[ 0.000000] modified: 00000000b70d0000 - 00000000b70d0200 (ACPI NVS) +[ 0.000000] modified: 00000000b70d0200 - 00000000b70d2000 (reserved) +[ 0.000000] modified: 00000000b70d2000 - 00000000b71d0000 (ACPI NVS) +[ 0.000000] modified: 00000000b71d0000 - 00000000b71f0000 (ACPI data) +[ 0.000000] modified: 00000000b71f0000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1c000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffe00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] initial memory mapped : 0 - 00c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000 +[ 0.000000] RAMDISK: 374ed000 - 37ff0000 +[ 0.000000] Allocated new RAMDISK: 009a7000 - 014a9659 +[ 0.000000] Move RAMDISK from 00000000374ed000 - 0000000037fef658 to 009a7000 - 014a9658 +[ 0.000000] ACPI: RSDP 000f0030 00014 (v00 TOSHIB) +[ 0.000000] ACPI: RSDT b71ef038 00050 (v01 TOSHIB A007B 00000001 01000013) +[ 0.000000] ACPI: FACP b71ee000 00081 (v02 TOSHIB A007B 00000001 LOHR 0000005F) +[ 0.000000] ACPI: DSDT b71dc000 09241 (v02 TOSHIB A007B 20100826 INTL 20061109) +[ 0.000000] ACPI: FACS b715a000 00040 +[ 0.000000] ACPI: HPET b71ed000 00038 (v01 TOSHIB A007B 00000001 LOHR 0000005F) +[ 0.000000] ACPI: APIC b71ec000 000BC (v01 TOSHIB A007B 00000001 LOHR 0000005F) +[ 0.000000] ACPI: MCFG b71eb000 0003C (v01 TOSHIB A007B 00000001 LOHR 0000005F) +[ 0.000000] ACPI: ASF! b71ea000 000A0 (v32 TOSHIB A007B 00000001 LOHR 0000005F) +[ 0.000000] ACPI: TCPA b71e9000 00032 (v02 TOSHIB A007B 00000000 LOHR 0000005F) +[ 0.000000] ACPI: BOOT b71e8000 00028 (v01 TOSHIB A007B 00000000 LOHR 0000005F) +[ 0.000000] ACPI: SLIC b71e7000 00176 (v01 TOSHIB A007B 00000000 LOHR 0000005F) +[ 0.000000] ACPI: SSDT b71db000 002D5 (v01 TOSHIB SataAhci 00001000 INTL 20061109) +[ 0.000000] ACPI: SSDT b71d8000 0072A (v01 TOSHIB PtidDevc 00001000 INTL 20061109) +[ 0.000000] ACPI: SSDT b71d7000 00A10 (v01 PmRef CpuPm 00003000 INTL 20061109) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 2040MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000001 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x000b70d0 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000001 -> 0x00000002 +[ 0.000000] 0: 0x00000010 -> 0x0000009e +[ 0.000000] 0: 0x00000100 -> 0x000b70d0 +[ 0.000000] On node 0 totalpages: 749663 +[ 0.000000] free_area_init_node: node 0, pgdat c07fffc0, node_mem_map c14ab020 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 4082 pages used for memmap +[ 0.000000] HighMem zone: 518368 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [16000 - 167ff] +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000 +[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 14 pages/cpu @c2c00000 s36416 r0 d20928 u524288 +[ 0.000000] pcpu-alloc: s36416 r0 d20928 u524288 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] early_res array is doubled to 128 at [16800 - 177ff] +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 743805 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-25-generic root=UUID=e3d9760d-21e7-4373-b844-203ea4f8dd14 ro quiet splash initcall_debug no_console_suspend +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 14995500 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Subtract (59 early reservations) +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE +[ 0.000000] #2 [0000100000 - 00009a2adc] TEXT DATA BSS +[ 0.000000] #3 [000009ec00 - 0000100000] BIOS reserved +[ 0.000000] #4 [00009a3000 - 00009a613c] BRK +[ 0.000000] #5 [0000010000 - 0000011000] TRAMPOLINE +[ 0.000000] #6 [0000011000 - 0000015000] ACPI WAKEUP +[ 0.000000] #7 [0000015000 - 0000016000] PGTABLE +[ 0.000000] #8 [00009a7000 - 00014aa000] NEW RAMDISK +[ 0.000000] #9 [00014aa000 - 00014ab000] BOOTMEM +[ 0.000000] #10 [00014ab000 - 0002b93000] BOOTMEM +[ 0.000000] #11 [0002b93000 - 0002b93004] BOOTMEM +[ 0.000000] #12 [0002b93040 - 0002b93100] BOOTMEM +[ 0.000000] #13 [0002b93100 - 0002b93154] BOOTMEM +[ 0.000000] #14 [0002b93180 - 0002b96180] BOOTMEM +[ 0.000000] #15 [0002b96180 - 0002b96240] BOOTMEM +[ 0.000000] #16 [0002b96240 - 0002b9c240] BOOTMEM +[ 0.000000] #17 [0002b9c240 - 0002b9c265] BOOTMEM +[ 0.000000] #18 [0002b9c280 - 0002b9c2a7] BOOTMEM +[ 0.000000] #19 [0002b9c2c0 - 0002b9c4f0] BOOTMEM +[ 0.000000] #20 [0002b9c500 - 0002b9c540] BOOTMEM +[ 0.000000] #21 [0002b9c540 - 0002b9c580] BOOTMEM +[ 0.000000] #22 [0002b9c580 - 0002b9c5c0] BOOTMEM +[ 0.000000] #23 [0002b9c5c0 - 0002b9c600] BOOTMEM +[ 0.000000] #24 [0002b9c600 - 0002b9c640] BOOTMEM +[ 0.000000] #25 [0002b9c640 - 0002b9c680] BOOTMEM +[ 0.000000] #26 [0002b9c680 - 0002b9c6c0] BOOTMEM +[ 0.000000] #27 [0002b9c6c0 - 0002b9c700] BOOTMEM +[ 0.000000] #28 [0002b9c700 - 0002b9c740] BOOTMEM +[ 0.000000] #29 [0002b9c740 - 0002b9c780] BOOTMEM +[ 0.000000] #30 [0002b9c780 - 0002b9c7c0] BOOTMEM +[ 0.000000] #31 [0002b9c7c0 - 0002b9c800] BOOTMEM +[ 0.000000] #32 [0002b9c800 - 0002b9c840] BOOTMEM +[ 0.000000] #33 [0002b9c840 - 0002b9c880] BOOTMEM +[ 0.000000] #34 [0002b9c880 - 0002b9c8c0] BOOTMEM +[ 0.000000] #35 [0002b9c8c0 - 0002b9c900] BOOTMEM +[ 0.000000] #36 [0002b9c900 - 0002b9c940] BOOTMEM +[ 0.000000] #37 [0002b9c940 - 0002b9c950] BOOTMEM +[ 0.000000] #38 [0002b9c980 - 0002b9c990] BOOTMEM +[ 0.000000] #39 [0002b9c9c0 - 0002b9ca4c] BOOTMEM +[ 0.000000] #40 [0002b9ca80 - 0002b9cb0c] BOOTMEM +[ 0.000000] #41 [0002c00000 - 0002c0e000] BOOTMEM +[ 0.000000] #42 [0002c80000 - 0002c8e000] BOOTMEM +[ 0.000000] #43 [0002d00000 - 0002d0e000] BOOTMEM +[ 0.000000] #44 [0002d80000 - 0002d8e000] BOOTMEM +[ 0.000000] #45 [0002e00000 - 0002e0e000] BOOTMEM +[ 0.000000] #46 [0002e80000 - 0002e8e000] BOOTMEM +[ 0.000000] #47 [0002f00000 - 0002f0e000] BOOTMEM +[ 0.000000] #48 [0002f80000 - 0002f8e000] BOOTMEM +[ 0.000000] #49 [0002b9eb40 - 0002b9eb44] BOOTMEM +[ 0.000000] #50 [0002b9eb80 - 0002b9eb84] BOOTMEM +[ 0.000000] #51 [0002b9ebc0 - 0002b9ebe0] BOOTMEM +[ 0.000000] #52 [0002b9ec00 - 0002b9ec20] BOOTMEM +[ 0.000000] #53 [0002b9ec40 - 0002b9ecd8] BOOTMEM +[ 0.000000] #54 [0002b9ed00 - 0002b9ed38] BOOTMEM +[ 0.000000] #55 [0002b9ed40 - 0002ba2d40] BOOTMEM +[ 0.000000] #56 [0002f8e000 - 000300e000] BOOTMEM +[ 0.000000] #57 [0002ba2d40 - 0002be2d40] BOOTMEM +[ 0.000000] #58 [000300e000 - 0003e5b02c] BOOTMEM +[ 0.000000] Initializing HighMem for node 0 (000377fe:000b70d0) +[ 0.000000] Memory: 2939104k/2999104k available (4933k kernel code, 59548k reserved, 2331k data, 688k init, 2089800k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc0819000 - 0xc08c5000 ( 688 kB) +[ 0.000000] .data : 0xc05d17ce - 0xc08187a8 (2331 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05d17ce (4933 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:744 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.004000] Detected 2659.767 MHz processor. +[ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5319.53 BogoMIPS (lpj=10639068) +[ 0.000007] pid_max: default: 32768 minimum: 301 +[ 0.000021] Security Framework initialized +[ 0.000031] AppArmor: AppArmor initialized +[ 0.000032] Yama: becoming mindful. +[ 0.000067] Mount-cache hash table entries: 512 +[ 0.000157] Initializing cgroup subsys ns +[ 0.000160] Initializing cgroup subsys cpuacct +[ 0.000163] Initializing cgroup subsys memory +[ 0.000169] Initializing cgroup subsys devices +[ 0.000170] Initializing cgroup subsys freezer +[ 0.000172] Initializing cgroup subsys net_cls +[ 0.000189] CPU: Physical Processor ID: 0 +[ 0.000190] CPU: Processor Core ID: 0 +[ 0.000194] mce: CPU supports 9 MCE banks +[ 0.000203] CPU0: Thermal monitoring enabled (TM1) +[ 0.000209] using mwait in idle threads. +[ 0.000213] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.000220] ... version: 3 +[ 0.000221] ... bit width: 48 +[ 0.000222] ... generic registers: 4 +[ 0.000223] ... value mask: 0000ffffffffffff +[ 0.000224] ... max period: 000000007fffffff +[ 0.000225] ... fixed-purpose events: 3 +[ 0.000226] ... event mask: 000000070000000f +[ 0.002294] ACPI: Core revision 20100428 +[ 0.014604] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.014607] ftrace: allocating 21756 entries in 43 pages +[ 0.020528] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.020928] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.060509] CPU0: Intel(R) Core(TM) i7 CPU M 620 @ 2.67GHz stepping 05 +[ 0.166817] calling migration_init+0x0/0x47 @ 1 +[ 0.166820] initcall migration_init+0x0/0x47 returned 0 after 0 usecs +[ 0.166822] calling spawn_ksoftirqd+0x0/0x45 @ 1 +[ 0.166834] initcall spawn_ksoftirqd+0x0/0x45 returned 0 after 0 usecs +[ 0.166840] calling init_call_single_data+0x0/0x6b @ 1 +[ 0.166842] initcall init_call_single_data+0x0/0x6b returned 0 after 0 usecs +[ 0.166845] calling cpu_stop_init+0x0/0x85 @ 1 +[ 0.166859] initcall cpu_stop_init+0x0/0x85 returned 0 after 0 usecs +[ 0.166861] calling spawn_softlockup_task+0x0/0x5f @ 1 +[ 0.166870] initcall spawn_softlockup_task+0x0/0x5f returned 0 after 0 usecs +[ 0.166872] calling relay_init+0x0/0x11 @ 1 +[ 0.166874] initcall relay_init+0x0/0x11 returned 0 after 0 usecs +[ 0.166876] calling tracer_alloc_buffers+0x0/0x197 @ 1 +[ 0.166898] initcall tracer_alloc_buffers+0x0/0x197 returned 0 after 0 usecs +[ 0.166900] calling init_trace_printk+0x0/0xf @ 1 +[ 0.166902] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs +[ 0.166938] Booting Node 0, Processors #1 +[ 0.177195] Initializing CPU#1 +[ 0.274674] #2 +[ 0.284809] Initializing CPU#2 +[ 0.382438] #3 +[ 0.392573] Initializing CPU#3 +[ 0.490041] Brought up 4 CPUs +[ 0.490043] Total of 4 processors activated (21279.15 BogoMIPS). +[ 0.491719] devtmpfs: initialized +[ 0.491807] calling init_mmap_min_addr+0x0/0x11 @ 1 +[ 0.491809] initcall init_mmap_min_addr+0x0/0x11 returned 0 after 0 usecs +[ 0.491812] calling init_cpufreq_transition_notifier_list+0x0/0x18 @ 1 +[ 0.491815] initcall init_cpufreq_transition_notifier_list+0x0/0x18 returned 0 after 0 usecs +[ 0.491818] calling net_ns_init+0x0/0xf2 @ 1 +[ 0.491839] initcall net_ns_init+0x0/0xf2 returned 0 after 0 usecs +[ 0.491843] calling e820_mark_nvs_memory+0x0/0x39 @ 1 +[ 0.491862] initcall e820_mark_nvs_memory+0x0/0x39 returned 0 after 0 usecs +[ 0.491865] calling cpufreq_tsc+0x0/0x25 @ 1 +[ 0.491867] initcall cpufreq_tsc+0x0/0x25 returned 0 after 0 usecs +[ 0.491869] calling pci_reboot_init+0x0/0x11 @ 1 +[ 0.491872] initcall pci_reboot_init+0x0/0x11 returned 0 after 0 usecs +[ 0.491874] calling reboot_init+0x0/0x11 @ 1 +[ 0.491879] initcall reboot_init+0x0/0x11 returned 0 after 0 usecs +[ 0.491881] calling init_lapic_sysfs+0x0/0x28 @ 1 +[ 0.491888] initcall init_lapic_sysfs+0x0/0x28 returned 0 after 0 usecs +[ 0.491893] calling init_smp_flush+0x0/0x23 @ 1 +[ 0.491895] initcall init_smp_flush+0x0/0x23 returned 0 after 0 usecs +[ 0.491898] calling alloc_frozen_cpus+0x0/0x10 @ 1 +[ 0.491900] initcall alloc_frozen_cpus+0x0/0x10 returned 0 after 0 usecs +[ 0.491903] calling sysctl_init+0x0/0x29 @ 1 +[ 0.491945] initcall sysctl_init+0x0/0x29 returned 0 after 0 usecs +[ 0.491947] calling ksysfs_init+0x0/0x74 @ 1 +[ 0.491952] initcall ksysfs_init+0x0/0x74 returned 0 after 0 usecs +[ 0.491954] calling async_init+0x0/0x5c @ 1 +[ 0.491967] initcall async_init+0x0/0x5c returned 0 after 0 usecs +[ 0.491969] calling init_jiffies_clocksource+0x0/0xf @ 1 +[ 0.491972] initcall init_jiffies_clocksource+0x0/0xf returned 0 after 0 usecs +[ 0.491974] calling pm_init+0x0/0x62 @ 1 +[ 0.491990] initcall pm_init+0x0/0x62 returned 0 after 0 usecs +[ 0.491992] calling pm_disk_init+0x0/0x14 @ 1 +[ 0.491995] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs +[ 0.491998] calling swsusp_header_init+0x0/0x30 @ 1 +[ 0.492000] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs +[ 0.492003] calling init_ftrace_syscalls+0x0/0x8b @ 1 +[ 0.492623] initcall init_ftrace_syscalls+0x0/0x8b returned 0 after 0 usecs +[ 0.492625] calling init_hw_breakpoint+0x0/0xbd @ 1 +[ 0.492630] initcall init_hw_breakpoint+0x0/0xbd returned 0 after 0 usecs +[ 0.492631] calling init_zero_pfn+0x0/0x14 @ 1 +[ 0.492633] initcall init_zero_pfn+0x0/0x14 returned 0 after 0 usecs +[ 0.492635] calling filelock_init+0x0/0x2f @ 1 +[ 0.492640] initcall filelock_init+0x0/0x2f returned 0 after 0 usecs +[ 0.492641] calling init_script_binfmt+0x0/0x11 @ 1 +[ 0.492644] initcall init_script_binfmt+0x0/0x11 returned 0 after 0 usecs +[ 0.492645] calling init_elf_binfmt+0x0/0x11 @ 1 +[ 0.492647] initcall init_elf_binfmt+0x0/0x11 returned 0 after 0 usecs +[ 0.492649] calling debugfs_init+0x0/0x4a @ 1 +[ 0.492652] initcall debugfs_init+0x0/0x4a returned 0 after 0 usecs +[ 0.492654] calling securityfs_init+0x0/0x41 @ 1 +[ 0.492657] initcall securityfs_init+0x0/0x41 returned 0 after 0 usecs +[ 0.492660] calling random32_init+0x0/0xa8 @ 1 +[ 0.492663] initcall random32_init+0x0/0xa8 returned 0 after 0 usecs +[ 0.492665] calling sfi_sysfs_init+0x0/0xbe @ 1 +[ 0.492667] initcall sfi_sysfs_init+0x0/0xbe returned 0 after 0 usecs +[ 0.492669] calling regulator_init+0x0/0x2b @ 1 +[ 0.492671] regulator: core version 0.5 +[ 0.492675] initcall regulator_init+0x0/0x2b returned 0 after 0 usecs +[ 0.492678] calling early_resume_init+0x0/0x20 @ 1 +[ 0.492701] Time: 20:04:02 Date: 01/26/11 +[ 0.492703] initcall early_resume_init+0x0/0x20 returned 0 after 0 usecs +[ 0.492705] calling cpufreq_core_init+0x0/0x75 @ 1 +[ 0.492707] initcall cpufreq_core_init+0x0/0x75 returned 0 after 0 usecs +[ 0.492709] calling cpuidle_init+0x0/0x32 @ 1 +[ 0.492713] initcall cpuidle_init+0x0/0x32 returned 0 after 0 usecs +[ 0.492715] calling sock_init+0x0/0x59 @ 1 +[ 0.492735] initcall sock_init+0x0/0x59 returned 0 after 0 usecs +[ 0.492737] calling net_inuse_init+0x0/0x24 @ 1 +[ 0.492742] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs +[ 0.492743] calling netpoll_init+0x0/0x2f @ 1 +[ 0.492745] initcall netpoll_init+0x0/0x2f returned 0 after 0 usecs +[ 0.492747] calling netlink_proto_init+0x0/0x17a @ 1 +[ 0.492751] NET: Registered protocol family 16 +[ 0.492760] initcall netlink_proto_init+0x0/0x17a returned 0 after 0 usecs +[ 0.492763] calling populate_rootfs_early+0x0/0x36 @ 1 +[ 0.492766] initcall populate_rootfs_early+0x0/0x36 returned 1 after 0 usecs +[ 0.492769] initcall populate_rootfs_early+0x0/0x36 returned with error code 1 +[ 0.492772] calling olpc_init+0x0/0x1a9 @ 1 +[ 0.492775] initcall olpc_init+0x0/0x1a9 returned 0 after 0 usecs +[ 0.492777] calling bdi_class_init+0x0/0x40 @ 1 +[ 0.492785] calling 1_async_populate_rootfs+0x0/0xd0 @ 24 +[ 0.492791] initcall bdi_class_init+0x0/0x40 returned 0 after 0 usecs +[ 0.492793] calling kobject_uevent_init+0x0/0x1e @ 1 +[ 0.492796] initcall kobject_uevent_init+0x0/0x1e returned 0 after 0 usecs +[ 0.492798] calling gpiolib_sysfs_init+0x0/0x7e @ 1 +[ 0.492806] initcall gpiolib_sysfs_init+0x0/0x7e returned 0 after 0 usecs +[ 0.492808] calling pcibus_class_init+0x0/0x14 @ 1 +[ 0.492812] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs +[ 0.492814] calling pci_driver_init+0x0/0xf @ 1 +[ 0.492821] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs +[ 0.492823] calling backlight_class_init+0x0/0x53 @ 1 +[ 0.492827] initcall backlight_class_init+0x0/0x53 returned 0 after 0 usecs +[ 0.492829] calling tty_class_init+0x0/0x2f @ 1 +[ 0.492834] initcall tty_class_init+0x0/0x2f returned 0 after 0 usecs +[ 0.492835] Trying to unpack rootfs image as initramfs... +[ 0.492838] calling vtconsole_class_init+0x0/0xc2 @ 1 +[ 0.492852] initcall vtconsole_class_init+0x0/0xc2 returned 0 after 0 usecs +[ 0.492854] calling spi_init+0x0/0x98 @ 1 +[ 0.492863] initcall spi_init+0x0/0x98 returned 0 after 0 usecs +[ 0.492865] calling i2c_init+0x0/0x57 @ 1 +[ 0.492876] initcall i2c_init+0x0/0x57 returned 0 after 0 usecs +[ 0.492878] calling eisa_init+0x0/0x29 @ 1 +[ 0.492883] EISA bus registered +[ 0.492885] initcall eisa_init+0x0/0x29 returned 0 after 0 usecs +[ 0.492887] calling amd_postcore_init+0x0/0x66 @ 1 +[ 0.492888] initcall amd_postcore_init+0x0/0x66 returned 0 after 0 usecs +[ 0.492891] calling arch_kdebugfs_init+0x0/0x1e @ 1 +[ 0.492894] initcall arch_kdebugfs_init+0x0/0x1e returned 0 after 0 usecs +[ 0.492896] calling init_pit_clocksource+0x0/0xad @ 1 +[ 0.492898] initcall init_pit_clocksource+0x0/0xad returned 0 after 0 usecs +[ 0.492900] calling mtrr_if_init+0x0/0x4d @ 1 +[ 0.492903] initcall mtrr_if_init+0x0/0x4d returned 0 after 0 usecs +[ 0.492904] calling ffh_cstate_init+0x0/0x27 @ 1 +[ 0.492907] initcall ffh_cstate_init+0x0/0x27 returned 0 after 0 usecs +[ 0.492909] calling kdump_buf_page_init+0x0/0x89 @ 1 +[ 0.492912] initcall kdump_buf_page_init+0x0/0x89 returned 0 after 0 usecs +[ 0.492913] calling acpi_pci_init+0x0/0x5a @ 1 +[ 0.492915] ACPI: bus type pci registered +[ 0.492916] initcall acpi_pci_init+0x0/0x5a returned 0 after 0 usecs +[ 0.492918] calling dmi_id_init+0x0/0xe9 @ 1 +[ 0.492939] initcall dmi_id_init+0x0/0xe9 returned 0 after 0 usecs +[ 0.492941] calling dma_bus_init+0x0/0x32 @ 1 +[ 0.492945] initcall dma_bus_init+0x0/0x32 returned 0 after 0 usecs +[ 0.492947] calling dma_channel_table_init+0x0/0xe8 @ 1 +[ 0.492954] initcall dma_channel_table_init+0x0/0xe8 returned 0 after 0 usecs +[ 0.492956] calling pci_arch_init+0x0/0x65 @ 1 +[ 0.492982] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.492985] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.492986] PCI: Using MMCONFIG for extended config space +[ 0.492987] PCI: Using configuration type 1 for base access +[ 0.492993] initcall pci_arch_init+0x0/0x65 returned 0 after 0 usecs +[ 0.492995] calling topology_init+0x0/0x36 @ 1 +[ 0.493009] initcall topology_init+0x0/0x36 returned 0 after 0 usecs +[ 0.493011] calling mtrr_init_finialize+0x0/0x35 @ 1 +[ 0.493013] initcall mtrr_init_finialize+0x0/0x35 returned 0 after 0 usecs +[ 0.493014] calling mca_init+0x0/0x2ce @ 1 +[ 0.493021] initcall mca_init+0x0/0x2ce returned -19 after 0 usecs +[ 0.493023] calling param_sysfs_init+0x0/0xda @ 1 +[ 0.493452] initcall param_sysfs_init+0x0/0xda returned 0 after 0 usecs +[ 0.493454] calling pm_sysrq_init+0x0/0x20 @ 1 +[ 0.493456] initcall pm_sysrq_init+0x0/0x20 returned 0 after 0 usecs +[ 0.493458] calling audit_watch_init+0x0/0x27 @ 1 +[ 0.493460] initcall audit_watch_init+0x0/0x27 returned 0 after 0 usecs +[ 0.493462] calling init_slow_work+0x0/0x34 @ 1 +[ 0.493464] initcall init_slow_work+0x0/0x34 returned 0 after 0 usecs +[ 0.493465] calling default_bdi_init+0x0/0xb2 @ 1 +[ 0.493524] initcall default_bdi_init+0x0/0xb2 returned 0 after 0 usecs +[ 0.493526] calling init_bio+0x0/0xbe @ 1 +[ 0.493586] bio: create slab at 0 +[ 0.493592] initcall init_bio+0x0/0xbe returned 0 after 0 usecs +[ 0.493593] calling fsnotify_init+0x0/0xf @ 1 +[ 0.493596] initcall fsnotify_init+0x0/0xf returned 0 after 0 usecs +[ 0.493598] calling fsnotify_notification_init+0x0/0xf0 @ 1 +[ 0.493600] initcall fsnotify_notification_init+0x0/0xf0 returned 0 after 0 usecs +[ 0.493602] calling cryptomgr_init+0x0/0xf @ 1 +[ 0.493605] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs +[ 0.493606] calling blk_settings_init+0x0/0x21 @ 1 +[ 0.493608] initcall blk_settings_init+0x0/0x21 returned 0 after 0 usecs +[ 0.493610] calling blk_ioc_init+0x0/0x2f @ 1 +[ 0.493612] initcall blk_ioc_init+0x0/0x2f returned 0 after 0 usecs +[ 0.493614] calling blk_softirq_init+0x0/0x54 @ 1 +[ 0.493616] initcall blk_softirq_init+0x0/0x54 returned 0 after 0 usecs +[ 0.493618] calling blk_iopoll_setup+0x0/0x54 @ 1 +[ 0.493620] initcall blk_iopoll_setup+0x0/0x54 returned 0 after 0 usecs +[ 0.493622] calling genhd_device_init+0x0/0x61 @ 1 +[ 0.493681] initcall genhd_device_init+0x0/0x61 returned 0 after 0 usecs +[ 0.493683] calling blk_dev_integrity_init+0x0/0x2f @ 1 +[ 0.493685] initcall blk_dev_integrity_init+0x0/0x2f returned 0 after 0 usecs +[ 0.493687] calling gpiolib_debugfs_init+0x0/0x2a @ 1 +[ 0.493697] initcall gpiolib_debugfs_init+0x0/0x2a returned 0 after 0 usecs +[ 0.493699] calling tc35892_gpio_init+0x0/0xf @ 1 +[ 0.493706] initcall tc35892_gpio_init+0x0/0xf returned 0 after 0 usecs +[ 0.493709] calling pci_slot_init+0x0/0x50 @ 1 +[ 0.493712] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs +[ 0.493714] calling fbmem_init+0x0/0x96 @ 1 +[ 0.493721] initcall fbmem_init+0x0/0x96 returned 0 after 0 usecs +[ 0.493723] calling acpi_init+0x0/0x10c @ 1 +[ 0.495166] ACPI: EC: Look up EC in DSDT +[ 0.496696] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.498431] ACPI: BIOS _OSI(Linux) query ignored +[ 0.500393] ACPI: SSDT b77f8a18 0049D (v01 PmRef Cpu0Ist 00003000 INTL 20061109) +[ 0.500778] ACPI: Dynamic OEM Table Load: +[ 0.500780] ACPI: SSDT (null) 0049D (v01 PmRef Cpu0Ist 00003000 INTL 20061109) +[ 0.501528] ACPI: SSDT b77f6018 008B2 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) +[ 0.501897] ACPI: Dynamic OEM Table Load: +[ 0.501898] ACPI: SSDT (null) 008B2 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) +[ 0.502396] ACPI: SSDT b77f7a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109) +[ 0.502820] ACPI: Dynamic OEM Table Load: +[ 0.502822] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109) +[ 0.502982] ACPI: SSDT b77f5d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109) +[ 0.503622] ACPI: Dynamic OEM Table Load: +[ 0.503624] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109) +[ 0.504759] ACPI: Interpreter enabled +[ 0.504763] ACPI: (supports S0 S3 S4 S5) +[ 0.504782] ACPI: Using IOAPIC for interrupt routing +[ 0.512266] initcall acpi_init+0x0/0x10c returned 0 after 19531 usecs +[ 0.512269] calling dock_init+0x0/0xb3 @ 1 +[ 0.513018] ACPI: ACPI Dock Station Driver: 2 docks/bays found +[ 0.513021] initcall dock_init+0x0/0xb3 returned 0 after 0 usecs +[ 0.513022] calling acpi_pci_root_init+0x0/0x2a @ 1 +[ 0.513025] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.513554] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 0.514542] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.514544] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.514545] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.514547] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] +[ 0.514549] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] +[ 0.514550] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] +[ 0.514552] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfeafffff] +[ 0.514598] pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit] +[ 0.514603] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 0.514606] pci 0000:00:02.0: reg 20: [io 0x3058-0x305f] +[ 0.514680] pci 0000:00:16.0: reg 10: [mem 0xd4728000-0xd472800f 64bit] +[ 0.514736] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 0.514742] pci 0000:00:16.0: PME# disabled +[ 0.514796] pci 0000:00:19.0: reg 10: [mem 0xd4700000-0xd471ffff] +[ 0.514803] pci 0000:00:19.0: reg 14: [mem 0xd4725000-0xd4725fff] +[ 0.514810] pci 0000:00:19.0: reg 18: [io 0x3020-0x303f] +[ 0.514862] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold +[ 0.514866] pci 0000:00:19.0: PME# disabled +[ 0.514913] pci 0000:00:1a.0: reg 10: [mem 0xd4727c00-0xd4727fff] +[ 0.514977] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 0.514981] pci 0000:00:1a.0: PME# disabled +[ 0.515024] pci 0000:00:1b.0: reg 10: [mem 0xd4720000-0xd4723fff 64bit] +[ 0.515080] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.515084] pci 0000:00:1b.0: PME# disabled +[ 0.515174] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.515178] pci 0000:00:1c.0: PME# disabled +[ 0.515266] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.515270] pci 0000:00:1c.1: PME# disabled +[ 0.515357] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.515362] pci 0000:00:1c.2: PME# disabled +[ 0.515450] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 0.515454] pci 0000:00:1c.3: PME# disabled +[ 0.515509] pci 0000:00:1d.0: reg 10: [mem 0xd4727800-0xd4727bff] +[ 0.515569] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 0.515574] pci 0000:00:1d.0: PME# disabled +[ 0.515764] pci 0000:00:1f.2: reg 10: [io 0x3048-0x304f] +[ 0.515771] pci 0000:00:1f.2: reg 14: [io 0x3064-0x3067] +[ 0.515777] pci 0000:00:1f.2: reg 18: [io 0x3040-0x3047] +[ 0.515784] pci 0000:00:1f.2: reg 1c: [io 0x3060-0x3063] +[ 0.515789] pci 0000:00:1f.2: reg 20: [io 0x3000-0x301f] +[ 0.515796] pci 0000:00:1f.2: reg 24: [mem 0xd4727000-0xd47277ff] +[ 0.515839] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.515843] pci 0000:00:1f.2: PME# disabled +[ 0.515896] pci 0000:00:1f.6: reg 10: [mem 0xd4724000-0xd4724fff 64bit] +[ 0.516076] pci 0000:01:00.0: reg 10: [mem 0xd4600000-0xd46000ff] +[ 0.516173] pci 0000:01:00.0: supports D1 D2 +[ 0.516174] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.516180] pci 0000:01:00.0: PME# disabled +[ 0.521969] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 0.521974] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.521979] pci 0000:00:1c.0: bridge window [mem 0xd4600000-0xd46fffff] +[ 0.521987] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.522100] pci 0000:02:00.0: reg 10: [mem 0xd4500000-0xd4501fff 64bit] +[ 0.522209] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold +[ 0.522216] pci 0000:02:00.0: PME# disabled +[ 0.529918] pci 0000:00:1c.1: PCI bridge to [bus 02-02] +[ 0.529923] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled) +[ 0.529928] pci 0000:00:1c.1: bridge window [mem 0xd4500000-0xd45fffff] +[ 0.529935] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.529991] pci 0000:00:1c.2: PCI bridge to [bus 03-04] +[ 0.529995] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.529999] pci 0000:00:1c.2: bridge window [mem 0xd2500000-0xd44fffff] +[ 0.530006] pci 0000:00:1c.2: bridge window [mem 0xd0400000-0xd23fffff 64bit pref] +[ 0.530060] pci 0000:00:1c.3: PCI bridge to [bus 05-05] +[ 0.530064] pci 0000:00:1c.3: bridge window [io 0xf000-0x0000] (disabled) +[ 0.530069] pci 0000:00:1c.3: bridge window [mem 0xd2400000-0xd24fffff] +[ 0.530076] pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.530146] pci 0000:00:1e.0: PCI bridge to [bus 06-06] (subtractive decode) +[ 0.530151] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.530155] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.530162] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.530164] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.530165] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.530167] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.530168] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode) +[ 0.530170] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode) +[ 0.530172] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode) +[ 0.530173] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode) +[ 0.530203] pci_bus 0000:00: on NUMA node 0 +[ 0.530217] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.530525] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 0.530598] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 0.530670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT] +[ 0.530742] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 0.530877] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 0.541770] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 0.541891] pci_bus 0000:ff: on NUMA node 0 +[ 0.542048] initcall acpi_pci_root_init+0x0/0x2a returned 0 after 31250 usecs +[ 0.542050] calling acpi_pci_link_init+0x0/0x3f @ 1 +[ 0.542131] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 0.542232] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 *3 4 5 6 7 11 12 14 15) +[ 0.542331] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 0.542431] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.542529] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 *6 7 10 12 14 15) +[ 0.542628] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 0.542728] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 0.542827] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 0.542873] initcall acpi_pci_link_init+0x0/0x3f returned 0 after 0 usecs +[ 0.542875] calling hest_init+0x0/0xa1 @ 1 +[ 0.542877] HEST: Table is not found! +[ 0.542879] initcall hest_init+0x0/0xa1 returned -19 after 0 usecs +[ 0.542881] calling pnp_init+0x0/0xf @ 1 +[ 0.542889] initcall pnp_init+0x0/0xf returned 0 after 0 usecs +[ 0.542891] calling twlreg_init+0x0/0xf @ 1 +[ 0.542898] initcall twlreg_init+0x0/0xf returned 0 after 0 usecs +[ 0.542900] calling pm8607_regulator_init+0x0/0xf @ 1 +[ 0.542906] initcall pm8607_regulator_init+0x0/0xf returned 0 after 0 usecs +[ 0.542909] calling misc_init+0x0/0xad @ 1 +[ 0.542922] initcall misc_init+0x0/0xad returned 0 after 0 usecs +[ 0.542923] calling vga_arb_device_init+0x0/0x75 @ 1 +[ 0.542948] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.542955] vgaarb: loaded +[ 0.542957] initcall vga_arb_device_init+0x0/0x75 returned 0 after 0 usecs +[ 0.542961] calling cn_init+0x0/0x9d @ 1 +[ 0.542970] initcall cn_init+0x0/0x9d returned 0 after 0 usecs +[ 0.542973] calling pm860x_i2c_init+0x0/0x30 @ 1 +[ 0.542980] initcall pm860x_i2c_init+0x0/0x30 returned 0 after 0 usecs +[ 0.542982] calling tc35892_init+0x0/0x11 @ 1 +[ 0.542987] initcall tc35892_init+0x0/0x11 returned 0 after 0 usecs +[ 0.542989] calling wm831x_i2c_init+0x0/0x30 @ 1 +[ 0.542995] initcall wm831x_i2c_init+0x0/0x30 returned 0 after 0 usecs +[ 0.542997] calling wm8350_i2c_init+0x0/0x11 @ 1 +[ 0.543002] initcall wm8350_i2c_init+0x0/0x11 returned 0 after 0 usecs +[ 0.543004] calling twl_init+0x0/0x11 @ 1 +[ 0.543009] initcall twl_init+0x0/0x11 returned 0 after 0 usecs +[ 0.543011] calling da903x_init+0x0/0x11 @ 1 +[ 0.543017] initcall da903x_init+0x0/0x11 returned 0 after 0 usecs +[ 0.543018] calling max8925_i2c_init+0x0/0x30 @ 1 +[ 0.543024] initcall max8925_i2c_init+0x0/0x30 returned 0 after 0 usecs +[ 0.543026] calling ab3100_i2c_init+0x0/0x11 @ 1 +[ 0.543031] initcall ab3100_i2c_init+0x0/0x11 returned 0 after 0 usecs +[ 0.543033] calling ab3550_i2c_init+0x0/0x11 @ 1 +[ 0.543038] initcall ab3550_i2c_init+0x0/0x11 returned 0 after 0 usecs +[ 0.543040] calling ab8500_spi_init+0x0/0xf @ 1 +[ 0.543047] initcall ab8500_spi_init+0x0/0xf returned 0 after 0 usecs +[ 0.543049] calling init_scsi+0x0/0x90 @ 1 +[ 0.543108] SCSI subsystem initialized +[ 0.543111] initcall init_scsi+0x0/0x90 returned 0 after 0 usecs +[ 0.543113] calling ata_init+0x0/0x7b @ 1 +[ 0.543202] libata version 3.00 loaded. +[ 0.543205] initcall ata_init+0x0/0x7b returned 0 after 0 usecs +[ 0.543207] calling phy_init+0x0/0x2a @ 1 +[ 0.543226] initcall phy_init+0x0/0x2a returned 0 after 0 usecs +[ 0.543228] calling usb_init+0x0/0x142 @ 1 +[ 0.543249] usbcore: registered new interface driver usbfs +[ 0.543256] usbcore: registered new interface driver hub +[ 0.543276] usbcore: registered new device driver usb +[ 0.543278] initcall usb_init+0x0/0x142 returned 0 after 0 usecs +[ 0.543280] calling serio_init+0x0/0x8b @ 1 +[ 0.543299] initcall serio_init+0x0/0x8b returned 0 after 0 usecs +[ 0.543302] calling input_init+0x0/0xfd @ 1 +[ 0.543311] initcall input_init+0x0/0xfd returned 0 after 0 usecs +[ 0.543313] calling rtc_init+0x0/0x64 @ 1 +[ 0.543317] initcall rtc_init+0x0/0x64 returned 0 after 0 usecs +[ 0.543319] calling power_supply_class_init+0x0/0x39 @ 1 +[ 0.543324] initcall power_supply_class_init+0x0/0x39 returned 0 after 0 usecs +[ 0.543326] calling hwmon_init+0x0/0x40 @ 1 +[ 0.543332] initcall hwmon_init+0x0/0x40 returned 0 after 0 usecs +[ 0.543333] calling thermal_init+0x0/0x32 @ 1 +[ 0.543338] initcall thermal_init+0x0/0x32 returned 0 after 0 usecs +[ 0.543339] calling md_init+0x0/0xde @ 1 +[ 0.543345] initcall md_init+0x0/0xde returned 0 after 0 usecs +[ 0.543348] calling mmc_init+0x0/0x7a @ 1 +[ 0.543379] initcall mmc_init+0x0/0x7a returned 0 after 0 usecs +[ 0.543382] calling acpi_wmi_init+0x0/0x88 @ 1 +[ 0.543397] ACPI: WMI: Mapper loaded +[ 0.543399] initcall acpi_wmi_init+0x0/0x88 returned 0 after 0 usecs +[ 0.543402] calling pci_subsys_init+0x0/0x46 @ 1 +[ 0.543403] PCI: Using ACPI for IRQ routing +[ 0.543405] PCI: pci_cache_line_size set to 64 bytes +[ 0.543544] reserve RAM buffer: 0000000000002000 - 000000000000ffff +[ 0.543545] reserve RAM buffer: 000000000009ec00 - 000000000009ffff +[ 0.543547] reserve RAM buffer: 00000000b70d0000 - 00000000b7ffffff initcall pci_subsys_init+0x0/0x46 returned 0 after 0 usecs +[ 0.543552] calling proto_init+0x0/0xf @ 1 +[ 0.543556] initcall proto_init+0x0/0xf returned 0 after 0 usecs +[ 0.543558] calling net_dev_init+0x0/0x161 @ 1 +[ 0.543611] initcall net_dev_init+0x0/0x161 returned 0 after 0 usecs +[ 0.543613] calling neigh_init+0x0/0x7c @ 1 +[ 0.543615] initcall neigh_init+0x0/0x7c returned 0 after 0 usecs +[ 0.543617] calling fib_rules_init+0x0/0xa4 @ 1 +[ 0.543620] initcall fib_rules_init+0x0/0xa4 returned 0 after 0 usecs +[ 0.543622] calling pktsched_init+0x0/0xe6 @ 1 +[ 0.543625] initcall pktsched_init+0x0/0xe6 returned 0 after 0 usecs +[ 0.543627] calling tc_filter_init+0x0/0x52 @ 1 +[ 0.543629] initcall tc_filter_init+0x0/0x52 returned 0 after 0 usecs +[ 0.543631] calling tc_action_init+0x0/0x52 @ 1 +[ 0.543633] initcall tc_action_init+0x0/0x52 returned 0 after 0 usecs +[ 0.543634] calling genl_init+0x0/0x7f @ 1 +[ 0.543641] initcall genl_init+0x0/0x7f returned 0 after 0 usecs +[ 0.543644] calling cipso_v4_init+0x0/0x5b @ 1 +[ 0.543646] initcall cipso_v4_init+0x0/0x5b returned 0 after 0 usecs +[ 0.543648] calling wireless_nlevent_init+0x0/0xf @ 1 +[ 0.543650] initcall wireless_nlevent_init+0x0/0xf returned 0 after 0 usecs +[ 0.543652] calling netlbl_init+0x0/0x7d @ 1 +[ 0.543653] NetLabel: Initializing +[ 0.543654] NetLabel: domain hash size = 128 +[ 0.543654] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.543664] NetLabel: unlabeled traffic allowed by default +[ 0.543665] initcall netlbl_init+0x0/0x7d returned 0 after 0 usecs +[ 0.543667] calling rfkill_init+0x0/0x68 @ 1 +[ 0.543684] initcall rfkill_init+0x0/0x68 returned 0 after 0 usecs +[ 0.543685] calling sysctl_init+0x0/0x3b @ 1 +[ 0.543687] initcall sysctl_init+0x0/0x3b returned 0 after 0 usecs +[ 0.543691] calling print_ICs+0x0/0x8a @ 1 +[ 0.543693] initcall print_ICs+0x0/0x8a returned 0 after 0 usecs +[ 0.543695] calling hpet_late_init+0x0/0xdc @ 1 +[ 0.543710] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 0.543714] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 0.545719] initcall hpet_late_init+0x0/0xdc returned 0 after 0 usecs +[ 0.545721] calling init_k8_nbs+0x0/0x24 @ 1 +[ 0.545731] initcall init_k8_nbs+0x0/0x24 returned 0 after 0 usecs +[ 0.545734] calling clocksource_done_booting+0x0/0x4f @ 1 +[ 0.545736] Switching to clocksource tsc +[ 0.545757] initcall clocksource_done_booting+0x0/0x4f returned 0 after 4 usecs +[ 0.545760] calling ftrace_init_debugfs+0x0/0xe4 @ 1 +[ 0.545784] initcall ftrace_init_debugfs+0x0/0xe4 returned 0 after 21 usecs +[ 0.545786] calling rb_init_debugfs+0x0/0x2f @ 1 +[ 0.545788] initcall rb_init_debugfs+0x0/0x2f returned 0 after 0 usecs +[ 0.545790] calling tracer_init_debugfs+0x0/0x293 @ 1 +[ 0.545858] initcall tracer_init_debugfs+0x0/0x293 returned 0 after 64 usecs +[ 0.545860] calling init_trace_printk_function_export+0x0/0x33 @ 1 +[ 0.545863] initcall init_trace_printk_function_export+0x0/0x33 returned 0 after 0 usecs +[ 0.545866] calling event_trace_init+0x0/0x1ce @ 1 +[ 0.552029] initcall event_trace_init+0x0/0x1ce returned 0 after 6027 usecs +[ 0.552033] calling init_kprobe_trace+0x0/0x79 @ 1 +[ 0.552036] initcall init_kprobe_trace+0x0/0x79 returned 0 after 1 usecs +[ 0.552039] calling init_pipe_fs+0x0/0x3d @ 1 +[ 0.552052] initcall init_pipe_fs+0x0/0x3d returned 0 after 11 usecs +[ 0.552055] calling eventpoll_init+0x0/0xd1 @ 1 +[ 0.552061] initcall eventpoll_init+0x0/0xd1 returned 0 after 4 usecs +[ 0.552063] calling anon_inode_init+0x0/0xfa @ 1 +[ 0.552067] initcall anon_inode_init+0x0/0xfa returned 0 after 2 usecs +[ 0.552071] calling tomoyo_initerface_init+0x0/0x155 @ 1 +[ 0.552073] initcall tomoyo_initerface_init+0x0/0x155 returned 0 after 0 usecs +[ 0.552076] calling aa_create_aafs+0x0/0x14a @ 1 +[ 0.552091] AppArmor: AppArmor Filesystem Enabled +[ 0.552093] initcall aa_create_aafs+0x0/0x14a returned 0 after 15 usecs +[ 0.552095] calling blk_scsi_ioctl_init+0x0/0x288 @ 1 +[ 0.552098] initcall blk_scsi_ioctl_init+0x0/0x288 returned 0 after 0 usecs +[ 0.552101] calling acpi_event_init+0x0/0x79 @ 1 +[ 0.552112] initcall acpi_event_init+0x0/0x79 returned 0 after 9 usecs +[ 0.552114] calling pnpacpi_init+0x0/0x88 @ 1 +[ 0.552115] pnp: PnP ACPI init +[ 0.552129] ACPI: bus type pnp registered +[ 0.554382] pnp: PnP ACPI: found 12 devices +[ 0.554384] ACPI: ACPI bus type pnp unregistered +[ 0.554386] initcall pnpacpi_init+0x0/0x88 returned 0 after 2222 usecs +[ 0.554388] calling pnpbios_init+0x0/0xea @ 1 +[ 0.554390] PnPBIOS: Disabled by ACPI PNP +[ 0.554392] initcall pnpbios_init+0x0/0xea returned -19 after 1 usecs +[ 0.554394] calling pnp_system_init+0x0/0xf @ 1 +[ 0.554403] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.554405] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved +[ 0.554407] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved +[ 0.554409] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 0.554411] system 00:01: [mem 0xd4800000-0xd4800fff] has been reserved +[ 0.554412] system 00:01: [mem 0xfeb00000-0xfeb03fff] has been reserved +[ 0.554414] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.554415] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 0.554417] system 00:01: [mem 0xff000000-0xffffffff] could not be reserved +[ 0.554419] system 00:01: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 0.554423] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved +[ 0.554426] system 00:06: [io 0x1000-0x100f] has been reserved +[ 0.554428] system 00:06: [io 0xffff] has been reserved +[ 0.554430] system 00:06: [io 0xffff] has been reserved +[ 0.554432] system 00:06: [io 0x0400-0x047f] has been reserved +[ 0.554433] system 00:06: [io 0x0500-0x053f] has been reserved +[ 0.554436] system 00:07: [io 0x0680-0x06ff] has been reserved +[ 0.554438] system 00:07: [io 0x01e0-0x01e7] has been reserved +[ 0.554445] initcall pnp_system_init+0x0/0xf returned 0 after 47 usecs +[ 0.554447] calling chr_dev_init+0x0/0xc9 @ 1 +[ 0.555249] initcall chr_dev_init+0x0/0xc9 returned 0 after 782 usecs +[ 0.555251] calling firmware_class_init+0x0/0x14 @ 1 +[ 0.555257] initcall firmware_class_init+0x0/0x14 returned 0 after 3 usecs +[ 0.555260] calling cpufreq_gov_performance_init+0x0/0xf @ 1 +[ 0.555262] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 0 usecs +[ 0.555265] calling init_acpi_pm_clocksource+0x0/0x14e @ 1 +[ 0.589698] initcall init_acpi_pm_clocksource+0x0/0x14e returned 0 after 33704 usecs +[ 0.589702] calling pcibios_assign_resources+0x0/0x6b @ 1 +[ 0.589780] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd4900000-0xd4afffff 64bit pref] +[ 0.589783] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd4b00000-0xd4cfffff 64bit pref] +[ 0.589785] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd4d00000-0xd4efffff 64bit pref] +[ 0.589788] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff] +[ 0.589790] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff] +[ 0.589791] pci 0000:00:1c.3: BAR 13: assigned [io 0x6000-0x6fff] +[ 0.589793] pci 0000:00:1c.0: PCI bridge to [bus 01-01] +[ 0.589797] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff] +[ 0.589802] pci 0000:00:1c.0: bridge window [mem 0xd4600000-0xd46fffff] +[ 0.589807] pci 0000:00:1c.0: bridge window [mem 0xd4900000-0xd4afffff 64bit pref] +[ 0.589814] pci 0000:00:1c.1: PCI bridge to [bus 02-02] +[ 0.589817] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff] +[ 0.589823] pci 0000:00:1c.1: bridge window [mem 0xd4500000-0xd45fffff] +[ 0.589827] pci 0000:00:1c.1: bridge window [mem 0xd4b00000-0xd4cfffff 64bit pref] +[ 0.589834] pci 0000:00:1c.2: PCI bridge to [bus 03-04] +[ 0.589837] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff] +[ 0.589843] pci 0000:00:1c.2: bridge window [mem 0xd2500000-0xd44fffff] +[ 0.589847] pci 0000:00:1c.2: bridge window [mem 0xd0400000-0xd23fffff 64bit pref] +[ 0.589854] pci 0000:00:1c.3: PCI bridge to [bus 05-05] +[ 0.589857] pci 0000:00:1c.3: bridge window [io 0x6000-0x6fff] +[ 0.589862] pci 0000:00:1c.3: bridge window [mem 0xd2400000-0xd24fffff] +[ 0.589867] pci 0000:00:1c.3: bridge window [mem 0xd4d00000-0xd4efffff 64bit pref] +[ 0.589874] pci 0000:00:1e.0: PCI bridge to [bus 06-06] +[ 0.589875] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.589880] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.589884] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.589906] alloc irq_desc for 16 on node -1 +[ 0.589907] alloc kstat_irqs on node -1 +[ 0.589912] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.589918] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.589927] alloc irq_desc for 17 on node -1 +[ 0.589928] alloc kstat_irqs on node -1 +[ 0.589931] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.589935] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.589945] alloc irq_desc for 18 on node -1 +[ 0.589946] alloc kstat_irqs on node -1 +[ 0.589948] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.589952] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.589962] alloc irq_desc for 19 on node -1 +[ 0.589963] alloc kstat_irqs on node -1 +[ 0.589965] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.589969] pci 0000:00:1c.3: setting latency timer to 64 +[ 0.589977] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.589981] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.589983] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.589984] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.589986] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff] +[ 0.589987] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff] +[ 0.589988] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff] +[ 0.589990] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfeafffff] +[ 0.589991] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff] +[ 0.589993] pci_bus 0000:01: resource 1 [mem 0xd4600000-0xd46fffff] +[ 0.589994] pci_bus 0000:01: resource 2 [mem 0xd4900000-0xd4afffff 64bit pref] +[ 0.589996] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff] +[ 0.589997] pci_bus 0000:02: resource 1 [mem 0xd4500000-0xd45fffff] +[ 0.589999] pci_bus 0000:02: resource 2 [mem 0xd4b00000-0xd4cfffff 64bit pref] +[ 0.590000] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff] +[ 0.590001] pci_bus 0000:03: resource 1 [mem 0xd2500000-0xd44fffff] +[ 0.590003] pci_bus 0000:03: resource 2 [mem 0xd0400000-0xd23fffff 64bit pref] +[ 0.590005] pci_bus 0000:05: resource 0 [io 0x6000-0x6fff] +[ 0.590006] pci_bus 0000:05: resource 1 [mem 0xd2400000-0xd24fffff] +[ 0.590007] pci_bus 0000:05: resource 2 [mem 0xd4d00000-0xd4efffff 64bit pref] +[ 0.590009] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7] +[ 0.590010] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff] +[ 0.590012] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.590013] pci_bus 0000:06: resource 7 [mem 0x000d4000-0x000d7fff] +[ 0.590015] pci_bus 0000:06: resource 8 [mem 0x000d8000-0x000dbfff] +[ 0.590016] pci_bus 0000:06: resource 9 [mem 0x000dc000-0x000dffff] +[ 0.590017] pci_bus 0000:06: resource 10 [mem 0xc0000000-0xfeafffff] +[ 0.590020] initcall pcibios_assign_resources+0x0/0x6b returned 0 after 309 usecs +[ 0.590023] calling sysctl_core_init+0x0/0x2d @ 1 +[ 0.590036] initcall sysctl_core_init+0x0/0x2d returned 0 after 11 usecs +[ 0.590039] calling inet_init+0x0/0x21c @ 1 +[ 0.590056] NET: Registered protocol family 2 +[ 0.590104] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.590237] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.590437] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.590530] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.590532] TCP reno registered +[ 0.590534] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.590538] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.590598] initcall inet_init+0x0/0x21c returned 0 after 542 usecs +[ 0.590600] calling af_unix_init+0x0/0x4d @ 1 +[ 0.590602] NET: Registered protocol family 1 +[ 0.590606] initcall af_unix_init+0x0/0x4d returned 0 after 4 usecs +[ 0.590611] calling pci_apply_final_quirks+0x0/0x106 @ 1 +[ 0.590617] pci 0000:00:02.0: Boot video device +[ 0.590724] PCI: CLS 64 bytes, default 64 +[ 0.590726] initcall pci_apply_final_quirks+0x0/0x106 returned 0 after 109 usecs +[ 0.590730] calling populate_rootfs+0x0/0x1f @ 1 +[ 0.590732] initcall populate_rootfs+0x0/0x1f returned 433096936 after 0 usecs +[ 0.590734] initcall populate_rootfs+0x0/0x1f returned with error code 433096936 +[ 0.590737] calling pci_iommu_init+0x0/0xd @ 1 +[ 0.590740] initcall pci_iommu_init+0x0/0xd returned 0 after 0 usecs +[ 0.590742] calling i8259A_init_sysfs+0x0/0x2b @ 1 +[ 0.590757] initcall i8259A_init_sysfs+0x0/0x2b returned 0 after 12 usecs +[ 0.590759] calling sbf_init+0x0/0xe4 @ 1 +[ 0.590763] Simple Boot Flag at 0x7c set to 0x1 +[ 0.590768] initcall sbf_init+0x0/0xe4 returned 0 after 7 usecs +[ 0.590770] calling i8237A_init_sysfs+0x0/0x1d @ 1 +[ 0.590777] initcall i8237A_init_sysfs+0x0/0x1d returned 0 after 4 usecs +[ 0.590779] calling add_rtc_cmos+0x0/0x98 @ 1 +[ 0.590784] initcall add_rtc_cmos+0x0/0x98 returned 0 after 3 usecs +[ 0.590789] calling cache_sysfs_init+0x0/0x62 @ 1 +[ 0.590897] initcall cache_sysfs_init+0x0/0x62 returned 0 after 103 usecs +[ 0.590899] calling mcheck_init_device+0x0/0xeb @ 1 +[ 0.590969] initcall mcheck_init_device+0x0/0xeb returned 0 after 66 usecs +[ 0.590971] calling threshold_init_device+0x0/0x71 @ 1 +[ 0.590973] initcall threshold_init_device+0x0/0x71 returned 0 after 0 usecs +[ 0.590975] calling thermal_throttle_init_device+0x0/0x77 @ 1 +[ 0.590980] initcall thermal_throttle_init_device+0x0/0x77 returned 0 after 3 usecs +[ 0.590982] calling powernow_k6_init+0x0/0x90 @ 1 +[ 0.590984] initcall powernow_k6_init+0x0/0x90 returned -19 after 0 usecs +[ 0.590986] calling longrun_init+0x0/0x2d @ 1 +[ 0.590988] initcall longrun_init+0x0/0x2d returned -19 after 0 usecs +[ 0.590989] calling cpufreq_gx_init+0x0/0x182 @ 1 +[ 0.590992] initcall cpufreq_gx_init+0x0/0x182 returned -19 after 0 usecs +[ 0.590993] calling speedstep_init+0x0/0xe3 @ 1 +[ 0.590995] initcall speedstep_init+0x0/0xe3 returned -19 after 0 usecs +[ 0.590997] calling speedstep_init+0x0/0xae @ 1 +[ 0.590999] initcall speedstep_init+0x0/0xae returned -19 after 0 usecs +[ 0.591000] calling nforce2_init+0x0/0x6f @ 1 +[ 0.591003] cpufreq-nforce2: No nForce2 chipset. +[ 0.591004] initcall nforce2_init+0x0/0x6f returned -19 after 2 usecs +[ 0.591008] calling ioapic_init_sysfs+0x0/0x8b @ 1 +[ 0.591016] initcall ioapic_init_sysfs+0x0/0x8b returned 0 after 5 usecs +[ 0.591018] calling add_pcspkr+0x0/0x2b @ 1 +[ 0.591031] initcall add_pcspkr+0x0/0x2b returned 0 after 10 usecs +[ 0.591036] calling start_periodic_check_for_corruption+0x0/0x40 @ 1 +[ 0.591038] Scanning for low memory corruption every 60 seconds +[ 0.591046] initcall start_periodic_check_for_corruption+0x0/0x40 returned 0 after 7 usecs +[ 0.591048] calling init_sched_debug_procfs+0x0/0x30 @ 1 +[ 0.591078] initcall init_sched_debug_procfs+0x0/0x30 returned 0 after 26 usecs +[ 0.591080] calling proc_schedstat_init+0x0/0x27 @ 1 +[ 0.591082] initcall proc_schedstat_init+0x0/0x27 returned 0 after 0 usecs +[ 0.591084] calling proc_execdomains_init+0x0/0x27 @ 1 +[ 0.591087] initcall proc_execdomains_init+0x0/0x27 returned 0 after 1 usecs +[ 0.591089] calling ioresources_init+0x0/0x44 @ 1 +[ 0.591092] initcall ioresources_init+0x0/0x44 returned 0 after 1 usecs +[ 0.591093] calling uid_cache_init+0x0/0x8a @ 1 +[ 0.591096] initcall uid_cache_init+0x0/0x8a returned 0 after 1 usecs +[ 0.591098] calling init_posix_timers+0x0/0x157 @ 1 +[ 0.591103] initcall init_posix_timers+0x0/0x157 returned 0 after 2 usecs +[ 0.591105] calling init_posix_cpu_timers+0x0/0xb7 @ 1 +[ 0.591107] initcall init_posix_cpu_timers+0x0/0xb7 returned 0 after 0 usecs +[ 0.591109] calling nsproxy_cache_init+0x0/0x32 @ 1 +[ 0.591111] initcall nsproxy_cache_init+0x0/0x32 returned 0 after 0 usecs +[ 0.591115] calling create_proc_profile+0x0/0x70 @ 1 +[ 0.591117] initcall create_proc_profile+0x0/0x70 returned 0 after 0 usecs +[ 0.591120] calling timekeeping_init_device+0x0/0x1d @ 1 +[ 0.591129] initcall timekeeping_init_device+0x0/0x1d returned 0 after 7 usecs +[ 0.591131] calling init_clocksource_sysfs+0x0/0x43 @ 1 +[ 0.591138] initcall init_clocksource_sysfs+0x0/0x43 returned 0 after 5 usecs +[ 0.591140] calling init_timer_list_procfs+0x0/0x30 @ 1 +[ 0.591143] initcall init_timer_list_procfs+0x0/0x30 returned 0 after 0 usecs +[ 0.591145] calling init_tstats_procfs+0x0/0x30 @ 1 +[ 0.591147] initcall init_tstats_procfs+0x0/0x30 returned 0 after 0 usecs +[ 0.591149] calling futex_init+0x0/0x85 @ 1 +[ 0.591154] initcall futex_init+0x0/0x85 returned 0 after 3 usecs +[ 0.591156] calling proc_dma_init+0x0/0x27 @ 1 +[ 0.591158] initcall proc_dma_init+0x0/0x27 returned 0 after 0 usecs +[ 0.591160] calling proc_modules_init+0x0/0x27 @ 1 +[ 0.591162] initcall proc_modules_init+0x0/0x27 returned 0 after 0 usecs +[ 0.591164] calling kallsyms_init+0x0/0x2a @ 1 +[ 0.591166] initcall kallsyms_init+0x0/0x2a returned 0 after 0 usecs +[ 0.591168] calling snapshot_device_init+0x0/0xf @ 1 +[ 0.591183] initcall snapshot_device_init+0x0/0xf returned 0 after 12 usecs +[ 0.591185] calling crash_save_vmcoreinfo_init+0x0/0x4b4 @ 1 +[ 0.591200] initcall crash_save_vmcoreinfo_init+0x0/0x4b4 returned 0 after 12 usecs +[ 0.591202] calling crash_notes_memory_init+0x0/0x35 @ 1 +[ 0.591206] initcall crash_notes_memory_init+0x0/0x35 returned 0 after 2 usecs +[ 0.591208] calling pid_namespaces_init+0x0/0x32 @ 1 +[ 0.591211] initcall pid_namespaces_init+0x0/0x32 returned 0 after 0 usecs +[ 0.591213] calling audit_init+0x0/0x12c @ 1 +[ 0.591214] audit: initializing netlink socket (disabled) +[ 0.591220] type=2000 audit(1296072242.432:1): initialized +[ 0.591223] initcall audit_init+0x0/0x12c returned 0 after 8 usecs +[ 0.591224] calling audit_tree_init+0x0/0x3b @ 1 +[ 0.591227] initcall audit_tree_init+0x0/0x3b returned 0 after 0 usecs +[ 0.591229] calling init_kprobes+0x0/0x156 @ 1 +[ 0.598890] initcall init_kprobes+0x0/0x156 returned 0 after 7497 usecs +[ 0.598892] calling hung_task_init+0x0/0x4e @ 1 +[ 0.598929] initcall hung_task_init+0x0/0x4e returned 0 after 33 usecs +[ 0.598932] calling utsname_sysctl_init+0x0/0x11 @ 1 +[ 0.598946] initcall utsname_sysctl_init+0x0/0x11 returned 0 after 11 usecs +[ 0.598948] calling init_tracepoints+0x0/0x20 @ 1 +[ 0.598950] initcall init_tracepoints+0x0/0x20 returned 0 after 0 usecs +[ 0.598952] calling init_lstats_procfs+0x0/0x2a @ 1 +[ 0.598957] initcall init_lstats_procfs+0x0/0x2a returned 0 after 3 usecs +[ 0.598959] calling ftrace_mod_cmd_init+0x0/0xf @ 1 +[ 0.598961] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 0 usecs +[ 0.598963] calling init_events+0x0/0x5f @ 1 +[ 0.598970] initcall init_events+0x0/0x5f returned 0 after 4 usecs +[ 0.598972] calling init_sched_switch_trace+0x0/0xf @ 1 +[ 0.598974] initcall init_sched_switch_trace+0x0/0xf returned 0 after 0 usecs +[ 0.598976] calling init_function_trace+0x0/0x35 @ 1 +[ 0.598979] initcall init_function_trace+0x0/0x35 returned 0 after 0 usecs +[ 0.598981] calling init_wakeup_tracer+0x0/0x1d @ 1 +[ 0.598983] initcall init_wakeup_tracer+0x0/0x1d returned 0 after 0 usecs +[ 0.598985] calling stack_trace_init+0x0/0x68 @ 1 +[ 0.598992] initcall stack_trace_init+0x0/0x68 returned 0 after 5 usecs +[ 0.598994] calling init_mmio_trace+0x0/0xf @ 1 +[ 0.598996] initcall init_mmio_trace+0x0/0xf returned 0 after 0 usecs +[ 0.598998] calling init_graph_trace+0x0/0x6e @ 1 +[ 0.599002] initcall init_graph_trace+0x0/0x6e returned 0 after 1 usecs +[ 0.599004] calling init_blk_tracer+0x0/0x56 @ 1 +[ 0.599007] initcall init_blk_tracer+0x0/0x56 returned 0 after 1 usecs +[ 0.599009] calling perf_event_sysfs_init+0x0/0x14 @ 1 +[ 0.599014] initcall perf_event_sysfs_init+0x0/0x14 returned 0 after 3 usecs +[ 0.599016] calling init_per_zone_wmark_min+0x0/0x64 @ 1 +[ 0.599109] initcall init_per_zone_wmark_min+0x0/0x64 returned 0 after 89 usecs +[ 0.599111] calling kswapd_init+0x0/0x1d @ 1 +[ 0.599134] initcall kswapd_init+0x0/0x1d returned 0 after 20 usecs +[ 0.599137] calling setup_vmstat+0x0/0xcf @ 1 +[ 0.599145] initcall setup_vmstat+0x0/0xcf returned 0 after 6 usecs +[ 0.599147] calling mm_sysfs_init+0x0/0x22 @ 1 +[ 0.599151] initcall mm_sysfs_init+0x0/0x22 returned 0 after 2 usecs +[ 0.599153] calling proc_vmalloc_init+0x0/0x2a @ 1 +[ 0.599155] initcall proc_vmalloc_init+0x0/0x2a returned 0 after 0 usecs +[ 0.599157] calling init_emergency_pool+0x0/0x7e @ 1 +[ 0.599169] highmem bounce pool size: 64 pages +[ 0.599170] initcall init_emergency_pool+0x0/0x7e returned 0 after 11 usecs +[ 0.599172] calling procswaps_init+0x0/0x27 @ 1 +[ 0.599174] initcall procswaps_init+0x0/0x27 returned 0 after 0 usecs +[ 0.599176] calling hugetlb_init+0x0/0x1dd @ 1 +[ 0.599179] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 0.599184] initcall hugetlb_init+0x0/0x1dd returned 0 after 6 usecs +[ 0.599185] calling ksm_init+0x0/0x1c9 @ 1 +[ 0.599209] initcall ksm_init+0x0/0x1c9 returned 0 after 21 usecs +[ 0.599211] calling slab_proc_init+0x0/0x2a @ 1 +[ 0.599214] initcall slab_proc_init+0x0/0x2a returned 0 after 1 usecs +[ 0.599215] calling slab_sysfs_init+0x0/0xc8 @ 1 +[ 0.600011] initcall slab_sysfs_init+0x0/0xc8 returned 0 after 776 usecs +[ 0.600012] calling fasync_init+0x0/0x2f @ 1 +[ 0.600017] initcall fasync_init+0x0/0x2f returned 0 after 3 usecs +[ 0.600019] calling proc_filesystems_init+0x0/0x27 @ 1 +[ 0.600022] initcall proc_filesystems_init+0x0/0x27 returned 0 after 1 usecs +[ 0.600024] calling dnotify_init+0x0/0x81 @ 1 +[ 0.600031] initcall dnotify_init+0x0/0x81 returned 0 after 5 usecs +[ 0.600033] calling inotify_setup+0x0/0x11 @ 1 +[ 0.600034] initcall inotify_setup+0x0/0x11 returned 0 after 0 usecs +[ 0.600036] calling inotify_user_setup+0x0/0x78 @ 1 +[ 0.600043] initcall inotify_user_setup+0x0/0x78 returned 0 after 5 usecs +[ 0.600045] calling aio_setup+0x0/0xac @ 1 +[ 0.600108] initcall aio_setup+0x0/0xac returned 0 after 59 usecs +[ 0.600110] calling proc_locks_init+0x0/0x27 @ 1 +[ 0.600112] initcall proc_locks_init+0x0/0x27 returned 0 after 1 usecs +[ 0.600114] calling init_mbcache+0x0/0x11 @ 1 +[ 0.600116] initcall init_mbcache+0x0/0x11 returned 0 after 0 usecs +[ 0.600118] calling dquot_init+0x0/0x10f @ 1 +[ 0.600119] VFS: Disk quotas dquot_6.5.2 +[ 0.600158] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.600160] initcall dquot_init+0x0/0x10f returned 0 after 40 usecs +[ 0.600162] calling quota_init+0x0/0x24 @ 1 +[ 0.600167] initcall quota_init+0x0/0x24 returned 0 after 3 usecs +[ 0.600169] calling proc_cmdline_init+0x0/0x27 @ 1 +[ 0.600171] initcall proc_cmdline_init+0x0/0x27 returned 0 after 1 usecs +[ 0.600173] calling proc_cpuinfo_init+0x0/0x27 @ 1 +[ 0.600176] initcall proc_cpuinfo_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600177] calling proc_devices_init+0x0/0x27 @ 1 +[ 0.600180] initcall proc_devices_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600181] calling proc_interrupts_init+0x0/0x27 @ 1 +[ 0.600184] initcall proc_interrupts_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600185] calling proc_loadavg_init+0x0/0x27 @ 1 +[ 0.600188] initcall proc_loadavg_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600190] calling proc_meminfo_init+0x0/0x27 @ 1 +[ 0.600192] initcall proc_meminfo_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600194] calling proc_stat_init+0x0/0x27 @ 1 +[ 0.600196] initcall proc_stat_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600198] calling proc_uptime_init+0x0/0x27 @ 1 +[ 0.600200] initcall proc_uptime_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600202] calling proc_version_init+0x0/0x27 @ 1 +[ 0.600204] initcall proc_version_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600206] calling proc_softirqs_init+0x0/0x27 @ 1 +[ 0.600208] initcall proc_softirqs_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600210] calling proc_kcore_init+0x0/0xae @ 1 +[ 0.600213] initcall proc_kcore_init+0x0/0xae returned 0 after 1 usecs +[ 0.600215] calling vmcore_init+0x0/0x7e @ 1 +[ 0.600217] initcall vmcore_init+0x0/0x7e returned 0 after 0 usecs +[ 0.600218] calling proc_kmsg_init+0x0/0x2a @ 1 +[ 0.600221] initcall proc_kmsg_init+0x0/0x2a returned 0 after 0 usecs +[ 0.600223] calling proc_page_init+0x0/0x4a @ 1 +[ 0.600226] initcall proc_page_init+0x0/0x4a returned 0 after 1 usecs +[ 0.600228] calling proc_version_signature_init+0x0/0x27 @ 1 +[ 0.600230] initcall proc_version_signature_init+0x0/0x27 returned 0 after 0 usecs +[ 0.600232] calling init_devpts_fs+0x0/0x3d @ 1 +[ 0.600244] initcall init_devpts_fs+0x0/0x3d returned 0 after 9 usecs +[ 0.600246] calling init_ext3_fs+0x0/0x6a @ 1 +[ 0.600282] initcall init_ext3_fs+0x0/0x6a returned 0 after 33 usecs +[ 0.600284] calling init_ext2_fs+0x0/0x6a @ 1 +[ 0.600305] initcall init_ext2_fs+0x0/0x6a returned 0 after 18 usecs +[ 0.600306] calling init_ext4_fs+0x0/0xd4 @ 1 +[ 0.600400] initcall init_ext4_fs+0x0/0xd4 returned 0 after 89 usecs +[ 0.600402] calling journal_init+0x0/0xa3 @ 1 +[ 0.600443] initcall journal_init+0x0/0xa3 returned 0 after 38 usecs +[ 0.600445] calling journal_init+0x0/0xb4 @ 1 +[ 0.600474] initcall journal_init+0x0/0xb4 returned 0 after 26 usecs +[ 0.600476] calling init_ramfs_fs+0x0/0xf @ 1 +[ 0.600479] initcall init_ramfs_fs+0x0/0xf returned 0 after 0 usecs +[ 0.600480] calling init_hugetlbfs_fs+0x0/0x8b @ 1 +[ 0.600509] initcall init_hugetlbfs_fs+0x0/0x8b returned 0 after 26 usecs +[ 0.600511] calling ecryptfs_init+0x0/0x1b3 @ 1 +[ 0.600615] initcall ecryptfs_init+0x0/0x1b3 returned 0 after 98 usecs +[ 0.600617] calling fuse_init+0x0/0x123 @ 1 +[ 0.600618] fuse init (API version 7.14) +[ 0.600671] initcall fuse_init+0x0/0x123 returned 0 after 50 usecs +[ 0.600672] calling ipc_init+0x0/0x20 @ 1 +[ 0.600676] msgmni has been set to 1658 +[ 0.600680] initcall ipc_init+0x0/0x20 returned 0 after 6 usecs +[ 0.600682] calling ipc_sysctl_init+0x0/0x11 @ 1 +[ 0.600696] initcall ipc_sysctl_init+0x0/0x11 returned 0 after 11 usecs +[ 0.600698] calling init_mqueue_fs+0x0/0x9f @ 1 +[ 0.600732] initcall init_mqueue_fs+0x0/0x9f returned 0 after 30 usecs +[ 0.600733] calling key_proc_init+0x0/0x37 @ 1 +[ 0.600737] initcall key_proc_init+0x0/0x37 returned 0 after 1 usecs +[ 0.600739] calling selinux_nf_ip_init+0x0/0x65 @ 1 +[ 0.600741] initcall selinux_nf_ip_init+0x0/0x65 returned 0 after 0 usecs +[ 0.600742] calling init_sel_fs+0x0/0x5c @ 1 +[ 0.600744] initcall init_sel_fs+0x0/0x5c returned 0 after 0 usecs +[ 0.600746] calling selnl_init+0x0/0x59 @ 1 +[ 0.600752] initcall selnl_init+0x0/0x59 returned 0 after 3 usecs +[ 0.600753] calling sel_netif_init+0x0/0x6d @ 1 +[ 0.600755] initcall sel_netif_init+0x0/0x6d returned 0 after 0 usecs +[ 0.600757] calling sel_netnode_init+0x0/0x78 @ 1 +[ 0.600759] initcall sel_netnode_init+0x0/0x78 returned 0 after 0 usecs +[ 0.600760] calling sel_netport_init+0x0/0x78 @ 1 +[ 0.600762] initcall sel_netport_init+0x0/0x78 returned 0 after 0 usecs +[ 0.600764] calling aurule_init+0x0/0x46 @ 1 +[ 0.600766] initcall aurule_init+0x0/0x46 returned 0 after 0 usecs +[ 0.600768] calling init_smk_fs+0x0/0x6d @ 1 +[ 0.600770] initcall init_smk_fs+0x0/0x6d returned 0 after 0 usecs +[ 0.600772] calling crypto_wq_init+0x0/0x3a @ 1 +[ 0.600826] initcall crypto_wq_init+0x0/0x3a returned 0 after 50 usecs +[ 0.600828] calling crypto_algapi_init+0x0/0xc @ 1 +[ 0.600834] initcall crypto_algapi_init+0x0/0xc returned 0 after 3 usecs +[ 0.600835] calling skcipher_module_init+0x0/0x2e @ 1 +[ 0.600837] initcall skcipher_module_init+0x0/0x2e returned 0 after 0 usecs +[ 0.600839] calling chainiv_module_init+0x0/0xf @ 1 +[ 0.600842] initcall chainiv_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.600844] calling eseqiv_module_init+0x0/0xf @ 1 +[ 0.600846] initcall eseqiv_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.600847] calling hmac_module_init+0x0/0xf @ 1 +[ 0.600849] initcall hmac_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.600851] calling md5_mod_init+0x0/0xf @ 1 +[ 0.600959] initcall md5_mod_init+0x0/0xf returned 0 after 101 usecs +[ 0.600961] calling crypto_ecb_module_init+0x0/0xf @ 1 +[ 0.600963] initcall crypto_ecb_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.600965] calling crypto_cbc_module_init+0x0/0xf @ 1 +[ 0.600967] initcall crypto_cbc_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.600969] calling krng_mod_init+0x0/0xf @ 1 +[ 0.601023] initcall krng_mod_init+0x0/0xf returned 0 after 49 usecs +[ 0.601026] calling proc_genhd_init+0x0/0x44 @ 1 +[ 0.601030] initcall proc_genhd_init+0x0/0x44 returned 0 after 2 usecs +[ 0.601032] calling bsg_init+0x0/0x119 @ 1 +[ 0.601065] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.601067] initcall bsg_init+0x0/0x119 returned 0 after 32 usecs +[ 0.601069] calling noop_init+0x0/0x11 @ 1 +[ 0.601071] io scheduler noop registered +[ 0.601072] initcall noop_init+0x0/0x11 returned 0 after 1 usecs +[ 0.601074] calling deadline_init+0x0/0x11 @ 1 +[ 0.601075] io scheduler deadline registered +[ 0.601077] initcall deadline_init+0x0/0x11 returned 0 after 1 usecs +[ 0.601079] calling cfq_init+0x0/0x9e @ 1 +[ 0.601087] io scheduler cfq registered (default) +[ 0.601089] initcall cfq_init+0x0/0x9e returned 0 after 8 usecs +[ 0.601092] calling percpu_counter_startup+0x0/0x16 @ 1 +[ 0.601094] initcall percpu_counter_startup+0x0/0x16 returned 0 after 0 usecs +[ 0.601096] calling audit_classes_init+0x0/0x4f @ 1 +[ 0.601100] initcall audit_classes_init+0x0/0x4f returned 0 after 1 usecs +[ 0.601101] calling lnw_gpio_init+0x0/0x16 @ 1 +[ 0.601116] initcall lnw_gpio_init+0x0/0x16 returned 0 after 12 usecs +[ 0.601118] calling timbgpio_init+0x0/0xf @ 1 +[ 0.601126] initcall timbgpio_init+0x0/0xf returned 0 after 5 usecs +[ 0.601128] calling ucb1400_gpio_init+0x0/0xf @ 1 +[ 0.601134] initcall ucb1400_gpio_init+0x0/0xf returned 0 after 3 usecs +[ 0.601136] calling pci_proc_init+0x0/0x64 @ 1 +[ 0.601167] initcall pci_proc_init+0x0/0x64 returned 0 after 28 usecs +[ 0.601169] calling pcie_portdrv_init+0x0/0x51 @ 1 +[ 0.601196] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.601239] alloc irq_desc for 40 on node -1 +[ 0.601240] alloc kstat_irqs on node -1 +[ 0.601251] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 0.601329] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 0.601369] alloc irq_desc for 41 on node -1 +[ 0.601370] alloc kstat_irqs on node -1 +[ 0.601377] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 0.601452] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 0.601493] alloc irq_desc for 42 on node -1 +[ 0.601494] alloc kstat_irqs on node -1 +[ 0.601501] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 0.601574] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 0.601614] alloc irq_desc for 43 on node -1 +[ 0.601615] alloc kstat_irqs on node -1 +[ 0.601622] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 0.601693] initcall pcie_portdrv_init+0x0/0x51 returned 0 after 510 usecs +[ 0.601695] calling aer_service_init+0x0/0x28 @ 1 +[ 0.601701] initcall aer_service_init+0x0/0x28 returned 0 after 4 usecs +[ 0.601703] calling pcie_pme_service_init+0x0/0x1d @ 1 +[ 0.601705] initcall pcie_pme_service_init+0x0/0x1d returned -19 after 0 usecs +[ 0.601708] calling ioapic_init+0x0/0x16 @ 1 +[ 0.601718] initcall ioapic_init+0x0/0x16 returned 0 after 7 usecs +[ 0.601720] calling pci_hotplug_init+0x0/0x4d @ 1 +[ 0.601721] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.601723] initcall pci_hotplug_init+0x0/0x4d returned 0 after 1 usecs +[ 0.601724] calling pcied_init+0x0/0x76 @ 1 +[ 0.601864] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.601866] initcall pcied_init+0x0/0x76 returned 0 after 137 usecs +[ 0.601868] calling fb_console_init+0x0/0x11f @ 1 +[ 0.601882] initcall fb_console_init+0x0/0x11f returned 0 after 12 usecs +[ 0.601884] calling imsttfb_init+0x0/0x40 @ 1 +[ 0.601892] initcall imsttfb_init+0x0/0x40 returned 0 after 6 usecs +[ 0.601894] calling asiliantfb_init+0x0/0x2b @ 1 +[ 0.601901] initcall asiliantfb_init+0x0/0x2b returned 0 after 5 usecs +[ 0.601903] calling vesafb_init+0x0/0x81 @ 1 +[ 0.601926] initcall vesafb_init+0x0/0x81 returned -19 after 21 usecs +[ 0.601928] calling efifb_init+0x0/0x7b @ 1 +[ 0.601933] initcall efifb_init+0x0/0x7b returned -19 after 3 usecs +[ 0.601935] calling intel_idle_init+0x0/0x55 @ 1 +[ 0.601937] intel_idle: MWAIT substates: 0x1120 +[ 0.601938] intel_idle: v0.4 model 0x25 +[ 0.601939] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 0.601957] initcall intel_idle_init+0x0/0x55 returned 0 after 20 usecs +[ 0.601959] calling acpi_reserve_resources+0x0/0xc8 @ 1 +[ 0.601963] initcall acpi_reserve_resources+0x0/0xc8 returned 0 after 2 usecs +[ 0.601965] calling irqrouter_init_sysfs+0x0/0x33 @ 1 +[ 0.601973] initcall irqrouter_init_sysfs+0x0/0x33 returned 0 after 6 usecs +[ 0.601975] calling acpi_ac_init+0x0/0x3d @ 1 +[ 0.602069] ACPI: AC Adapter [ADP1] (on-line) +[ 0.602077] initcall acpi_ac_init+0x0/0x3d returned 0 after 98 usecs +[ 0.602079] calling acpi_button_init+0x0/0x4a @ 1 +[ 0.602121] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.602132] ACPI: Power Button [PWRB] +[ 0.602200] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 0.602468] ACPI: Lid Switch [LID] +[ 0.602495] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 0.602498] ACPI: Power Button [PWRF] +[ 0.602510] initcall acpi_button_init+0x0/0x4a returned 0 after 419 usecs +[ 0.602512] calling acpi_fan_init+0x0/0x4a @ 1 +[ 0.602525] initcall acpi_fan_init+0x0/0x4a returned 0 after 11 usecs +[ 0.602527] calling acpi_pci_slot_init+0x0/0x1b @ 1 +[ 0.602919] initcall acpi_pci_slot_init+0x0/0x1b returned 0 after 381 usecs +[ 0.602921] calling acpi_processor_init+0x0/0x102 @ 1 +[ 0.602923] ACPI: acpi_idle yielding to intel_idleinitcall acpi_processor_init+0x0/0x102 returned 0 after 301 usecs +[ 0.603234] calling acpi_container_init+0x0/0x4d @ 1 +[ 0.605476] initcall acpi_container_init+0x0/0x4d returned 0 after 2192 usecs +[ 0.605478] calling acpi_thermal_init+0x0/0x6e @ 1 +[ 0.605695] thermal LNXTHERM:01: registered as thermal_zone0 +[ 0.605700] ACPI: Thermal Zone [TZ01] (81 C) +[ 0.605707] initcall acpi_thermal_init+0x0/0x6e returned 0 after 222 usecs +[ 0.605709] calling acpi_battery_init+0x0/0x40 @ 1 +[ 0.605735] initcall acpi_battery_init+0x0/0x40 returned 0 after 22 usecs +[ 0.605737] calling acpi_smb_hc_init+0x0/0x15 @ 1 +[ 0.605751] calling 2_acpi_battery_update_async+0x0/0x4f @ 62 +[ 0.605776] initcall acpi_smb_hc_init+0x0/0x15 returned 0 after 35 usecs +[ 0.605779] calling acpi_sbs_init+0x0/0x46 @ 1 +[ 0.605793] ACPI: Battery Slot [BAT1] (battery absent) +[ 0.605795] initcall 2_acpi_battery_update_async+0x0/0x4f returned 0 after 40 usecs +[ 0.605798] initcall acpi_sbs_init+0x0/0x46 returned 0 after 14 usecs +[ 0.605801] calling erst_init+0x0/0x22b @ 1 +[ 0.605804] ERST: Table is not found! +[ 0.605807] initcall erst_init+0x0/0x22b returned 0 after 2 usecs +[ 0.605810] calling pnpbios_thread_init+0x0/0x56 @ 1 +[ 0.605812] initcall pnpbios_thread_init+0x0/0x56 returned 0 after 0 usecs +[ 0.605816] calling isapnp_init+0x0/0x11 @ 1 +[ 0.605821] initcall isapnp_init+0x0/0x11 returned 3 after 2 usecs +[ 0.605825] calling 3_async_isapnp_init+0x0/0xa @ 62 +[ 0.605828] initcall isapnp_init+0x0/0x11 returned with error code 3 +[ 0.605834] calling rand_initialize+0x0/0x30 @ 1 +[ 0.605836] isapnp: Scanning for PnP cards... +[ 0.605856] initcall rand_initialize+0x0/0x30 returned 0 after 16 usecs +[ 0.605859] calling pty_init+0x0/0x11 @ 1 +[ 0.605913] initcall pty_init+0x0/0x11 returned 0 after 49 usecs +[ 0.605916] calling sysrq_init+0x0/0x58 @ 1 +[ 0.605923] initcall sysrq_init+0x0/0x58 returned 0 after 3 usecs +[ 0.605926] calling hpet_init+0x0/0x57 @ 1 +[ 0.606103] initcall hpet_init+0x0/0x57 returned 0 after 169 usecs +[ 0.606106] calling cn_proc_init+0x0/0x33 @ 1 +[ 0.606121] initcall cn_proc_init+0x0/0x33 returned 0 after 11 usecs +[ 0.606124] calling serial8250_init+0x0/0x156 @ 1 +[ 0.606126] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.606290] initcall serial8250_init+0x0/0x156 returned 0 after 158 usecs +[ 0.606293] calling serial8250_pnp_init+0x0/0xf @ 1 +[ 0.606454] initcall serial8250_pnp_init+0x0/0xf returned 0 after 153 usecs +[ 0.606457] calling serial8250_pci_init+0x0/0x16 @ 1 +[ 0.606486] initcall serial8250_pci_init+0x0/0x16 returned 0 after 24 usecs +[ 0.606489] calling init_kgdboc+0x0/0x15 @ 1 +[ 0.606492] initcall init_kgdboc+0x0/0x15 returned 0 after 0 usecs +[ 0.606495] calling isa_bus_init+0x0/0x33 @ 1 +[ 0.606512] initcall isa_bus_init+0x0/0x33 returned 0 after 13 usecs +[ 0.606518] calling topology_sysfs_init+0x0/0x51 @ 1 +[ 0.606535] initcall topology_sysfs_init+0x0/0x51 returned 0 after 13 usecs +[ 0.606538] calling brd_init+0x0/0x162 @ 1 +[ 0.607487] brd: module loaded +[ 0.607491] initcall brd_init+0x0/0x162 returned 0 after 929 usecs +[ 0.607494] calling loop_init+0x0/0x17f @ 1 +[ 0.607996] loop: module loaded +[ 0.608000] initcall loop_init+0x0/0x17f returned 0 after 491 usecs +[ 0.608003] calling pkt_init+0x0/0x1ba @ 1 +[ 0.608046] initcall pkt_init+0x0/0x1ba returned 0 after 38 usecs +[ 0.608049] calling htcpld_core_init+0x0/0x24 @ 1 +[ 0.608071] initcall htcpld_core_init+0x0/0x24 returned -19 after 17 usecs +[ 0.608074] calling wm8994_i2c_init+0x0/0x30 @ 1 +[ 0.608082] initcall wm8994_i2c_init+0x0/0x30 returned 0 after 5 usecs +[ 0.608087] calling twl4030_codec_init+0x0/0x14 @ 1 +[ 0.608096] initcall twl4030_codec_init+0x0/0x14 returned 0 after 5 usecs +[ 0.608099] calling adp5520_init+0x0/0x11 @ 1 +[ 0.608108] initcall adp5520_init+0x0/0x11 returned 0 after 5 usecs +[ 0.608111] calling mac_hid_init+0x0/0x1c @ 1 +[ 0.608121] initcall mac_hid_init+0x0/0x1c returned 0 after 6 usecs +[ 0.608124] calling scsi_dh_init+0x0/0x37 @ 1 +[ 0.608127] initcall scsi_dh_init+0x0/0x37 returned 0 after 0 usecs +[ 0.608130] calling init_sd+0x0/0x14b @ 1 +[ 0.608157] initcall init_sd+0x0/0x14b returned 0 after 23 usecs +[ 0.608160] calling init_sr+0x0/0x3d @ 1 +[ 0.608168] initcall init_sr+0x0/0x3d returned 0 after 5 usecs +[ 0.608171] calling init_sg+0x0/0x115 @ 1 +[ 0.608187] initcall init_sg+0x0/0x115 returned 0 after 12 usecs +[ 0.608190] calling adma_ata_init+0x0/0x16 @ 1 +[ 0.608202] initcall adma_ata_init+0x0/0x16 returned 0 after 9 usecs +[ 0.608206] calling piix_init+0x0/0x24 @ 1 +[ 0.608222] initcall piix_init+0x0/0x24 returned 0 after 13 usecs +[ 0.608225] calling sis_init+0x0/0x16 @ 1 +[ 0.608238] initcall sis_init+0x0/0x16 returned 0 after 9 usecs +[ 0.608241] calling pacpi_init+0x0/0x16 @ 1 +[ 0.608253] initcall pacpi_init+0x0/0x16 returned 0 after 9 usecs +[ 0.608256] calling ata_generic_init+0x0/0x16 @ 1 +[ 0.608269] initcall ata_generic_init+0x0/0x16 returned 0 after 9 usecs +[ 0.608272] calling marvell_init+0x0/0x4d @ 1 +[ 0.608316] initcall marvell_init+0x0/0x4d returned 0 after 39 usecs +[ 0.608319] calling davicom_init+0x0/0x4d @ 1 +[ 0.608338] initcall davicom_init+0x0/0x4d returned 0 after 15 usecs +[ 0.608341] calling cicada_init+0x0/0x33 @ 1 +[ 0.608354] initcall cicada_init+0x0/0x33 returned 0 after 10 usecs +[ 0.608357] calling lxt_init+0x0/0x4d @ 1 +[ 0.608376] initcall lxt_init+0x0/0x4d returned 0 after 14 usecs +[ 0.608379] calling qs6612_init+0x0/0xf @ 1 +[ 0.608387] initcall qs6612_init+0x0/0xf returned 0 after 5 usecs +[ 0.608390] calling smsc_init+0x0/0x81 @ 1 +[ 0.608421] initcall smsc_init+0x0/0x81 returned 0 after 27 usecs +[ 0.608424] calling vsc82xx_init+0x0/0x33 @ 1 +[ 0.608439] initcall vsc82xx_init+0x0/0x33 returned 0 after 12 usecs +[ 0.608442] calling broadcom_init+0x0/0x117 @ 1 +[ 0.608508] initcall broadcom_init+0x0/0x117 returned 0 after 60 usecs +[ 0.608511] calling ip175c_init+0x0/0xf @ 1 +[ 0.608520] initcall ip175c_init+0x0/0xf returned 0 after 6 usecs +[ 0.608523] calling realtek_init+0x0/0xf @ 1 +[ 0.608534] initcall realtek_init+0x0/0xf returned 0 after 7 usecs +[ 0.608537] calling et1011c_init+0x0/0xf @ 1 +[ 0.608545] initcall et1011c_init+0x0/0xf returned 0 after 5 usecs +[ 0.608548] calling fixed_mdio_bus_init+0x0/0xdb @ 1 +[ 0.608575] Fixed MDIO Bus: probed +[ 0.608578] initcall fixed_mdio_bus_init+0x0/0xdb returned 0 after 26 usecs +[ 0.608581] calling mdio_gpio_init+0x0/0xf @ 1 +[ 0.608589] initcall mdio_gpio_init+0x0/0xf returned 0 after 5 usecs +[ 0.608592] calling ns_init+0x0/0xf @ 1 +[ 0.608602] initcall ns_init+0x0/0xf returned 0 after 7 usecs +[ 0.608604] calling ste10Xp_init+0x0/0x1d @ 1 +[ 0.608619] initcall ste10Xp_init+0x0/0x1d returned 0 after 11 usecs +[ 0.608622] calling net_olddevs_init+0x0/0x1a @ 1 +[ 0.608628] initcall net_olddevs_init+0x0/0x1a returned 0 after 3 usecs +[ 0.608631] calling ppp_init+0x0/0xe5 @ 1 +[ 0.608632] PPP generic driver version 2.4.2 +[ 0.608663] initcall ppp_init+0x0/0xe5 returned 0 after 28 usecs +[ 0.608665] calling tun_init+0x0/0x8b @ 1 +[ 0.608667] tun: Universal TUN/TAP device driver, 1.6 +[ 0.608669] tun: (C) 1999-2004 Max Krasnyansky +[ 0.608692] initcall tun_init+0x0/0x8b returned 0 after 23 usecs +[ 0.608695] calling cdrom_init+0x0/0x5b @ 1 +[ 0.608709] initcall cdrom_init+0x0/0x5b returned 0 after 11 usecs +[ 0.608712] calling mon_init+0x0/0xe9 @ 1 +[ 0.608748] initcall mon_init+0x0/0xe9 returned 0 after 33 usecs +[ 0.608751] calling ehci_hcd_init+0x0/0x6d @ 1 +[ 0.608753] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.608774] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.608786] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 0.608790] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 0.608821] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 0.608849] ehci_hcd 0000:00:1a.0: debug port 2 +[ 0.612724] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 0.612745] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd4727c00 +[ 0.625706] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 0.625820] hub 1-0:1.0: USB hub found +[ 0.625825] hub 1-0:1.0: 3 ports detected +[ 0.625892] alloc irq_desc for 23 on node -1 +[ 0.625894] alloc kstat_irqs on node -1 +[ 0.625900] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 0.625915] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 0.625919] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 0.625951] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 0.625977] ehci_hcd 0000:00:1d.0: debug port 2 +[ 0.629861] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 0.629876] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd4727800 +[ 0.645655] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 0.645762] hub 2-0:1.0: USB hub found +[ 0.645765] hub 2-0:1.0: 3 ports detected +[ 0.645831] initcall ehci_hcd_init+0x0/0x6d returned 0 after 36298 usecs +[ 0.645834] calling ohci_hcd_mod_init+0x0/0x51 @ 1 +[ 0.645836] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.645851] initcall ohci_hcd_mod_init+0x0/0x51 returned 0 after 13 usecs +[ 0.645853] calling uhci_hcd_init+0x0/0xb4 @ 1 +[ 0.645855] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.645895] initcall uhci_hcd_init+0x0/0xb4 returned 0 after 37 usecs +[ 0.645898] calling i8042_init+0x0/0x73 @ 1 +[ 0.645955] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.647986] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.647994] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.648004] initcall i8042_init+0x0/0x73 returned 0 after 2058 usecs +[ 0.648007] calling mousedev_init+0x0/0x7f @ 1 +[ 0.648060] mice: PS/2 mouse device common for all mice +[ 0.648064] initcall mousedev_init+0x0/0x7f returned 0 after 53 usecs +[ 0.648066] calling evdev_init+0x0/0xf @ 1 +[ 0.648126] initcall evdev_init+0x0/0xf returned 0 after 55 usecs +[ 0.648129] calling atkbd_init+0x0/0x20 @ 1 +[ 0.648146] initcall atkbd_init+0x0/0x20 returned 0 after 13 usecs +[ 0.648148] calling uinput_init+0x0/0xf @ 1 +[ 0.648168] initcall uinput_init+0x0/0xf returned 0 after 16 usecs +[ 0.648171] calling cmos_init+0x0/0x5e @ 1 +[ 0.648196] rtc_cmos 00:08: RTC can wake from S4 +[ 0.648236] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0 +[ 0.648267] rtc0: alarms up to one year, 242 bytes nvram, hpet irqs +[ 0.648277] initcall cmos_init+0x0/0x5e returned 0 after 100 usecs +[ 0.648280] calling dm_init+0x0/0x3f @ 1 +[ 0.648368] device-mapper: uevent: version 1.0.3 +[ 0.648472] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 0.648477] initcall dm_init+0x0/0x3f returned 0 after 190 usecs +[ 0.648480] calling dm_multipath_init+0x0/0x13d @ 1 +[ 0.648558] device-mapper: multipath: version 1.1.1 loaded +[ 0.648561] initcall dm_multipath_init+0x0/0x13d returned 0 after 76 usecs +[ 0.648564] calling dm_rr_init+0x0/0x3a @ 1 +[ 0.648566] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.648569] initcall dm_rr_init+0x0/0x3a returned 0 after 2 usecs +[ 0.648572] calling dm_snapshot_init+0x0/0x292 @ 1 +[ 0.648611] initcall dm_snapshot_init+0x0/0x292 returned 0 after 35 usecs +[ 0.648614] calling dm_mirror_init+0x0/0x77 @ 1 +[ 0.648651] initcall dm_mirror_init+0x0/0x77 returned 0 after 32 usecs +[ 0.648654] calling dm_dirty_log_init+0x0/0x4d @ 1 +[ 0.648657] initcall dm_dirty_log_init+0x0/0x4d returned 0 after 0 usecs +[ 0.648660] calling pci_eisa_init_module+0x0/0x16 @ 1 +[ 0.648674] initcall pci_eisa_init_module+0x0/0x16 returned 0 after 10 usecs +[ 0.648677] calling virtual_eisa_root_init+0x0/0x4d @ 1 +[ 0.648694] EISA: Probing bus 0 at eisa.0 +[ 0.648696] EISA: Cannot allocate resource for mainboard +[ 0.648698] Cannot allocate resource for EISA slot 1 +[ 0.648700] Cannot allocate resource for EISA slot 2 +[ 0.648701] Cannot allocate resource for EISA slot 3 +[ 0.648703] Cannot allocate resource for EISA slot 4 +[ 0.648705] Cannot allocate resource for EISA slot 5 +[ 0.648706] Cannot allocate resource for EISA slot 6 +[ 0.648708] Cannot allocate resource for EISA slot 7 +[ 0.648710] Cannot allocate resource for EISA slot 8 +[ 0.648711] EISA: Detected 0 cards. +[ 0.648714] initcall virtual_eisa_root_init+0x0/0x4d returned 0 after 33 usecs +[ 0.648717] calling cpufreq_stats_init+0x0/0x84 @ 1 +[ 0.648723] initcall cpufreq_stats_init+0x0/0x84 returned 0 after 3 usecs +[ 0.648726] calling cpufreq_gov_powersave_init+0x0/0xf @ 1 +[ 0.648730] initcall cpufreq_gov_powersave_init+0x0/0xf returned 0 after 0 usecs +[ 0.648733] calling cpufreq_gov_userspace_init+0x0/0xf @ 1 +[ 0.648736] initcall cpufreq_gov_userspace_init+0x0/0xf returned 0 after 0 usecs +[ 0.648739] calling cpufreq_gov_dbs_init+0x0/0xb3 @ 1 +[ 0.648793] initcall cpufreq_gov_dbs_init+0x0/0xb3 returned 0 after 50 usecs +[ 0.648796] calling cpufreq_gov_dbs_init+0x0/0x6a @ 1 +[ 0.648849] initcall cpufreq_gov_dbs_init+0x0/0x6a returned 0 after 49 usecs +[ 0.648852] calling init_ladder+0x0/0xf @ 1 +[ 0.648967] cpuidle: using governor ladder +[ 0.648970] initcall init_ladder+0x0/0xf returned 0 after 111 usecs +[ 0.648973] calling init_menu+0x0/0xf @ 1 +[ 0.649146] cpuidle: using governor menu +[ 0.649149] initcall init_menu+0x0/0xf returned 0 after 169 usecs +[ 0.649152] calling efivars_init+0x0/0x1ec @ 1 +[ 0.649155] initcall efivars_init+0x0/0x1ec returned -19 after 0 usecs +[ 0.649158] calling staging_init+0x0/0x7 @ 1 +[ 0.649161] initcall staging_init+0x0/0x7 returned 0 after 0 usecs +[ 0.649165] calling flow_cache_init_global+0x0/0x32 @ 1 +[ 0.649189] initcall flow_cache_init_global+0x0/0x32 returned 0 after 20 usecs +[ 0.649192] calling llc_init+0x0/0x1b @ 1 +[ 0.649196] initcall llc_init+0x0/0x1b returned 0 after 1 usecs +[ 0.649200] calling snap_init+0x0/0x35 @ 1 +[ 0.649203] initcall snap_init+0x0/0x35 returned 0 after 0 usecs +[ 0.649206] calling rif_init+0x0/0x70 @ 1 +[ 0.649225] initcall rif_init+0x0/0x70 returned 0 after 15 usecs +[ 0.649228] calling blackhole_module_init+0x0/0xf @ 1 +[ 0.649232] initcall blackhole_module_init+0x0/0xf returned 0 after 0 usecs +[ 0.649235] calling init_cgroup_cls+0x0/0x33 @ 1 +[ 0.649239] initcall init_cgroup_cls+0x0/0x33 returned 0 after 1 usecs +[ 0.649242] calling sysctl_ipv4_init+0x0/0x75 @ 1 +[ 0.649445] initcall sysctl_ipv4_init+0x0/0x75 returned 0 after 195 usecs +[ 0.649448] calling init_syncookies+0x0/0x16 @ 1 +[ 0.649484] initcall init_syncookies+0x0/0x16 returned 0 after 32 usecs +[ 0.649489] calling ipv4_netfilter_init+0x0/0x20 @ 1 +[ 0.649492] initcall ipv4_netfilter_init+0x0/0x20 returned 0 after 0 usecs +[ 0.649495] calling inet_diag_init+0x0/0xbf @ 1 +[ 0.649509] initcall inet_diag_init+0x0/0xbf returned 0 after 10 usecs +[ 0.649512] calling tcp_diag_init+0x0/0xf @ 1 +[ 0.649515] initcall tcp_diag_init+0x0/0xf returned 0 after 0 usecs +[ 0.649518] calling cubictcp_register+0x0/0x72 @ 1 +[ 0.649521] TCP cubic registered +[ 0.649523] initcall cubictcp_register+0x0/0x72 returned 0 after 2 usecs +[ 0.649526] calling inet6_init+0x0/0x282 @ 1 +[ 0.649658] NET: Registered protocol family 10 +[ 0.649993] lo: Disabled Privacy Extensions +[ 0.650199] initcall inet6_init+0x0/0x282 returned 0 after 655 usecs +[ 0.650203] calling packet_init+0x0/0x39 @ 1 +[ 0.650205] NET: Registered protocol family 17 +[ 0.650210] initcall packet_init+0x0/0x39 returned 0 after 4 usecs +[ 0.650213] calling dsa_init_module+0x0/0x11 @ 1 +[ 0.650216] initcall dsa_init_module+0x0/0x11 returned 0 after 0 usecs +[ 0.650218] calling edsa_init_module+0x0/0x11 @ 1 +[ 0.650221] initcall edsa_init_module+0x0/0x11 returned 0 after 0 usecs +[ 0.650224] calling trailer_init_module+0x0/0x11 @ 1 +[ 0.650227] initcall trailer_init_module+0x0/0x11 returned 0 after 0 usecs +[ 0.650229] calling mv88e6060_init+0x0/0x11 @ 1 +[ 0.650232] initcall mv88e6060_init+0x0/0x11 returned 0 after 0 usecs +[ 0.650235] calling mv88e6123_61_65_init+0x0/0x11 @ 1 +[ 0.650238] initcall mv88e6123_61_65_init+0x0/0x11 returned 0 after 0 usecs +[ 0.650240] calling mv88e6131_init+0x0/0x11 @ 1 +[ 0.650243] initcall mv88e6131_init+0x0/0x11 returned 0 after 0 usecs +[ 0.650245] calling dsa_init_module+0x0/0xf @ 1 +[ 0.650257] initcall dsa_init_module+0x0/0xf returned 0 after 8 usecs +[ 0.650260] calling dcbnl_init+0x0/0x3a @ 1 +[ 0.650263] initcall dcbnl_init+0x0/0x3a returned 0 after 0 usecs +[ 0.650267] calling mcheck_debugfs_init+0x0/0x3e @ 1 +[ 0.650279] initcall mcheck_debugfs_init+0x0/0x3e returned 0 after 9 usecs +[ 0.650282] calling severities_debugfs_init+0x0/0x3e @ 1 +[ 0.650286] initcall severities_debugfs_init+0x0/0x3e returned 0 after 1 usecs +[ 0.650292] calling powernowk8_init+0x0/0x14d @ 1 +[ 0.650299] initcall powernowk8_init+0x0/0x14d returned -19 after 4 usecs +[ 0.650303] calling acpi_cpufreq_init+0x0/0xb0 @ 1 +[ 0.651851] initcall acpi_cpufreq_init+0x0/0xb0 returned 0 after 1511 usecs +[ 0.651854] calling powernow_init+0x0/0x1f @ 1 +[ 0.651857] initcall powernow_init+0x0/0x1f returned -19 after 0 usecs +[ 0.651860] calling longhaul_init+0x0/0x94 @ 1 +[ 0.651863] initcall longhaul_init+0x0/0x94 returned -19 after 0 usecs +[ 0.651865] calling centrino_init+0x0/0x26 @ 1 +[ 0.651868] initcall centrino_init+0x0/0x26 returned -16 after 0 usecs +[ 0.651871] initcall centrino_init+0x0/0x26 returned with error code -16 +[ 0.651874] calling hpet_insert_resource+0x0/0x1e @ 1 +[ 0.651879] initcall hpet_insert_resource+0x0/0x1e returned 0 after 1 usecs +[ 0.651883] calling update_mp_table+0x0/0x1f3 @ 1 +[ 0.651886] initcall update_mp_table+0x0/0x1f3 returned 0 after 0 usecs +[ 0.651889] calling lapic_insert_resource+0x0/0x35 @ 1 +[ 0.651893] initcall lapic_insert_resource+0x0/0x35 returned 0 after 0 usecs +[ 0.651896] calling print_ipi_mode+0x0/0x2e @ 1 +[ 0.651898] Using IPI No-Shortcut mode +[ 0.651901] initcall print_ipi_mode+0x0/0x2e returned 0 after 1 usecs +[ 0.651904] calling init_lapic_nmi_sysfs+0x0/0x33 @ 1 +[ 0.651907] initcall init_lapic_nmi_sysfs+0x0/0x33 returned 0 after 0 usecs +[ 0.651910] calling io_apic_bug_finalize+0x0/0x1a @ 1 +[ 0.651913] initcall io_apic_bug_finalize+0x0/0x1a returned 0 after 0 usecs +[ 0.651917] calling check_early_ioremap_leak+0x0/0x69 @ 1 +[ 0.651920] initcall check_early_ioremap_leak+0x0/0x69 returned 0 after 0 usecs +[ 0.651923] calling pat_memtype_list_init+0x0/0x37 @ 1 +[ 0.651929] initcall pat_memtype_list_init+0x0/0x37 returned 0 after 2 usecs +[ 0.651932] calling sched_init_debug+0x0/0x2a @ 1 +[ 0.651937] initcall sched_init_debug+0x0/0x2a returned 0 after 2 usecs +[ 0.651942] calling init_oops_id+0x0/0x50 @ 1 +[ 0.651948] initcall init_oops_id+0x0/0x50 returned 0 after 3 usecs +[ 0.651951] calling disable_boot_consoles+0x0/0x43 @ 1 +[ 0.651954] initcall disable_boot_consoles+0x0/0x43 returned 0 after 0 usecs +[ 0.651958] calling pm_qos_power_init+0x0/0xbf @ 1 +[ 0.652014] initcall pm_qos_power_init+0x0/0xbf returned 0 after 52 usecs +[ 0.652017] calling test_suspend+0x0/0x8e @ 1 +[ 0.652021] initcall test_suspend+0x0/0x8e returned 0 after 1 usecs +[ 0.652025] calling software_resume+0x0/0x1f0 @ 1 +[ 0.652027] PM: Resume from disk failed. +[ 0.652030] initcall software_resume+0x0/0x1f0 returned -2 after 2 usecs +[ 0.652033] initcall software_resume+0x0/0x1f0 returned with error code -2 +[ 0.652039] calling debugfs_kprobe_init+0x0/0x90 @ 1 +[ 0.652045] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 3 usecs +[ 0.652049] calling taskstats_init+0x0/0x85 @ 1 +[ 0.652055] registered taskstats version 1 +[ 0.652058] initcall taskstats_init+0x0/0x85 returned 0 after 5 usecs +[ 0.652061] calling clear_boot_tracer+0x0/0x2d @ 1 +[ 0.652064] initcall clear_boot_tracer+0x0/0x2d returned 0 after 0 usecs +[ 0.652068] calling max_swapfiles_check+0x0/0x7 @ 1 +[ 0.652071] initcall max_swapfiles_check+0x0/0x7 returned 0 after 0 usecs +[ 0.652076] calling random32_reseed+0x0/0x83 @ 1 +[ 0.652117] initcall random32_reseed+0x0/0x83 returned 0 after 37 usecs +[ 0.652121] calling pci_resource_alignment_sysfs_init+0x0/0x14 @ 1 +[ 0.652127] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 1 usecs +[ 0.652130] calling pci_sysfs_init+0x0/0x44 @ 1 +[ 0.652428] initcall pci_sysfs_init+0x0/0x44 returned 0 after 287 usecs +[ 0.652432] calling regulator_init_complete+0x0/0x10f @ 1 +[ 0.652435] initcall regulator_init_complete+0x0/0x10f returned 0 after 0 usecs +[ 0.652438] calling seqgen_init+0x0/0xe @ 1 +[ 0.652453] initcall seqgen_init+0x0/0xe returned 0 after 12 usecs +[ 0.652458] calling late_resume_init+0x0/0x1b0 @ 1 +[ 0.652460] Magic number: 11:557:94 +[ 0.652524] initcall late_resume_init+0x0/0x1b0 returned 0 after 62 usecs +[ 0.652530] calling scsi_complete_async_scans+0x0/0x160 @ 1 +[ 0.652533] initcall scsi_complete_async_scans+0x0/0x160 returned 0 after 0 usecs +[ 0.652536] calling rtc_hctosys+0x0/0x177 @ 1 +[ 0.652564] rtc_cmos 00:08: setting system clock to 2011-01-26 20:04:02 UTC (1296072242) +[ 0.652568] initcall rtc_hctosys+0x0/0x177 returned 0 after 28 usecs +[ 0.652571] calling edd_init+0x0/0x1b0 @ 1 +[ 0.652573] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.652575] EDD information not available. +[ 0.652578] initcall edd_init+0x0/0x1b0 returned -19 after 4 usecs +[ 0.652580] calling memmap_init+0x0/0x30 @ 1 +[ 0.652622] initcall memmap_init+0x0/0x30 returned 0 after 37 usecs +[ 0.652625] calling pci_mmcfg_late_insert_resources+0x0/0x59 @ 1 +[ 0.652629] initcall pci_mmcfg_late_insert_resources+0x0/0x59 returned 0 after 1 usecs +[ 0.652633] calling tcp_congestion_default+0x0/0xf @ 1 +[ 0.652636] initcall tcp_congestion_default+0x0/0xf returned 0 after 0 usecs +[ 0.652639] calling initialize_hashrnd+0x0/0x16 @ 1 +[ 0.652645] initcall initialize_hashrnd+0x0/0x16 returned 0 after 2 usecs +[ 0.652669] async_waiting @ 1 +[ 0.658117] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.718956] Freeing initrd memory: 11276k freed +[ 0.721427] initcall 1_async_populate_rootfs+0x0/0xd0 returned 0 after 222773 usecs +[ 0.721446] async_continuing @ 1 after 67337 usec +[ 0.721465] async_waiting @ 1 +[ 0.936866] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 0.972307] isapnp: No Plug & Play device found +[ 0.972313] initcall 3_async_isapnp_init+0x0/0xa returned 0 after 358821 usecs +[ 0.972317] async_continuing @ 1 after 245607 usec +[ 0.972328] Freeing unused kernel memory: 688k freed +[ 0.972564] Write protecting the kernel text: 4936k +[ 0.972592] Write protecting the kernel read-only data: 1976k +[ 0.992312] udev[113]: starting version 163 +[ 1.011043] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k4 +[ 1.011047] e1000e: Copyright (c) 1999 - 2009 Intel Corporation. +[ 1.011084] alloc irq_desc for 20 on node -1 +[ 1.011086] alloc kstat_irqs on node -1 +[ 1.011094] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.011106] e1000e 0000:00:19.0: setting latency timer to 64 +[ 1.011213] alloc irq_desc for 44 on node -1 +[ 1.011215] alloc kstat_irqs on node -1 +[ 1.011228] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X +[ 1.029689] sdhci: Secure Digital Host Controller Interface driver +[ 1.029691] sdhci: Copyright(c) Pierre Ossman +[ 1.031160] sdhci-pci 0000:01:00.0: SDHCI controller found [1180:e822] (rev 1) +[ 1.031188] sdhci-pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.032271] sdhci-pci 0000:01:00.0: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.032280] sdhci-pci 0000:01:00.0: setting latency timer to 64 +[ 1.041670] Registered led device: mmc0:: +[ 1.041751] mmc0: SDHCI controller on PCI [0000:01:00.0] using DMA +[ 1.069331] hub 1-1:1.0: USB hub found +[ 1.069392] hub 1-1:1.0: 6 ports detected +[ 1.146360] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:23:18:58:1b:8c +[ 1.146363] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection +[ 1.146432] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 10, PBA No: ffffff-0ff +[ 1.146446] ahci 0000:00:1f.2: version 3.0 +[ 1.146466] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.146514] alloc irq_desc for 45 on node -1 +[ 1.146516] alloc kstat_irqs on node -1 +[ 1.146528] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.146569] ahci: SSS flag set, parallel bus scan disabled +[ 1.146613] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x23 impl SATA mode +[ 1.146617] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst +[ 1.146623] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.168441] scsi0 : ahci +[ 1.168613] scsi1 : ahci +[ 1.168676] scsi2 : ahci +[ 1.168748] scsi3 : ahci +[ 1.168807] scsi4 : ahci +[ 1.168861] scsi5 : ahci +[ 1.169166] ata1: SATA max UDMA/133 abar m2048@0xd4727000 port 0xd4727100 irq 45 +[ 1.169170] ata2: SATA max UDMA/133 abar m2048@0xd4727000 port 0xd4727180 irq 45 +[ 1.169171] ata3: DUMMY +[ 1.169172] ata4: DUMMY +[ 1.169172] ata5: DUMMY +[ 1.169175] ata6: SATA max UDMA/133 abar m2048@0xd4727000 port 0xd4727380 irq 45 +[ 1.184927] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 1.320476] hub 2-1:1.0: USB hub found +[ 1.320519] hub 2-1:1.0: 8 ports detected +[ 1.391820] usb 1-1.2: new full speed USB device using ehci_hcd and address 3 +[ 1.488124] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 1.488986] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +[ 1.488991] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._SDD] (Node f702b708), AE_NOT_FOUND +[ 1.489031] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +[ 1.489034] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._GTF] (Node f702b720), AE_NOT_FOUND +[ 1.489520] ata1.00: ATA-8: Hitachi HTS725032A9A360, PC3OC71E, max UDMA/133 +[ 1.489526] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 1.490621] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +[ 1.490625] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._SDD] (Node f702b708), AE_NOT_FOUND +[ 1.490658] ACPI Error (psargs-0359): [GTF0] Namespace lookup failure, AE_NOT_FOUND +[ 1.490661] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._GTF] (Node f702b720), AE_NOT_FOUND +[ 1.491132] ata1.00: configured for UDMA/133 +[ 1.503520] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS72503 PC3O PQ: 0 ANSI: 5 +[ 1.503657] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 1.503686] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 1.503746] sd 0:0:0:0: [sda] Write Protect is off +[ 1.503749] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.503768] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.503918] sda: +[ 1.555926] usb 1-1.4: new high speed USB device using ehci_hcd and address 4 +[ 1.805471] sda1 sda2 < sda5 > +[ 1.833647] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.225487] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.227407] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +[ 2.227411] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT1._SDD] (Node f702b7b0), AE_NOT_FOUND +[ 2.227451] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +[ 2.227454] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT1._GTF] (Node f702b7c8), AE_NOT_FOUND +[ 2.227480] ata2.00: ATAPI: MATSHITADVD-RAM UJ892ES, 1.20, max UDMA/100 +[ 2.230042] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +[ 2.230046] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT1._SDD] (Node f702b7b0), AE_NOT_FOUND +[ 2.230080] ACPI Error (psargs-0359): [GTF1] Namespace lookup failure, AE_NOT_FOUND +[ 2.230084] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.SAT0.PRT1._GTF] (Node f702b7c8), AE_NOT_FOUND +[ 2.230120] ata2.00: configured for UDMA/100 +[ 2.248533] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ892ES 1.20 PQ: 0 ANSI: 5 +[ 2.254776] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.254781] Uniform CD-ROM driver Revision: 3.20 +[ 2.254933] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 2.254986] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 2.573361] ata6: SATA link down (SStatus 0 SControl 300) +[ 2.830083] EXT4-fs (sda1): INFO: recovery required on readonly filesystem +[ 2.830086] EXT4-fs (sda1): write access will be enabled during recovery +[ 2.891994] EXT4-fs (sda1): recovery complete +[ 2.892278] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 6.837405] udev[442]: starting version 163 +[ 6.847837] lp: driver loaded but no devices found +[ 6.856665] Adding 12286972k swap on /dev/sda5. Priority:-1 extents:1 across:12286972k +[ 6.887677] intel ips 0000:00:1f.6: Warning: CPU TDP doesn't match expected value (found 25, expected 35) +[ 6.887703] intel ips 0000:00:1f.6: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 6.887848] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled +[ 6.904925] Linux agpgart interface v0.103 +[ 6.942052] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90 +[ 6.948887] input: Toshiba input device as /devices/virtual/input/input4 +[ 6.948937] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.19 +[ 6.948939] toshiba_acpi: HCI method: \_SB_.VALZ.GHCI +[ 6.955858] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset +[ 6.956817] agpgart-intel 0000:00:00.0: detected 65532K stolen memory, trimming to 32768K +[ 7.006249] Detected Toshiba ACPI Bluetooth device - installing RFKill handler +[ 7.011117] toshiba_bluetooth: Re-enabling Toshiba Bluetooth +[ 7.013966] cfg80211: Calling CRDA to update world regulatory domain +[ 7.046741] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16) +[ 7.062507] Linux video capture interface: v2.00 +[ 7.076506] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000 +[ 7.081657] cfg80211: World regulatory domain updated: +[ 7.081659] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 7.081662] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 7.081665] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 7.081668] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 7.081670] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 7.081673] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 7.083894] uvcvideo: Found UVC 1.00 device 2SF001 (0bda:58f5) +[ 7.112517] [drm] Initialized drm 1.1.0 20060810 +[ 7.118120] input: 2SF001 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input5 +[ 7.118177] usbcore: registered new interface driver uvcvideo +[ 7.118180] USB Video Class driver (v0.1.0) +[ 7.136609] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: +[ 7.136611] iwlagn: Copyright(c) 2003-2010 Intel Corporation +[ 7.136672] iwlagn 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 7.136680] iwlagn 0000:02:00.0: setting latency timer to 64 +[ 7.136719] iwlagn 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6200 AGN, REV=0x74 +[ 7.141068] i915 0000:00:02.0: power state changed by ACPI to D0 +[ 7.141129] i915 0000:00:02.0: power state changed by ACPI to D0 +[ 7.141138] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 7.141146] i915 0000:00:02.0: setting latency timer to 64 +[ 7.147692] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels +[ 7.147787] alloc irq_desc for 46 on node -1 +[ 7.147790] alloc kstat_irqs on node -1 +[ 7.147831] iwlagn 0000:02:00.0: irq 46 for MSI/MSI-X +[ 7.156284] [drm] detected 63M stolen memory, trimming to 32M +[ 7.156360] alloc irq_desc for 47 on node -1 +[ 7.156362] alloc kstat_irqs on node -1 +[ 7.156370] i915 0000:00:02.0: irq 47 for MSI/MSI-X +[ 7.156379] [drm] set up 32M of stolen space +[ 7.176886] iwlagn 0000:02:00.0: loaded firmware version 9.221.4.1 build 25532 +[ 7.201086] phy0: Selected rate control algorithm 'iwl-agn-rs' +[ 7.227806] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 7.464301] usb 1-1.6: new full speed USB device using ehci_hcd and address 5 +[ 7.582569] Bluetooth: Core ver 2.15 +[ 7.582615] NET: Registered protocol family 31 +[ 7.582616] Bluetooth: HCI device and connection manager initialized +[ 7.582619] Bluetooth: HCI socket layer initialized +[ 7.587347] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 7.587565] usbcore: registered new interface driver btusb +[ 7.597354] Console: switching to colour frame buffer device 170x48 +[ 7.600002] fb0: inteldrmfb frame buffer device +[ 7.600003] drm: registered panic notifier +[ 7.600006] Slow work thread pool: Starting up +[ 7.600071] Slow work thread pool: Ready +[ 7.604440] acpi device:01: registered as cooling_device4 +[ 7.604633] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6 +[ 7.604679] ACPI: Video Device [GFX0] (multi-head: yes rom: yes post: no) +[ 7.604702] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 7.604742] alloc irq_desc for 22 on node -1 +[ 7.604744] alloc kstat_irqs on node -1 +[ 7.604752] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 7.604797] alloc irq_desc for 48 on node -1 +[ 7.604799] alloc kstat_irqs on node -1 +[ 7.604810] HDA Intel 0000:00:1b.0: irq 48 for MSI/MSI-X +[ 7.604840] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 7.610418] type=1400 audit(1296072249.469:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=781 comm="apparmor_parser" +[ 7.610429] type=1400 audit(1296072249.469:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=766 comm="apparmor_parser" +[ 7.610806] type=1400 audit(1296072249.469:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=766 comm="apparmor_parser" +[ 7.610864] type=1400 audit(1296072249.469:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=781 comm="apparmor_parser" +[ 7.611010] type=1400 audit(1296072249.469:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=766 comm="apparmor_parser" +[ 7.611117] type=1400 audit(1296072249.469:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=781 comm="apparmor_parser" +[ 7.611691] type=1400 audit(1296072249.469:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=829 comm="apparmor_parser" +[ 7.612127] type=1400 audit(1296072249.473:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=829 comm="apparmor_parser" +[ 7.612393] type=1400 audit(1296072249.473:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=829 comm="apparmor_parser" +[ 7.663978] hda_codec: ALC259: BIOS auto-probing. +[ 7.664343] hda_codec: connection list not available for 0x24 +[ 7.680054] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xa40000/0xa0400 +[ 7.710607] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 +[ 8.301789] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X +[ 8.354053] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X +[ 8.354254] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 11.627837] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None +[ 11.630919] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 12.099840] BUG: unable to handle kernel NULL pointer dereference at (null) +[ 12.099845] IP: [<(null)>] (null) +[ 12.099847] *pde = 00000000 +[ 12.099849] Oops: 0000 [#1] SMP +[ 12.099851] last sysfs file: /sys/kernel/uevent_seqnum +[ 12.099853] Modules linked in: joydev snd_hda_codec_intelhdmi snd_hda_codec_realtek btusb bluetooth tpm_infineon arc4 snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_seq_midi snd_rawmidi i915 iwlagn snd_seq_midi_event drm_kms_helper snd_seq drm snd_timer uvcvideo iwlcore snd_seq_device videodev v4l1_compat mac80211 tpm_tis tpm psmouse tpm_bios serio_raw snd toshiba_bluetooth toshiba_acpi intel_agp agpgart cfg80211 i2c_algo_bit soundcore intel_ips snd_page_alloc video output lp parport ahci sdhci_pci sdhci led_class libahci e1000e +[ 12.099878] +[ 12.099881] Pid: 624, comm: ips-adjust Not tainted 2.6.35-25-generic #44-Ubuntu Portable PC/TECRA R700 +[ 12.099884] EIP: 0060:[<00000000>] EFLAGS: 00010202 CPU: 2 +[ 12.099886] EIP is at 0x0 +[ 12.099888] EAX: 00000292 EBX: f5ae5b00 ECX: 00002328 EDX: 00000292 +[ 12.099889] ESI: f5ae5b2c EDI: 00000000 EBP: f5a61fbc ESP: f5a61f78 +[ 12.099890] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 12.099892] Process ips-adjust (pid: 624, ti=f5a60000 task=f51d8000 task.ti=f5a60000) +[ 12.099894] Stack: +[ 12.099895] f84eab93 c08c4700 c08c4700 f70a9960 00000001 c08c4700 c08c4700 f5a61fac +[ 12.099898] <0> 0000005a f6a3e200 008c4700 0000058f f51d005a 00000000 f5ae7dec f5ae5b00 +[ 12.099902] <0> f84ea900 f5a61fe4 c0165ad4 00000000 00000000 00000000 f5a61fd0 f5a61fd0 +[ 12.099906] Call Trace: +[ 12.099911] [] ? ips_adjust+0x293/0x400 [intel_ips] +[ 12.099914] [] ? ips_adjust+0x0/0x400 [intel_ips] +[ 12.099920] [] ? kthread+0x74/0x80 +[ 12.099922] [] ? kthread+0x0/0x80 +[ 12.099926] [] ? kernel_thread_helper+0x6/0x10 +[ 12.099927] Code: Bad EIP value. +[ 12.099929] EIP: [<00000000>] 0x0 SS:ESP 0068:f5a61f78 +[ 12.099932] CR2: 0000000000000000 +[ 12.099934] ---[ end trace 5d3eca833282113c ]--- +[ 17.718742] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro +[ 18.020617] type=1400 audit(1296072259.905:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1060 comm="apparmor_parser" +[ 18.021084] type=1400 audit(1296072259.909:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1060 comm="apparmor_parser" +[ 18.583963] ppdev: user-space parallel port driver +[ 18.906949] type=1400 audit(1296072260.797:13): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1215 comm="apparmor_parser" +[ 18.907322] type=1400 audit(1296072260.797:14): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1215 comm="apparmor_parser" +[ 18.907529] type=1400 audit(1296072260.797:15): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1215 comm="apparmor_parser" +[ 18.907881] type=1400 audit(1296072260.797:16): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=1218 comm="apparmor_parser" +[ 18.908344] type=1400 audit(1296072260.797:17): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=1218 comm="apparmor_parser" +[ 19.166759] type=1400 audit(1296072261.057:18): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1214 comm="apparmor_parser" +[ 19.171656] type=1400 audit(1296072261.061:19): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1219 comm="apparmor_parser" +[ 19.410993] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 19.527798] type=1400 audit(1296072261.417:20): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1216 comm="apparmor_parser" + +Bug: 727594 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.38-999-generic (root@zinc) (gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)) #201103011141 SMP Tue Mar 1 13:01:18 UTC 2011 +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 000000007f780000 (usable) +[ 0.000000] BIOS-e820: 000000007f780000 - 000000007f790000 (ACPI data) +[ 0.000000] BIOS-e820: 000000007f790000 - 000000007f7d0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 000000007f7d0000 - 000000007f7de000 (reserved) +[ 0.000000] BIOS-e820: 000000007f7e0000 - 000000007f800000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) +[ 0.000000] Notice: NX (Execute Disable) protection missing in CPU! +[ 0.000000] DMI present. +[ 0.000000] DMI: ASUSTeK Computer INC. 701/701, BIOS 1001 05/04/2008 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] last_pfn = 0x7f780 max_arch_pfn = 0x100000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-DFFFF uncachable +[ 0.000000] E0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 07F800000 mask FFF800000 uncachable +[ 0.000000] 2 disabled +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] PAT not supported by CPU. +[ 0.000000] found SMP MP-table at [c00ff780] ff780 +[ 0.000000] Scanning 0 areas for low memory corruption +[ 0.000000] initial memory mapped : 0 - 01c00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000 +[ 0.000000] 0000000000 - 0000400000 page 4k +[ 0.000000] 0000400000 - 0037400000 page 2M +[ 0.000000] 0037400000 - 00377fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000 +[ 0.000000] RAMDISK: 36738000 - 37394000 +[ 0.000000] Reserving 64MB of memory at 448MB for crashkernel (System RAM: 2039MB) +[ 0.000000] ACPI: RSDP 000fbe60 00014 (v00 ACPIAM) +[ 0.000000] ACPI: RSDT 7f780000 00034 (v01 A M I OEMRSDT 05000804 MSFT 00000097) +[ 0.000000] ACPI: FACP 7f780200 00081 (v01 A M I OEMFACP 05000804 MSFT 00000097) +[ 0.000000] ACPI: DSDT 7f780400 05F61 (v01 A0797 A0797000 00000000 INTL 20051117) +[ 0.000000] ACPI: FACS 7f790000 00040 +[ 0.000000] ACPI: APIC 7f780390 00068 (v01 A M I OEMAPIC 05000804 MSFT 00000097) +[ 0.000000] ACPI: OEMB 7f790040 00046 (v01 A M I AMI_OEM 05000804 MSFT 00000097) +[ 0.000000] ACPI: MCFG 7f786370 0003C (v01 A M I OEMMCFG 05000804 MSFT 00000097) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 1151MB HIGHMEM available. +[ 0.000000] 887MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 377fe000 +[ 0.000000] low ram: 0 - 377fe000 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000377fe +[ 0.000000] HighMem 0x000377fe -> 0x0007f780 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[2] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x0007f780 +[ 0.000000] On node 0 totalpages: 521999 +[ 0.000000] free_area_init_node: node 0, pgdat c1795800, node_mem_map f5748200 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3951 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1744 pages used for memmap +[ 0.000000] Normal zone: 221486 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 2304 pages used for memmap +[ 0.000000] HighMem zone: 292482 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000 +[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at 7f800000 (gap: 7f800000:7f600000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 13 pages/cpu @f5000000 s28800 r0 d24448 u4194304 +[ 0.000000] pcpu-alloc: s28800 r0 d24448 u4194304 alloc=1*4194304 +[ 0.000000] pcpu-alloc: [0] 0 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517919 +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-999-generic root=UUID=3893e3fd-c2b4-40ec-9810-5a9aba86cbd4 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 10441920 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Initializing HighMem for node 0 (000377fe:0007f780) +[ 0.000000] Memory: 1972872k/2088448k available (5198k kernel code, 115124k reserved, 2600k data, 784k init, 1179144k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB) +[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB) +[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB) +[ 0.000000] .init : 0xc179e000 - 0xc1862000 ( 784 kB) +[ 0.000000] .data : 0xc151396f - 0xc179dd00 (2600 kB) +[ 0.000000] .text : 0xc1000000 - 0xc151396f (5198 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] NR_IRQS:2304 nr_irqs:256 16 +[ 0.000000] CPU 0 irqstacks, hard=f4006000 soft=f4008000 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 630.056 MHz processor. +[ 0.004009] Calibrating delay loop (skipped), value calculated using timer frequency.. 1260.11 BogoMIPS (lpj=2520224) +[ 0.004026] pid_max: default: 32768 minimum: 301 +[ 0.004107] Security Framework initialized +[ 0.008091] AppArmor: AppArmor initialized +[ 0.008267] Mount-cache hash table entries: 512 +[ 0.008695] /proc/device-tree: can't find root +[ 0.008737] Initializing cgroup subsys ns +[ 0.008748] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup. +[ 0.008759] Initializing cgroup subsys cpuacct +[ 0.008775] Initializing cgroup subsys memory +[ 0.008811] Initializing cgroup subsys devices +[ 0.008819] Initializing cgroup subsys freezer +[ 0.008827] Initializing cgroup subsys net_cls +[ 0.008835] Initializing cgroup subsys blkio +[ 0.008962] mce: CPU supports 5 MCE banks +[ 0.008993] CPU0: Thermal monitoring enabled (TM1) +[ 0.011556] SMP alternatives: switching to UP code +[ 0.039671] Freeing SMP alternatives: 20k freed +[ 0.039702] ACPI: Core revision 20110112 +[ 0.052047] ftrace: allocating 27296 entries in 54 pages +[ 0.060179] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.060577] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.101008] CPU0: Intel(R) Celeron(R) M processor 900MHz stepping 06 +[ 0.104005] Performance Events: p6 PMU driver. +[ 0.104005] ... version: 0 +[ 0.104005] ... bit width: 32 +[ 0.104005] ... generic registers: 2 +[ 0.104005] ... value mask: 00000000ffffffff +[ 0.104005] ... max period: 000000007fffffff +[ 0.104005] ... fixed-purpose events: 0 +[ 0.104005] ... event mask: 0000000000000003 +[ 0.104005] Brought up 1 CPUs +[ 0.104005] Total of 1 processors activated (1260.11 BogoMIPS). +[ 0.104005] devtmpfs: initialized +[ 0.105940] print_constraints: dummy: +[ 0.105989] Time: 3:46:17 Date: 03/02/11 +[ 0.106130] NET: Registered protocol family 16 +[ 0.106504] EISA bus registered +[ 0.106532] ACPI: bus type pci registered +[ 0.106775] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.106787] PCI: not using MMCONFIG +[ 0.107077] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5 +[ 0.107085] PCI: Using configuration type 1 for base access +[ 0.110809] bio: create slab at 0 +[ 0.114801] ACPI: EC: Look up EC in DSDT +[ 0.118642] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.133681] ACPI: Interpreter enabled +[ 0.133710] ACPI: (supports S0 S3 S4 S5) +[ 0.133785] ACPI: Using IOAPIC for interrupt routing +[ 0.133876] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.139350] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources +[ 0.139360] PCI: Using MMCONFIG for extended config space +[ 0.154674] ACPI: EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62 +[ 0.155124] ACPI: No dock devices found. +[ 0.155132] HEST: Table not found. +[ 0.155144] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.155444] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.156098] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.156109] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.156119] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.156129] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] +[ 0.156139] pci_root PNP0A08:00: host bridge window [mem 0x7f810000-0xffffffff] +[ 0.156182] pci 0000:00:00.0: [8086:2590] type 0 class 0x000600 +[ 0.156287] pci 0000:00:02.0: [8086:2592] type 0 class 0x000300 +[ 0.156314] pci 0000:00:02.0: reg 10: [mem 0xf7f00000-0xf7f7ffff] +[ 0.156332] pci 0000:00:02.0: reg 14: [io 0xec00-0xec07] +[ 0.156350] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref] +[ 0.156368] pci 0000:00:02.0: reg 1c: [mem 0xf7ec0000-0xf7efffff] +[ 0.156443] pci 0000:00:02.1: [8086:2792] type 0 class 0x000380 +[ 0.156467] pci 0000:00:02.1: reg 10: [mem 0xf7f80000-0xf7ffffff] +[ 0.156636] pci 0000:00:1b.0: [8086:2668] type 0 class 0x000403 +[ 0.156670] pci 0000:00:1b.0: reg 10: [mem 0xf7eb8000-0xf7ebbfff 64bit] +[ 0.156770] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 0.156782] pci 0000:00:1b.0: PME# disabled +[ 0.156824] pci 0000:00:1c.0: [8086:2660] type 1 class 0x000604 +[ 0.156926] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.156938] pci 0000:00:1c.0: PME# disabled +[ 0.156985] pci 0000:00:1c.1: [8086:2662] type 1 class 0x000604 +[ 0.157087] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 0.157098] pci 0000:00:1c.1: PME# disabled +[ 0.157141] pci 0000:00:1c.2: [8086:2664] type 1 class 0x000604 +[ 0.157243] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold +[ 0.157254] pci 0000:00:1c.2: PME# disabled +[ 0.157301] pci 0000:00:1d.0: [8086:2658] type 0 class 0x000c03 +[ 0.157374] pci 0000:00:1d.0: reg 20: [io 0xe400-0xe41f] +[ 0.157431] pci 0000:00:1d.1: [8086:2659] type 0 class 0x000c03 +[ 0.157504] pci 0000:00:1d.1: reg 20: [io 0xe480-0xe49f] +[ 0.157561] pci 0000:00:1d.2: [8086:265a] type 0 class 0x000c03 +[ 0.157633] pci 0000:00:1d.2: reg 20: [io 0xe800-0xe81f] +[ 0.157690] pci 0000:00:1d.3: [8086:265b] type 0 class 0x000c03 +[ 0.157762] pci 0000:00:1d.3: reg 20: [io 0xe880-0xe89f] +[ 0.157833] pci 0000:00:1d.7: [8086:265c] type 0 class 0x000c03 +[ 0.157870] pci 0000:00:1d.7: reg 10: [mem 0xf7eb7c00-0xf7eb7fff] +[ 0.157986] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.157998] pci 0000:00:1d.7: PME# disabled +[ 0.158034] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 0.158135] pci 0000:00:1f.0: [8086:2641] type 0 class 0x000601 +[ 0.158268] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 +[ 0.158285] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO +[ 0.158297] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH6 GPIO +[ 0.158309] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0380-03ff +[ 0.158350] pci 0000:00:1f.2: [8086:2653] type 0 class 0x000101 +[ 0.158380] pci 0000:00:1f.2: reg 10: [io 0x0000-0x0007] +[ 0.158399] pci 0000:00:1f.2: reg 14: [io 0x0000-0x0003] +[ 0.158418] pci 0000:00:1f.2: reg 18: [io 0x0000-0x0007] +[ 0.158438] pci 0000:00:1f.2: reg 1c: [io 0x0000-0x0003] +[ 0.158457] pci 0000:00:1f.2: reg 20: [io 0xffa0-0xffaf] +[ 0.158512] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.158523] pci 0000:00:1f.2: PME# disabled +[ 0.158552] pci 0000:00:1f.3: [8086:266a] type 0 class 0x000c05 +[ 0.158635] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f] +[ 0.158763] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 0.158775] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.158788] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.158805] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.158909] pci 0000:03:00.0: [1969:2048] type 0 class 0x000200 +[ 0.158951] pci 0000:03:00.0: reg 10: [mem 0xfbfc0000-0xfbffffff 64bit] +[ 0.159035] pci 0000:03:00.0: reg 30: [mem 0xfbfa0000-0xfbfbffff pref] +[ 0.159094] pci 0000:03:00.0: PME# supported from D3hot D3cold +[ 0.159107] pci 0000:03:00.0: PME# disabled +[ 0.159141] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.159168] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.159179] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled) +[ 0.159192] pci 0000:00:1c.1: bridge window [mem 0xfbf00000-0xfbffffff] +[ 0.159207] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.159312] pci 0000:01:00.0: [168c:001c] type 0 class 0x000200 +[ 0.159352] pci 0000:01:00.0: reg 10: [mem 0xfbef0000-0xfbefffff 64bit] +[ 0.159515] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.159539] pci 0000:00:1c.2: PCI bridge to [bus 01-02] +[ 0.159550] pci 0000:00:1c.2: bridge window [io 0xf000-0x0000] (disabled) +[ 0.159563] pci 0000:00:1c.2: bridge window [mem 0xf8000000-0xfbefffff] +[ 0.159579] pci 0000:00:1c.2: bridge window [mem 0xf0000000-0xf6ffffff 64bit pref] +[ 0.159686] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode) +[ 0.159698] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.159711] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.159726] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.159737] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.159747] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.159757] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.159768] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode) +[ 0.159778] pci 0000:00:1e.0: bridge window [mem 0x7f810000-0xffffffff] (subtractive decode) +[ 0.159816] pci_bus 0000:00: on NUMA node 0 +[ 0.159831] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.160338] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P3._PRT] +[ 0.160444] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT] +[ 0.160532] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] +[ 0.160820] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.174929] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 10 11 12 14 15) +[ 0.175115] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15) +[ 0.175292] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15) +[ 0.175480] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 11 12 14 15) +[ 0.175657] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.175836] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.176032] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.176217] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15) +[ 0.176574] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.176608] vgaarb: loaded +[ 0.177407] SCSI subsystem initialized +[ 0.177605] libata version 3.00 loaded. +[ 0.177784] usbcore: registered new interface driver usbfs +[ 0.177828] usbcore: registered new interface driver hub +[ 0.177929] usbcore: registered new device driver usb +[ 0.178343] wmi: Mapper loaded +[ 0.178350] PCI: Using ACPI for IRQ routing +[ 0.178423] PCI: pci_cache_line_size set to 64 bytes +[ 0.178577] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.178587] reserve RAM buffer: 000000007f780000 - 000000007fffffff +[ 0.178963] NetLabel: Initializing +[ 0.178971] NetLabel: domain hash size = 128 +[ 0.178977] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.179013] NetLabel: unlabeled traffic allowed by default +[ 0.179499] hpet clockevent registered +[ 0.179509] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.179528] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.179544] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.184162] Switching to clocksource hpet +[ 0.187892] Switched to NOHz mode on CPU #0 +[ 0.211200] AppArmor: AppArmor Filesystem Enabled +[ 0.211306] pnp: PnP ACPI init +[ 0.211373] ACPI: bus type pnp registered +[ 0.211773] pnp 00:00: [bus 00-ff] +[ 0.211785] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.211794] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.211803] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.211813] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.211822] pnp 00:00: [mem 0x000d0000-0x000dffff window] +[ 0.211832] pnp 00:00: [mem 0x7f810000-0xffffffff window] +[ 0.212100] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.212143] pnp 00:01: [mem 0xfed13000-0xfed19fff] +[ 0.212326] system 00:01: [mem 0xfed13000-0xfed19fff] has been reserved +[ 0.212340] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 0.212429] pnp 00:02: [dma 4] +[ 0.212437] pnp 00:02: [io 0x0000-0x000f] +[ 0.212445] pnp 00:02: [io 0x0081-0x0083] +[ 0.212453] pnp 00:02: [io 0x0087] +[ 0.212460] pnp 00:02: [io 0x0089-0x008b] +[ 0.212468] pnp 00:02: [io 0x008f] +[ 0.212476] pnp 00:02: [io 0x00c0-0x00df] +[ 0.212599] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.212641] pnp 00:03: [io 0x0070-0x0071] +[ 0.212673] pnp 00:03: [irq 8] +[ 0.212775] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.212903] pnp 00:04: [io 0x0060] +[ 0.212911] pnp 00:04: [io 0x0064] +[ 0.212928] pnp 00:04: [irq 1] +[ 0.213035] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active) +[ 0.213232] pnp 00:05: [irq 12] +[ 0.213353] pnp 00:05: Plug and Play ACPI device, IDs SYN0a00 SYN0a01 SYN0a04 SYN0002 PNP0f13 (active) +[ 0.213390] pnp 00:06: [io 0x0061] +[ 0.213494] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active) +[ 0.213530] pnp 00:07: [io 0x00f0-0x00ff] +[ 0.213547] pnp 00:07: [irq 13] +[ 0.213650] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.214003] pnp 00:08: [io 0x0010-0x001f] +[ 0.214012] pnp 00:08: [io 0x0022-0x003f] +[ 0.214020] pnp 00:08: [io 0x0044-0x005f] +[ 0.214027] pnp 00:08: [io 0x0063] +[ 0.214035] pnp 00:08: [io 0x0067-0x006f] +[ 0.214043] pnp 00:08: [io 0x0072-0x007f] +[ 0.214051] pnp 00:08: [io 0x0080] +[ 0.214058] pnp 00:08: [io 0x0084-0x0086] +[ 0.214066] pnp 00:08: [io 0x0088] +[ 0.214073] pnp 00:08: [io 0x008c-0x008e] +[ 0.214081] pnp 00:08: [io 0x0090-0x009f] +[ 0.214089] pnp 00:08: [io 0x00a2-0x00bf] +[ 0.214097] pnp 00:08: [io 0x00e0-0x00ef] +[ 0.214105] pnp 00:08: [io 0x0380-0x0383] +[ 0.214113] pnp 00:08: [io 0x04d0-0x04d1] +[ 0.214121] pnp 00:08: [io 0x0800-0x087f] +[ 0.214129] pnp 00:08: [io 0x0000-0xffffffff disabled] +[ 0.214138] pnp 00:08: [io 0x0480-0x04bf] +[ 0.214146] pnp 00:08: [mem 0xfed1c000-0xfed1ffff] +[ 0.214155] pnp 00:08: [mem 0xfed20000-0xfed8ffff] +[ 0.214163] pnp 00:08: [mem 0xfff00000-0xffffffff] +[ 0.214410] system 00:08: [io 0x0380-0x0383] has been reserved +[ 0.214421] system 00:08: [io 0x04d0-0x04d1] has been reserved +[ 0.214432] system 00:08: [io 0x0800-0x087f] has been reserved +[ 0.214443] system 00:08: [io 0x0480-0x04bf] has been reserved +[ 0.214455] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.214466] system 00:08: [mem 0xfed20000-0xfed8ffff] has been reserved +[ 0.214478] system 00:08: [mem 0xfff00000-0xffffffff] could not be reserved +[ 0.214492] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.214844] pnp 00:09: [mem 0xfec00000-0xfec00fff] +[ 0.214854] pnp 00:09: [mem 0xfee00000-0xfee00fff] +[ 0.215015] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.215027] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.215040] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.215166] pnp 00:0a: [mem 0xe0000000-0xefffffff] +[ 0.215323] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.215336] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.215575] pnp 00:0b: [mem 0xe0000000-0xefffffff] +[ 0.215765] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.215778] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.216234] pnp 00:0c: [mem 0x00000000-0x0009ffff] +[ 0.216244] pnp 00:0c: [mem 0x000c0000-0x000cffff] +[ 0.216252] pnp 00:0c: [mem 0x000e0000-0x000fffff] +[ 0.216261] pnp 00:0c: [mem 0x00100000-0x7f7fffff] +[ 0.216279] pnp 00:0c: [mem 0x00000000-0xffffffff disabled] +[ 0.216484] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.216495] system 00:0c: [mem 0x000c0000-0x000cffff] could not be reserved +[ 0.216507] system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.216518] system 00:0c: [mem 0x00100000-0x7f7fffff] could not be reserved +[ 0.216531] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 0.217063] pnp: PnP ACPI: found 13 devices +[ 0.217070] ACPI: ACPI bus type pnp unregistered +[ 0.217083] PnPBIOS: Disabled by ACPI PNP +[ 0.259745] pci 0000:00:1c.0: BAR 14: assigned [mem 0x7f900000-0x7fafffff] +[ 0.259765] pci 0000:00:1c.0: BAR 15: assigned [mem 0x7fb00000-0x7fcfffff 64bit pref] +[ 0.259781] pci 0000:00:1c.1: BAR 15: assigned [mem 0x7fd00000-0x7fefffff 64bit pref] +[ 0.259795] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff] +[ 0.259807] pci 0000:00:1c.1: BAR 13: assigned [io 0x2000-0x2fff] +[ 0.259820] pci 0000:00:1c.2: BAR 13: assigned [io 0x3000-0x3fff] +[ 0.259830] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 0.259840] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff] +[ 0.259853] pci 0000:00:1c.0: bridge window [mem 0x7f900000-0x7fafffff] +[ 0.259866] pci 0000:00:1c.0: bridge window [mem 0x7fb00000-0x7fcfffff 64bit pref] +[ 0.259882] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 0.259892] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff] +[ 0.259906] pci 0000:00:1c.1: bridge window [mem 0xfbf00000-0xfbffffff] +[ 0.259918] pci 0000:00:1c.1: bridge window [mem 0x7fd00000-0x7fefffff 64bit pref] +[ 0.259934] pci 0000:00:1c.2: PCI bridge to [bus 01-02] +[ 0.259944] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff] +[ 0.259957] pci 0000:00:1c.2: bridge window [mem 0xf8000000-0xfbefffff] +[ 0.259970] pci 0000:00:1c.2: bridge window [mem 0xf0000000-0xf6ffffff 64bit pref] +[ 0.259986] pci 0000:00:1e.0: PCI bridge to [bus 05-05] +[ 0.259993] pci 0000:00:1e.0: bridge window [io disabled] +[ 0.260020] pci 0000:00:1e.0: bridge window [mem disabled] +[ 0.260031] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 0.260057] pci 0000:00:1c.0: enabling device (0104 -> 0107) +[ 0.260105] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.260120] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.260136] pci 0000:00:1c.1: enabling device (0106 -> 0107) +[ 0.260156] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.260168] pci 0000:00:1c.1: setting latency timer to 64 +[ 0.260184] pci 0000:00:1c.2: enabling device (0106 -> 0107) +[ 0.260204] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.260215] pci 0000:00:1c.2: setting latency timer to 64 +[ 0.260233] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.260245] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.260255] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.260264] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.260274] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.260283] pci_bus 0000:00: resource 8 [mem 0x7f810000-0xffffffff] +[ 0.260293] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff] +[ 0.260302] pci_bus 0000:04: resource 1 [mem 0x7f900000-0x7fafffff] +[ 0.260312] pci_bus 0000:04: resource 2 [mem 0x7fb00000-0x7fcfffff 64bit pref] +[ 0.260322] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff] +[ 0.260331] pci_bus 0000:03: resource 1 [mem 0xfbf00000-0xfbffffff] +[ 0.260341] pci_bus 0000:03: resource 2 [mem 0x7fd00000-0x7fefffff 64bit pref] +[ 0.260351] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff] +[ 0.260360] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbefffff] +[ 0.260370] pci_bus 0000:01: resource 2 [mem 0xf0000000-0xf6ffffff 64bit pref] +[ 0.260381] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7] +[ 0.260390] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff] +[ 0.260399] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.260409] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.260418] pci_bus 0000:05: resource 8 [mem 0x7f810000-0xffffffff] +[ 0.260535] NET: Registered protocol family 2 +[ 0.260758] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.261556] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.263622] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.264776] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.264788] TCP reno registered +[ 0.264809] UDP hash table entries: 512 (order: 2, 16384 bytes) +[ 0.264855] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) +[ 0.265208] NET: Registered protocol family 1 +[ 0.265269] pci 0000:00:02.0: Boot video device +[ 0.265473] PCI: CLS 16 bytes, default 64 +[ 0.265656] Trying to unpack rootfs image as initramfs... +[ 1.470673] Freeing initrd memory: 12656k freed +[ 1.494624] cpufreq-nforce2: No nForce2 chipset. +[ 1.494755] Scanning for low memory corruption every 60 seconds +[ 1.495237] audit: initializing netlink socket (disabled) +[ 1.495311] type=2000 audit(1299037577.488:1): initialized +[ 1.536743] highmem bounce pool size: 64 pages +[ 1.536763] HugeTLB registered 4 MB page size, pre-allocated 0 pages +[ 1.543629] VFS: Disk quotas dquot_6.5.2 +[ 1.543853] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 1.546485] fuse init (API version 7.16) +[ 1.546886] msgmni has been set to 1575 +[ 1.547769] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 1.547782] io scheduler noop registered +[ 1.547789] io scheduler deadline registered +[ 1.547851] io scheduler cfq registered (default) +[ 1.548275] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 1.548369] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X +[ 1.548527] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 1.548600] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X +[ 1.548747] pcieport 0000:00:1c.2: setting latency timer to 64 +[ 1.548820] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X +[ 1.549072] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 1.549169] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 1.549645] vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 1216k, total 1216k +[ 1.549656] vesafb: mode is 640x480x32, linelength=2560, pages=0 +[ 1.549662] vesafb: scrolling: redraw +[ 1.549673] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 1.576809] Console: switching to colour frame buffer device 80x30 +[ 1.603610] fb0: VESA VGA frame buffer device +[ 1.603961] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 1.604227] ACPI: AC Adapter [AC0] (on-line) +[ 1.604641] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0 +[ 1.609028] ACPI: Lid Switch [LID] +[ 1.609221] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1 +[ 1.609239] ACPI: Sleep Button [SLPB] +[ 1.609416] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2 +[ 1.609429] ACPI: Power Button [PWRB] +[ 1.609601] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 1.609614] ACPI: Power Button [PWRF] +[ 1.610097] ACPI: acpi_idle registered with cpuidle +[ 1.610183] Marking TSC unstable due to TSC halts in idle +[ 1.621903] thermal LNXTHERM:00: registered as thermal_zone0 +[ 1.621914] ACPI: Thermal Zone [TZ00] (54 C) +[ 1.622168] ERST: Table is not found! +[ 1.622230] isapnp: Scanning for PnP cards... +[ 1.939633] isapnp: No Plug & Play device found +[ 1.947158] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 1.952601] Linux agpgart interface v0.103 +[ 1.952920] agpgart-intel 0000:00:00.0: Intel 915GM Chipset +[ 1.953063] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable +[ 1.953334] agpgart-intel 0000:00:00.0: detected 8192K stolen memory +[ 1.953638] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 +[ 1.962690] brd: module loaded +[ 1.969012] loop: module loaded +[ 1.969384] i2c-core: driver [adp5520] using legacy suspend method +[ 1.969393] i2c-core: driver [adp5520] using legacy resume method +[ 1.969761] ata_piix 0000:00:1f.2: version 2.13 +[ 1.969837] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.969853] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ] +[ 1.969966] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 1.976049] scsi0 : ata_piix +[ 1.976426] scsi1 : ata_piix +[ 1.982598] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 +[ 1.982610] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 +[ 1.984713] Fixed MDIO Bus: probed +[ 1.984878] PPP generic driver version 2.4.2 +[ 1.985095] tun: Universal TUN/TAP device driver, 1.6 +[ 1.985103] tun: (C) 1999-2004 Max Krasnyansky +[ 1.985472] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.985573] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 1.985618] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 1.985628] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 1.985812] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 +[ 1.985901] ehci_hcd 0000:00:1d.7: debug port 1 +[ 1.989802] ehci_hcd 0000:00:1d.7: cache line size of 16 is not supported +[ 1.989937] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf7eb7c00 +[ 2.004039] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 2.004526] hub 1-0:1.0: USB hub found +[ 2.004544] hub 1-0:1.0: 8 ports detected +[ 2.004820] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 2.004873] uhci_hcd: USB Universal Host Controller Interface driver +[ 2.004994] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 2.005015] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 2.005026] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 2.005192] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 2.005250] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e400 +[ 2.005691] hub 2-0:1.0: USB hub found +[ 2.005707] hub 2-0:1.0: 2 ports detected +[ 2.005922] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 2.005941] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 2.005951] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 2.006096] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 +[ 2.006178] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e480 +[ 2.006621] hub 3-0:1.0: USB hub found +[ 2.006636] hub 3-0:1.0: 2 ports detected +[ 2.006847] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 2.006870] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 2.006880] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 2.007053] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 +[ 2.007131] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e800 +[ 2.007573] hub 4-0:1.0: USB hub found +[ 2.007588] hub 4-0:1.0: 2 ports detected +[ 2.007803] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16 +[ 2.007821] uhci_hcd 0000:00:1d.3: setting latency timer to 64 +[ 2.007831] uhci_hcd 0000:00:1d.3: UHCI Host Controller +[ 2.007994] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 +[ 2.012106] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000e880 +[ 2.012603] hub 5-0:1.0: USB hub found +[ 2.012619] hub 5-0:1.0: 2 ports detected +[ 2.013103] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 2.039734] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 2.039759] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 2.040316] mousedev: PS/2 mouse device common for all mice +[ 2.042185] rtc_cmos 00:03: RTC can wake from S4 +[ 2.042364] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 2.042416] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs +[ 2.042838] device-mapper: uevent: version 1.0.3 +[ 2.043159] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com +[ 2.043387] device-mapper: multipath: version 1.2.0 loaded +[ 2.043397] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 2.043693] EISA: Probing bus 0 at eisa.0 +[ 2.043703] EISA: Cannot allocate resource for mainboard +[ 2.043711] Cannot allocate resource for EISA slot 1 +[ 2.043718] Cannot allocate resource for EISA slot 2 +[ 2.043725] Cannot allocate resource for EISA slot 3 +[ 2.043732] Cannot allocate resource for EISA slot 4 +[ 2.043739] Cannot allocate resource for EISA slot 5 +[ 2.043746] Cannot allocate resource for EISA slot 6 +[ 2.043753] Cannot allocate resource for EISA slot 7 +[ 2.043760] Cannot allocate resource for EISA slot 8 +[ 2.043767] EISA: Detected 0 cards. +[ 2.044105] cpuidle: using governor ladder +[ 2.044293] cpuidle: using governor menu +[ 2.045305] TCP cubic registered +[ 2.045872] NET: Registered protocol family 10 +[ 2.047887] NET: Registered protocol family 17 +[ 2.047954] Registering the dns_resolver key type +[ 2.048200] Using IPI No-Shortcut mode +[ 2.048585] PM: Hibernation image not present or could not be loaded. +[ 2.048633] registered taskstats version 1 +[ 2.049175] Magic number: 3:680:764 +[ 2.049259] event_source breakpoint: hash matches +[ 2.049439] rtc_cmos 00:03: setting system clock to 2011-03-02 03:46:19 UTC (1299037579) +[ 2.049451] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 2.049457] EDD information not available. +[ 2.072834] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 2.152396] ata2.00: CFA: SILICONMOTION SM223AC, , max UDMA/66 +[ 2.152407] ata2.00: 7815024 sectors, multi 0: LBA +[ 2.168239] ata2.00: configured for UDMA/66 +[ 2.308960] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 2.308990] ACPI: Battery Slot [BAT0] (battery present) +[ 2.309441] scsi 1:0:0:0: Direct-Access ATA SILICONMOTION SM n/a PQ: 0 ANSI: 5 +[ 2.310051] sd 1:0:0:0: Attached scsi generic sg0 type 0 +[ 2.310390] sd 1:0:0:0: [sda] 7815024 512-byte logical blocks: (4.00 GB/3.72 GiB) +[ 2.310571] sd 1:0:0:0: [sda] Write Protect is off +[ 2.310582] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.310662] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA +[ 2.312426] sda: sda1 +[ 2.313134] sd 1:0:0:0: [sda] Attached SCSI disk +[ 2.313236] Freeing unused kernel memory: 784k freed +[ 2.314312] Write protecting the kernel text: 5200k +[ 2.314444] Write protecting the kernel read-only data: 2208k +[ 2.316140] usb 1-2: new high speed USB device using ehci_hcd and address 2 +[ 2.395419] udev[62]: starting version 167 +[ 2.732128] usb 1-3: new high speed USB device using ehci_hcd and address 3 +[ 2.866656] hub 1-3:1.0: USB hub found +[ 2.867022] hub 1-3:1.0: 4 ports detected +[ 2.980144] usb 1-5: new high speed USB device using ehci_hcd and address 4 +[ 3.072001] Atheros(R) L2 Ethernet Driver - version 2.2.3 +[ 3.072110] Copyright (c) 2007 Atheros Corporation. +[ 3.089809] atl2 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 3.089841] atl2 0000:03:00.0: setting latency timer to 64 +[ 3.224118] usb 1-8: new high speed USB device using ehci_hcd and address 5 +[ 3.421110] usbcore: registered new interface driver uas +[ 3.428545] usb 1-3.1: new low speed USB device using ehci_hcd and address 6 +[ 3.457201] Initializing USB Mass Storage driver... +[ 3.457547] scsi2 : usb-storage 1-2:1.0 +[ 3.458283] scsi3 : usb-storage 1-5:1.0 +[ 3.461111] usbcore: registered new interface driver usb-storage +[ 3.461123] USB Mass Storage support registered. +[ 3.724398] usb 1-3.2: new low speed USB device using ehci_hcd and address 7 +[ 3.940299] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.1/1-3.1:1.0/input/input5 +[ 3.942533] generic-usb 0003:046D:C045.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.7-3.1/input0 +[ 3.957047] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.2/1-3.2:1.0/input/input6 +[ 3.957838] generic-usb 0003:046D:C315.0002: input,hidraw1: USB HID v1.10 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:1d.7-3.2/input0 +[ 3.958543] usbcore: registered new interface driver usbhid +[ 3.958553] usbhid: USB HID core driver +[ 4.457216] scsi 2:0:0:0: Direct-Access Generic USB Disk 9.02 PQ: 0 ANSI: 2 +[ 4.464922] sd 2:0:0:0: Attached scsi generic sg1 type 0 +[ 4.465164] sd 2:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/111 GiB) +[ 4.465997] scsi 3:0:0:0: Direct-Access USB2.0 CardReader SD0 0100 PQ: 0 ANSI: 0 +[ 4.466050] sd 2:0:0:0: [sdb] Write Protect is off +[ 4.466060] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 +[ 4.466903] sd 2:0:0:0: [sdb] No Caching mode page present +[ 4.467657] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 4.471040] sd 2:0:0:0: [sdb] No Caching mode page present +[ 4.471793] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 4.475033] sd 3:0:0:0: Attached scsi generic sg2 type 0 +[ 4.475315] sd 3:0:0:0: [sdc] Attached SCSI removable disk +[ 4.575918] sdb: sdb1 sdb2 < sdb5 > +[ 4.579038] sd 2:0:0:0: [sdb] No Caching mode page present +[ 4.579793] sd 2:0:0:0: [sdb] Assuming drive cache: write through +[ 4.580648] sd 2:0:0:0: [sdb] Attached SCSI disk +[ 5.000633] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) +[ 27.187476] Adding 3070972k swap on /dev/sdb5. Priority:-1 extents:1 across:3070972k +[ 27.389167] udev[294]: starting version 167 +[ 27.583254] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro +[ 27.910704] lp: driver loaded but no devices found +[ 29.093444] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7 +[ 29.104906] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 29.577188] eeepc_laptop: Eee PC Hotkey Driver +[ 29.577205] eeepc_laptop: model 701 does not officially support setting cpu speed +[ 29.577212] eeepc_laptop: cpufv disabled to avoid instability +[ 29.577234] eeepc_laptop: Hotkey init flags 0x41 +[ 29.578271] eeepc_laptop: TYPE (2000000) not reported by BIOS, enabling anyway +[ 29.578284] eeepc_laptop: Get control methods supported: 0x2101711 +[ 30.025704] input: Asus EeePC extra buttons as /devices/platform/eeepc/input/input8 +[ 30.183886] intel_rng: FWH not detected +[ 31.084615] type=1400 audit(1299037608.532:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=433 comm="apparmor_parser" +[ 31.084877] type=1400 audit(1299037608.532:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=433 comm="apparmor_parser" +[ 31.085101] type=1400 audit(1299037608.532:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=433 comm="apparmor_parser" +[ 31.528602] Linux video capture interface: v2.00 +[ 31.926261] atl2 0000:03:00.0: irq 43 for MSI/MSI-X +[ 31.929230] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 32.940484] [drm] Initialized drm 1.1.0 20060810 +[ 33.338694] Synaptics Touchpad, model: 1, fw: 6.3, id: 0x180b1, caps: 0xa04713/0x200000/0x0 +[ 33.469778] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9 +[ 33.603855] uvcvideo: Found UVC 1.00 device (eb1a:2761) +[ 33.686218] input: UVC Camera (eb1a:2761) as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input10 +[ 33.714983] usbcore: registered new interface driver uvcvideo +[ 33.714995] USB Video Class driver (v1.0.0) +[ 34.035188] cfg80211: Calling CRDA to update world regulatory domain +[ 34.045045] type=1400 audit(1299037611.492:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=499 comm="apparmor_parser" +[ 34.045322] type=1400 audit(1299037611.492:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=499 comm="apparmor_parser" +[ 34.045563] type=1400 audit(1299037611.492:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=499 comm="apparmor_parser" +[ 35.025022] type=1400 audit(1299037612.472:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=649 comm="apparmor_parser" +[ 35.114119] cfg80211: World regulatory domain updated: +[ 35.114134] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 35.114145] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 35.114156] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 35.114166] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 35.114176] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 35.114186] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 35.670068] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 35.670087] i915 0000:00:02.0: setting latency timer to 64 +[ 35.699333] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). +[ 35.699346] [drm] Driver supports precise vblank timestamp query. +[ 35.779173] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 35.780799] [drm] initialized overlay support +[ 35.850745] ath5k 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 35.850772] ath5k 0000:01:00.0: setting latency timer to 64 +[ 35.850878] ath5k 0000:01:00.0: registered as 'phy0' +[ 36.475347] ath: EEPROM regdomain: 0x60 +[ 36.475358] ath: EEPROM indicates we should expect a direct regpair map +[ 36.475371] ath: Country alpha2 being used: 00 +[ 36.475377] ath: Regpair used: 0x60 +[ 36.475443] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475454] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475463] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475474] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475482] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475493] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475501] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475512] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475520] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475531] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475539] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475550] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475558] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475568] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475577] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475587] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475596] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475606] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475615] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475625] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475634] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475644] cfg80211: 2402000 KHz - 2472000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475653] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475663] cfg80211: 2457000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475672] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475682] cfg80211: 2457000 KHz - 2482000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.475691] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule: +[ 36.475701] cfg80211: 2474000 KHz - 2494000 KHz @ KHz), (N/A mBi, 2000 mBm) +[ 36.476245] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 36.744736] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' +[ 36.754021] Registered led device: ath5k-phy0::rx +[ 36.754369] Registered led device: ath5k-phy0::tx +[ 36.754408] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) +[ 36.857216] checking generic (d0000000 130000) vs hw (d0000000 10000000) +[ 36.857229] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver +[ 36.857305] Console: switching to colour dummy device 80x25 +[ 36.900276] Console: switching to colour frame buffer device 100x30 +[ 36.900308] fb0: inteldrmfb frame buffer device +[ 36.900315] drm: registered panic notifier +[ 36.900773] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 +[ 37.150803] ADDRCONF(NETDEV_UP): wlan0: link is not ready +[ 37.353818] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 37.353942] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X +[ 37.354009] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 37.556197] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 +[ 37.560512] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 +[ 38.256281] type=1400 audit(1299037615.704:9): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=689 comm="apparmor_parser" +[ 38.256554] type=1400 audit(1299037615.704:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=689 comm="apparmor_parser" +[ 38.256779] type=1400 audit(1299037615.704:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=689 comm="apparmor_parser" +[ 38.322891] ppdev: user-space parallel port driver +[ 40.330385] BUG: unable to handle kernel NULL pointer dereference at 0000018e +[ 40.330702] IP: [] fb_release+0x25/0x60 +[ 40.330899] *pde = 00000000 +[ 40.331014] Oops: 0000 [#1] SMP +[ 40.331148] last sysfs file: /sys/devices/virtual/vtconsole/vtcon1/uevent +[ 40.331395] Modules linked in: parport_pc ppdev snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep arc4 snd_pcm ath5k snd_seq_midi snd_rawmidi ath i915 snd_seq_midi_event mac80211 snd_seq joydev snd_timer snd_seq_device drm_kms_helper uvcvideo cfg80211 drm snd psmouse videodev serio_raw soundcore snd_page_alloc i2c_algo_bit eeepc_laptop video sparse_keymap lp parport usbhid hid usb_storage uas atl2 +[ 40.332019] +[ 40.332019] Pid: 246, comm: plymouthd Not tainted 2.6.38-999-generic #201103011141 ASUSTeK Computer INC. 701/701 +[ 40.332019] EIP: 0060:[] EFLAGS: 00210286 CPU: 0 +[ 40.332019] EIP is at fb_release+0x25/0x60 +[ 40.332019] EAX: 00000186 EBX: f41f1800 ECX: c12aaf90 EDX: f6df6000 +[ 40.332019] ESI: f41f1808 EDI: f0a64e40 EBP: f6df7f40 ESP: f6df7f38 +[ 40.332019] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 +[ 40.332019] Process plymouthd (pid: 246, ti=f6df6000 task=f6e325e0 task.ti=f6df6000) +[ 40.332019] Stack: +[ 40.332019] f3e9e880 00000008 f6df7f74 c1127c39 00000001 00000000 00000000 f3e9e880 +[ 40.332019] f41966c0 f43e83f0 f0a64e48 f43e83f0 f0a64e40 f6e03100 00000000 f6df7f7c +[ 40.332019] c1127d7e f6df7f94 c112467c 0012d000 f6e03140 f6e03100 0000000c f6df7fac +[ 40.332019] Call Trace: +[ 40.332019] [] __fput+0x99/0x1c0 +[ 40.332019] [] fput+0x1e/0x30 +[ 40.332019] [] filp_close+0x4c/0x80 +[ 40.332019] [] sys_close+0x6e/0xc0 +[ 40.332019] [] sysenter_do_call+0x12/0x28 +[ 40.332019] [] ? squash_the_stupid_serial_number+0xc0/0xe0 +[ 40.332019] Code: b4 26 00 00 00 00 55 89 e5 83 ec 08 89 1c 24 89 74 24 04 3e 8d 74 26 00 8b 5a 74 8d 73 08 89 f0 e8 11 f9 25 00 8b 83 0c 03 00 00 <8b> 48 08 85 c9 74 0f ba 01 00 00 00 89 d8 ff d1 8b 83 0c 03 00 +[ 40.332019] EIP: [] fb_release+0x25/0x60 SS:ESP 0068:f6df7f38 +[ 40.332019] CR2: 000000000000018e +[ 40.545790] ---[ end trace f375290bb91f4213 ]--- +[ 43.639331] type=1400 audit(1299037621.084:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=844 comm="apparmor_parser" +[ 43.648512] type=1400 audit(1299037621.096:13): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=844 comm="apparmor_parser" +[ 55.775794] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro,commit=0 +[ 70.911738] wlan0: authenticate with 00:24:b2:97:4e:cc (try 1) +[ 70.913279] wlan0: authenticated +[ 70.913367] wlan0: associate with 00:24:b2:97:4e:cc (try 1) +[ 70.915575] wlan0: RX AssocResp from 00:24:b2:97:4e:cc (capab=0x411 status=0 aid=1) +[ 70.915588] wlan0: associated +[ 70.918422] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready +[ 81.144077] wlan0: no IPv6 routers present +[ 89.197190] type=1400 audit(1299037666.645:14): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=835 comm="apparmor_parser" +[ 89.208293] type=1400 audit(1299037666.657:15): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=835 comm="apparmor_parser" +[ 89.214015] type=1400 audit(1299037666.661:16): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=835 comm="apparmor_parser" +[ 92.736230] type=1400 audit(1299037670.183:17): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=1257 comm="apparmor_parser" +[ 92.747868] type=1400 audit(1299037670.191:18): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=1257 comm="apparmor_parser" +[ 93.922891] type=1400 audit(1299037671.366:19): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1259 comm="apparmor_parser" + +Bug: 750767 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.35-28-generic (buildd@allspice) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #50-Ubuntu SMP Fri Mar 18 18:42:20 UTC 2011 (Ubuntu 2.6.35-28.50-generic 2.6.35.11) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-2.6.35-28-generic root=UUID=c9a74a55-36db-4c67-8cdc-097c0cced3d8 ro PROFILE=internal +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000ef000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf5d4000 (usable) +[ 0.000000] BIOS-e820: 00000000bf5d4000 - 00000000bf6c2000 (reserved) +[ 0.000000] BIOS-e820: 00000000bf6c2000 - 00000000bf7c2000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf7c2000 - 00000000bf7ff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bf7ff000 - 00000000bf800000 (usable) +[ 0.000000] BIOS-e820: 00000000bf800000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed19000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffd00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.6 present. +[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x138000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect +[ 0.000000] 1 base 000000000 mask F80000000 write-back +[ 0.000000] 2 base 080000000 mask FC0000000 write-back +[ 0.000000] 3 base 100000000 mask FC0000000 write-back +[ 0.000000] 4 base 138000000 mask FF8000000 uncachable +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xbf800 max_arch_pfn = 0x400000000 +[ 0.000000] e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved) +[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000ef000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000bf5d4000 (usable) +[ 0.000000] modified: 00000000bf5d4000 - 00000000bf6c2000 (reserved) +[ 0.000000] modified: 00000000bf6c2000 - 00000000bf7c2000 (ACPI NVS) +[ 0.000000] modified: 00000000bf7c2000 - 00000000bf7ff000 (ACPI data) +[ 0.000000] modified: 00000000bf7ff000 - 00000000bf800000 (usable) +[ 0.000000] modified: 00000000bf800000 - 00000000c0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] modified: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] modified: 00000000fed19000 - 00000000fed1a000 (reserved) +[ 0.000000] modified: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] modified: 00000000ffd00000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000138000000 (usable) +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf800000 +[ 0.000000] 0000000000 - 00bf800000 page 2M +[ 0.000000] kernel direct mapping tables up to bf800000 @ 16000-1a000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000138000000 +[ 0.000000] 0100000000 - 0138000000 page 2M +[ 0.000000] kernel direct mapping tables up to 138000000 @ 18000-1e000 +[ 0.000000] RAMDISK: 3756f000 - 37ff0000 +[ 0.000000] ACPI: RSDP 00000000000f2a80 00024 (v02 HPQOEM) +[ 0.000000] ACPI: XSDT 00000000bf7fe120 00094 (v01 HPQOEM SLIC-MPC 0000000F 01000013) +[ 0.000000] ACPI: FACP 00000000bf7fc000 000F4 (v03 HPQOEM 1521 0000000F HP 00000001) +[ 0.000000] ACPI: DSDT 00000000bf7da000 1C453 (v02 HPQOEM 1521 00000001 INTL 20060912) +[ 0.000000] ACPI: FACS 00000000bf760000 00040 +[ 0.000000] ACPI: HPET 00000000bf7fb000 00038 (v01 HPQOEM 1521 00000001 HP 00000001) +[ 0.000000] ACPI: APIC 00000000bf7fa000 000BC (v01 HPQOEM 1521 00000001 HP 00000001) +[ 0.000000] ACPI: MCFG 00000000bf7f9000 0003C (v01 HPQOEM 1521 00000001 HP 00000001) +[ 0.000000] ACPI: TCPA 00000000bf7f7000 00032 (v02 HPQOEM 1521 00000000 HP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf7d7000 00135 (v01 HPQOEM SataAhci 00001000 INTL 20060912) +[ 0.000000] ACPI: SSDT 00000000bf7d6000 00314 (v01 HPQOEM PtidDevc 00001000 INTL 20060912) +[ 0.000000] ACPI: SLIC 00000000bf7d5000 00176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001) +[ 0.000000] ACPI: SSDT 00000000bf7d1000 02576 (v01 HPQOEM NVIDIAGF 00000001 INTL 20060912) +[ 0.000000] ACPI: DMAR 00000000bf7d0000 00080 (v01 INTEL CP_DALE 00000001 INTL 00000001) +[ 0.000000] ACPI: SSDT 00000000bf7cf000 00A10 (v01 PmRef CpuPm 00003000 INTL 20060912) +[ 0.000000] ACPI: SSDT 00000000bf7ce000 00288 (v01 PmRef Cpu0Tst 00003000 INTL 20060912) +[ 0.000000] ACPI: SSDT 00000000bf7cd000 00225 (v01 PmRef ApTst 00003000 INTL 20060912) +[ 0.000000] ACPI: ASF! 00000000bf7f8000 000A0 (v32 HPQOEM 1521 00000001 HP 00000001) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000138000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000138000000 +[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801039fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00138000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000bf5d4 +[ 0.000000] 0: 0x000bf7ff -> 0x000bf800 +[ 0.000000] 0: 0x00100000 -> 0x00138000 +[ 0.000000] On node 0 totalpages: 1013092 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3927 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 765453 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3136 pages used for memmap +[ 0.000000] Normal zone: 226240 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] early_res array is doubled to 64 at [19000 - 197ff] +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ef000 +[ 0.000000] PM: Registered nosave memory: 00000000000ef000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000bf5d4000 - 00000000bf6c2000 +[ 0.000000] PM: Registered nosave memory: 00000000bf6c2000 - 00000000bf7c2000 +[ 0.000000] PM: Registered nosave memory: 00000000bf7c2000 - 00000000bf7ff000 +[ 0.000000] PM: Registered nosave memory: 00000000bf800000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 +[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000 +[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000 +[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed19000 +[ 0.000000] PM: Registered nosave memory: 00000000fed19000 - 00000000fed1a000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1b000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1b000 - 00000000fed20000 +[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffd00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffd00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880001e00000 s91520 r8192 d23168 u262144 +[ 0.000000] early_res array is doubled to 128 at [19800 - 1a7ff] +[ 0.000000] pcpu-alloc: s91520 r8192 d23168 u262144 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 995620 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.35-28-generic root=UUID=c9a74a55-36db-4c67-8cdc-097c0cced3d8 ro PROFILE=internal +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Subtract (64 early reservations) +[ 0.000000] #1 [0001000000 - 0001d18114] TEXT DATA BSS +[ 0.000000] #2 [003756f000 - 0037ff0000] RAMDISK +[ 0.000000] #3 [000009fc00 - 0000100000] BIOS reserved +[ 0.000000] #4 [0001d19000 - 0001d19229] BRK +[ 0.000000] #5 [0000010000 - 0000012000] TRAMPOLINE +[ 0.000000] #6 [0000012000 - 0000016000] ACPI WAKEUP +[ 0.000000] #7 [0000016000 - 0000018000] PGTABLE +[ 0.000000] #8 [0000018000 - 0000019000] PGTABLE +[ 0.000000] #9 [0100000000 - 0100005000] NODE_DATA +[ 0.000000] #10 [0001d19240 - 0001d1a240] BOOTMEM +[ 0.000000] #11 [0001d18140 - 0001d18428] BOOTMEM +[ 0.000000] #12 [0100005000 - 0100006000] BOOTMEM +[ 0.000000] #13 [0100006000 - 0100007000] BOOTMEM +[ 0.000000] #14 [0100200000 - 0103a00000] MEMMAP 0 +[ 0.000000] #15 [0001d18440 - 0001d185c0] BOOTMEM +[ 0.000000] #16 [0001d1a240 - 0001d32240] BOOTMEM +[ 0.000000] #17 [0001d32240 - 0001d38240] BOOTMEM +[ 0.000000] #18 [0001d39000 - 0001d3a000] BOOTMEM +[ 0.000000] #19 [0001d185c0 - 0001d18601] BOOTMEM +[ 0.000000] #20 [0001d18640 - 0001d18683] BOOTMEM +[ 0.000000] #21 [0001d186c0 - 0001d18ab0] BOOTMEM +[ 0.000000] #22 [0001d18ac0 - 0001d18b28] BOOTMEM +[ 0.000000] #23 [0001d18b40 - 0001d18ba8] BOOTMEM +[ 0.000000] #24 [0001d18bc0 - 0001d18c28] BOOTMEM +[ 0.000000] #25 [0001d18c40 - 0001d18ca8] BOOTMEM +[ 0.000000] #26 [0001d18cc0 - 0001d18d28] BOOTMEM +[ 0.000000] #27 [0001d18d40 - 0001d18da8] BOOTMEM +[ 0.000000] #28 [0001d18dc0 - 0001d18e28] BOOTMEM +[ 0.000000] #29 [0001d18e40 - 0001d18ea8] BOOTMEM +[ 0.000000] #30 [0001d18ec0 - 0001d18f28] BOOTMEM +[ 0.000000] #31 [0001d18f40 - 0001d18fa8] BOOTMEM +[ 0.000000] #32 [0001d38240 - 0001d382a8] BOOTMEM +[ 0.000000] #33 [0001d382c0 - 0001d38328] BOOTMEM +[ 0.000000] #34 [0001d38340 - 0001d383a8] BOOTMEM +[ 0.000000] #35 [0001d383c0 - 0001d38428] BOOTMEM +[ 0.000000] #36 [0001d38440 - 0001d384a8] BOOTMEM +[ 0.000000] #37 [0001d384c0 - 0001d38528] BOOTMEM +[ 0.000000] #38 [0001d38540 - 0001d385a8] BOOTMEM +[ 0.000000] #39 [0001d18fc0 - 0001d18fe0] BOOTMEM +[ 0.000000] #40 [0001d385c0 - 0001d385e0] BOOTMEM +[ 0.000000] #41 [0001d38600 - 0001d38620] BOOTMEM +[ 0.000000] #42 [0001d38640 - 0001d386a9] BOOTMEM +[ 0.000000] #43 [0001d386c0 - 0001d38729] BOOTMEM +[ 0.000000] #44 [0001e00000 - 0001e1e000] BOOTMEM +[ 0.000000] #45 [0001e40000 - 0001e5e000] BOOTMEM +[ 0.000000] #46 [0001e80000 - 0001e9e000] BOOTMEM +[ 0.000000] #47 [0001ec0000 - 0001ede000] BOOTMEM +[ 0.000000] #48 [0001f00000 - 0001f1e000] BOOTMEM +[ 0.000000] #49 [0001f40000 - 0001f5e000] BOOTMEM +[ 0.000000] #50 [0001f80000 - 0001f9e000] BOOTMEM +[ 0.000000] #51 [0001fc0000 - 0001fde000] BOOTMEM +[ 0.000000] #52 [0001d38740 - 0001d38748] BOOTMEM +[ 0.000000] #53 [0001d38780 - 0001d38788] BOOTMEM +[ 0.000000] #54 [0001d387c0 - 0001d387e0] BOOTMEM +[ 0.000000] #55 [0001d38800 - 0001d38840] BOOTMEM +[ 0.000000] #56 [0001d38840 - 0001d38960] BOOTMEM +[ 0.000000] #57 [0001d38980 - 0001d389c8] BOOTMEM +[ 0.000000] #58 [0001d38a00 - 0001d38a48] BOOTMEM +[ 0.000000] #59 [0001d3a000 - 0001d42000] BOOTMEM +[ 0.000000] #60 [0001fde000 - 0005fde000] BOOTMEM +[ 0.000000] #61 [0001d42000 - 0001d62000] BOOTMEM +[ 0.000000] #62 [0001d62000 - 0001da2000] BOOTMEM +[ 0.000000] #63 [000001a800 - 0000022800] BOOTMEM +[ 0.000000] Memory: 3903712k/5111808k available (5716k kernel code, 1059440k absent, 148656k reserved, 5375k data, 912k init) +[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] Verbose stalled-CPUs detection is disabled. +[ 0.000000] NR_IRQS:4352 nr_irqs:744 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 40632320 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.010000] Detected 2660.115 MHz processor. +[ 0.000008] Calibrating delay loop (skipped), value calculated using timer frequency.. 5320.23 BogoMIPS (lpj=26601150) +[ 0.000154] pid_max: default: 32768 minimum: 301 +[ 0.000240] Security Framework initialized +[ 0.000328] AppArmor: AppArmor initialized +[ 0.000400] Yama: becoming mindful. +[ 0.000789] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.002386] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.002847] Mount-cache hash table entries: 256 +[ 0.003016] Initializing cgroup subsys ns +[ 0.003091] Initializing cgroup subsys cpuacct +[ 0.003162] Initializing cgroup subsys memory +[ 0.003235] Initializing cgroup subsys devices +[ 0.003306] Initializing cgroup subsys freezer +[ 0.003379] Initializing cgroup subsys net_cls +[ 0.003465] CPU: Physical Processor ID: 0 +[ 0.003538] CPU: Processor Core ID: 0 +[ 0.003611] mce: CPU supports 9 MCE banks +[ 0.003689] CPU0: Thermal monitoring enabled (TM1) +[ 0.003770] using mwait in idle threads. +[ 0.003845] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. +[ 0.004121] ... version: 3 +[ 0.004189] ... bit width: 48 +[ 0.004257] ... generic registers: 4 +[ 0.004327] ... value mask: 0000ffffffffffff +[ 0.004399] ... max period: 000000007fffffff +[ 0.004468] ... fixed-purpose events: 3 +[ 0.004537] ... event mask: 000000070000000f +[ 0.006251] ACPI: Core revision 20100428 +[ 0.050917] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.050998] ftrace: allocating 22687 entries in 89 pages +[ 0.056933] DMAR: Host address width 36 +[ 0.057012] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 +[ 0.057088] IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c9008020e30272 ecap 1000 +[ 0.057176] DMAR: DRHD base: 0x000000fed93000 flags: 0x1 +[ 0.057252] IOMMU 1: reg_base_addr fed93000 ver 1:0 cap c9008020630272 ecap 1000 +[ 0.057339] DMAR: RMRR base: 0x00000000000000 end: 0x00000000000fff +[ 0.057544] Setting APIC routing to flat +[ 0.058019] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.157857] CPU0: Intel(R) Core(TM) i7 CPU M 620 @ 2.67GHz stepping 05 +[ 0.273355] Booting Node 0, Processors #1 #2 #3 +[ 0.811950] Brought up 4 CPUs +[ 0.812094] Total of 4 processors activated (21280.13 BogoMIPS). +[ 0.813748] devtmpfs: initialized +[ 0.814583] regulator: core version 0.5 +[ 0.814684] Time: 12:41:32 Date: 04/04/11 +[ 0.814783] NET: Registered protocol family 16 +[ 0.814931] Trying to unpack rootfs image as initramfs... +[ 0.814938] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 0.814940] ACPI: bus type pci registered +[ 0.815182] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.815273] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 0.842346] PCI: Using configuration type 1 for base access +[ 0.843009] bio: create slab at 0 +[ 0.844812] ACPI: EC: Look up EC in DSDT +[ 0.867249] ACPI: BIOS _OSI(Linux) query ignored +[ 0.877444] ACPI: SSDT 00000000bf6bba18 0047D (v01 PmRef Cpu0Ist 00003000 INTL 20060912) +[ 0.878085] ACPI: Dynamic OEM Table Load: +[ 0.878268] ACPI: SSDT (null) 0047D (v01 PmRef Cpu0Ist 00003000 INTL 20060912) +[ 0.878828] ACPI: SSDT 00000000bf6b9018 008AA (v01 PmRef Cpu0Cst 00003001 INTL 20060912) +[ 0.879440] ACPI: Dynamic OEM Table Load: +[ 0.879627] ACPI: SSDT (null) 008AA (v01 PmRef Cpu0Cst 00003001 INTL 20060912) +[ 0.880333] ACPI: SSDT 00000000bf6baa98 00303 (v01 PmRef ApIst 00003000 INTL 20060912) +[ 0.881009] ACPI: Dynamic OEM Table Load: +[ 0.881192] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20060912) +[ 0.881557] ACPI: SSDT 00000000bf6b8d98 00119 (v01 PmRef ApCst 00003000 INTL 20060912) +[ 0.882201] ACPI: Dynamic OEM Table Load: +[ 0.882386] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20060912) +[ 0.985429] Freeing initrd memory: 10756k freed +[ 1.309253] ACPI: Interpreter enabled +[ 1.309335] ACPI: (supports S0 S3 S4 S5) +[ 1.309652] ACPI: Using IOAPIC for interrupt routing +[ 1.319738] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62 +[ 1.319876] ACPI: Power Resource [APPR] (off) +[ 1.320121] ACPI: Power Resource [COMP] (on) +[ 1.320355] ACPI: Power Resource [LPP] (on) +[ 1.320723] ACPI: No dock devices found. +[ 1.320800] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 1.322213] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 1.323636] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 1.323717] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 1.323793] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 1.323881] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] +[ 1.323968] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfedfffff] +[ 1.324056] pci_root PNP0A08:00: host bridge window [mem 0xfee01000-0xffffffff] +[ 1.324194] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 1.324196] pci 0000:00:01.0: PME# disabled +[ 1.324263] pci 0000:00:16.0: reg 10: [mem 0xd7524000-0xd752400f 64bit] +[ 1.324317] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 1.324321] pci 0000:00:16.0: PME# disabled +[ 1.324376] pci 0000:00:19.0: reg 10: [mem 0xd7500000-0xd751ffff] +[ 1.324382] pci 0000:00:19.0: reg 14: [mem 0xd752a000-0xd752afff] +[ 1.324390] pci 0000:00:19.0: reg 18: [io 0x6020-0x603f] +[ 1.324440] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold +[ 1.324445] pci 0000:00:19.0: PME# disabled +[ 1.324491] pci 0000:00:1a.0: reg 10: [mem 0xd7529000-0xd75293ff] +[ 1.324552] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 1.324556] pci 0000:00:1a.0: PME# disabled +[ 1.324598] pci 0000:00:1b.0: reg 10: [mem 0xd7520000-0xd7523fff 64bit] +[ 1.324654] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 1.324658] pci 0000:00:1b.0: PME# disabled +[ 1.324748] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 1.324752] pci 0000:00:1c.0: PME# disabled +[ 1.324841] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 1.324845] pci 0000:00:1c.1: PME# disabled +[ 1.324940] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold +[ 1.324944] pci 0000:00:1c.3: PME# disabled +[ 1.325035] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold +[ 1.325039] pci 0000:00:1c.7: PME# disabled +[ 1.325088] pci 0000:00:1d.0: reg 10: [mem 0xd7528000-0xd75283ff] +[ 1.325151] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 1.325155] pci 0000:00:1d.0: PME# disabled +[ 1.325346] pci 0000:00:1f.2: reg 10: [io 0x6048-0x604f] +[ 1.325353] pci 0000:00:1f.2: reg 14: [io 0x6054-0x6057] +[ 1.325359] pci 0000:00:1f.2: reg 18: [io 0x6040-0x6047] +[ 1.325366] pci 0000:00:1f.2: reg 1c: [io 0x6050-0x6053] +[ 1.325372] pci 0000:00:1f.2: reg 20: [io 0x6000-0x601f] +[ 1.325379] pci 0000:00:1f.2: reg 24: [mem 0xd7527000-0xd75277ff] +[ 1.325422] pci 0000:00:1f.2: PME# supported from D3hot +[ 1.325426] pci 0000:00:1f.2: PME# disabled +[ 1.325478] pci 0000:00:1f.6: reg 10: [mem 0xd7526000-0xd7526fff 64bit] +[ 1.325578] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff] +[ 1.325587] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 1.325597] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref] +[ 1.325602] pci 0000:01:00.0: reg 24: [io 0x5000-0x507f] +[ 1.325608] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref] +[ 1.325668] pci 0000:01:00.1: reg 10: [mem 0xd3000000-0xd3003fff] +[ 1.325731] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.325807] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 1.325810] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd30fffff] +[ 1.325812] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 1.325865] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 1.325945] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 1.325949] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd74fffff] +[ 1.325956] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.326010] pci 0000:00:1c.1: PCI bridge to [bus 03-43] +[ 1.326090] pci 0000:00:1c.1: bridge window [io 0x3000-0x4fff] +[ 1.326094] pci 0000:00:1c.1: bridge window [mem 0xd3400000-0xd73fffff] +[ 1.326101] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.326212] pci 0000:44:00.0: reg 10: [mem 0xd3300000-0xd3301fff 64bit] +[ 1.326320] pci 0000:44:00.0: PME# supported from D0 D3hot D3cold +[ 1.326327] pci 0000:44:00.0: PME# disabled +[ 1.326362] pci 0000:00:1c.3: PCI bridge to [bus 44-44] +[ 1.326441] pci 0000:00:1c.3: bridge window [io 0xf000-0x0000] (disabled) +[ 1.326446] pci 0000:00:1c.3: bridge window [mem 0xd3300000-0xd33fffff] +[ 1.326452] pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.326558] pci 0000:45:00.0: reg 10: [mem 0xd3200000-0xd3201fff 64bit] +[ 1.326657] pci 0000:45:00.0: PME# supported from D0 D3hot +[ 1.326663] pci 0000:45:00.0: PME# disabled +[ 1.326700] pci 0000:00:1c.7: PCI bridge to [bus 45-45] +[ 1.326780] pci 0000:00:1c.7: bridge window [io 0xf000-0x0000] (disabled) +[ 1.326784] pci 0000:00:1c.7: bridge window [mem 0xd3200000-0xd32fffff] +[ 1.326791] pci 0000:00:1c.7: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.326851] pci 0000:46:06.0: proprietary Ricoh MMC controller disabled (via firewire function) +[ 1.326944] pci 0000:46:06.0: MMC cards are now supported by standard SDHCI controller +[ 1.327038] pci 0000:46:06.0: reg 10: [mem 0xd3101000-0xd31017ff] +[ 1.327090] pci 0000:46:06.0: supports D1 D2 +[ 1.327091] pci 0000:46:06.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.327095] pci 0000:46:06.0: PME# disabled +[ 1.327126] pci 0000:46:06.1: reg 10: [mem 0xd3105000-0xd31050ff] +[ 1.327178] pci 0000:46:06.1: supports D1 D2 +[ 1.327179] pci 0000:46:06.1: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.327183] pci 0000:46:06.1: PME# disabled +[ 1.327215] pci 0000:46:06.2: reg 10: [mem 0xd3103000-0xd31030ff] +[ 1.327266] pci 0000:46:06.2: supports D1 D2 +[ 1.327267] pci 0000:46:06.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.327271] pci 0000:46:06.2: PME# disabled +[ 1.327302] pci 0000:46:06.3: reg 10: [mem 0xd3102000-0xd31020ff] +[ 1.327353] pci 0000:46:06.3: supports D1 D2 +[ 1.327354] pci 0000:46:06.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.327358] pci 0000:46:06.3: PME# disabled +[ 1.327389] pci 0000:46:06.4: reg 10: [mem 0xd3100000-0xd3100fff] +[ 1.327410] pci 0000:46:06.4: supports D1 D2 +[ 1.327411] pci 0000:46:06.4: PME# supported from D0 D1 D2 D3hot D3cold +[ 1.327415] pci 0000:46:06.4: PME# disabled +[ 1.327458] pci 0000:00:1e.0: PCI bridge to [bus 46-47] (subtractive decode) +[ 1.327539] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff] +[ 1.327543] pci 0000:00:1e.0: bridge window [mem 0xd3100000-0xd31fffff] +[ 1.327550] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 1.327552] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 1.327553] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 1.327555] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 1.327556] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) +[ 1.327558] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfedfffff] (subtractive decode) +[ 1.327559] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff] (subtractive decode) +[ 1.327598] pci_bus 0000:47: [bus 47-4a] partially hidden behind transparent bridge 0000:46 [bus 46-47] +[ 1.327726] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 1.328003] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT] +[ 1.328106] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT] +[ 1.328207] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 1.328277] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 1.328404] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT] +[ 1.328481] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP08._PRT] +[ 1.343081] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 1.343564] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 1.344428] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 *5 6 7 11 12 14 15) +[ 1.345295] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 1.346233] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 1.347161] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 1.348020] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10 +[ 1.348953] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 1.349942] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 1.350873] HEST: Table is not found! +[ 1.351011] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 1.351104] vgaarb: loaded +[ 1.351269] SCSI subsystem initialized +[ 1.351426] libata version 3.00 loaded. +[ 1.351474] usbcore: registered new interface driver usbfs +[ 1.351558] usbcore: registered new interface driver hub +[ 1.351651] usbcore: registered new device driver usb +[ 1.352083] ACPI: WMI: Mapper loaded +[ 1.352159] PCI: Using ACPI for IRQ routing +[ 1.353787] PCI: pci_cache_line_size set to 64 bytes +[ 1.353889] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 1.353891] reserve RAM buffer: 00000000bf5d4000 - 00000000bfffffff +[ 1.353892] reserve RAM buffer: 00000000bf800000 - 00000000bfffffff +[ 1.353963] NetLabel: Initializing +[ 1.354039] NetLabel: domain hash size = 128 +[ 1.354110] NetLabel: protocols = UNLABELED CIPSOv4 +[ 1.354192] NetLabel: unlabeled traffic allowed by default +[ 1.354305] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 1.354886] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 1.356973] Switching to clocksource tsc +[ 1.362865] AppArmor: AppArmor Filesystem Enabled +[ 1.362955] pnp: PnP ACPI init +[ 1.363040] ACPI: bus type pnp registered +[ 1.367523] alloc irq_desc for 23 on node 0 +[ 1.367525] alloc kstat_irqs on node 0 +[ 1.368432] pnp: PnP ACPI: found 15 devices +[ 1.368508] ACPI: ACPI bus type pnp unregistered +[ 1.368590] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 1.368670] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved +[ 1.368745] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved +[ 1.368821] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved +[ 1.368895] system 00:01: [mem 0xd7600000-0xd7600fff] has been reserved +[ 1.368973] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved +[ 1.369047] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 1.369123] system 00:01: [mem 0xfed90000-0xfed93fff] has been reserved +[ 1.369198] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 1.369275] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 1.369355] system 00:07: [io 0x0200-0x027f] has been reserved +[ 1.369429] system 00:07: [io 0x1000-0x100f] has been reserved +[ 1.369503] system 00:07: [io 0xffff] has been reserved +[ 1.369577] system 00:07: [io 0xffff] has been reserved +[ 1.369652] system 00:07: [io 0x0400-0x047f] has been reserved +[ 1.369725] system 00:07: [io 0x0500-0x057f] has been reserved +[ 1.369799] system 00:07: [io 0xef80-0xef9f] has been reserved +[ 1.375232] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref] +[ 1.375385] pci 0000:00:1e.0: BAR 15: assigned [mem 0xd8000000-0xdbffffff pref] +[ 1.375477] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd7700000-0xd78fffff 64bit pref] +[ 1.375566] pci 0000:01:00.0: BAR 6: assigned [mem 0xd3080000-0xd30fffff pref] +[ 1.375655] pci 0000:00:01.0: PCI bridge to [bus 01-01] +[ 1.375729] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff] +[ 1.375804] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd30fffff] +[ 1.375881] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 1.375970] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 1.376043] pci 0000:00:1c.0: bridge window [io disabled] +[ 1.376121] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd74fffff] +[ 1.376198] pci 0000:00:1c.0: bridge window [mem pref disabled] +[ 1.376277] pci 0000:00:1c.1: PCI bridge to [bus 03-43] +[ 1.376355] pci 0000:00:1c.1: bridge window [io 0x3000-0x4fff] +[ 1.376433] pci 0000:00:1c.1: bridge window [mem 0xd3400000-0xd73fffff] +[ 1.376514] pci 0000:00:1c.1: bridge window [mem 0xd7700000-0xd78fffff 64bit pref] +[ 1.376608] pci 0000:00:1c.3: PCI bridge to [bus 44-44] +[ 1.376685] pci 0000:00:1c.3: bridge window [io disabled] +[ 1.376763] pci 0000:00:1c.3: bridge window [mem 0xd3300000-0xd33fffff] +[ 1.376839] pci 0000:00:1c.3: bridge window [mem pref disabled] +[ 1.376921] pci 0000:00:1c.7: PCI bridge to [bus 45-45] +[ 1.376999] pci 0000:00:1c.7: bridge window [io disabled] +[ 1.377078] pci 0000:00:1c.7: bridge window [mem 0xd3200000-0xd32fffff] +[ 1.377155] pci 0000:00:1c.7: bridge window [mem pref disabled] +[ 1.377236] pci 0000:46:06.4: BAR 15: assigned [mem 0xd8000000-0xdbffffff pref] +[ 1.377328] pci 0000:46:06.4: BAR 16: assigned [mem 0xdc000000-0xdfffffff] +[ 1.377404] pci 0000:46:06.4: BAR 13: assigned [io 0x2000-0x20ff] +[ 1.377479] pci 0000:46:06.4: BAR 14: assigned [io 0x2400-0x24ff] +[ 1.377554] pci 0000:46:06.4: CardBus bridge to [bus 47-4a] +[ 1.377629] pci 0000:46:06.4: bridge window [io 0x2000-0x20ff] +[ 1.377706] pci 0000:46:06.4: bridge window [io 0x2400-0x24ff] +[ 1.377783] pci 0000:46:06.4: bridge window [mem 0xd8000000-0xdbffffff pref] +[ 1.377874] pci 0000:46:06.4: bridge window [mem 0xdc000000-0xdfffffff] +[ 1.377951] pci 0000:00:1e.0: PCI bridge to [bus 46-47] +[ 1.378028] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff] +[ 1.378106] pci 0000:00:1e.0: bridge window [mem 0xd3100000-0xd31fffff] +[ 1.378184] pci 0000:00:1e.0: bridge window [mem 0xd8000000-0xdbffffff pref] +[ 1.378285] alloc irq_desc for 16 on node -1 +[ 1.378286] alloc kstat_irqs on node -1 +[ 1.378290] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.378369] pci 0000:00:01.0: setting latency timer to 64 +[ 1.378377] alloc irq_desc for 17 on node -1 +[ 1.378378] alloc kstat_irqs on node -1 +[ 1.378381] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.378463] pci 0000:00:1c.0: setting latency timer to 64 +[ 1.378471] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 1.378553] pci 0000:00:1c.1: setting latency timer to 64 +[ 1.378562] alloc irq_desc for 19 on node -1 +[ 1.378563] alloc kstat_irqs on node -1 +[ 1.378565] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 1.378648] pci 0000:00:1c.3: setting latency timer to 64 +[ 1.378656] pci 0000:00:1c.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 1.378737] pci 0000:00:1c.7: setting latency timer to 64 +[ 1.378744] pci 0000:00:1e.0: setting latency timer to 64 +[ 1.378754] alloc irq_desc for 22 on node -1 +[ 1.378755] alloc kstat_irqs on node -1 +[ 1.378757] pci 0000:46:06.4: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 1.378838] pci 0000:46:06.4: setting latency timer to 64 +[ 1.378842] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 1.378843] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 1.378845] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.378846] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xdfffffff] +[ 1.378847] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfedfffff] +[ 1.378849] pci_bus 0000:00: resource 9 [mem 0xfee01000-0xffffffff] +[ 1.378850] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff] +[ 1.378852] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd30fffff] +[ 1.378853] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 1.378855] pci_bus 0000:02: resource 1 [mem 0xd7400000-0xd74fffff] +[ 1.378856] pci_bus 0000:03: resource 0 [io 0x3000-0x4fff] +[ 1.378858] pci_bus 0000:03: resource 1 [mem 0xd3400000-0xd73fffff] +[ 1.378859] pci_bus 0000:03: resource 2 [mem 0xd7700000-0xd78fffff 64bit pref] +[ 1.378861] pci_bus 0000:44: resource 1 [mem 0xd3300000-0xd33fffff] +[ 1.378862] pci_bus 0000:45: resource 1 [mem 0xd3200000-0xd32fffff] +[ 1.378863] pci_bus 0000:46: resource 0 [io 0x2000-0x2fff] +[ 1.378865] pci_bus 0000:46: resource 1 [mem 0xd3100000-0xd31fffff] +[ 1.378866] pci_bus 0000:46: resource 2 [mem 0xd8000000-0xdbffffff pref] +[ 1.378868] pci_bus 0000:46: resource 4 [io 0x0000-0x0cf7] +[ 1.378869] pci_bus 0000:46: resource 5 [io 0x0d00-0xffff] +[ 1.378870] pci_bus 0000:46: resource 6 [mem 0x000a0000-0x000bffff] +[ 1.378871] pci_bus 0000:46: resource 7 [mem 0xc0000000-0xdfffffff] +[ 1.378873] pci_bus 0000:46: resource 8 [mem 0xf0000000-0xfedfffff] +[ 1.378874] pci_bus 0000:46: resource 9 [mem 0xfee01000-0xffffffff] +[ 1.378876] pci_bus 0000:47: resource 0 [io 0x2000-0x20ff] +[ 1.378877] pci_bus 0000:47: resource 1 [io 0x2400-0x24ff] +[ 1.378878] pci_bus 0000:47: resource 2 [mem 0xd8000000-0xdbffffff pref] +[ 1.378880] pci_bus 0000:47: resource 3 [mem 0xdc000000-0xdfffffff] +[ 1.378906] NET: Registered protocol family 2 +[ 1.379091] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 1.380001] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 1.381727] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 1.382017] TCP: Hash tables configured (established 524288 bind 65536) +[ 1.382096] TCP reno registered +[ 1.382174] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 1.382271] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 1.382445] NET: Registered protocol family 1 +[ 1.382637] pci 0000:01:00.0: Boot video device +[ 1.382703] PCI: CLS 64 bytes, default 64 +[ 1.382705] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 1.382785] Placing 64MB software IO TLB between ffff880001fde000 - ffff880005fde000 +[ 1.382874] software IO TLB at phys 0x1fde000 - 0x5fde000 +[ 1.383178] Scanning for low memory corruption every 60 seconds +[ 1.383369] audit: initializing netlink socket (disabled) +[ 1.383453] type=2000 audit(1301920892.230:1): initialized +[ 1.394175] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 1.395210] VFS: Disk quotas dquot_6.5.2 +[ 1.395321] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 1.395776] fuse init (API version 7.14) +[ 1.395908] msgmni has been set to 7645 +[ 1.397547] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 1.397639] io scheduler noop registered +[ 1.397712] io scheduler deadline registered +[ 1.397807] io scheduler cfq registered (default) +[ 1.397963] pcieport 0000:00:01.0: setting latency timer to 64 +[ 1.397979] alloc irq_desc for 40 on node -1 +[ 1.397980] alloc kstat_irqs on node -1 +[ 1.397988] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X +[ 1.398030] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 1.398070] alloc irq_desc for 41 on node -1 +[ 1.398071] alloc kstat_irqs on node -1 +[ 1.398079] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X +[ 1.398146] pcieport 0000:00:1c.1: setting latency timer to 64 +[ 1.398186] alloc irq_desc for 42 on node -1 +[ 1.398187] alloc kstat_irqs on node -1 +[ 1.398195] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X +[ 1.398276] pcieport 0000:00:1c.3: setting latency timer to 64 +[ 1.398316] alloc irq_desc for 43 on node -1 +[ 1.398317] alloc kstat_irqs on node -1 +[ 1.398324] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X +[ 1.398393] pcieport 0000:00:1c.7: setting latency timer to 64 +[ 1.398433] alloc irq_desc for 44 on node -1 +[ 1.398434] alloc kstat_irqs on node -1 +[ 1.398442] pcieport 0000:00:1c.7: irq 44 for MSI/MSI-X +[ 1.398515] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 1.398616] Firmware did not grant requested _OSC control +[ 1.398632] Firmware did not grant requested _OSC control +[ 1.398636] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 1.398760] intel_idle: MWAIT substates: 0x1120 +[ 1.398761] intel_idle: v0.4 model 0x25 +[ 1.398762] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 1.399104] ACPI: AC Adapter [AC] (on-line) +[ 1.399238] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0 +[ 1.399332] ACPI: Sleep Button [SLPB] +[ 1.399427] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 +[ 1.399574] ACPI: Lid Switch [LID] +[ 1.399674] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 +[ 1.399764] ACPI: Power Button [PWRF] +[ 1.400290] ACPI: acpi_idle yielding to intel_idle +[ 1.418509] thermal LNXTHERM:01: registered as thermal_zone0 +[ 1.418591] ACPI: Thermal Zone [EXTZ] (26 C) +[ 1.422265] thermal LNXTHERM:02: registered as thermal_zone1 +[ 1.422347] ACPI: Thermal Zone [EX2Z] (0 C) +[ 1.424097] thermal LNXTHERM:03: registered as thermal_zone2 +[ 1.424177] ACPI: Thermal Zone [PWMZ] (11 C) +[ 1.427752] thermal LNXTHERM:04: registered as thermal_zone3 +[ 1.427834] ACPI: Thermal Zone [LOCZ] (25 C) +[ 1.428725] thermal LNXTHERM:05: registered as thermal_zone4 +[ 1.428808] ACPI: Thermal Zone [GFXZ] (0 C) +[ 1.439559] thermal LNXTHERM:06: registered as thermal_zone5 +[ 1.439641] ACPI: Thermal Zone [BATZ] (27 C) +[ 1.449205] thermal LNXTHERM:07: registered as thermal_zone6 +[ 1.449288] ACPI: Thermal Zone [EGXZ] (28 C) +[ 1.449709] thermal LNXTHERM:08: registered as thermal_zone7 +[ 1.449790] ACPI: Thermal Zone [CPUZ] (34 C) +[ 1.450185] thermal LNXTHERM:09: registered as thermal_zone8 +[ 1.450265] ACPI: Thermal Zone [MCHZ] (33 C) +[ 1.450644] thermal LNXTHERM:0a: registered as thermal_zone9 +[ 1.450725] ACPI: Thermal Zone [PCHZ] (59 C) +[ 1.450862] ERST: Table is not found! +[ 1.451298] Linux agpgart interface v0.103 +[ 1.451386] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 1.451598] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 1.451985] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 1.452750] brd: module loaded +[ 1.453120] loop: module loaded +[ 1.453455] Fixed MDIO Bus: probed +[ 1.453549] PPP generic driver version 2.4.2 +[ 1.453644] tun: Universal TUN/TAP device driver, 1.6 +[ 1.453722] tun: (C) 1999-2004 Max Krasnyansky +[ 1.453855] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.453950] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.454044] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 1.454047] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 1.454143] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 1.454260] ehci_hcd 0000:00:1a.0: debug port 2 +[ 1.458241] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 1.458255] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd7529000 +[ 1.476770] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 1.476933] hub 1-0:1.0: USB hub found +[ 1.477011] hub 1-0:1.0: 3 ports detected +[ 1.477133] alloc irq_desc for 20 on node -1 +[ 1.477134] alloc kstat_irqs on node -1 +[ 1.477138] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.477226] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.477229] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 1.477325] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 1.477436] ehci_hcd 0000:00:1d.0: debug port 2 +[ 1.481432] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 1.481443] ehci_hcd 0000:00:1d.0: irq 20, io mem 0xd7528000 +[ 1.496730] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 1.496893] hub 2-0:1.0: USB hub found +[ 1.496970] hub 2-0:1.0: 3 ports detected +[ 1.497086] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.497171] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.497337] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 1.499113] i8042.c: Detected active multiplexing controller, rev 1.1. +[ 1.499864] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.499974] serio: i8042 AUX0 port at 0x60,0x64 irq 12 +[ 1.500051] serio: i8042 AUX1 port at 0x60,0x64 irq 12 +[ 1.500125] serio: i8042 AUX2 port at 0x60,0x64 irq 12 +[ 1.501847] serio: i8042 AUX3 port at 0x60,0x64 irq 12 +[ 1.501961] mice: PS/2 mouse device common for all mice +[ 1.502115] rtc_cmos 00:08: RTC can wake from S4 +[ 1.502240] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0 +[ 1.502351] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs +[ 1.502487] device-mapper: uevent: version 1.0.3 +[ 1.502620] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com +[ 1.502772] device-mapper: multipath: version 1.1.1 loaded +[ 1.502851] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.503133] cpuidle: using governor ladder +[ 1.503306] cpuidle: using governor menu +[ 1.503577] TCP cubic registered +[ 1.503728] NET: Registered protocol family 10 +[ 1.504034] lo: Disabled Privacy Extensions +[ 1.504240] NET: Registered protocol family 17 +[ 1.506205] PM: Resume from disk failed. +[ 1.506215] registered taskstats version 1 +[ 1.506697] Magic number: 7:690:682 +[ 1.506889] rtc_cmos 00:08: setting system clock to 2011-04-04 12:41:33 UTC (1301920893) +[ 1.506983] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.507059] EDD information not available. +[ 1.507246] Freeing unused kernel memory: 912k freed +[ 1.507465] Write protecting the kernel read-only data: 10240k +[ 1.507747] Freeing unused kernel memory: 408k freed +[ 1.508029] Freeing unused kernel memory: 1640k freed +[ 1.523150] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 1.523354] udev[99]: starting version 163 +[ 1.549875] ACPI: Battery Slot [BAT0] (battery present) +[ 1.572805] ACPI: Battery Slot [BAT1] (battery present) +[ 1.597108] ahci 0000:00:1f.2: version 3.0 +[ 1.597130] alloc irq_desc for 21 on node -1 +[ 1.597133] alloc kstat_irqs on node -1 +[ 1.597143] ahci 0000:00:1f.2: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 1.597295] alloc irq_desc for 45 on node -1 +[ 1.597297] alloc kstat_irqs on node -1 +[ 1.597309] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X +[ 1.597351] ahci: SSS flag set, parallel bus scan disabled +[ 1.613046] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k4 +[ 1.613135] e1000e: Copyright (c) 1999 - 2009 Intel Corporation. +[ 1.613652] sdhci: Secure Digital Host Controller Interface driver +[ 1.613738] sdhci: Copyright(c) Pierre Ossman +[ 1.615656] sdhci-pci 0000:46:06.1: SDHCI controller found [1180:0822] (rev 25) +[ 1.615770] sdhci-pci 0000:46:06.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 1.616903] sdhci-pci 0000:46:06.1: Will use DMA mode even though HW doesn't fully claim to support it. +[ 1.617002] sdhci-pci 0000:46:06.1: setting latency timer to 64 +[ 1.617751] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x37 impl SATA mode +[ 1.617854] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst +[ 1.617954] ahci 0000:00:1f.2: setting latency timer to 64 +[ 1.618128] Registered led device: mmc0:: +[ 1.619161] mmc0: SDHCI controller on PCI [0000:46:06.1] using DMA +[ 1.619319] firewire_ohci 0000:46:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.619414] firewire_ohci 0000:46:06.0: setting latency timer to 64 +[ 1.698340] scsi0 : ahci +[ 1.698612] scsi1 : ahci +[ 1.698861] scsi2 : ahci +[ 1.699110] scsi3 : ahci +[ 1.699352] scsi4 : ahci +[ 1.699597] scsi5 : ahci +[ 1.700001] ata1: SATA max UDMA/133 abar m2048@0xd7527000 port 0xd7527100 irq 45 +[ 1.700095] ata2: SATA max UDMA/133 abar m2048@0xd7527000 port 0xd7527180 irq 45 +[ 1.700185] ata3: SATA max UDMA/133 abar m2048@0xd7527000 port 0xd7527200 irq 45 +[ 1.700272] ata4: DUMMY +[ 1.700344] ata5: SATA max UDMA/133 abar m2048@0xd7527000 port 0xd7527300 irq 45 +[ 1.700433] ata6: SATA max UDMA/133 abar m2048@0xd7527000 port 0xd7527380 irq 45 +[ 1.700568] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 +[ 1.700666] e1000e 0000:00:19.0: setting latency timer to 64 +[ 1.700771] alloc irq_desc for 46 on node -1 +[ 1.700772] alloc kstat_irqs on node -1 +[ 1.700785] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X +[ 1.796057] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 1.837171] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 88:ae:1d:b6:09:5a +[ 1.837261] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection +[ 1.837383] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 10, PBA No: 2052ff-0ff +[ 1.855937] firewire_ohci: Added fw-ohci device 0000:46:06.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x0 +[ 1.946390] hub 1-1:1.0: USB hub found +[ 1.946567] hub 1-1:1.0: 6 ports detected +[ 2.045459] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 2.046523] ata1.00: unexpected _GTF length (8) +[ 2.046833] ata1.00: ATA-8: ST9320423AS, 0006HPM1, max UDMA/100 +[ 2.046965] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 2.048296] ata1.00: unexpected _GTF length (8) +[ 2.048597] ata1.00: configured for UDMA/100 +[ 2.065594] scsi 0:0:0:0: Direct-Access ATA ST9320423AS 0006 PQ: 0 ANSI: 5 +[ 2.065810] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 2.065824] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB) +[ 2.065879] sd 0:0:0:0: [sda] Write Protect is off +[ 2.065881] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 2.065904] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 2.065972] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 2.066090] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 > +[ 2.152936] sd 0:0:0:0: [sda] Attached SCSI disk +[ 2.225693] hub 2-1:1.0: USB hub found +[ 2.225878] hub 2-1:1.0: 8 ports detected +[ 2.304981] usb 1-1.1: new full speed USB device using ehci_hcd and address 3 +[ 2.355382] firewire_core: created device fw0: GUID 5566778811223344, S400 +[ 2.496371] usb 1-1.3: new full speed USB device using ehci_hcd and address 4 +[ 2.684016] usb 1-1.4: new high speed USB device using ehci_hcd and address 5 +[ 2.795507] hub 1-1.4:1.0: USB hub found +[ 2.795763] hub 1-1.4:1.0: 4 ports detected +[ 2.813544] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 2.833245] ata2.00: unexpected _GTF length (8) +[ 2.833323] ata2.00: ATAPI: hp CDDVDW TS-L633N, 0300, max UDMA/100 +[ 2.854549] ata2.00: unexpected _GTF length (8) +[ 2.854645] ata2.00: configured for UDMA/100 +[ 2.878613] scsi 1:0:0:0: CD-ROM hp CDDVDW TS-L633N 0300 PQ: 0 ANSI: 5 +[ 2.892873] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.892976] Uniform CD-ROM driver Revision: 3.20 +[ 2.893133] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 2.893179] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 3.083009] usb 1-1.4.2: new high speed USB device using ehci_hcd and address 6 +[ 3.193410] hub 1-1.4.2:1.0: USB hub found +[ 3.193600] hub 1-1.4.2:1.0: 4 ports detected +[ 3.242504] ata3: SATA link down (SStatus 0 SControl 300) +[ 3.472038] usb 1-1.4.2.1: new low speed USB device using ehci_hcd and address 7 +[ 3.611593] ata5: SATA link down (SStatus 0 SControl 300) +[ 3.683522] usb 1-1.4.2.2: new low speed USB device using ehci_hcd and address 8 +[ 3.804637] usbcore: registered new interface driver hiddev +[ 3.807424] input: Logitech N48 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2.1/1-1.4.2.1:1.0/input/input4 +[ 3.807590] generic-usb 0003:046D:C001.0001: input,hidraw0: USB HID v1.00 Mouse [Logitech N48] on usb-0000:00:1a.0-1.4.2.1/input0 +[ 3.812388] input: CHICONY HP Basic USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2.2/1-1.4.2.2:1.0/input/input5 +[ 3.812545] generic-usb 0003:03F0:0024.0002: input,hidraw1: USB HID v1.10 Keyboard [CHICONY HP Basic USB Keyboard] on usb-0000:00:1a.0-1.4.2.2/input0 +[ 3.812651] usbcore: registered new interface driver usbhid +[ 3.812730] usbhid: USB HID core driver +[ 3.981928] ata6: SATA link down (SStatus 0 SControl 300) +[ 4.673554] EXT4-fs (sda5): INFO: recovery required on readonly filesystem +[ 4.673750] EXT4-fs (sda5): write access will be enabled during recovery +[ 7.750872] EXT4-fs (sda5): recovery complete +[ 7.754726] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) +[ 20.535624] udev[447]: starting version 163 +[ 20.580885] lp: driver loaded but no devices found +[ 20.586987] xhci_hcd 0000:45:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 20.587032] xhci_hcd 0000:45:00.0: setting latency timer to 64 +[ 20.587038] xhci_hcd 0000:45:00.0: xHCI Host Controller +[ 20.587100] xhci_hcd 0000:45:00.0: new USB bus registered, assigned bus number 3 +[ 20.587312] xhci_hcd 0000:45:00.0: irq 19, io mem 0xd3200000 +[ 20.590607] usb usb3: No SuperSpeed endpoint companion for config 1 interface 0 altsetting 0 ep 129: using minimum values +[ 20.590742] xHCI xhci_add_endpoint called for root hub +[ 20.590744] xHCI xhci_check_bandwidth called for root hub +[ 20.590775] hub 3-0:1.0: USB hub found +[ 20.590780] hub 3-0:1.0: 4 ports detected +[ 20.603082] intel ips 0000:00:1f.6: Warning: CPU TDP doesn't match expected value (found 25, expected 35) +[ 20.603105] alloc irq_desc for 18 on node -1 +[ 20.603107] alloc kstat_irqs on node -1 +[ 20.603116] intel ips 0000:00:1f.6: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 20.603244] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled +[ 20.606122] Adding 7999484k swap on /dev/sda6. Priority:-1 extents:1 across:7999484k +[ 20.647383] nvidia: module license 'NVIDIA' taints kernel. +[ 20.647386] Disabling lock debugging due to kernel taint +[ 20.648469] lis3lv02d: laptop model unknown, using default axes configuration +[ 20.649316] lis3lv02d: 8 bits sensor found +[ 20.665840] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 65535 +[ 20.715269] yenta_cardbus 0000:46:06.4: CardBus bridge found [103c:1521] +[ 20.717479] tpm_tis 00:04: 1.2 TPM (device-id 0xB, rev-id 16) +[ 20.735826] cfg80211: Calling CRDA to update world regulatory domain +[ 20.740067] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input6 +[ 20.740198] Registered led device: hp::hddprotect +[ 20.740224] lis3lv02d driver loaded. +[ 20.769117] cfg80211: World regulatory domain updated: +[ 20.769121] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 20.769125] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 20.769128] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 20.769131] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 20.769134] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 20.769137] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 20.778659] ppdev: user-space parallel port driver +[ 20.796995] acpi device:03: registered as cooling_device4 +[ 20.797543] input: HP WMI hotkeys as /devices/virtual/input/input7 +[ 20.803532] ACPI: Cant attach device +[ 20.803738] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/LNXVIDEO:00/input/input8 +[ 20.803808] ACPI: Video Device [DGFX] (multi-head: yes rom: no post: no) +[ 20.860456] yenta_cardbus 0000:46:06.4: ISA IRQ mask 0x0cb8, PCI irq 22 +[ 20.860460] yenta_cardbus 0000:46:06.4: Socket status: 30000810 +[ 20.860464] pci_bus 0000:46: Raising subordinate bus# of parent bus (#46) from #47 to #4a +[ 20.860472] yenta_cardbus 0000:46:06.4: pcmcia: parent PCI bridge window: [io 0x2000-0x2fff] +[ 20.860476] yenta_cardbus 0000:46:06.4: pcmcia: parent PCI bridge window: [mem 0xd3100000-0xd31fffff] +[ 20.860478] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd3100000-0xd31fffff: excluding 0xd3100000-0xd310ffff +[ 20.860488] yenta_cardbus 0000:46:06.4: pcmcia: parent PCI bridge window: [mem 0xd8000000-0xdbffffff pref] +[ 20.860489] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd8000000-0xdbffffff: excluding 0xd8000000-0xdbffffff +[ 20.860759] r852 0000:46:06.3: PCI INT B -> GSI 22 (level, low) -> IRQ 22 +[ 20.860765] r852 0000:46:06.3: setting latency timer to 64 +[ 20.866389] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: +[ 20.866391] iwlagn: Copyright(c) 2003-2010 Intel Corporation +[ 20.866442] iwlagn 0000:44:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 20.866451] iwlagn 0000:44:00.0: setting latency timer to 64 +[ 20.866501] iwlagn 0000:44:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74 +[ 20.871071] r852: driver loaded succesfully +[ 20.875522] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0 +[ 20.875567] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0 +[ 20.875578] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 20.875676] alloc irq_desc for 47 on node -1 +[ 20.875678] alloc kstat_irqs on node -1 +[ 20.875701] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 20.875755] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 20.877078] iwlagn 0000:44:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels +[ 20.877155] alloc irq_desc for 48 on node -1 +[ 20.877156] alloc kstat_irqs on node -1 +[ 20.877196] iwlagn 0000:44:00.0: irq 48 for MSI/MSI-X +[ 20.880209] type=1400 audit(1301935312.914:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=859 comm="apparmor_parser" +[ 20.880216] type=1400 audit(1301935312.914:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=767 comm="apparmor_parser" +[ 20.880630] type=1400 audit(1301935312.914:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=859 comm="apparmor_parser" +[ 20.880638] type=1400 audit(1301935312.914:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=767 comm="apparmor_parser" +[ 20.880864] type=1400 audit(1301935312.914:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=859 comm="apparmor_parser" +[ 20.880874] type=1400 audit(1301935312.914:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=767 comm="apparmor_parser" +[ 20.882771] type=1400 audit(1301935312.914:8): apparmor="STATUS" operation="profile_load" name="/usr/sbin/ntpd" pid=902 comm="apparmor_parser" +[ 20.882778] type=1400 audit(1301935312.914:9): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/ntpd" pid=903 comm="apparmor_parser" +[ 20.912342] iwlagn 0000:44:00.0: loaded firmware version 9.221.4.1 build 25532 +[ 20.917181] phy0: Selected rate control algorithm 'iwl-agn-rs' +[ 20.946617] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xfffff +[ 20.946651] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: excluding 0xa0000000-0xa0ffffff +[ 20.946681] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: excluding 0x60000000-0x60ffffff +[ 21.011208] parport_pc 00:0a: reported by Plug and Play ACPI +[ 21.011290] parport0: PC-style at 0x378 (0x778), irq 5, using FIFO [PCSPP,TRISTATE,COMPAT,ECP] +[ 21.014188] input: HDA Intel Line In at Sep Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9 +[ 21.014269] input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10 +[ 21.014324] input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 +[ 21.014382] input: HDA Intel HP Out at Sep Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 +[ 21.014585] HDA Intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 21.014589] hda_intel: Disable MSI for Nvidia chipset +[ 21.014639] HDA Intel 0000:01:00.1: setting latency timer to 64 +[ 21.021415] Bluetooth: Core ver 2.15 +[ 21.021455] NET: Registered protocol family 31 +[ 21.021457] Bluetooth: HCI device and connection manager initialized +[ 21.021460] Bluetooth: HCI socket layer initialized +[ 21.089787] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 21.090013] usbcore: registered new interface driver btusb +[ 21.098649] lp0: using parport0 (interrupt-driven). +[ 21.373707] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input13 +[ 21.786790] pcmcia_socket pcmcia_socket0: pccard: PCMCIA card inserted into slot 0 +[ 21.786800] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd3110000-0xd31fffff: excluding 0xd31fe000-0xd320bfff +[ 21.793679] pcmcia 0.0: pcmcia: registering new device pcmcia0.0 (IRQ: 22) +[ 21.797194] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 21.797390] IP: [] module_bug_finalize+0x7e/0xd0 +[ 21.797528] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 21.797823] Oops: 0002 [#1] SMP +[ 21.798004] last sysfs file: /sys/module/pcmcia/initstate +[ 21.798077] CPU 1 +[ 21.798136] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 21.801983] +[ 21.802053] Pid: 1089, comm: modprobe Tainted: P 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 21.802145] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 21.802291] RSP: 0018:ffff8801194a3d80 EFLAGS: 00010246 +[ 21.802366] RAX: ffffffffa0067698 RBX: ffffffff817d6acc RCX: 000000000000000b +[ 21.802441] RDX: ffffffffa0c8d858 RSI: ffffc900110f526a RDI: ffffffff817d6acd +[ 21.802516] RBP: ffff8801194a3d88 R08: ffffffffa0067520 R09: ffffc900110f5948 +[ 21.802593] R10: ffffc900110f5260 R11: 000000000000000c R12: ffffc900110f53c8 +[ 21.802670] R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 21.802748] FS: 00007f72c73de700(0000) GS:ffff880001e40000(0000) knlGS:0000000000000000 +[ 21.802836] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 21.802909] CR2: ffffffffa0c8d860 CR3: 00000001187f3000 CR4: 00000000000006e0 +[ 21.802985] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 21.804617] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 21.804692] Process modprobe (pid: 1089, threadinfo ffff8801194a2000, task ffff880118cfc4a0) +[ 21.804780] Stack: +[ 21.804849] 0000000000000000 ffff8801194a3df8 ffffffff8103273f ffffffff812c3970 +[ 21.805094] <0> ffffffffa0067520 ffffc900110f1000 ffffc900110f5348 ffffc900110f5260 +[ 21.805458] <0> ffffc900110f5948 ffff8801194a3df8 ffffffffa0067520 ffffc900110f1000 +[ 21.805892] Call Trace: +[ 21.805966] [] module_finalize+0x11f/0x160 +[ 21.806044] [] ? generic_swap+0x0/0x30 +[ 21.806122] [] load_module+0xc65/0x1140 +[ 21.806199] [] ? vfs_write+0x132/0x1a0 +[ 21.806274] [] sys_init_module+0x62/0x200 +[ 21.806349] [] system_call_fastpath+0x16/0x1b +[ 21.806424] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 21.810165] RIP [] module_bug_finalize+0x7e/0xd0 +[ 21.810296] RSP +[ 21.810367] CR2: ffffffffa0c8d860 +[ 21.810439] ---[ end trace 59bf57d2dcb14d7d ]--- +[ 21.982893] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro +[ 22.141883] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd44771/0xa40000/0xa0000 +[ 22.186367] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input14 +[ 22.218181] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 22.218401] IP: [] module_bug_finalize+0x7e/0xd0 +[ 22.218563] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 22.218861] Oops: 0002 [#2] SMP +[ 22.219043] last sysfs file: /sys/module/snd_hda_codec/initstate +[ 22.219118] CPU 3 +[ 22.219176] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 22.223041] +[ 22.223111] Pid: 1125, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 22.223204] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 22.223348] RSP: 0018:ffff88011bb7dd80 EFLAGS: 00010246 +[ 22.223423] RAX: ffffffffa015d3b8 RBX: ffffffff817d6acc RCX: 000000000000000b +[ 22.223500] RDX: ffffffffa0c8d858 RSI: ffffc9001113804a RDI: ffffffff817d6acd +[ 22.223576] RBP: ffff88011bb7dd88 R08: ffffffffa015d240 R09: ffffc900111387b8 +[ 22.223654] R10: ffffc90011138040 R11: 000000000000000c R12: ffffc900111381b8 +[ 22.223731] R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 22.223809] FS: 00007fa52f1e1700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +[ 22.223898] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 22.223971] CR2: ffffffffa0c8d860 CR3: 0000000119c91000 CR4: 00000000000006e0 +[ 22.224048] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 22.224124] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 22.224203] Process modprobe (pid: 1125, threadinfo ffff88011bb7c000, task ffff880117c496e0) +[ 22.224291] Stack: +[ 22.224361] 0000000000000000 ffff88011bb7ddf8 ffffffff8103273f ffffffff812c3970 +[ 22.224604] <0> ffffffffa015d240 ffffc90011134000 ffffc90011138138 ffffc90011138040 +[ 22.224971] <0> ffffc900111387b8 ffff88011bb7ddf8 ffffffffa015d240 ffffc90011134000 +[ 22.225404] Call Trace: +[ 22.225480] [] module_finalize+0x11f/0x160 +[ 22.225562] [] ? generic_swap+0x0/0x30 +[ 22.225641] [] load_module+0xc65/0x1140 +[ 22.225721] [] sys_init_module+0x62/0x200 +[ 22.225799] [] system_call_fastpath+0x16/0x1b +[ 22.225874] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 22.229636] RIP [] module_bug_finalize+0x7e/0xd0 +[ 22.229769] RSP +[ 22.229838] CR2: ffffffffa0c8d860 +[ 22.229911] ---[ end trace 59bf57d2dcb14d7e ]--- +[ 22.368296] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 22.368489] IP: [] module_bug_finalize+0x7e/0xd0 +[ 22.368621] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 22.368919] Oops: 0002 [#3] SMP +[ 22.369101] last sysfs file: /sys/module/snd_hda_intel/initstate +[ 22.369177] CPU 3 +[ 22.369235] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 22.373127] +[ 22.373196] Pid: 1129, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 22.373286] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 22.373430] RSP: 0018:ffff88011ac0dd80 EFLAGS: 00010246 +[ 22.373502] RAX: ffffffffa0c623b8 RBX: ffffffff817d6acc RCX: 000000000000000b +[ 22.373576] RDX: ffffffffa0c8d858 RSI: ffffc9001114204a RDI: ffffffff817d6acd +[ 22.373656] RBP: ffff88011ac0dd88 R08: ffffffffa0c62240 R09: ffffc900111427b8 +[ 22.373730] R10: ffffc90011142040 R11: 000000000000000c R12: ffffc900111421b8 +[ 22.373805] R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 22.373882] FS: 00007f532b66d700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +[ 22.373970] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 22.374045] CR2: ffffffffa0c8d860 CR3: 000000011b29c000 CR4: 00000000000006e0 +[ 22.374122] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 22.374201] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 22.374277] Process modprobe (pid: 1129, threadinfo ffff88011ac0c000, task ffff880117c4c4a0) +[ 22.374365] Stack: +[ 22.374434] 0000000000000000 ffff88011ac0ddf8 ffffffff8103273f ffffffff812c3970 +[ 22.374680] <0> ffffffffa0c62240 ffffc9001113e000 ffffc90011142138 ffffc90011142040 +[ 22.375050] <0> ffffc900111427b8 ffff88011ac0ddf8 ffffffffa0c62240 ffffc9001113e000 +[ 22.375477] Call Trace: +[ 22.375553] [] module_finalize+0x11f/0x160 +[ 22.375630] [] ? generic_swap+0x0/0x30 +[ 22.375711] [] load_module+0xc65/0x1140 +[ 22.375792] [] sys_init_module+0x62/0x200 +[ 22.375868] [] system_call_fastpath+0x16/0x1b +[ 22.375944] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 22.379693] RIP [] module_bug_finalize+0x7e/0xd0 +[ 22.379823] RSP +[ 22.379894] CR2: ffffffffa0c8d860 +[ 22.379966] ---[ end trace 59bf57d2dcb14d7f ]--- +[ 22.528220] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 22.528417] IP: [] module_bug_finalize+0x7e/0xd0 +[ 22.528558] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 22.528872] Oops: 0002 [#4] SMP +[ 22.529052] last sysfs file: /sys/module/snd_hda_codec/initstate +[ 22.529128] CPU 3 +[ 22.529187] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 22.533045] +[ 22.533116] Pid: 1140, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 22.533208] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 22.533355] RSP: 0018:ffff880127ea7d80 EFLAGS: 00010246 +[ 22.533428] RAX: ffffffffa0c813b8 RBX: ffffffff817d6acc RCX: 000000000000000b +[ 22.533502] RDX: ffffffffa0c8d858 RSI: ffffc9001114f04a RDI: ffffffff817d6acd +[ 22.533578] RBP: ffff880127ea7d88 R08: ffffffffa0c81240 R09: ffffc9001114f7b8 +[ 22.533657] R10: ffffc9001114f040 R11: 000000000000000c R12: ffffc9001114f1b8 +[ 22.533734] R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 22.533810] FS: 00007f2de6864700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +[ 22.533899] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 22.533974] CR2: ffffffffa0c8d860 CR3: 000000011ba76000 CR4: 00000000000006e0 +[ 22.534051] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 22.534127] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 22.534203] Process modprobe (pid: 1140, threadinfo ffff880127ea6000, task ffff880117c4db80) +[ 22.534292] Stack: +[ 22.534361] 0000000000000000 ffff880127ea7df8 ffffffff8103273f ffffffff812c3970 +[ 22.534603] <0> ffffffffa0c81240 ffffc9001114b000 ffffc9001114f138 ffffc9001114f040 +[ 22.534969] <0> ffffc9001114f7b8 ffff880127ea7df8 ffffffffa0c81240 ffffc9001114b000 +[ 22.535404] Call Trace: +[ 22.535480] [] module_finalize+0x11f/0x160 +[ 22.535561] [] ? generic_swap+0x0/0x30 +[ 22.535640] [] load_module+0xc65/0x1140 +[ 22.535717] [] sys_init_module+0x62/0x200 +[ 22.537351] [] system_call_fastpath+0x16/0x1b +[ 22.537426] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 22.541185] RIP [] module_bug_finalize+0x7e/0xd0 +[ 22.541320] RSP +[ 22.541391] CR2: ffffffffa0c8d860 +[ 22.541462] ---[ end trace 59bf57d2dcb14d80 ]--- +[ 22.677092] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 22.677285] IP: [] module_bug_finalize+0x7e/0xd0 +[ 22.677417] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 22.677744] Oops: 0002 [#5] SMP +[ 22.677934] last sysfs file: /sys/module/snd_hda_codec/initstate +[ 22.678050] CPU 3 +[ 22.678108] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P+) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 22.681981] +[ 22.682050] Pid: 1144, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 22.682140] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 22.682288] RSP: 0018:ffff88011976dd80 EFLAGS: 00010246 +[ 22.682362] RAX: ffffffffa0cee3b8 RBX: ffffffff817d6acc RCX: 000000000000000b +[ 22.682440] RDX: ffffffffa0c8d858 RSI: ffffc9001115904a RDI: ffffffff817d6acd +[ 22.682518] RBP: ffff88011976dd88 R08: ffffffffa0cee240 R09: ffffc900111597b8 +[ 22.682594] R10: ffffc90011159040 R11: 000000000000000c R12: ffffc900111591b8 +[ 22.682672] R13: 0000000000000000 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 22.682752] FS: 00007f0d3b909700(0000) GS:ffff880001ec0000(0000) knlGS:0000000000000000 +[ 22.682840] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 22.682916] CR2: ffffffffa0c8d860 CR3: 000000011acb9000 CR4: 00000000000006e0 +[ 22.682993] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 22.683070] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 22.683148] Process modprobe (pid: 1144, threadinfo ffff88011976c000, task ffff880117c48000) +[ 22.683236] Stack: +[ 22.683305] 0000000000000000 ffff88011976ddf8 ffffffff8103273f ffffffff812c3970 +[ 22.683548] <0> ffffffffa0cee240 ffffc90011155000 ffffc90011159138 ffffc90011159040 +[ 22.683917] <0> ffffc900111597b8 ffff88011976ddf8 ffffffffa0cee240 ffffc90011155000 +[ 22.684350] Call Trace: +[ 22.684423] [] module_finalize+0x11f/0x160 +[ 22.684498] [] ? generic_swap+0x0/0x30 +[ 22.684575] [] load_module+0xc65/0x1140 +[ 22.684652] [] sys_init_module+0x62/0x200 +[ 22.684727] [] system_call_fastpath+0x16/0x1b +[ 22.684803] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 22.688549] RIP [] module_bug_finalize+0x7e/0xd0 +[ 22.688680] RSP +[ 22.688750] CR2: ffffffffa0c8d860 +[ 22.688823] ---[ end trace 59bf57d2dcb14d81 ]--- +[ 22.816804] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) +[ 22.824579] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 22.824662] nvidia 0000:01:00.0: setting latency timer to 64 +[ 22.824743] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem +[ 22.824973] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 260.19.06 Mon Sep 13 04:29:19 PDT 2010 +[ 24.873612] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null) +[ 27.367257] type=1400 audit(1301935319.414:10): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1381 comm="apparmor_parser" +[ 27.367460] type=1400 audit(1301935319.414:11): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1382 comm="apparmor_parser" +[ 27.367746] type=1400 audit(1301935319.414:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/libvirt/virt-aa-helper" pid=1385 comm="apparmor_parser" +[ 27.367972] type=1400 audit(1301935319.414:13): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1382 comm="apparmor_parser" +[ 27.368338] type=1400 audit(1301935319.414:14): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1382 comm="apparmor_parser" +[ 27.369803] type=1400 audit(1301935319.414:15): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1386 comm="apparmor_parser" +[ 27.370004] type=1400 audit(1301935319.414:16): apparmor="STATUS" operation="profile_load" name="/usr/sbin/dhcpd3" pid=1387 comm="apparmor_parser" +[ 27.370472] type=1400 audit(1301935319.414:17): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1386 comm="apparmor_parser" +[ 27.370952] type=1400 audit(1301935319.414:18): apparmor="STATUS" operation="profile_load" name="/usr/sbin/libvirtd" pid=1388 comm="apparmor_parser" +[ 27.372068] type=1400 audit(1301935319.414:19): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/ntpd" pid=1389 comm="apparmor_parser" +[ 27.682504] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X +[ 27.710335] BUG: unable to handle kernel paging request at ffffffffa0c8d860 +[ 27.710341] IP: [] module_bug_finalize+0x7e/0xd0 +[ 27.710351] PGD 1a2c067 PUD 1a30063 PMD 1187c3067 PTE 0 +[ 27.710355] Oops: 0002 [#6] SMP +[ 27.710358] last sysfs file: /sys/bus/acpi/drivers/NVIDIA ACPI Video Driver/uevent +[ 27.710362] CPU 0 +[ 27.710363] Modules linked in: btusb tpm_infineon bluetooth snd_hda_codec_idt arc4 pcmcia iwlagn snd_hda_intel snd_hda_codec snd_hwdep snd_pcm iwlcore snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq nvidia(P) ppdev joydev mac80211 hp_wmi r852 sm_common snd_timer cfg80211 nand nand_ids nand_ecc video snd_seq_device tpm_tis yenta_socket tpm mtd output parport_pc tpm_bios pcmcia_rsrc pcmcia_core hp_accel lis3lv02d input_polldev snd intel_ips psmouse serio_raw xhci_hcd intel_agp soundcore snd_page_alloc lp parport usbhid hid firewire_ohci sdhci_pci e1000e firewire_core sdhci led_class crc_itu_t ahci libahci +[ 27.710407] +[ 27.710411] Pid: 1601, comm: modprobe Tainted: P D 2.6.35-28-generic #50-Ubuntu 1521/HP EliteBook 8540w +[ 27.710414] RIP: 0010:[] [] module_bug_finalize+0x7e/0xd0 +[ 27.710419] RSP: 0018:ffff880116f57d80 EFLAGS: 00010a02 +[ 27.710421] RAX: ffffffffa0b7d298 RBX: ffffffff817d6acc RCX: 0000000000000000 +[ 27.710423] RDX: ffffffffa0c8d858 RSI: ffffc900121358f0 RDI: ffffffff817d6ad8 +[ 27.710426] RBP: ffff880116f57d88 R08: ffffffffa0b7d120 R09: ffffc90012135e88 +[ 27.710428] R10: ffffc90012135828 R11: 000000000000000c R12: ffffc90012135ac8 +[ 27.710430] R13: ffffc90012135d48 R14: ffffffff817a67b7 R15: 0000000000000006 +[ 27.710433] FS: 00007f53be4b8700(0000) GS:ffff880001e00000(0000) knlGS:0000000000000000 +[ 27.710435] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 27.710437] CR2: ffffffffa0c8d860 CR3: 000000011794d000 CR4: 00000000000006f0 +[ 27.710440] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 27.710442] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 27.710445] Process modprobe (pid: 1601, threadinfo ffff880116f56000, task ffff880116f3db80) +[ 27.710447] Stack: +[ 27.710448] ffffc90012135e08 ffff880116f57df8 ffffffff8103273f ffffffff812c3970 +[ 27.710452] <0> ffffffffa0b7d120 ffffc900120f9000 ffffc90012135a48 ffffc90012135828 +[ 27.710456] <0> ffffc900121367c8 ffff880116f57df8 ffffffffa0b7d120 ffffc900120f9000 +[ 27.710460] Call Trace: +[ 27.710467] [] module_finalize+0x11f/0x160 +[ 27.710472] [] ? generic_swap+0x0/0x30 +[ 27.710480] [] load_module+0xc65/0x1140 +[ 27.710485] [] sys_init_module+0x62/0x200 +[ 27.710490] [] system_call_fastpath+0x16/0x1b +[ 27.710492] Code: 89 d9 49 8d 34 32 f3 a6 74 43 83 c0 01 49 83 c1 40 39 d0 72 e4 eb 06 90 90 90 90 90 90 48 8b 15 09 2d 7a 00 49 8d 80 78 01 00 00 <48> 89 42 08 49 89 90 78 01 00 00 49 c7 80 80 01 00 00 f0 ab a5 +[ 27.710521] RIP [] module_bug_finalize+0x7e/0xd0 +[ 27.710525] RSP +[ 27.710527] CR2: ffffffffa0c8d860 +[ 27.710529] ---[ end trace 59bf57d2dcb14d82 ]--- +[ 27.742164] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X +[ 27.742509] ADDRCONF(NETDEV_UP): eth0: link is not ready + +Bug: 783502 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.38-8-server (buildd@allspice) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu3) ) #42-Ubuntu SMP Mon Apr 11 03:49:04 UTC 2011 (Ubuntu 2.6.38-8.42-server 2.6.38.2) +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-2.6.38-8-server root=UUID=7876b32f-113f-4202-b4bf-445574646268 ro rootflags=subvol=@ quiet +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000dff80000 (usable) +[ 0.000000] BIOS-e820: 00000000dff8e000 - 00000000dff90000 (reserved) +[ 0.000000] BIOS-e820: 00000000dff90000 - 00000000dff9e000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000dff9e000 - 00000000dffd0000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000dffd0000 - 00000000dffde000 (reserved) +[ 0.000000] BIOS-e820: 00000000dffe0000 - 00000000e0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000220000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI present. +[ 0.000000] DMI: ASUS RS100-E5/PI2/P5BV-M/RS100-E5, BIOS 0211 08/14/2008 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x220000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-CBFFF write-protect +[ 0.000000] CC000-DFFFF uncachable +[ 0.000000] E0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0E0000000 mask FE0000000 uncachable +[ 0.000000] 1 base 000000000 mask E00000000 write-back +[ 0.000000] 2 base 200000000 mask FE0000000 write-back +[ 0.000000] 3 disabled +[ 0.000000] 4 disabled +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000e0000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] last_pfn = 0xdff80 max_arch_pfn = 0x400000000 +[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000dff80000 +[ 0.000000] 0000000000 - 00dfe00000 page 2M +[ 0.000000] 00dfe00000 - 00dff80000 page 4k +[ 0.000000] kernel direct mapping tables up to dff80000 @ 1fffa000-20000000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000220000000 +[ 0.000000] 0100000000 - 0220000000 page 2M +[ 0.000000] kernel direct mapping tables up to 220000000 @ dff76000-dff80000 +[ 0.000000] RAMDISK: 366fc000 - 37376000 +[ 0.000000] ACPI: RSDP 00000000000fa480 00014 (v00 ACPIAM) +[ 0.000000] ACPI: RSDT 00000000dff90000 0004C (v01 081408 RSDT2115 20080814 MSFT 00000097) +[ 0.000000] ACPI: FACP 00000000dff90200 00084 (v01 081408 FACP2115 20080814 MSFT 00000097) +[ 0.000000] ACPI: DSDT 00000000dff90440 05E75 (v01 S0062 S0062000 00000000 INTL 20051117) +[ 0.000000] ACPI: FACS 00000000dff9e000 00040 +[ 0.000000] ACPI: APIC 00000000dff90390 0006C (v01 081408 APIC2115 20080814 MSFT 00000097) +[ 0.000000] ACPI: MCFG 00000000dff90400 0003C (v01 081408 OEMMCFG 20080814 MSFT 00000097) +[ 0.000000] ACPI: OEMB 00000000dff9e040 00072 (v01 081408 OEMB2115 20080814 MSFT 00000097) +[ 0.000000] ACPI: HPET 00000000dff962c0 00038 (v01 081408 OEMHPET 20080814 MSFT 00000097) +[ 0.000000] ACPI: ASF! 00000000dff962f8 00099 (v32 LEGEND I865PASF 00000001 INTL 20051117) +[ 0.000000] ACPI: EINJ 00000000dff963a0 00130 (v01 AMIER AMI_EINJ 20080814 MSFT 00000097) +[ 0.000000] ACPI: BERT 00000000dff96530 00030 (v01 AMIER AMI_BERT 20080814 MSFT 00000097) +[ 0.000000] ACPI: ERST 00000000dff96560 001B0 (v01 AMIER AMI_ERST 20080814 MSFT 00000097) +[ 0.000000] ACPI: HEST 00000000dff96710 000A8 (v01 AMIER AMI_HEST 20080814 MSFT 00000097) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000220000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000220000000 +[ 0.000000] NODE_DATA [000000021fffb000 - 000000021fffffff] +[ 0.000000] [ffffea0000000000-ffffea00077fffff] PMD -> [ffff880217e00000-ffff88021effffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00220000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[3] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000dff80 +[ 0.000000] 0: 0x00100000 -> 0x00220000 +[ 0.000000] On node 0 totalpages: 2096911 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 6 pages reserved +[ 0.000000] DMA zone: 3921 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 899000 pages, LIFO batch:31 +[ 0.000000] Normal zone: 16128 pages used for memmap +[ 0.000000] Normal zone: 1163520 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled) +[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000 +[ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000dff80000 - 00000000dff8e000 +[ 0.000000] PM: Registered nosave memory: 00000000dff8e000 - 00000000dff90000 +[ 0.000000] PM: Registered nosave memory: 00000000dff90000 - 00000000dff9e000 +[ 0.000000] PM: Registered nosave memory: 00000000dff9e000 - 00000000dffd0000 +[ 0.000000] PM: Registered nosave memory: 00000000dffd0000 - 00000000dffde000 +[ 0.000000] PM: Registered nosave memory: 00000000dffde000 - 00000000dffe0000 +[ 0.000000] PM: Registered nosave memory: 00000000dffe0000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb00000 +[ 0.000000] PM: Registered nosave memory: 00000000ffb00000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at e0000000 (gap: e0000000:1ee00000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800dfc00000 s84416 r8192 d22080 u524288 +[ 0.000000] pcpu-alloc: s84416 r8192 d22080 u524288 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2066441 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.38-8-server root=UUID=7876b32f-113f-4202-b4bf-445574646268 ro rootflags=subvol=@ quiet +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240 +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 8177972k/8912896k available (6023k kernel code, 525252k absent, 209672k reserved, 5025k data, 880k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:712 16 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 83886080 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2832.622 MHz processor. +[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5665.24 BogoMIPS (lpj=28326220) +[ 0.000006] pid_max: default: 32768 minimum: 301 +[ 0.000026] Security Framework initialized +[ 0.000041] AppArmor: AppArmor initialized +[ 0.000043] Yama: becoming mindful. +[ 0.010350] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) +[ 0.013652] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.015189] Mount-cache hash table entries: 256 +[ 0.015313] Initializing cgroup subsys ns +[ 0.015317] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup. +[ 0.015320] Initializing cgroup subsys cpuacct +[ 0.015323] Initializing cgroup subsys memory +[ 0.015329] Initializing cgroup subsys devices +[ 0.015331] Initializing cgroup subsys freezer +[ 0.015333] Initializing cgroup subsys net_cls +[ 0.015334] Initializing cgroup subsys blkio +[ 0.015365] CPU: Physical Processor ID: 0 +[ 0.015366] CPU: Processor Core ID: 0 +[ 0.015368] mce: CPU supports 6 MCE banks +[ 0.015375] CPU0: Thermal monitoring enabled (TM2) +[ 0.015378] using mwait in idle threads. +[ 0.017533] ACPI: Core revision 20110112 +[ 0.020012] ftrace: allocating 24611 entries in 97 pages +[ 0.028514] Setting APIC routing to flat +[ 0.028812] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.129728] CPU0: Intel(R) Xeon(R) CPU X3360 @ 2.83GHz stepping 0a +[ 0.130000] APIC calibration not consistent with PM-Timer: 109ms instead of 100ms +[ 0.130000] APIC delta adjusted to PM-Timer: 2083093 (2291400) +[ 0.130000] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver. +[ 0.130000] ... version: 2 +[ 0.130000] ... bit width: 40 +[ 0.130000] ... generic registers: 2 +[ 0.130000] ... value mask: 000000ffffffffff +[ 0.130000] ... max period: 000000007fffffff +[ 0.130000] ... fixed-purpose events: 3 +[ 0.130000] ... event mask: 0000000700000003 +[ 0.130000] Booting Node 0, Processors #1 #2 #3 Ok. +[ 0.630006] Brought up 4 CPUs +[ 0.630009] Total of 4 processors activated (22663.40 BogoMIPS). +[ 0.632414] devtmpfs: initialized +[ 0.632414] print_constraints: dummy: +[ 0.632414] Time: 14:16:42 Date: 05/16/11 +[ 0.632414] NET: Registered protocol family 16 +[ 0.632414] Trying to unpack rootfs image as initramfs... +[ 0.632414] ACPI: bus type pci registered +[ 0.632414] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.632414] PCI: not using MMCONFIG +[ 0.632414] PCI: Using configuration type 1 for base access +[ 0.650417] bio: create slab at 0 +[ 0.650831] ACPI: EC: Look up EC in DSDT +[ 0.650914] \_SB_:_OSC evaluation returned wrong type +[ 0.650915] _OSC request data:1 7 +[ 0.651634] ACPI: Executed 1 blocks of module-level executable AML code +[ 0.653463] ACPI: SSDT 00000000dffb2910 001D2 (v01 AMI CPU1PM 00000001 INTL 20060113) +[ 0.653655] ACPI: Dynamic OEM Table Load: +[ 0.653658] ACPI: SSDT (null) 001D2 (v01 AMI CPU1PM 00000001 INTL 20060113) +[ 0.653787] ACPI: SSDT 00000000dffb2af0 00143 (v01 AMI CPU2PM 00000001 INTL 20060113) +[ 0.653978] ACPI: Dynamic OEM Table Load: +[ 0.653980] ACPI: SSDT (null) 00143 (v01 AMI CPU2PM 00000001 INTL 20060113) +[ 0.654119] ACPI: SSDT 00000000dffb2c40 00143 (v01 AMI CPU3PM 00000001 INTL 20060113) +[ 0.654311] ACPI: Dynamic OEM Table Load: +[ 0.654313] ACPI: SSDT (null) 00143 (v01 AMI CPU3PM 00000001 INTL 20060113) +[ 0.654452] ACPI: SSDT 00000000dffb2d90 00143 (v01 AMI CPU4PM 00000001 INTL 20060113) +[ 0.654646] ACPI: Dynamic OEM Table Load: +[ 0.654648] ACPI: SSDT (null) 00143 (v01 AMI CPU4PM 00000001 INTL 20060113) +[ 0.654768] ACPI: Interpreter enabled +[ 0.654770] ACPI: (supports S0 S1 S4 S5) +[ 0.654784] ACPI: Using IOAPIC for interrupt routing +[ 0.654801] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 0.655514] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources +[ 0.693370] ACPI: No dock devices found. +[ 0.693401] HEST: Table parsing has been initialized. +[ 0.693404] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.693536] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +[ 0.693673] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 0.693676] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 0.693678] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 0.693679] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] +[ 0.693681] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff] +[ 0.693692] pci 0000:00:00.0: [8086:29f0] type 0 class 0x000600 +[ 0.693728] pci 0000:00:01.0: [8086:29f1] type 1 class 0x000604 +[ 0.693751] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 0.693753] pci 0000:00:01.0: PME# disabled +[ 0.693787] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604 +[ 0.693831] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 0.693834] pci 0000:00:1c.0: PME# disabled +[ 0.693853] pci 0000:00:1c.4: [8086:27e0] type 1 class 0x000604 +[ 0.693899] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 0.693902] pci 0000:00:1c.4: PME# disabled +[ 0.693918] pci 0000:00:1c.5: [8086:27e2] type 1 class 0x000604 +[ 0.693963] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold +[ 0.693966] pci 0000:00:1c.5: PME# disabled +[ 0.693982] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03 +[ 0.694017] pci 0000:00:1d.0: reg 20: [io 0xcc00-0xcc1f] +[ 0.694041] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03 +[ 0.694074] pci 0000:00:1d.1: reg 20: [io 0xd000-0xd01f] +[ 0.694098] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03 +[ 0.694132] pci 0000:00:1d.2: reg 20: [io 0xd080-0xd09f] +[ 0.694165] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03 +[ 0.694181] pci 0000:00:1d.7: reg 10: [mem 0xfbcff800-0xfbcffbff] +[ 0.694238] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.694242] pci 0000:00:1d.7: PME# disabled +[ 0.694256] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604 +[ 0.694304] pci 0000:00:1f.0: [8086:27b8] type 0 class 0x000601 +[ 0.694376] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0280 (mask 00ff) +[ 0.694379] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 0013) +[ 0.694406] pci 0000:00:1f.1: [8086:27df] type 0 class 0x000101 +[ 0.694417] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] +[ 0.694425] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] +[ 0.694432] pci 0000:00:1f.1: reg 18: [io 0x08f0-0x08f7] +[ 0.694440] pci 0000:00:1f.1: reg 1c: [io 0x08f8-0x08fb] +[ 0.694447] pci 0000:00:1f.1: reg 20: [io 0xffa0-0xffaf] +[ 0.694475] pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101 +[ 0.694486] pci 0000:00:1f.2: reg 10: [io 0xdc00-0xdc07] +[ 0.694492] pci 0000:00:1f.2: reg 14: [io 0xd880-0xd883] +[ 0.694499] pci 0000:00:1f.2: reg 18: [io 0xd800-0xd807] +[ 0.694505] pci 0000:00:1f.2: reg 1c: [io 0xd480-0xd483] +[ 0.694512] pci 0000:00:1f.2: reg 20: [io 0xd400-0xd40f] +[ 0.694518] pci 0000:00:1f.2: reg 24: [mem 0xfbcffc00-0xfbcfffff] +[ 0.694536] pci 0000:00:1f.2: PME# supported from D3hot +[ 0.694539] pci 0000:00:1f.2: PME# disabled +[ 0.694550] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05 +[ 0.694595] pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f] +[ 0.694641] pci 0000:00:01.0: PCI bridge to [bus 05-05] +[ 0.694643] pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.694646] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.694649] pci 0000:00:01.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.694681] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 0.694684] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled) +[ 0.694687] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 0.694692] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.694742] pci 0000:03:00.0: [14e4:1659] type 0 class 0x000200 +[ 0.694763] pci 0000:03:00.0: reg 10: [mem 0xfbff0000-0xfbffffff 64bit] +[ 0.694845] pci 0000:03:00.0: PME# supported from D3hot D3cold +[ 0.694849] pci 0000:03:00.0: PME# disabled +[ 0.694868] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.694877] pci 0000:00:1c.4: PCI bridge to [bus 03-03] +[ 0.694880] pci 0000:00:1c.4: bridge window [io 0xf000-0x0000] (disabled) +[ 0.694884] pci 0000:00:1c.4: bridge window [mem 0xfbf00000-0xfbffffff] +[ 0.694889] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.694940] pci 0000:02:00.0: [14e4:1659] type 0 class 0x000200 +[ 0.694961] pci 0000:02:00.0: reg 10: [mem 0xfbef0000-0xfbefffff 64bit] +[ 0.695044] pci 0000:02:00.0: PME# supported from D3hot D3cold +[ 0.695048] pci 0000:02:00.0: PME# disabled +[ 0.695067] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' +[ 0.695075] pci 0000:00:1c.5: PCI bridge to [bus 02-02] +[ 0.695078] pci 0000:00:1c.5: bridge window [io 0xf000-0x0000] (disabled) +[ 0.695081] pci 0000:00:1c.5: bridge window [mem 0xfbe00000-0xfbefffff] +[ 0.695086] pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 0.695115] pci 0000:01:03.0: [18ca:0020] type 0 class 0x000300 +[ 0.695129] pci 0000:01:03.0: reg 10: [mem 0xf4000000-0xf7ffffff pref] +[ 0.695137] pci 0000:01:03.0: reg 14: [mem 0xfbdc0000-0xfbdfffff] +[ 0.695146] pci 0000:01:03.0: reg 18: [io 0xec00-0xec7f] +[ 0.695188] pci 0000:01:03.0: supports D1 D2 +[ 0.695223] pci 0000:00:1e.0: PCI bridge to [bus 01-01] (subtractive decode) +[ 0.695227] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff] +[ 0.695230] pci 0000:00:1e.0: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 0.695234] pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xf7ffffff 64bit pref] +[ 0.695236] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 0.695238] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 0.695240] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 0.695242] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode) +[ 0.695244] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xffffffff] (subtractive decode) +[ 0.695261] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.695329] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT] +[ 0.695353] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 0.695407] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT] +[ 0.695434] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT] +[ 0.695463] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT] +[ 0.695551] pci0000:00: Requesting ACPI _OSC control (0x1d) +[ 0.695716] pci0000:00: ACPI _OSC control (0x19) granted +[ 0.699362] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15) +[ 0.699402] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15) +[ 0.699438] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 *6 7 10 11 12 14 15) +[ 0.699473] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 10 11 12 14 15) +[ 0.699508] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.699544] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.699580] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. +[ 0.699619] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15) +[ 0.699710] vgaarb: device added: PCI:0000:01:03.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.699712] vgaarb: loaded +[ 0.699859] SCSI subsystem initialized +[ 0.699918] libata version 3.00 loaded. +[ 0.700022] usbcore: registered new interface driver usbfs +[ 0.700031] usbcore: registered new interface driver hub +[ 0.700044] usbcore: registered new device driver usb +[ 0.700063] wmi: Mapper loaded +[ 0.700063] PCI: Using ACPI for IRQ routing +[ 0.700063] PCI: pci_cache_line_size set to 64 bytes +[ 0.700116] reserve RAM buffer: 000000000009fc00 - 000000000009ffff +[ 0.700118] reserve RAM buffer: 00000000dff80000 - 00000000dfffffff +[ 0.700198] NetLabel: Initializing +[ 0.700200] NetLabel: domain hash size = 128 +[ 0.700201] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.700210] NetLabel: unlabeled traffic allowed by default +[ 0.700237] HPET: 3 timers in total, 0 timers will be used for per-cpu timer +[ 0.700242] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +[ 0.700245] hpet0: 3 comparators, 64-bit 14.318180 MHz counter +[ 0.720036] Switching to clocksource hpet +[ 0.735705] AppArmor: AppArmor Filesystem Enabled +[ 0.735734] pnp: PnP ACPI init +[ 0.735748] ACPI: bus type pnp registered +[ 0.735849] pnp 00:00: [bus 00-ff] +[ 0.735851] pnp 00:00: [io 0x0cf8-0x0cff] +[ 0.735853] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 0.735854] pnp 00:00: [io 0x0d00-0xffff window] +[ 0.735856] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 0.735858] pnp 00:00: [mem 0x000d0000-0x000dffff window] +[ 0.735859] pnp 00:00: [mem 0xe0000000-0xdfffffff window disabled] +[ 0.735861] pnp 00:00: [mem 0xf0000000-0xffffffff window] +[ 0.735911] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 0.735919] pnp 00:01: [mem 0xfed14000-0xfed19fff] +[ 0.735964] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved +[ 0.735966] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 0.735994] pnp 00:02: [dma 4] +[ 0.735995] pnp 00:02: [io 0x0000-0x000f] +[ 0.735997] pnp 00:02: [io 0x0081-0x0083] +[ 0.735998] pnp 00:02: [io 0x0087] +[ 0.735999] pnp 00:02: [io 0x0089-0x008b] +[ 0.736001] pnp 00:02: [io 0x008f] +[ 0.736002] pnp 00:02: [io 0x00c0-0x00df] +[ 0.736022] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 0.736030] pnp 00:03: [io 0x0070-0x0071] +[ 0.736040] pnp 00:03: [irq 8] +[ 0.736062] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 0.736068] pnp 00:04: [io 0x0061] +[ 0.736088] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active) +[ 0.736095] pnp 00:05: [io 0x00f0-0x00ff] +[ 0.736099] pnp 00:05: [irq 13] +[ 0.736120] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 0.736235] pnp 00:06: [io 0x0000-0xffffffffffffffff disabled] +[ 0.736237] pnp 00:06: [io 0x0000-0xffffffffffffffff disabled] +[ 0.736239] pnp 00:06: [io 0x0290-0x0297] +[ 0.736271] system 00:06: [io 0x0290-0x0297] has been reserved +[ 0.736274] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.736331] pnp 00:07: [io 0x0010-0x001f] +[ 0.736333] pnp 00:07: [io 0x0022-0x003f] +[ 0.736334] pnp 00:07: [io 0x0044-0x005f] +[ 0.736335] pnp 00:07: [io 0x0062-0x0063] +[ 0.736337] pnp 00:07: [io 0x0065-0x006f] +[ 0.736338] pnp 00:07: [io 0x0072-0x007f] +[ 0.736339] pnp 00:07: [io 0x0080] +[ 0.736341] pnp 00:07: [io 0x0084-0x0086] +[ 0.736342] pnp 00:07: [io 0x0088] +[ 0.736343] pnp 00:07: [io 0x008c-0x008e] +[ 0.736345] pnp 00:07: [io 0x0090-0x009f] +[ 0.736348] pnp 00:07: [io 0x00a2-0x00bf] +[ 0.736350] pnp 00:07: [io 0x00e0-0x00ef] +[ 0.736351] pnp 00:07: [io 0x04d0-0x04d1] +[ 0.736352] pnp 00:07: [io 0x0800-0x087f] +[ 0.736354] pnp 00:07: [io 0x0000-0xffffffffffffffff disabled] +[ 0.736355] pnp 00:07: [io 0x0480-0x04bf] +[ 0.736357] pnp 00:07: [mem 0xfed1c000-0xfed1ffff] +[ 0.736358] pnp 00:07: [mem 0xfed20000-0xfed3ffff] +[ 0.736360] pnp 00:07: [mem 0xfed45000-0xfed89fff] +[ 0.736405] system 00:07: [io 0x04d0-0x04d1] has been reserved +[ 0.736407] system 00:07: [io 0x0800-0x087f] has been reserved +[ 0.736409] system 00:07: [io 0x0480-0x04bf] has been reserved +[ 0.736411] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 0.736413] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 0.736415] system 00:07: [mem 0xfed45000-0xfed89fff] has been reserved +[ 0.736418] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.736460] pnp 00:08: [mem 0xfed00000-0xfed003ff] +[ 0.736484] pnp 00:08: Plug and Play ACPI device, IDs PNP0103 (active) +[ 0.736520] pnp 00:09: [mem 0xffb00000-0xffbfffff] +[ 0.736522] pnp 00:09: [mem 0xfff00000-0xffffffff] +[ 0.736544] pnp 00:09: Plug and Play ACPI device, IDs INT0800 (active) +[ 0.736576] pnp 00:0a: [mem 0xffc00000-0xffefffff] +[ 0.736616] system 00:0a: [mem 0xffc00000-0xffefffff] has been reserved +[ 0.736618] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.736640] pnp 00:0b: [io 0x0060] +[ 0.736642] pnp 00:0b: [io 0x0064] +[ 0.736646] pnp 00:0b: [irq 1] +[ 0.736674] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active) +[ 0.736714] pnp 00:0c: [irq 12] +[ 0.736736] pnp 00:0c: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active) +[ 0.736927] pnp 00:0d: [irq 4] +[ 0.736929] pnp 00:0d: [dma 0 disabled] +[ 0.736931] pnp 00:0d: [io 0x03f8-0x03ff] +[ 0.736981] pnp 00:0d: Plug and Play ACPI device, IDs PNP0501 (active) +[ 0.737168] pnp 00:0e: [irq 3] +[ 0.737170] pnp 00:0e: [dma 0 disabled] +[ 0.737171] pnp 00:0e: [io 0x02f8-0x02ff] +[ 0.737220] pnp 00:0e: Plug and Play ACPI device, IDs PNP0501 (active) +[ 0.737279] pnp 00:0f: [mem 0xfec00000-0xfec00fff] +[ 0.737281] pnp 00:0f: [mem 0xfee00000-0xfee00fff] +[ 0.737315] system 00:0f: [mem 0xfec00000-0xfec00fff] could not be reserved +[ 0.737317] system 00:0f: [mem 0xfee00000-0xfee00fff] has been reserved +[ 0.737319] system 00:0f: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.737353] pnp 00:10: [mem 0xe0000000-0xefffffff] +[ 0.737391] system 00:10: [mem 0xe0000000-0xefffffff] has been reserved +[ 0.737394] system 00:10: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 0.737515] pnp 00:11: [mem 0x00000000-0x0009ffff] +[ 0.737517] pnp 00:11: [mem 0x000c0000-0x000cffff] +[ 0.737519] pnp 00:11: [mem 0x000e0000-0x000fffff] +[ 0.737520] pnp 00:11: [mem 0x00100000-0xdfffffff] +[ 0.737522] pnp 00:11: [mem 0x00000000-0xffffffffffffffff disabled] +[ 0.737563] system 00:11: [mem 0x00000000-0x0009ffff] could not be reserved +[ 0.737565] system 00:11: [mem 0x000c0000-0x000cffff] has been reserved +[ 0.737567] system 00:11: [mem 0x000e0000-0x000fffff] could not be reserved +[ 0.737569] system 00:11: [mem 0x00100000-0xdfffffff] could not be reserved +[ 0.737572] system 00:11: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 0.737667] pnp: PnP ACPI: found 18 devices +[ 0.737669] ACPI: ACPI bus type pnp unregistered +[ 0.739808] Switched to NOHz mode on CPU #3 +[ 0.739865] Switched to NOHz mode on CPU #2 +[ 0.739904] Switched to NOHz mode on CPU #0 +[ 0.739972] Switched to NOHz mode on CPU #1 +[ 0.743451] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf01fffff] +[ 0.743454] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf0200000-0xf03fffff 64bit pref] +[ 0.743457] pci 0000:00:1c.4: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.743460] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf0600000-0xf07fffff 64bit pref] +[ 0.743462] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff] +[ 0.743464] pci 0000:00:1c.4: BAR 13: assigned [io 0x2000-0x2fff] +[ 0.743466] pci 0000:00:1c.5: BAR 13: assigned [io 0x3000-0x3fff] +[ 0.743468] pci 0000:00:01.0: PCI bridge to [bus 05-05] +[ 0.743470] pci 0000:00:01.0: bridge window [io disabled] +[ 0.743472] pci 0000:00:01.0: bridge window [mem disabled] +[ 0.743475] pci 0000:00:01.0: bridge window [mem pref disabled] +[ 0.743478] pci 0000:00:1c.0: PCI bridge to [bus 04-04] +[ 0.743480] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff] +[ 0.743484] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff] +[ 0.743487] pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff 64bit pref] +[ 0.743492] pci 0000:00:1c.4: PCI bridge to [bus 03-03] +[ 0.743494] pci 0000:00:1c.4: bridge window [io 0x2000-0x2fff] +[ 0.743498] pci 0000:00:1c.4: bridge window [mem 0xfbf00000-0xfbffffff] +[ 0.743501] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.743505] pci 0000:00:1c.5: PCI bridge to [bus 02-02] +[ 0.743508] pci 0000:00:1c.5: bridge window [io 0x3000-0x3fff] +[ 0.743512] pci 0000:00:1c.5: bridge window [mem 0xfbe00000-0xfbefffff] +[ 0.743515] pci 0000:00:1c.5: bridge window [mem 0xf0600000-0xf07fffff 64bit pref] +[ 0.743521] pci 0000:00:1e.0: PCI bridge to [bus 01-01] +[ 0.743523] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff] +[ 0.743527] pci 0000:00:1e.0: bridge window [mem 0xfbd00000-0xfbdfffff] +[ 0.743530] pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xf7ffffff 64bit pref] +[ 0.743543] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.743546] pci 0000:00:01.0: setting latency timer to 64 +[ 0.743550] pci 0000:00:1c.0: enabling device (0104 -> 0107) +[ 0.743553] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.743557] pci 0000:00:1c.0: setting latency timer to 64 +[ 0.743561] pci 0000:00:1c.4: enabling device (0106 -> 0107) +[ 0.743564] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.743566] pci 0000:00:1c.4: setting latency timer to 64 +[ 0.743571] pci 0000:00:1c.5: enabling device (0106 -> 0107) +[ 0.743575] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.743578] pci 0000:00:1c.5: setting latency timer to 64 +[ 0.743583] pci 0000:00:1e.0: setting latency timer to 64 +[ 0.743587] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 0.743588] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 0.743590] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.743592] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.743593] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xffffffff] +[ 0.743595] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff] +[ 0.743597] pci_bus 0000:04: resource 1 [mem 0xf0000000-0xf01fffff] +[ 0.743599] pci_bus 0000:04: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref] +[ 0.743601] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff] +[ 0.743602] pci_bus 0000:03: resource 1 [mem 0xfbf00000-0xfbffffff] +[ 0.743604] pci_bus 0000:03: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref] +[ 0.743606] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] +[ 0.743608] pci_bus 0000:02: resource 1 [mem 0xfbe00000-0xfbefffff] +[ 0.743610] pci_bus 0000:02: resource 2 [mem 0xf0600000-0xf07fffff 64bit pref] +[ 0.743611] pci_bus 0000:01: resource 0 [io 0xe000-0xefff] +[ 0.743613] pci_bus 0000:01: resource 1 [mem 0xfbd00000-0xfbdfffff] +[ 0.743615] pci_bus 0000:01: resource 2 [mem 0xf4000000-0xf7ffffff 64bit pref] +[ 0.743617] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7] +[ 0.743618] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff] +[ 0.743620] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff] +[ 0.743622] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff] +[ 0.743623] pci_bus 0000:01: resource 8 [mem 0xf0000000-0xffffffff] +[ 0.743652] NET: Registered protocol family 2 +[ 0.743840] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.744953] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 0.747985] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 0.748404] TCP: Hash tables configured (established 524288 bind 65536) +[ 0.748406] TCP reno registered +[ 0.748419] UDP hash table entries: 4096 (order: 5, 131072 bytes) +[ 0.748483] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) +[ 0.748650] NET: Registered protocol family 1 +[ 0.748755] pci 0000:01:03.0: Boot video device +[ 0.748758] PCI: CLS 32 bytes, default 64 +[ 0.748761] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.748763] Placing 64MB software IO TLB between ffff8800dbc00000 - ffff8800dfc00000 +[ 0.748764] software IO TLB at phys 0xdbc00000 - 0xdfc00000 +[ 0.749140] audit: initializing netlink socket (disabled) +[ 0.749150] type=2000 audit(1305555401.740:1): initialized +[ 0.759657] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.761103] VFS: Disk quotas dquot_6.5.2 +[ 0.761145] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.761628] fuse init (API version 7.16) +[ 0.761695] msgmni has been set to 15972 +[ 0.761939] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.761979] io scheduler noop registered +[ 0.761981] io scheduler deadline registered (default) +[ 0.762011] io scheduler cfq registered +[ 0.762093] pcieport 0000:00:01.0: setting latency timer to 64 +[ 0.762120] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X +[ 0.762161] pcieport 0000:00:1c.0: setting latency timer to 64 +[ 0.762191] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X +[ 0.762252] pcieport 0000:00:1c.4: setting latency timer to 64 +[ 0.762282] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X +[ 0.762341] pcieport 0000:00:1c.5: setting latency timer to 64 +[ 0.762370] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X +[ 0.762442] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.762488] pciehp 0000:00:1c.0:pcie04: HPC vendor_id 8086 device_id 27d0 ss_vid 1043 ss_did 819e +[ 0.762516] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded +[ 0.762525] pciehp 0000:00:1c.4:pcie04: HPC vendor_id 8086 device_id 27e0 ss_vid 1043 ss_did 819e +[ 0.762543] pciehp 0000:00:1c.4:pcie04: service driver pciehp loaded +[ 0.762551] pciehp 0000:00:1c.5:pcie04: HPC vendor_id 8086 device_id 27e2 ss_vid 1043 ss_did 819e +[ 0.762574] pciehp 0000:00:1c.5:pcie04: service driver pciehp loaded +[ 0.762580] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.762618] intel_idle: MWAIT substates: 0x22220 +[ 0.762619] intel_idle: does not run on family 6 model 23 +[ 0.762700] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0 +[ 0.762706] ACPI: Power Button [PWRB] +[ 0.762740] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.762742] ACPI: Power Button [PWRF] +[ 0.762873] ACPI: acpi_idle registered with cpuidle +[ 0.764032] APEI: Can not request iomem region <00000000dffb20ea-00000000dffb20ec> for GARs. +[ 0.764089] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.784582] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.830039] Freeing initrd memory: 12776k freed +[ 0.960469] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 1.011879] 00:0d: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 1.032401] 00:0e: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A +[ 1.032590] Linux agpgart interface v0.103 +[ 1.033483] brd: module loaded +[ 1.033887] loop: module loaded +[ 1.033950] i2c-core: driver [adp5520] using legacy suspend method +[ 1.033952] i2c-core: driver [adp5520] using legacy resume method +[ 1.034028] ata_piix 0000:00:1f.1: version 2.13 +[ 1.034042] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 1.034068] ata_piix 0000:00:1f.1: setting latency timer to 64 +[ 1.034359] scsi0 : ata_piix +[ 1.034455] scsi1 : ata_piix +[ 1.035153] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 +[ 1.035155] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 +[ 1.035176] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.035181] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] +[ 1.035227] ata_piix 0000:00:1f.2: setting latency timer to 64 +[ 1.035477] scsi2 : ata_piix +[ 1.035556] scsi3 : ata_piix +[ 1.036374] ata3: SATA max UDMA/133 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 19 +[ 1.036376] ata4: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 19 +[ 1.036628] Fixed MDIO Bus: probed +[ 1.036649] PPP generic driver version 2.4.2 +[ 1.036680] tun: Universal TUN/TAP device driver, 1.6 +[ 1.036681] tun: (C) 1999-2004 Max Krasnyansky +[ 1.036751] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 1.036766] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 1.036792] ehci_hcd 0000:00:1d.7: setting latency timer to 64 +[ 1.036795] ehci_hcd 0000:00:1d.7: EHCI Host Controller +[ 1.036825] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 +[ 1.036868] ehci_hcd 0000:00:1d.7: using broken periodic workaround +[ 1.036877] ehci_hcd 0000:00:1d.7: debug port 1 +[ 1.040763] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported +[ 1.040775] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfbcff800 +[ 1.060011] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 +[ 1.060148] hub 1-0:1.0: USB hub found +[ 1.060153] hub 1-0:1.0: 6 ports detected +[ 1.060216] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 1.060225] uhci_hcd: USB Universal Host Controller Interface driver +[ 1.060261] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23 +[ 1.060265] uhci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 1.060268] uhci_hcd 0000:00:1d.0: UHCI Host Controller +[ 1.060302] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 1.070034] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000cc00 +[ 1.070152] hub 2-0:1.0: USB hub found +[ 1.070157] hub 2-0:1.0: 2 ports detected +[ 1.070214] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 1.070219] uhci_hcd 0000:00:1d.1: setting latency timer to 64 +[ 1.070221] uhci_hcd 0000:00:1d.1: UHCI Host Controller +[ 1.070254] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 +[ 1.070290] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d000 +[ 1.070378] hub 3-0:1.0: USB hub found +[ 1.070381] hub 3-0:1.0: 2 ports detected +[ 1.070429] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 1.070433] uhci_hcd 0000:00:1d.2: setting latency timer to 64 +[ 1.070436] uhci_hcd 0000:00:1d.2: UHCI Host Controller +[ 1.070461] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 +[ 1.070503] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d080 +[ 1.070588] hub 4-0:1.0: USB hub found +[ 1.070591] hub 4-0:1.0: 2 ports detected +[ 1.070700] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 +[ 1.073181] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 1.073189] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 1.073307] mousedev: PS/2 mouse device common for all mice +[ 1.073408] rtc_cmos 00:03: RTC can wake from S4 +[ 1.073517] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 1.073539] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 1.073647] device-mapper: uevent: version 1.0.3 +[ 1.073707] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com +[ 1.073816] device-mapper: multipath: version 1.2.0 loaded +[ 1.073823] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 1.073981] cpuidle: using governor ladder +[ 1.073987] cpuidle: using governor menu +[ 1.074195] TCP cubic registered +[ 1.074281] NET: Registered protocol family 10 +[ 1.074651] NET: Registered protocol family 17 +[ 1.074668] Registering the dns_resolver key type +[ 1.075187] PM: Hibernation image not present or could not be loaded. +[ 1.075200] registered taskstats version 1 +[ 1.075398] Magic number: 11:399:283 +[ 1.075518] rtc_cmos 00:03: setting system clock to 2011-05-16 14:16:42 UTC (1305555402) +[ 1.075521] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 1.075522] EDD information not available. +[ 1.099404] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +[ 1.240329] ata3.00: ATA-8: WDC WD1503FYYS-02W0B0, 01.01D01, max UDMA/133 +[ 1.240332] ata3.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.240477] ata3.01: ATA-8: WDC WD1503FYYS-02W0B0, 01.01D01, max UDMA/133 +[ 1.240480] ata3.01: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32) +[ 1.260350] ata3.00: configured for UDMA/133 +[ 1.280237] ata3.01: configured for UDMA/133 +[ 1.280343] scsi 2:0:0:0: Direct-Access ATA WDC WD1503FYYS-0 01.0 PQ: 0 ANSI: 5 +[ 1.280489] sd 2:0:0:0: Attached scsi generic sg0 type 0 +[ 1.280493] sd 2:0:0:0: [sda] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB) +[ 1.280563] sd 2:0:0:0: [sda] Write Protect is off +[ 1.280566] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 1.280604] scsi 2:0:1:0: Direct-Access ATA WDC WD1503FYYS-0 01.0 PQ: 0 ANSI: 5 +[ 1.280609] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.280720] sd 2:0:1:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB) +[ 1.280724] sd 2:0:1:0: Attached scsi generic sg1 type 0 +[ 1.280789] sd 2:0:1:0: [sdb] Write Protect is off +[ 1.280791] sd 2:0:1:0: [sdb] Mode Sense: 00 3a 00 00 +[ 1.285048] sd 2:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 1.306064] sda: sda1 sda2 < sda5 > sda3 +[ 1.319105] sd 2:0:0:0: [sda] Attached SCSI disk +[ 1.319107] sdb: sdb1 +[ 1.319297] sd 2:0:1:0: [sdb] Attached SCSI disk +[ 1.320580] Freeing unused kernel memory: 880k freed +[ 1.320789] Write protecting the kernel read-only data: 10240k +[ 1.321207] Freeing unused kernel memory: 104k freed +[ 1.325137] Freeing unused kernel memory: 1416k freed +[ 1.340924] <30>udev[77]: starting version 167 +[ 1.357836] Btrfs loaded +[ 1.371852] tg3.c:v3.116 (December 3, 2010) +[ 1.371868] tg3 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 1.371877] tg3 0000:03:00.0: setting latency timer to 64 +[ 1.380033] usb 1-4: new high speed USB device using ehci_hcd and address 2 +[ 1.536646] Initializing USB Mass Storage driver... +[ 1.536785] scsi4 : usb-storage 1-4:1.0 +[ 1.536892] usbcore: registered new interface driver usb-storage +[ 1.536893] USB Mass Storage support registered. +[ 1.565803] tg3 0000:03:00.0: eth0: Tigon3 [partno(BCM95721) rev 4201] (PCI Express) MAC address bc:ae:c5:27:b1:6f +[ 1.565806] tg3 0000:03:00.0: eth0: attached PHY is 5750 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.565809] tg3 0000:03:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.565811] tg3 0000:03:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.565828] tg3 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 1.565836] tg3 0000:02:00.0: setting latency timer to 64 +[ 1.601240] device fsid 2423f112fb37678-686264745544bfb4 devid 2 transid 5185 /dev/sdb1 +[ 1.656312] device fsid 2423f112fb37678-686264745544bfb4 devid 1 transid 5185 /dev/sda3 +[ 1.725936] tg3 0000:02:00.0: eth1: Tigon3 [partno(BCM95721) rev 4201] (PCI Express) MAC address bc:ae:c5:27:b2:37 +[ 1.725939] tg3 0000:02:00.0: eth1: attached PHY is 5750 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.725942] tg3 0000:02:00.0: eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.725944] tg3 0000:02:00.0: eth1: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.737211] device fsid 2423f112fb37678-686264745544bfb4 devid 1 transid 5185 /dev/disk/by-uuid/7876b32f-113f-4202-b4bf-445574646268 +[ 1.750051] Refined TSC clocksource calibration: 2833.010 MHz. +[ 1.750055] Switching to clocksource tsc +[ 2.530853] scsi 4:0:0:0: CD-ROM ASUS SBC-06D1S-U A301 PQ: 0 ANSI: 0 +[ 2.535586] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 2.535589] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 2.535691] sr 4:0:0:0: Attached scsi CD-ROM sr0 +[ 2.535739] sr 4:0:0:0: Attached scsi generic sg2 type 5 +[ 3.143783] <30>udev[324]: starting version 167 +[ 3.172131] lp: driver loaded but no devices found +[ 3.186355] EDAC MC: Ver: 2.1.0 Apr 11 2011 +[ 3.211004] Adding 8387580k swap on /dev/sda5. Priority:-1 extents:1 across:8387580k +[ 3.213599] EDAC MC0: Giving out device to 'i3200_edac' 'i3200': DEV 0000:00:00.0 +[ 3.218559] intel_rng: FWH not detected +[ 3.218910] xgifb: module is from the staging directory, the quality is unknown, you have been warned. +[ 3.220374] +[ 3.220375] XGIfb_init_module +[ 3.220376] XGIfb: Mode 'none' not supported anymore. Using default. +[ 3.220382] XGIfb: Options (null) +[ 3.220407] XGIfb: Relocate IO address: ec00 [00000000] +[ 3.220421] XGIfb:chipid = 31 +[ 3.220424] No ROM +[ 3.220424] XGIfb: Video ROM not found +[ 3.220430] XGIfb: SR14=51 DramSzie 2000000 ChannelNum 1 +[ 3.225726] XGIfb: Framebuffer at 0xf4000000, mapped to 0xffffc90011a00000, size 32768k +[ 3.225728] XGIfb: MMIO at 0xfbdc0000, mapped to 0xffffc90013a80000, size 256k +[ 3.225729] XGIfb: XGIInitNew() ...12345 +[ 3.225736] BUG: unable to handle kernel NULL pointer dereference at 0000000000000065 +[ 3.225741] IP: [] ReadVBIOSTablData+0x29/0x410 [xgifb] +[ 3.225751] PGD 20b5aa067 PUD 20b5a9067 PMD 0 +[ 3.225756] Oops: 0000 [#1] SMP +[ 3.225759] last sysfs file: /sys/devices/virtual/block/loop4/removable +[ 3.225763] CPU 0 +[ 3.225764] Modules linked in: xgifb(C+) intel_rng(-) hed i3200_edac edac_core lp parport usb_storage tg3 btrfs zlib_deflate libcrc32c +[ 3.225775] +[ 3.225777] Pid: 414, comm: modprobe Tainted: G C 2.6.38-8-server #42-Ubuntu ASUS RS100-E5/PI2/P5BV-M/RS100-E5 +[ 3.225784] RIP: 0010:[] [] ReadVBIOSTablData+0x29/0x410 [xgifb] +[ 3.225793] RSP: 0018:ffff88020c81f8c8 EFLAGS: 00010246 +[ 3.225795] RAX: 0000000000000000 RBX: ffffffffa012eb80 RCX: 000000000003ffff +[ 3.225798] RDX: 0000000000000000 RSI: ffff88020c81f8d8 RDI: 0000000000000031 +[ 3.225802] RBP: ffff88020c81f8c8 R08: 0000000000000000 R09: 000000000000c0c3 +[ 3.225805] R10: 0000000000000000 R11: 0000000000000003 R12: 00000000fffffffb +[ 3.225808] R13: ffff88020e9b6090 R14: ffff88020e9b6200 R15: 000000000040506a +[ 3.225811] FS: 00007fddc20b9720(0000) GS:ffff8800dfc00000(0000) knlGS:0000000000000000 +[ 3.225815] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 3.225819] CR2: 0000000000000065 CR3: 000000020b5a0000 CR4: 00000000000406f0 +[ 3.225822] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 3.225826] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 3.225829] Process modprobe (pid: 414, threadinfo ffff88020c81e000, task ffff88020cde96e0) +[ 3.225833] Stack: +[ 3.225835] ffff88020c81fca8 ffffffffa01132da ffff88021fffcc00 000000000000ec44 +[ 3.225840] 000000000000ec54 000000000000ec40 000000000000ec4e 000000000000ec42 +[ 3.225845] ffff880200000041 000000000000ec4a 000000000000ec46 000000000000ec47 +[ 3.225851] Call Trace: +[ 3.225857] [] XGIInitNew+0x1ea/0xaa0 [xgifb] +[ 3.225864] [] ? build_zonelists+0x1f0/0x290 +[ 3.225869] [] ? put_dec+0x59/0x60 +[ 3.225873] [] ? vsnprintf+0x35e/0x620 +[ 3.225881] [] xgifb_probe+0x716/0x1051 [xgifb] +[ 3.225885] [] local_pci_probe+0x5f/0xd0 +[ 3.225889] [] pci_device_probe+0x129/0x130 +[ 3.225895] [] ? driver_sysfs_add+0x7a/0xb0 +[ 3.225898] [] really_probe+0x68/0x190 +[ 3.225902] [] driver_probe_device+0x45/0x70 +[ 3.225906] [] __driver_attach+0xab/0xb0 +[ 3.225910] [] ? __driver_attach+0x0/0xb0 +[ 3.225914] [] bus_for_each_dev+0x5e/0x90 +[ 3.225918] [] driver_attach+0x1e/0x20 +[ 3.225921] [] bus_add_driver+0xc5/0x280 +[ 3.225927] [] ? xgifb_init_module+0x0/0xb55 [xgifb] +[ 3.225931] [] driver_register+0x76/0x140 +[ 3.225937] [] ? xgifb_init_module+0x0/0xb55 [xgifb] +[ 3.225941] [] __pci_register_driver+0x56/0xd0 +[ 3.225946] [] ? xgifb_init_module+0x0/0xb55 [xgifb] +[ 3.225952] [] xgifb_init_module+0x7f/0xb55 [xgifb] +[ 3.225958] [] do_one_initcall+0x45/0x190 +[ 3.225964] [] sys_init_module+0xfb/0x250 +[ 3.225968] [] system_call_fastpath+0x16/0x1b +[ 3.225971] Code: 00 00 55 48 89 e5 0f 1f 44 00 00 48 8b 96 f0 00 00 00 40 80 ff 31 74 0a c9 c3 0f 1f 84 00 00 00 00 00 66 c7 86 b8 00 00 00 00 00 <0f> b6 42 65 a8 01 74 e5 66 c7 86 b8 00 00 00 01 00 0f b6 8a 16 +[ 3.226002] RIP [] ReadVBIOSTablData+0x29/0x410 [xgifb] +[ 3.226009] RSP +[ 3.226012] CR2: 0000000000000065 +[ 3.226015] ---[ end trace 6a41527bece9f972 ]--- +[ 3.227554] ioremap error for 0xdffb2000-0xdffb3000, requested 0x10, got 0x0 +[ 3.227561] GHES: probe of GHES.0 failed with error -5 +[ 3.227571] ioremap error for 0xdffb2000-0xdffb3000, requested 0x10, got 0x0 +[ 3.237165] GHES: probe of GHES.1 failed with error -5 +[ 3.251498] leds_ss4200: no LED devices found +[ 3.673732] type=1400 audit(1305555405.086:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=528 comm="apparmor_parser" +[ 3.673745] type=1400 audit(1305555405.086:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=527 comm="apparmor_parser" +[ 3.674409] type=1400 audit(1305555405.086:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=528 comm="apparmor_parser" +[ 3.674418] type=1400 audit(1305555405.086:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=527 comm="apparmor_parser" +[ 3.674836] type=1400 audit(1305555405.086:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=528 comm="apparmor_parser" +[ 3.674849] type=1400 audit(1305555405.086:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=527 comm="apparmor_parser" +[ 3.675423] type=1400 audit(1305555405.086:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=526 comm="apparmor_parser" +[ 3.676095] type=1400 audit(1305555405.086:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=526 comm="apparmor_parser" +[ 3.676525] type=1400 audit(1305555405.086:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=526 comm="apparmor_parser" +[ 3.865656] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input3 +[ 4.004531] tg3 0000:03:00.0: irq 44 for MSI/MSI-X +[ 4.175914] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 4.210041] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 2, labels ":": i3200 UE +[ 4.210051] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 4, labels ":": i3200 UE +[ 4.407207] vesafb: cannot reserve video memory at 0xf4000000 +[ 4.407715] vesafb: framebuffer at 0xf4000000, mapped to 0xffffc90013b00000, using 3072k, total 3072k +[ 4.407720] vesafb: mode is 1024x768x32, linelength=4096, pages=0 +[ 4.407723] vesafb: scrolling: redraw +[ 4.407726] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 4.407850] Console: switching to colour frame buffer device 128x48 +[ 4.528749] fb0: VESA VGA frame buffer device +[ 4.551117] device fsid 2423f112fb37678-686264745544bfb4 devid 2 transid 5185 /dev/sdb1 +[ 4.553004] device fsid 2423f112fb37678-686264745544bfb4 devid 2 transid 5185 /dev/sdb1 +[ 4.581489] device fsid 2423f112fb37678-686264745544bfb4 devid 1 transid 5185 /dev/sda3 +[ 4.583319] device fsid 2423f112fb37678-686264745544bfb4 devid 1 transid 5185 /dev/sda3 +[ 5.210028] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 0, labels ":": i3200 UE +[ 5.211919] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 4, labels ":": i3200 UE +[ 6.210048] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 0, labels ":": i3200 UE +[ 6.211923] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 4, labels ":": i3200 UE +[ 7.070109] tg3 0000:03:00.0: eth0: Link is up at 1000 Mbps, full duplex +[ 7.071598] tg3 0000:03:00.0: eth0: Flow control is on for TX and on for RX +[ 7.073806] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 7.210022] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 0, labels ":": i3200 UE +[ 7.210026] EDAC MC0: UE page 0x0, offset 0x0, grain 1073741824, row 4, labels ":": i3200 UE +[ 7.230313] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) +[ 7.236558] device fsid 2423f112fb37678-686264745544bfb4 devid 2 transid 5185 /dev/sdb1 +[ 7.486411] type=1400 audit(1305555408.896:11): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=698 comm="apparmor_parser" +[ 7.490021] type=1400 audit(1305555408.906:12): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=698 comm="apparmor_parser" +[ 7.493981] type=1400 audit(1305555408.906:13): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=698 comm="apparmor_parser" +[ 7.523807] type=1400 audit(1305555408.936:14): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=699 comm="apparmor_parser" + +Bug: 798795 + +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.38-8-generic (buildd@allspice) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu3) ) #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 (Ubuntu 2.6.38-8.42-generic 2.6.38.2) +[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic root=UUID=AC42C9A542C9749C loop=/ubuntu/disks/root.disk ro quiet splash +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d000 (usable) +[ 0.000000] BIOS-e820: 000000000009d000 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bf682000 (usable) +[ 0.000000] BIOS-e820: 00000000bf682000 - 00000000bf6bf000 (reserved) +[ 0.000000] BIOS-e820: 00000000bf6bf000 - 00000000bf75d000 (usable) +[ 0.000000] BIOS-e820: 00000000bf75d000 - 00000000bf7bf000 (ACPI NVS) +[ 0.000000] BIOS-e820: 00000000bf7bf000 - 00000000bf7e1000 (usable) +[ 0.000000] BIOS-e820: 00000000bf7e1000 - 00000000bf7ff000 (ACPI data) +[ 0.000000] BIOS-e820: 00000000bf7ff000 - 00000000bf800000 (usable) +[ 0.000000] BIOS-e820: 00000000bf800000 - 00000000c0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed1b000 - 00000000fed20000 (reserved) +[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) +[ 0.000000] BIOS-e820: 00000000ffe80000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000140000000 (usable) +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] DMI 2.6 present. +[ 0.000000] DMI: Hewlett-Packard HP Pavilion dv6 Notebook PC/3659, BIOS F.17 02/06/2010 +[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) +[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) +[ 0.000000] No AGP bridge found +[ 0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-EFFFF write-through +[ 0.000000] F0000-FFFFF write-combining +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 000000000 mask F80000000 write-back +[ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect +[ 0.000000] 2 base 080000000 mask FC0000000 write-back +[ 0.000000] 3 base 0BF800000 mask FFF800000 uncachable +[ 0.000000] 4 base 100000000 mask FC0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] last_pfn = 0xbf800 max_arch_pfn = 0x400000000 +[ 0.000000] initial memory mapped : 0 - 20000000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000bf800000 +[ 0.000000] 0000000000 - 00bf800000 page 2M +[ 0.000000] kernel direct mapping tables up to bf800000 @ 1fffc000-20000000 +[ 0.000000] init_memory_mapping: 0000000100000000-0000000140000000 +[ 0.000000] 0100000000 - 0140000000 page 2M +[ 0.000000] kernel direct mapping tables up to 140000000 @ bf7db000-bf7e1000 +[ 0.000000] RAMDISK: 366e4000 - 3736a000 +[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM) +[ 0.000000] ACPI: XSDT 00000000bf7fe120 00074 (v01 HPQOEM SLIC-MPC 00000001 01000013) +[ 0.000000] ACPI: FACP 00000000bf7fc000 000F4 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: DSDT 00000000bf7eb000 0DC73 (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: FACS 00000000bf76f000 00040 +[ 0.000000] ACPI: ASF! 00000000bf7fd000 000A5 (v32 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: HPET 00000000bf7fb000 00038 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: APIC 00000000bf7fa000 0008C (v02 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: MCFG 00000000bf7f9000 0003C (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: SLIC 00000000bf7ea000 00176 (v01 HPQOEM SLIC-MPC 00000001 SLIC 000F4240) +[ 0.000000] ACPI: BOOT 00000000bf7e7000 00028 (v01 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: ASPT 00000000bf7e3000 00034 (v04 HPQOEM SLIC-MPC 00000001 MSFT 01000013) +[ 0.000000] ACPI: WDRT 00000000bf7e2000 00047 (v01 HPQOEM SLIC-MPC 00000000 MSFT 01000013) +[ 0.000000] ACPI: SSDT 00000000bf7e1000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] No NUMA configuration found +[ 0.000000] Faking a node at 0000000000000000-0000000140000000 +[ 0.000000] Initmem setup node 0 0000000000000000-0000000140000000 +[ 0.000000] NODE_DATA [000000013fffb000 - 000000013fffffff] +[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff88013be00000-ffff88013f5fffff] on node 0 +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000010 -> 0x00001000 +[ 0.000000] DMA32 0x00001000 -> 0x00100000 +[ 0.000000] Normal 0x00100000 -> 0x00140000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[6] active PFN ranges +[ 0.000000] 0: 0x00000010 -> 0x0000009d +[ 0.000000] 0: 0x00000100 -> 0x000bf682 +[ 0.000000] 0: 0x000bf6bf -> 0x000bf75d +[ 0.000000] 0: 0x000bf7bf -> 0x000bf7e1 +[ 0.000000] 0: 0x000bf7ff -> 0x000bf800 +[ 0.000000] 0: 0x00100000 -> 0x00140000 +[ 0.000000] On node 0 totalpages: 1046224 +[ 0.000000] DMA zone: 56 pages used for memmap +[ 0.000000] DMA zone: 6 pages reserved +[ 0.000000] DMA zone: 3919 pages, LIFO batch:0 +[ 0.000000] DMA32 zone: 14280 pages used for memmap +[ 0.000000] DMA32 zone: 765819 pages, LIFO batch:31 +[ 0.000000] Normal zone: 3584 pages used for memmap +[ 0.000000] Normal zone: 258560 pages, LIFO batch:31 +[ 0.000000] ACPI: PM-Timer IO Port: 0x408 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 40 +[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 +[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 +[ 0.000000] PM: Registered nosave memory: 00000000bf682000 - 00000000bf6bf000 +[ 0.000000] PM: Registered nosave memory: 00000000bf75d000 - 00000000bf7bf000 +[ 0.000000] PM: Registered nosave memory: 00000000bf7e1000 - 00000000bf7ff000 +[ 0.000000] PM: Registered nosave memory: 00000000bf800000 - 00000000c0000000 +[ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000 +[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 +[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000feb00000 +[ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000 +[ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000 +[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 +[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000 +[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000 +[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000 +[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1b000 +[ 0.000000] PM: Registered nosave memory: 00000000fed1b000 - 00000000fed20000 +[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 +[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 +[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe80000 +[ 0.000000] PM: Registered nosave memory: 00000000ffe80000 - 0000000100000000 +[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800bf400000 s84416 r8192 d22080 u262144 +[ 0.000000] pcpu-alloc: s84416 r8192 d22080 u262144 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1028298 +[ 0.000000] Policy zone: Normal +[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic root=UUID=AC42C9A542C9749C loop=/ubuntu/disks/root.disk ro quiet splash +[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) +[ 0.000000] Checking aperture... +[ 0.000000] No AGP bridge found +[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area +[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! +[ 0.000000] Memory: 4034328k/5242880k available (5940k kernel code, 1057984k absent, 150568k reserved, 5017k data, 956k init) +[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. +[ 0.000000] RCU-based detection of stalled CPUs is disabled. +[ 0.000000] NR_IRQS:16640 nr_irqs:744 16 +[ 0.000000] Extended CMOS year: 2000 +[ 0.000000] Console: colour VGA+ 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] allocated 41943040 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] hpet clockevent registered +[ 0.000000] Fast TSC calibration using PIT +[ 0.010000] Detected 1596.094 MHz processor. +[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.18 BogoMIPS (lpj=15960940) +[ 0.000008] pid_max: default: 32768 minimum: 301 +[ 0.000034] Security Framework initialized +[ 0.000049] AppArmor: AppArmor initialized +[ 0.000051] Yama: becoming mindful. +[ 0.000540] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) +[ 0.001680] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 0.002157] Mount-cache hash table entries: 256 +[ 0.002283] Initializing cgroup subsys ns +[ 0.002287] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup. +[ 0.002290] Initializing cgroup subsys cpuacct +[ 0.002295] Initializing cgroup subsys memory +[ 0.002302] Initializing cgroup subsys devices +[ 0.002305] Initializing cgroup subsys freezer +[ 0.002307] Initializing cgroup subsys net_cls +[ 0.002309] Initializing cgroup subsys blkio +[ 0.002341] CPU: Physical Processor ID: 0 +[ 0.002342] CPU: Processor Core ID: 0 +[ 0.002348] mce: CPU supports 9 MCE banks +[ 0.002360] CPU0: Thermal monitoring enabled (TM1) +[ 0.002367] using mwait in idle threads. +[ 0.004927] ACPI: Core revision 20110112 +[ 0.034513] ftrace: allocating 24314 entries in 96 pages +[ 0.044701] Setting APIC routing to flat +[ 0.045075] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.144997] CPU0: Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz stepping 05 +[ 0.257726] Performance Events: PEBS fmt1+, Nehalem events, Intel PMU driver. +[ 0.257734] ... version: 3 +[ 0.257735] ... bit width: 48 +[ 0.257737] ... generic registers: 4 +[ 0.257739] ... value mask: 0000ffffffffffff +[ 0.257741] ... max period: 000000007fffffff +[ 0.257743] ... fixed-purpose events: 3 +[ 0.257744] ... event mask: 000000070000000f +[ 0.258294] Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 Ok. +[ 1.946420] Brought up 8 CPUs +[ 1.946424] Total of 8 processors activated (25538.29 BogoMIPS). +[ 1.950604] devtmpfs: initialized +[ 1.951812] print_constraints: dummy: +[ 1.951844] Time: 2:02:17 Date: 06/17/11 +[ 1.951882] NET: Registered protocol family 16 +[ 1.951984] Trying to unpack rootfs image as initramfs... +[ 1.951998] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 1.952001] ACPI: bus type pci registered +[ 1.952092] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 1.952096] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 2.010914] PCI: Using configuration type 1 for base access +[ 2.011852] bio: create slab at 0 +[ 2.014784] ACPI: EC: Look up EC in DSDT +[ 2.017388] ACPI: Executed 1 blocks of module-level executable AML code +[ 2.086232] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored +[ 2.092685] ACPI: SSDT 00000000bf691a98 002DA (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 2.093366] ACPI: Dynamic OEM Table Load: +[ 2.093370] ACPI: SSDT (null) 002DA (v01 PmRef Cpu0Ist 00003000 INTL 20051117) +[ 2.093601] ACPI: SSDT 00000000bf690618 005CD (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 2.094260] ACPI: Dynamic OEM Table Load: +[ 2.094263] ACPI: SSDT (null) 005CD (v01 PmRef Cpu0Cst 00003001 INTL 20051117) +[ 2.206491] ACPI: SSDT 00000000bf691718 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 2.207213] ACPI: Dynamic OEM Table Load: +[ 2.207216] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117) +[ 2.246240] ACPI: SSDT 00000000bf68fd98 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 2.246944] ACPI: Dynamic OEM Table Load: +[ 2.246947] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117) +[ 2.264585] Freeing initrd memory: 12824k freed +[ 2.311935] ACPI: Interpreter enabled +[ 2.311941] ACPI: (supports S0 S3 S4 S5) +[ 2.311993] ACPI: Using IOAPIC for interrupt routing +[ 2.342715] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62 +[ 2.342942] ACPI: No dock devices found. +[ 2.342944] HEST: Table not found. +[ 2.342947] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 2.343491] \_SB_.PCI0:_OSC invalid UUID +[ 2.343494] _OSC request data:1 8 1f +[ 2.343499] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 2.344391] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] +[ 2.344394] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] +[ 2.344397] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] +[ 2.344401] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfeafffff] +[ 2.344416] pci 0000:00:00.0: [8086:d132] type 0 class 0x000600 +[ 2.344473] pci 0000:00:03.0: [8086:d138] type 1 class 0x000604 +[ 2.344521] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 2.344525] pci 0000:00:03.0: PME# disabled +[ 2.344555] pci 0000:00:08.0: [8086:d155] type 0 class 0x000880 +[ 2.344616] pci 0000:00:08.1: [8086:d156] type 0 class 0x000880 +[ 2.344677] pci 0000:00:08.2: [8086:d157] type 0 class 0x000880 +[ 2.344735] pci 0000:00:08.3: [8086:d158] type 0 class 0x000880 +[ 2.344803] pci 0000:00:10.0: [8086:d150] type 0 class 0x000880 +[ 2.344853] pci 0000:00:10.1: [8086:d151] type 0 class 0x000880 +[ 2.344947] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03 +[ 2.345299] pci 0000:00:1a.0: reg 10: [mem 0xdb105c00-0xdb105fff] +[ 2.347321] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 2.347330] pci 0000:00:1a.0: PME# disabled +[ 2.347372] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403 +[ 2.347394] pci 0000:00:1b.0: reg 10: [mem 0xdb100000-0xdb103fff 64bit] +[ 2.347461] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold +[ 2.347470] pci 0000:00:1b.0: PME# disabled +[ 2.347500] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604 +[ 2.347564] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 2.347572] pci 0000:00:1c.0: PME# disabled +[ 2.347603] pci 0000:00:1c.1: [8086:3b44] type 1 class 0x000604 +[ 2.347667] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold +[ 2.347675] pci 0000:00:1c.1: PME# disabled +[ 2.347708] pci 0000:00:1c.4: [8086:3b4a] type 1 class 0x000604 +[ 2.347772] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 2.347781] pci 0000:00:1c.4: PME# disabled +[ 2.347813] pci 0000:00:1c.7: [8086:3b50] type 1 class 0x000604 +[ 2.347877] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold +[ 2.347886] pci 0000:00:1c.7: PME# disabled +[ 2.347926] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03 +[ 2.348269] pci 0000:00:1d.0: reg 10: [mem 0xdb105800-0xdb105bff] +[ 2.350303] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 2.350312] pci 0000:00:1d.0: PME# disabled +[ 2.350342] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604 +[ 2.350426] pci 0000:00:1f.0: [8086:3b03] type 0 class 0x000601 +[ 2.350567] pci 0000:00:1f.2: [8086:3b2f] type 0 class 0x000106 +[ 2.350592] pci 0000:00:1f.2: reg 10: [io 0x7048-0x704f] +[ 2.350606] pci 0000:00:1f.2: reg 14: [io 0x7054-0x7057] +[ 2.350619] pci 0000:00:1f.2: reg 18: [io 0x7040-0x7047] +[ 2.350633] pci 0000:00:1f.2: reg 1c: [io 0x7050-0x7053] +[ 2.350647] pci 0000:00:1f.2: reg 20: [io 0x7020-0x703f] +[ 2.350660] pci 0000:00:1f.2: reg 24: [mem 0xdb105000-0xdb1057ff] +[ 2.350706] pci 0000:00:1f.2: PME# supported from D3hot +[ 2.350715] pci 0000:00:1f.2: PME# disabled +[ 2.350750] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05 +[ 2.350771] pci 0000:00:1f.3: reg 10: [mem 0xdb106000-0xdb1060ff 64bit] +[ 2.350799] pci 0000:00:1f.3: reg 20: [io 0x7000-0x701f] +[ 2.350886] pci 0000:01:00.0: [10de:0a28] type 0 class 0x000300 +[ 2.350897] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff] +[ 2.350908] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref] +[ 2.350919] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref] +[ 2.350927] pci 0000:01:00.0: reg 24: [io 0x6000-0x607f] +[ 2.350935] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref] +[ 2.350978] pci 0000:01:00.1: [10de:0be2] type 0 class 0x000403 +[ 2.350989] pci 0000:01:00.1: reg 10: [mem 0xd3000000-0xd3003fff] +[ 2.351062] pci 0000:00:03.0: PCI bridge to [bus 01-01] +[ 2.351066] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] +[ 2.351070] pci 0000:00:03.0: bridge window [mem 0xd2000000-0xd30fffff] +[ 2.351076] pci 0000:00:03.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 2.351339] pci 0000:02:00.0: [8086:4239] type 0 class 0x000280 +[ 2.351578] pci 0000:02:00.0: reg 10: [mem 0xda100000-0xda101fff 64bit] +[ 2.352594] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold +[ 2.352635] pci 0000:02:00.0: PME# disabled +[ 2.352952] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 2.352961] pci 0000:00:1c.0: bridge window [io 0x5000-0x5fff] +[ 2.352970] pci 0000:00:1c.0: bridge window [mem 0xda100000-0xdb0fffff] +[ 2.352981] pci 0000:00:1c.0: bridge window [mem 0xd3100000-0xd40fffff 64bit pref] +[ 2.353070] pci 0000:03:00.0: [10ec:8168] type 0 class 0x000200 +[ 2.353169] pci 0000:03:00.0: reg 10: [io 0x4000-0x40ff] +[ 2.353204] pci 0000:03:00.0: reg 18: [mem 0xd4104000-0xd4104fff 64bit pref] +[ 2.353229] pci 0000:03:00.0: reg 20: [mem 0xd4100000-0xd4103fff 64bit pref] +[ 2.353247] pci 0000:03:00.0: reg 30: [mem 0xffff0000-0xffffffff pref] +[ 2.353298] pci 0000:03:00.0: supports D1 D2 +[ 2.353300] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold +[ 2.353311] pci 0000:03:00.0: PME# disabled +[ 2.353351] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 2.353360] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff] +[ 2.353369] pci 0000:00:1c.1: bridge window [mem 0xd9100000-0xda0fffff] +[ 2.353381] pci 0000:00:1c.1: bridge window [mem 0xd4100000-0xd50fffff 64bit pref] +[ 2.353494] pci 0000:04:00.0: [197b:2380] type 0 class 0x000c00 +[ 2.353569] pci 0000:04:00.0: reg 10: [mem 0xd8100000-0xd81007ff] +[ 2.353621] pci 0000:04:00.0: reg 14: [mem 0xd8100d00-0xd8100d7f] +[ 2.353777] pci 0000:04:00.0: reg 20: [mem 0xd8100c80-0xd8100cff] +[ 2.353829] pci 0000:04:00.0: reg 24: [mem 0xd8100c00-0xd8100c7f] +[ 2.354146] pci 0000:04:00.1: [197b:2382] type 0 class 0x000880 +[ 2.354208] pci 0000:04:00.1: reg 10: [mem 0xd8100b00-0xd8100bff] +[ 2.354665] pci 0000:04:00.2: [197b:2381] type 0 class 0x000805 +[ 2.354711] pci 0000:04:00.2: reg 10: [mem 0xd8100a00-0xd8100aff] +[ 2.355163] pci 0000:04:00.3: [197b:2383] type 0 class 0x000880 +[ 2.355208] pci 0000:04:00.3: reg 10: [mem 0xd8100900-0xd81009ff] +[ 2.355660] pci 0000:04:00.4: [197b:2384] type 0 class 0x000880 +[ 2.355726] pci 0000:04:00.4: reg 10: [mem 0xd8100800-0xd81008ff] +[ 2.356201] pci 0000:00:1c.4: PCI bridge to [bus 04-04] +[ 2.356210] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 2.356219] pci 0000:00:1c.4: bridge window [mem 0xd8100000-0xd90fffff] +[ 2.356230] pci 0000:00:1c.4: bridge window [mem 0xd5100000-0xd60fffff 64bit pref] +[ 2.356283] pci 0000:00:1c.7: PCI bridge to [bus 05-08] +[ 2.356292] pci 0000:00:1c.7: bridge window [io 0x2000-0x2fff] +[ 2.356301] pci 0000:00:1c.7: bridge window [mem 0xd7100000-0xd80fffff] +[ 2.356312] pci 0000:00:1c.7: bridge window [mem 0xd6100000-0xd70fffff 64bit pref] +[ 2.356382] pci 0000:00:1e.0: PCI bridge to [bus 09-09] (subtractive decode) +[ 2.356391] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) +[ 2.356400] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) +[ 2.356412] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) +[ 2.356415] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) +[ 2.356418] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) +[ 2.356421] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) +[ 2.356424] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode) +[ 2.356458] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 2.356608] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT] +[ 2.356659] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT] +[ 2.356682] ACPI Warning: For \_SB_.PCI0.P0P1._PRT: Return Package has no elements (empty) (20110112/nspredef-456) +[ 2.356723] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT] +[ 2.356767] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT] +[ 2.356821] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT] +[ 2.356893] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP08._PRT] +[ 2.356998] \_SB_.PCI0:_OSC invalid UUID +[ 2.357000] _OSC request data:1 19 1f +[ 2.365956] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff]) +[ 2.366050] pci 0000:ff:00.0: [8086:2c52] type 0 class 0x000600 +[ 2.366075] pci 0000:ff:00.1: [8086:2c81] type 0 class 0x000600 +[ 2.366101] pci 0000:ff:02.0: [8086:2c90] type 0 class 0x000600 +[ 2.366127] pci 0000:ff:02.1: [8086:2c91] type 0 class 0x000600 +[ 2.366156] pci 0000:ff:03.0: [8086:2c98] type 0 class 0x000600 +[ 2.366178] pci 0000:ff:03.1: [8086:2c99] type 0 class 0x000600 +[ 2.366200] pci 0000:ff:03.4: [8086:2c9c] type 0 class 0x000600 +[ 2.366223] pci 0000:ff:04.0: [8086:2ca0] type 0 class 0x000600 +[ 2.366245] pci 0000:ff:04.1: [8086:2ca1] type 0 class 0x000600 +[ 2.366266] pci 0000:ff:04.2: [8086:2ca2] type 0 class 0x000600 +[ 2.366288] pci 0000:ff:04.3: [8086:2ca3] type 0 class 0x000600 +[ 2.366312] pci 0000:ff:05.0: [8086:2ca8] type 0 class 0x000600 +[ 2.366335] pci 0000:ff:05.1: [8086:2ca9] type 0 class 0x000600 +[ 2.366357] pci 0000:ff:05.2: [8086:2caa] type 0 class 0x000600 +[ 2.366379] pci 0000:ff:05.3: [8086:2cab] type 0 class 0x000600 +[ 2.367058] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15) +[ 2.367128] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 *5 6 7 11 12 14 15) +[ 2.367197] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11 +[ 2.367266] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15) +[ 2.367330] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. +[ 2.367399] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15) +[ 2.367466] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15) +[ 2.367534] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. +[ 2.367662] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 2.367675] vgaarb: loaded +[ 2.367862] SCSI subsystem initialized +[ 2.367915] libata version 3.00 loaded. +[ 2.367965] usbcore: registered new interface driver usbfs +[ 2.367975] usbcore: registered new interface driver hub +[ 2.367998] usbcore: registered new device driver usb +[ 2.368221] wmi: Mapper loaded +[ 2.368223] PCI: Using ACPI for IRQ routing +[ 2.368226] PCI: pci_cache_line_size set to 64 bytes +[ 2.368489] reserve RAM buffer: 000000000009d000 - 000000000009ffff +[ 2.368491] reserve RAM buffer: 00000000bf682000 - 00000000bfffffff +[ 2.368495] reserve RAM buffer: 00000000bf75d000 - 00000000bfffffff +[ 2.368498] reserve RAM buffer: 00000000bf7e1000 - 00000000bfffffff +[ 2.368500] reserve RAM buffer: 00000000bf800000 - 00000000bfffffff +[ 2.368606] NetLabel: Initializing +[ 2.368608] NetLabel: domain hash size = 128 +[ 2.368609] NetLabel: protocols = UNLABELED CIPSOv4 +[ 2.368621] NetLabel: unlabeled traffic allowed by default +[ 2.368707] HPET: 8 timers in total, 5 timers will be used for per-cpu timer +[ 2.368717] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0 +[ 2.368724] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 2.376043] hpet: hpet2 irq 40 for MSI +[ 2.376165] hpet: hpet3 irq 41 for MSI +[ 2.396148] hpet: hpet4 irq 42 for MSI +[ 2.406157] hpet: hpet5 irq 43 for MSI +[ 2.416145] hpet: hpet6 irq 44 for MSI +[ 2.436183] Switching to clocksource hpet +[ 2.443007] AppArmor: AppArmor Filesystem Enabled +[ 2.443030] pnp: PnP ACPI init +[ 2.443047] ACPI: bus type pnp registered +[ 2.443848] pnp 00:00: [bus 00-fe] +[ 2.443851] pnp 00:00: [io 0x0000-0x0cf7 window] +[ 2.443854] pnp 00:00: [io 0x0cf8-0x0cff] +[ 2.443856] pnp 00:00: [io 0x0d00-0xffff window] +[ 2.443859] pnp 00:00: [mem 0x000a0000-0x000bffff window] +[ 2.443861] pnp 00:00: [mem 0x000c0000-0x000c3fff window] +[ 2.443864] pnp 00:00: [mem 0x000c4000-0x000c7fff window] +[ 2.443866] pnp 00:00: [mem 0x000c8000-0x000cbfff window] +[ 2.443869] pnp 00:00: [mem 0x000cc000-0x000cffff window] +[ 2.443871] pnp 00:00: [mem 0x000d0000-0x000d3fff window] +[ 2.443874] pnp 00:00: [mem 0x000d4000-0x000d7fff window] +[ 2.443876] pnp 00:00: [mem 0x000d8000-0x000dbfff window] +[ 2.443879] pnp 00:00: [mem 0x000dc000-0x000dffff window] +[ 2.443881] pnp 00:00: [mem 0x000e0000-0x000e3fff window] +[ 2.443884] pnp 00:00: [mem 0x000e4000-0x000e7fff window] +[ 2.443886] pnp 00:00: [mem 0x000e8000-0x000ebfff window] +[ 2.443889] pnp 00:00: [mem 0x000ec000-0x000effff window] +[ 2.443891] pnp 00:00: [mem 0x000f0000-0x000fffff window] +[ 2.443894] pnp 00:00: [mem 0xc0000000-0xfeafffff window] +[ 2.443896] pnp 00:00: [mem 0xfed40000-0xfed44fff window] +[ 2.443963] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) +[ 2.444051] pnp 00:01: [io 0x0380-0x038e] +[ 2.444064] pnp 00:01: [irq 4] +[ 2.444098] pnp 00:01: Plug and Play ACPI device, IDs ENE0100 (active) +[ 2.444112] pnp 00:02: [io 0x0000-0x001f] +[ 2.444115] pnp 00:02: [io 0x0081-0x0091] +[ 2.444117] pnp 00:02: [io 0x0093-0x009f] +[ 2.444119] pnp 00:02: [io 0x00c0-0x00df] +[ 2.444121] pnp 00:02: [dma 4] +[ 2.444156] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active) +[ 2.444166] pnp 00:03: [mem 0xff000000-0xffffffff] +[ 2.444198] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active) +[ 2.444344] pnp 00:04: [mem 0xfed00000-0xfed003ff] +[ 2.444380] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active) +[ 2.444393] pnp 00:05: [io 0x00f0] +[ 2.444403] pnp 00:05: [irq 13] +[ 2.444437] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) +[ 2.444450] pnp 00:06: [io 0x002e-0x002f] +[ 2.444453] pnp 00:06: [io 0x004e-0x004f] +[ 2.444455] pnp 00:06: [io 0x0061] +[ 2.444457] pnp 00:06: [io 0x0063] +[ 2.444459] pnp 00:06: [io 0x0065] +[ 2.444461] pnp 00:06: [io 0x0067] +[ 2.444462] pnp 00:06: [io 0x0070] +[ 2.444464] pnp 00:06: [io 0x0080] +[ 2.444466] pnp 00:06: [io 0x0092] +[ 2.444468] pnp 00:06: [io 0x00b2-0x00b3] +[ 2.444471] pnp 00:06: [io 0x0680-0x069f] +[ 2.444473] pnp 00:06: [io 0x0800-0x080f] +[ 2.444475] pnp 00:06: [io 0xffff] +[ 2.444477] pnp 00:06: [io 0xffff] +[ 2.444479] pnp 00:06: [io 0x0400-0x047f] +[ 2.444481] pnp 00:06: [io 0x0500-0x057f] +[ 2.444483] pnp 00:06: [io 0x164e-0x164f] +[ 2.444485] pnp 00:06: [io 0x0380-0x038e] +[ 2.444576] system 00:06: [io 0x0680-0x069f] has been reserved +[ 2.444579] system 00:06: [io 0x0800-0x080f] has been reserved +[ 2.444582] system 00:06: [io 0xffff] has been reserved +[ 2.444585] system 00:06: [io 0xffff] has been reserved +[ 2.444588] system 00:06: [io 0x0400-0x047f] has been reserved +[ 2.444591] system 00:06: [io 0x0500-0x057f] has been reserved +[ 2.444594] system 00:06: [io 0x164e-0x164f] has been reserved +[ 2.444596] system 00:06: [io 0x0380-0x038e] has been reserved +[ 2.444600] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.444614] pnp 00:07: [io 0x0070-0x0077] +[ 2.444624] pnp 00:07: [irq 8] +[ 2.444659] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 2.444671] pnp 00:08: [io 0x0060] +[ 2.444673] pnp 00:08: [io 0x0064] +[ 2.444679] pnp 00:08: [irq 1] +[ 2.444716] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) +[ 2.444738] pnp 00:09: [irq 12] +[ 2.444779] pnp 00:09: Plug and Play ACPI device, IDs SYN1e10 SYN1e00 SYN0002 PNP0f13 (active) +[ 2.444971] pnp 00:0a: [irq 23] +[ 2.445022] pnp 00:0a: Plug and Play ACPI device, IDs HPQ0004 (active) +[ 2.445293] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff] +[ 2.445297] pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled] +[ 2.445299] pnp 00:0b: [mem 0xfed1b000-0xfed1bfff] +[ 2.445302] pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled] +[ 2.445304] pnp 00:0b: [mem 0xe0000000-0xefffffff] +[ 2.445306] pnp 00:0b: [mem 0xfed20000-0xfed3ffff] +[ 2.445309] pnp 00:0b: [mem 0xfed90000-0xfed8ffff disabled] +[ 2.445312] pnp 00:0b: [mem 0xfed45000-0xfed8ffff] +[ 2.445316] pnp 00:0b: [mem 0xff000000-0xffffffff] +[ 2.445319] pnp 00:0b: [mem 0xfee00000-0xfeefffff] +[ 2.445321] pnp 00:0b: [mem 0xdb200000-0xdb200fff] +[ 2.445414] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved +[ 2.445418] system 00:0b: [mem 0xfed1b000-0xfed1bfff] has been reserved +[ 2.445421] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved +[ 2.445424] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved +[ 2.445427] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved +[ 2.445431] system 00:0b: [mem 0xff000000-0xffffffff] could not be reserved +[ 2.445434] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved +[ 2.445437] system 00:0b: [mem 0xdb200000-0xdb200fff] has been reserved +[ 2.445441] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.445646] pnp 00:0c: [bus ff] +[ 2.445697] pnp 00:0c: Plug and Play ACPI device, IDs PNP0a03 (active) +[ 2.445718] pnp: PnP ACPI: found 13 devices +[ 2.445720] ACPI: ACPI bus type pnp unregistered +[ 2.446067] Switched to NOHz mode on CPU #6 +[ 2.446089] Switched to NOHz mode on CPU #0 +[ 2.446111] Switched to NOHz mode on CPU #5 +[ 2.446123] Switched to NOHz mode on CPU #7 +[ 2.446170] Switched to NOHz mode on CPU #3 +[ 2.446172] Switched to NOHz mode on CPU #4 +[ 2.446174] Switched to NOHz mode on CPU #2 +[ 2.446176] Switched to NOHz mode on CPU #1 +[ 2.446190] CE: hpet3 increased min_delta_ns to 7500 nsec +[ 2.446193] CE: hpet5 increased min_delta_ns to 7500 nsec +[ 2.446218] CE: hpet5 increased min_delta_ns to 11250 nsec +[ 2.446220] CE: hpet3 increased min_delta_ns to 11250 nsec +[ 2.452244] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref] +[ 2.452249] pci 0000:03:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref] +[ 2.452324] pci 0000:01:00.0: BAR 6: assigned [mem 0xd3080000-0xd30fffff pref] +[ 2.452327] pci 0000:00:03.0: PCI bridge to [bus 01-01] +[ 2.452331] pci 0000:00:03.0: bridge window [io 0x6000-0x6fff] +[ 2.452336] pci 0000:00:03.0: bridge window [mem 0xd2000000-0xd30fffff] +[ 2.452340] pci 0000:00:03.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 2.452346] pci 0000:00:1c.0: PCI bridge to [bus 02-02] +[ 2.452353] pci 0000:00:1c.0: bridge window [io 0x5000-0x5fff] +[ 2.452363] pci 0000:00:1c.0: bridge window [mem 0xda100000-0xdb0fffff] +[ 2.452373] pci 0000:00:1c.0: bridge window [mem 0xd3100000-0xd40fffff 64bit pref] +[ 2.452385] pci 0000:03:00.0: BAR 6: assigned [mem 0xd4110000-0xd411ffff pref] +[ 2.452388] pci 0000:00:1c.1: PCI bridge to [bus 03-03] +[ 2.452395] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff] +[ 2.452405] pci 0000:00:1c.1: bridge window [mem 0xd9100000-0xda0fffff] +[ 2.452415] pci 0000:00:1c.1: bridge window [mem 0xd4100000-0xd50fffff 64bit pref] +[ 2.452426] pci 0000:00:1c.4: PCI bridge to [bus 04-04] +[ 2.452434] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] +[ 2.452444] pci 0000:00:1c.4: bridge window [mem 0xd8100000-0xd90fffff] +[ 2.452454] pci 0000:00:1c.4: bridge window [mem 0xd5100000-0xd60fffff 64bit pref] +[ 2.452465] pci 0000:00:1c.7: PCI bridge to [bus 05-08] +[ 2.452473] pci 0000:00:1c.7: bridge window [io 0x2000-0x2fff] +[ 2.452483] pci 0000:00:1c.7: bridge window [mem 0xd7100000-0xd80fffff] +[ 2.452492] pci 0000:00:1c.7: bridge window [mem 0xd6100000-0xd70fffff 64bit pref] +[ 2.452503] pci 0000:00:1e.0: PCI bridge to [bus 09-09] +[ 2.452505] pci 0000:00:1e.0: bridge window [io disabled] +[ 2.452515] pci 0000:00:1e.0: bridge window [mem disabled] +[ 2.452524] pci 0000:00:1e.0: bridge window [mem pref disabled] +[ 2.452546] pci 0000:00:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 2.452551] pci 0000:00:03.0: setting latency timer to 64 +[ 2.452571] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.452576] pci 0000:00:1c.0: setting latency timer to 64 +[ 2.452591] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 2.452600] pci 0000:00:1c.1: setting latency timer to 64 +[ 2.452616] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.452623] pci 0000:00:1c.4: setting latency timer to 64 +[ 2.452638] pci 0000:00:1c.7: PCI INT B -> GSI 16 (level, low) -> IRQ 16 +[ 2.452647] pci 0000:00:1c.7: setting latency timer to 64 +[ 2.452662] pci 0000:00:1e.0: setting latency timer to 64 +[ 2.452672] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] +[ 2.452675] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] +[ 2.452678] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] +[ 2.452680] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff] +[ 2.452683] pci_bus 0000:01: resource 0 [io 0x6000-0x6fff] +[ 2.452686] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd30fffff] +[ 2.452688] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref] +[ 2.452691] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff] +[ 2.452694] pci_bus 0000:02: resource 1 [mem 0xda100000-0xdb0fffff] +[ 2.452697] pci_bus 0000:02: resource 2 [mem 0xd3100000-0xd40fffff 64bit pref] +[ 2.452700] pci_bus 0000:03: resource 0 [io 0x4000-0x4fff] +[ 2.452702] pci_bus 0000:03: resource 1 [mem 0xd9100000-0xda0fffff] +[ 2.452705] pci_bus 0000:03: resource 2 [mem 0xd4100000-0xd50fffff 64bit pref] +[ 2.452708] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff] +[ 2.452710] pci_bus 0000:04: resource 1 [mem 0xd8100000-0xd90fffff] +[ 2.452713] pci_bus 0000:04: resource 2 [mem 0xd5100000-0xd60fffff 64bit pref] +[ 2.452716] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff] +[ 2.452718] pci_bus 0000:05: resource 1 [mem 0xd7100000-0xd80fffff] +[ 2.452721] pci_bus 0000:05: resource 2 [mem 0xd6100000-0xd70fffff 64bit pref] +[ 2.452724] pci_bus 0000:09: resource 4 [io 0x0000-0x0cf7] +[ 2.452727] pci_bus 0000:09: resource 5 [io 0x0d00-0xffff] +[ 2.452729] pci_bus 0000:09: resource 6 [mem 0x000a0000-0x000bffff] +[ 2.452732] pci_bus 0000:09: resource 7 [mem 0xc0000000-0xfeafffff] +[ 2.452767] NET: Registered protocol family 2 +[ 2.452937] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) +[ 2.454061] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) +[ 2.457630] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 2.458057] TCP: Hash tables configured (established 524288 bind 65536) +[ 2.458060] TCP reno registered +[ 2.458072] UDP hash table entries: 2048 (order: 4, 65536 bytes) +[ 2.458120] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) +[ 2.458249] NET: Registered protocol family 1 +[ 2.496247] pci 0000:01:00.0: Boot video device +[ 2.496328] PCI: CLS 64 bytes, default 64 +[ 2.496330] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 2.496333] Placing 64MB software IO TLB between ffff8800bb280000 - ffff8800bf280000 +[ 2.496335] software IO TLB at phys 0xbb280000 - 0xbf280000 +[ 2.496379] Simple Boot Flag at 0x44 set to 0x1 +[ 2.497133] audit: initializing netlink socket (disabled) +[ 2.497142] type=2000 audit(1308276136.880:1): initialized +[ 2.513929] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 2.516081] VFS: Disk quotas dquot_6.5.2 +[ 2.516176] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 2.516918] fuse init (API version 7.16) +[ 2.517019] msgmni has been set to 7904 +[ 2.517338] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 2.517380] io scheduler noop registered +[ 2.517382] io scheduler deadline registered +[ 2.517430] io scheduler cfq registered (default) +[ 2.517798] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 2.517821] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 2.517871] intel_idle: MWAIT substates: 0x1120 +[ 2.517889] intel_idle: v0.4 model 0x1E +[ 2.517891] intel_idle: lapic_timer_reliable_states 0x2 +[ 2.518336] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 2.518690] ACPI: AC Adapter [ACAD] (on-line) +[ 2.518794] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0 +[ 2.518799] ACPI: Power Button [PWRB] +[ 2.518879] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1 +[ 2.519325] ACPI: Lid Switch [LID0] +[ 2.519377] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2 +[ 2.519409] ACPI: Sleep Button [SLPB] +[ 2.519465] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 +[ 2.519469] ACPI: Power Button [PWRF] +[ 2.519795] ACPI: acpi_idle yielding to intel_idle +[ 2.523419] [Firmware Bug]: Invalid critical threshold (0) +[ 2.525166] thermal LNXTHERM:00: registered as thermal_zone0 +[ 2.525169] ACPI: Thermal Zone [TZ01] (69 C) +[ 2.525188] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared +[ 2.525244] ERST: Table is not found! +[ 2.525301] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 2.590756] ACPI: Battery Slot [BAT0] (battery present) +[ 2.769201] Linux agpgart interface v0.103 +[ 2.770479] brd: module loaded +[ 2.771059] loop: module loaded +[ 2.771142] i2c-core: driver [adp5520] using legacy suspend method +[ 2.771144] i2c-core: driver [adp5520] using legacy resume method +[ 2.771551] Fixed MDIO Bus: probed +[ 2.771580] PPP generic driver version 2.4.2 +[ 2.771622] tun: Universal TUN/TAP device driver, 1.6 +[ 2.771624] tun: (C) 1999-2004 Max Krasnyansky +[ 2.771710] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 2.771735] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 2.771770] ehci_hcd 0000:00:1a.0: setting latency timer to 64 +[ 2.771778] ehci_hcd 0000:00:1a.0: EHCI Host Controller +[ 2.771818] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 2.771905] ehci_hcd 0000:00:1a.0: debug port 2 +[ 2.775795] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported +[ 2.775821] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xdb105c00 +[ 2.795933] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 2.796082] hub 1-0:1.0: USB hub found +[ 2.796087] hub 1-0:1.0: 3 ports detected +[ 2.796192] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21 +[ 2.796211] ehci_hcd 0000:00:1d.0: setting latency timer to 64 +[ 2.796219] ehci_hcd 0000:00:1d.0: EHCI Host Controller +[ 2.796268] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 2.796358] ehci_hcd 0000:00:1d.0: debug port 2 +[ 2.800246] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported +[ 2.800266] ehci_hcd 0000:00:1d.0: irq 21, io mem 0xdb105800 +[ 2.815932] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 2.816074] hub 2-0:1.0: USB hub found +[ 2.816079] hub 2-0:1.0: 3 ports detected +[ 2.816166] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 2.816180] uhci_hcd: USB Universal Host Controller Interface driver +[ 2.816332] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 2.839208] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 2.839215] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 2.839338] mousedev: PS/2 mouse device common for all mice +[ 2.840728] rtc_cmos 00:07: RTC can wake from S4 +[ 2.840815] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 +[ 2.840855] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs +[ 2.840966] device-mapper: uevent: version 1.0.3 +[ 2.841052] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com +[ 2.841146] device-mapper: multipath: version 1.2.0 loaded +[ 2.841148] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 2.841497] cpuidle: using governor ladder +[ 2.841839] cpuidle: using governor menu +[ 2.842109] TCP cubic registered +[ 2.842244] NET: Registered protocol family 10 +[ 2.842806] NET: Registered protocol family 17 +[ 2.842821] Registering the dns_resolver key type +[ 2.846157] PM: Hibernation image not present or could not be loaded. +[ 2.846163] registered taskstats version 1 +[ 2.846639] Magic number: 15:446:5 +[ 2.846862] rtc_cmos 00:07: setting system clock to 2011-06-17 02:02:17 UTC (1308276137) +[ 2.846865] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 2.846867] EDD information not available. +[ 2.848649] Freeing unused kernel memory: 956k freed +[ 2.848776] Write protecting the kernel read-only data: 10240k +[ 2.850002] Freeing unused kernel memory: 184k freed +[ 2.854592] Freeing unused kernel memory: 1444k freed +[ 2.861129] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4 +[ 2.875342] <30>udev[87]: starting version 167 +[ 2.916587] sdhci: Secure Digital Host Controller Interface driver +[ 2.916592] sdhci: Copyright(c) Pierre Ossman +[ 2.925418] sdhci-pci 0000:04:00.1: SDHCI controller found [197b:2382] (rev 0) +[ 2.925446] sdhci-pci 0000:04:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 2.925509] sdhci-pci 0000:04:00.1: setting latency timer to 64 +[ 2.925522] mmc0: no vmmc regulator found +[ 2.925557] Registered led device: mmc0:: +[ 2.925601] mmc0: SDHCI controller on PCI [0000:04:00.1] using DMA +[ 2.925629] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2381] (rev 0) +[ 2.925649] sdhci-pci 0000:04:00.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 2.925655] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface. +[ 2.925665] sdhci-pci 0000:04:00.2: PCI INT A disabled +[ 2.930998] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded +[ 2.931023] r8169 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17 +[ 2.931072] r8169 0000:03:00.0: setting latency timer to 64 +[ 2.931142] r8169 0000:03:00.0: irq 45 for MSI/MSI-X +[ 2.931668] r8169 0000:03:00.0: eth0: RTL8168d/8111d at 0xffffc90011090000, c8:0a:a9:28:1b:75, XID 083000c0 IRQ 45 +[ 2.941608] firewire_ohci 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 2.941627] firewire_ohci 0000:04:00.0: setting latency timer to 64 +[ 2.945047] ahci 0000:00:1f.2: version 3.0 +[ 2.945071] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19 +[ 2.945123] ahci 0000:00:1f.2: irq 46 for MSI/MSI-X +[ 2.945202] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x33 impl SATA mode +[ 2.945206] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems sxs apst +[ 2.945215] ahci 0000:00:1f.2: setting latency timer to 64 +[ 3.016722] scsi0 : ahci +[ 3.016986] scsi1 : ahci +[ 3.017267] scsi2 : ahci +[ 3.017416] scsi3 : ahci +[ 3.017743] scsi4 : ahci +[ 3.017981] scsi5 : ahci +[ 3.018079] ata1: SATA max UDMA/133 abar m2048@0xdb105000 port 0xdb105100 irq 46 +[ 3.018089] ata2: SATA max UDMA/133 abar m2048@0xdb105000 port 0xdb105180 irq 46 +[ 3.018093] ata3: DUMMY +[ 3.018094] ata4: DUMMY +[ 3.018100] ata5: SATA max UDMA/133 abar m2048@0xdb105000 port 0xdb105300 irq 46 +[ 3.018106] ata6: SATA max UDMA/133 abar m2048@0xdb105000 port 0xdb105380 irq 46 +[ 3.026152] firewire_ohci: Added fw-ohci device 0000:04:00.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x10 +[ 3.126003] usb 1-1: new high speed USB device using ehci_hcd and address 2 +[ 3.277033] hub 1-1:1.0: USB hub found +[ 3.277293] hub 1-1:1.0: 6 ports detected +[ 3.365753] ata6: SATA link down (SStatus 0 SControl 300) +[ 3.365806] ata5: SATA link down (SStatus 0 SControl 300) +[ 3.365829] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 3.366879] ata1.00: ATA-8: TOSHIBA MK5056GSY, LH003C, max UDMA/100 +[ 3.366887] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA +[ 3.368149] ata1.00: configured for UDMA/100 +[ 3.368362] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK5056GS LH00 PQ: 0 ANSI: 5 +[ 3.368550] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 3.368637] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) +[ 3.368686] sd 0:0:0:0: [sda] Write Protect is off +[ 3.368689] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 3.368710] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 3.375775] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 3.395674] usb 2-1: new high speed USB device using ehci_hcd and address 2 +[ 3.395684] ata2.00: ATAPI: hp CDDVDW TS-L633N, 0300, max UDMA/100 +[ 3.417211] ata2.00: configured for UDMA/100 +[ 3.423085] scsi 1:0:0:0: CD-ROM hp CDDVDW TS-L633N 0300 PQ: 0 ANSI: 5 +[ 3.431534] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray +[ 3.431541] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 3.431694] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 3.431756] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 3.432492] sda: sda1 sda2 sda3 sda4 +[ 3.432855] sd 0:0:0:0: [sda] Attached SCSI disk +[ 3.495631] Refined TSC clocksource calibration: 1596.178 MHz. +[ 3.495640] Switching to clocksource tsc +[ 3.525731] firewire_core: created device fw0: GUID 00241b00c3e9c701, S400 +[ 3.546302] hub 2-1:1.0: USB hub found +[ 3.546488] hub 2-1:1.0: 8 ports detected +[ 3.625683] usb 1-1.1: new low speed USB device using ehci_hcd and address 3 +[ 3.752687] usbcore: registered new interface driver usbhid +[ 3.752690] usbhid: USB HID core driver +[ 3.756855] input: A4Tech PS/2+USB Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input5 +[ 3.756937] a4tech 0003:09DA:000A.0001: input,hidraw0: USB HID v1.10 Mouse [A4Tech PS/2+USB Mouse] on usb-0000:00:1a.0-1.1/input0 +[ 3.825473] usb 1-1.2: new high speed USB device using ehci_hcd and address 4 +[ 3.944004] usbcore: registered new interface driver uas +[ 3.947925] Initializing USB Mass Storage driver... +[ 3.948240] scsi6 : usb-storage 1-1.2:1.0 +[ 3.948499] usbcore: registered new interface driver usb-storage +[ 3.948502] USB Mass Storage support registered. +[ 4.015360] usb 2-1.1: new full speed USB device using ehci_hcd and address 3 +[ 4.075002] CE: hpet increased min_delta_ns to 20113 nsec +[ 4.205203] usb 2-1.2: new high speed USB device using ehci_hcd and address 4 +[ 4.337824] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null) +[ 4.946010] scsi 6:0:0:0: Direct-Access Kingston DataTraveler G3 1.00 PQ: 0 ANSI: 2 +[ 4.946862] sd 6:0:0:0: Attached scsi generic sg2 type 0 +[ 4.947457] scsi7 : usb-storage 2-1.2:1.0 +[ 4.947661] sd 6:0:0:0: [sdb] 7818184 512-byte logical blocks: (4.00 GB/3.72 GiB) +[ 4.948353] sd 6:0:0:0: [sdb] Write Protect is off +[ 4.948360] sd 6:0:0:0: [sdb] Mode Sense: 03 00 00 00 +[ 4.949153] sd 6:0:0:0: [sdb] No Caching mode page present +[ 4.949158] sd 6:0:0:0: [sdb] Assuming drive cache: write through +[ 4.952032] sd 6:0:0:0: [sdb] No Caching mode page present +[ 4.952038] sd 6:0:0:0: [sdb] Assuming drive cache: write through +[ 4.952769] sdb: sdb1 +[ 4.955567] sd 6:0:0:0: [sdb] No Caching mode page present +[ 4.955573] sd 6:0:0:0: [sdb] Assuming drive cache: write through +[ 4.955578] sd 6:0:0:0: [sdb] Attached SCSI removable disk +[ 5.024561] usb 2-1.5: new high speed USB device using ehci_hcd and address 5 +[ 5.244335] usb 2-1.7: new full speed USB device using ehci_hcd and address 6 +[ 5.945345] scsi 7:0:0:0: Direct-Access WD My Passport 0730 1014 PQ: 0 ANSI: 6 +[ 5.946458] scsi 7:0:0:1: Enclosure WD SES Device 1014 PQ: 0 ANSI: 6 +[ 5.947789] sd 7:0:0:0: Attached scsi generic sg3 type 0 +[ 5.947912] scsi 7:0:0:1: Attached scsi generic sg4 type 13 +[ 5.948910] sd 7:0:0:0: [sdc] 976707584 512-byte logical blocks: (500 GB/465 GiB) +[ 5.949629] sd 7:0:0:0: [sdc] Write Protect is off +[ 5.949633] sd 7:0:0:0: [sdc] Mode Sense: 47 00 10 08 +[ 5.951100] sd 7:0:0:0: [sdc] No Caching mode page present +[ 5.951105] sd 7:0:0:0: [sdc] Assuming drive cache: write through +[ 5.954140] sd 7:0:0:0: [sdc] No Caching mode page present +[ 5.954143] sd 7:0:0:0: [sdc] Assuming drive cache: write through +[ 6.325054] sdc: sdc1 +[ 6.328441] sd 7:0:0:0: [sdc] No Caching mode page present +[ 6.328444] sd 7:0:0:0: [sdc] Assuming drive cache: write through +[ 6.328447] sd 7:0:0:0: [sdc] Attached SCSI disk +[ 11.629885] <30>udev[360]: starting version 167 +[ 11.683233] type=1400 audit(1308290546.330:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=430 comm="apparmor_parser" +[ 11.684328] type=1400 audit(1308290546.330:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=430 comm="apparmor_parser" +[ 11.685039] type=1400 audit(1308290546.330:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=430 comm="apparmor_parser" +[ 11.692577] lp: driver loaded but no devices found +[ 11.708056] EDAC MC: Ver: 2.1.0 Apr 11 2011 +[ 11.728765] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0 +[ 11.728800] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED) +[ 11.728806] EDAC i7core: Driver loaded. +[ 11.761604] Linux video capture interface: v2.00 +[ 11.769465] uvcvideo: Found UVC 1.00 device CNF9013 (04f2:b179) +[ 11.785166] Bluetooth: Core ver 2.15 +[ 11.785193] NET: Registered protocol family 31 +[ 11.785196] Bluetooth: HCI device and connection manager initialized +[ 11.785200] Bluetooth: HCI socket layer initialized +[ 11.791745] input: CNF9013 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input6 +[ 11.791897] usbcore: registered new interface driver uvcvideo +[ 11.791901] USB Video Class driver (v1.0.0) +[ 11.840875] cfg80211: Calling CRDA to update world regulatory domain +[ 11.849534] Bluetooth: Generic Bluetooth USB driver ver 0.6 +[ 11.852095] usbcore: registered new interface driver btusb +[ 11.852214] IR NEC protocol handler initialized +[ 11.852879] acpi device:0c: registered as cooling_device8 +[ 11.853012] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input7 +[ 11.853095] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) +[ 11.858366] IR RC5(x) protocol handler initialized +[ 11.859541] ene_ir: chip is 0x3926 - kbver = 0x00, rev = 0xd2 +[ 11.859545] ene_ir: PLL freq = 1406 +[ 11.859547] ene_ir: KB3926D or higher detected +[ 11.859573] ene_ir: Firmware regs: e0 00 +[ 11.859575] ene_ir: Hardware features: +[ 11.859577] ene_ir: * Uses GPIO 40 for IR demodulated input +[ 11.895014] jmb38x_ms 0000:04:00.3: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 11.895024] jmb38x_ms 0000:04:00.3: setting latency timer to 64 +[ 11.896109] IR RC6 protocol handler initialized +[ 11.903928] IR JVC protocol handler initialized +[ 11.904638] input: HP WMI hotkeys as /devices/virtual/input/input8 +[ 11.909311] IR Sony protocol handler initialized +[ 11.916857] lirc_dev: IR Remote Control driver registered, major 249 +[ 11.936809] IR LIRC bridge handler initialized +[ 11.937868] cfg80211: World regulatory domain updated: +[ 11.937873] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) +[ 11.937878] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 11.937884] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 11.937889] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) +[ 11.937893] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 11.937898] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) +[ 11.948937] hp_accel: laptop model unknown, using default axes configuration +[ 11.950558] lis3lv02d: 8 bits sensor found +[ 11.958947] Registered IR keymap rc-rc6-mce +[ 11.959340] input: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0/input9 +[ 11.960028] rc0: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0 +[ 11.964206] rc rc0: lirc_dev: driver ir-lirc-codec (ene_ir) registered at minor = 0 +[ 11.964210] ene_ir: driver has been succesfully loaded +[ 12.005383] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008 +[ 12.005605] IP: [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +[ 12.005768] PGD 13361f067 PUD 133627067 PMD 0 +[ 12.006051] Oops: 0002 [#1] SMP +[ 12.006265] last sysfs file: /sys/module/snd_pcm/initstate +[ 12.006340] CPU 4 +[ 12.006399] Modules linked in: snd_usbmidi_lib snd_hda_codec snd_seq_midi snd_rawmidi iwlcore ir_lirc_codec rc_rc6_mce mac80211 lirc_dev psmouse ir_sony_decoder hp_accel(+) snd_seq_midi_event hp_wmi ir_jvc_decoder snd_seq ir_rc6_decoder snd_hwdep jmb38x_ms snd_seq_device snd_pcm sparse_keymap lis3lv02d ene_ir ir_rc5_decoder ir_nec_decoder btusb rc_core serio_raw memstick ses(+) snd_timer +[ 12.008376] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input10 +[ 12.008513] input_polldev cfg80211 +[ 12.008589] Registered led device: hp::hddprotect +[ 12.008612] hp_accel: driver loaded +[ 12.008844] bluetooth uvcvideo videodev video enclosure i7core_edac snd edac_core v4l2_compat_ioctl32 soundcore lp snd_page_alloc parport usb_storage uas hid_a4tech usbhid hid ahci firewire_ohci libahci r8169 sdhci_pci firewire_core sdhci crc_itu_t +[ 12.010496] +[ 12.010582] Pid: 548, comm: modprobe Not tainted 2.6.38-8-generic #42-Ubuntu Hewlett-Packard HP Pavilion dv6 Notebook PC/3659 +[ 12.010949] RIP: 0010:[] [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +[ 12.011112] RSP: 0018:ffff8801035e9d88 EFLAGS: 00010286 +[ 12.011197] RAX: ffff880101b3aeb8 RBX: 0000000000000000 RCX: 0000000000000000 +[ 12.011280] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000 +[ 12.011364] RBP: ffff8801035e9df8 R08: 00000000000007f9 R09: ffff880137022ddc +[ 12.011448] R10: 0000000000000000 R11: ffff880101a00000 R12: ffff880134e5f442 +[ 12.011532] R13: 0000000000000000 R14: ffff880134e04ea4 R15: 0000000000000237 +[ 12.011614] FS: 00007fe283dec720(0000) GS:ffff8800bf500000(0000) knlGS:0000000000000000 +[ 12.011783] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b +[ 12.011856] CR2: 0000000000000008 CR3: 0000000106387000 CR4: 00000000000006e0 +[ 12.011945] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 +[ 12.012034] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400 +[ 12.012119] Process modprobe (pid: 548, threadinfo ffff8801035e8000, task ffff8801059b8000) +[ 12.012221] Stack: +[ 12.012292] 0000000000000000 ffff880133249148 ffff002000830112 ffffffff00000000 +[ 12.012609] ffff880101a00000 ffff8801050dfae0 ffff880137022dd8 000000d3000000e0 +[ 12.013004] ffff8801035e9df8 ffff880102913540 ffff880133249000 ffff880101a00000 +[ 12.013293] Call Trace: +[ 12.013369] [] ses_match_to_enclosure+0xa5/0x1f0 [ses] +[ 12.013453] [] ses_intf_add+0x4b8/0x578 [ses] +[ 12.013539] [] ? ses_init+0x0/0x1000 [ses] +[ 12.013621] [] class_interface_register+0xa9/0xe0 +[ 12.013704] [] scsi_register_interface+0x16/0x20 +[ 12.013786] [] ses_init+0x14/0x1000 [ses] +[ 12.013868] [] do_one_initcall+0x45/0x190 +[ 12.013952] [] sys_init_module+0xfb/0x250 +[ 12.014028] [] system_call_fastpath+0x16/0x1b +[ 12.014168] Code: 49 63 c0 41 83 c0 01 48 69 c0 78 02 00 00 49 8d 84 03 78 02 00 00 48 3d 00 f0 ff ff 77 29 4d 85 e4 74 24 41 0f b6 14 24 48 8b 30 <4c> 89 66 08 f6 c2 80 75 13 89 d0 83 e0 0f 83 f8 06 0f 84 89 00 +[ 12.018123] RIP [] ses_enclosure_data_process+0x1a0/0x3a0 [ses] +[ 12.018280] RSP +[ 12.018360] CR2: 0000000000000008 +[ 12.018482] ---[ end trace 817006b321490ab6 ]--- +[ 12.028077] nvidia: module license 'NVIDIA' taints kernel. +[ 12.028183] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: +[ 12.028302] iwlagn: Copyright(c) 2003-2010 Intel Corporation +[ 12.028445] iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 12.028538] iwlagn 0000:02:00.0: setting latency timer to 64 +[ 12.028647] iwlagn 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6200 AGN, REV=0x74 +[ 12.038639] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 12.038888] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X +[ 12.039012] HDA Intel 0000:00:1b.0: setting latency timer to 64 +[ 12.048467] iwlagn 0000:02:00.0: device EEPROM VER=0x436, CALIB=0x6 +[ 12.048573] iwlagn 0000:02:00.0: Device SKU: 0Xb +[ 12.048713] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels +[ 12.048965] iwlagn 0000:02:00.0: irq 48 for MSI/MSI-X +[ 12.049014] usbcore: registered new interface driver snd-usb-audio +[ 12.051891] iwlagn 0000:02:00.0: loaded firmware version 9.221.4.1 build 25532 +[ 12.052270] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain +[ 12.062298] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs' +[ 12.188493] input: HDA Intel Mic at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 +[ 12.188738] input: HDA Intel Line Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 +[ 12.189134] HDA Intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 12.189281] hda_intel: Disable MSI for Nvidia chipset +[ 12.189567] HDA Intel 0000:01:00.1: setting latency timer to 64 +[ 12.928176] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000/0x0 +[ 13.013239] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input13 +[ 13.137972] Adding 262136k swap on /host/ubuntu/disks/swap.disk. Priority:-1 extents:1 across:262136k +[ 13.168629] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro +[ 13.295284] type=1400 audit(1308290547.940:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=884 comm="apparmor_parser" +[ 13.296124] type=1400 audit(1308290547.940:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=889 comm="apparmor_parser" +[ 13.296351] type=1400 audit(1308290547.940:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=888 comm="apparmor_parser" +[ 13.296536] type=1400 audit(1308290547.940:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=885 comm="apparmor_parser" +[ 13.297558] type=1400 audit(1308290547.950:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=888 comm="apparmor_parser" +[ 13.297724] type=1400 audit(1308290547.950:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=885 comm="apparmor_parser" +[ 13.298422] type=1400 audit(1308290547.950:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=885 comm="apparmor_parser" +[ 13.417045] Bluetooth: L2CAP ver 2.15 +[ 13.417200] Bluetooth: L2CAP socket layer initialized +[ 13.425408] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 13.425544] Bluetooth: BNEP filters: protocol multicast +[ 13.429779] Bluetooth: SCO (Voice Link) ver 0.6 +[ 13.429903] Bluetooth: SCO socket layer initialized + diff -Nru fwts-14.02.00/fwts-test/oops-0001/test-0001.sh fwts-14.03.00/fwts-test/oops-0001/test-0001.sh --- fwts-14.02.00/fwts-test/oops-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test oops against known failure patterns" +NAME=test-0001.sh +TMPLOG=$TMP/oops.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --klog=$FWTSTESTDIR/oops-0001/oops.txt oops - | grep "^[0-9]*[ ]*oops" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/oops-0001/oops-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/oops-0001/test-0002.sh fwts-14.03.00/fwts-test/oops-0001/test-0002.sh --- fwts-14.02.00/fwts-test/oops-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test oops summary table against known failure patterns" +NAME=test-0002.sh +TMPLOG=$TMP/oops.log.$$ + +$FWTS --log-format="%line %owner " -w 400 --klog=$FWTSTESTDIR/oops-0001/oops.txt oops - | grep summary | sed 's/line: [0-9]*//' | cut -c7- > $TMPLOG +grep -v "log line:" $FWTSTESTDIR/oops-0001/oops-0002.log | diff $TMPLOG - >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/oops-0001/test-0003.sh fwts-14.03.00/fwts-test/oops-0001/test-0003.sh --- fwts-14.02.00/fwts-test/oops-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,17 @@ +#!/bin/bash +# +TEST="Test oops against known failure rate" +NAME=test-0003.sh +TMPLOG=$TMP/oops.log.$$ + +$FWTS --log-format="%line %owner " -w 80 --klog=$FWTSTESTDIR/oops-0001/oops.txt oops - | grep "oopses" | grep -v "summary" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/oops-0001/oops-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/oops-0001/testcase.txt fwts-14.03.00/fwts-test/oops-0001/testcase.txt --- fwts-14.02.00/fwts-test/oops-0001/testcase.txt 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/oops-0001/testcase.txt 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1 @@ +Test fwts oops test against real kernel oops messages diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/acpidump-0001.log fwts-14.03.00/fwts-test/osilinux-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/osilinux-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/acpidump-0002.log fwts-14.03.00/fwts-test/osilinux-0001/acpidump-0002.log --- fwts-14.02.00/fwts-test/osilinux-0001/acpidump-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/acpidump-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1843 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4d 69 [._OSI`.._OSI.Mi + 0460: 6e 69 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nix.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 .. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 36 38 20 20 20 57 49 4e 44 4f 57 VOTP-68 WINDOW + 00e0: 53 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 8a 6e 2e c9 36 e6 7f 10 8a ea .......n..6..... + 0100: 14 ad d2 93 b7 6d 9b 73 ad 83 36 b8 6c a7 a7 ee .....m.s..6.l... + 0110: 37 47 16 fe f3 fc cd c7 89 84 06 16 91 0b 1e 81 7G.............. + 0120: 11 42 b1 35 52 57 f6 6b bb 5f a5 81 e2 ff 89 8a .B.5RW.k._...... + 0130: 95 c3 4d fc e9 56 4f 4c 34 cc 99 5e 62 e1 90 8a ..M..VOL4..^b... + 0140: 54 be 4a 00 5c 9b a0 86 41 46 66 9d e2 f2 e7 36 T.J.\...AFf....6 + 0150: 9c 33 91 27 e7 8d 5c a1 d8 f9 a4 61 8a 1c 04 07 .3.'..\....a.... + 0160: e3 2a 1e 14 f1 bd 7f 4c 09 ff 19 11 a9 d4 74 ca .*.....L......t. + 0170: 11 9e dc 54 39 bf ...T9. + +APIC @ 0xbf6dff70 + 0000: 41 50 49 43 68 00 00 00 01 13 50 54 4c 54 44 20 APICh.....PTLTD + 0010: 09 20 41 50 49 43 20 20 00 00 04 06 20 4c 54 50 . APIC .... LTP + 0020: 00 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 01 0c 02 00 ................ + 0040: 00 00 c0 fe 00 00 00 00 04 06 00 05 00 01 04 06 ................ + 0050: 01 05 00 01 02 0a 00 00 02 00 00 00 05 00 02 0a ................ + 0060: 00 09 09 00 00 00 0d 00 ........ + +BOOT @ 0xbf6dffd8 + 0000: 42 4f 4f 54 28 00 00 00 01 a5 50 54 4c 54 44 20 BOOT(.....PTLTD + 0010: 24 53 42 46 54 42 4c 24 00 00 04 06 20 4c 54 50 $SBFTBL$.... LTP + 0020: 01 00 00 00 36 00 00 00 ....6... + +SSDT @ 0xbf6d98bd + 0000: 53 53 44 54 ad 02 00 00 01 59 53 61 74 61 52 65 SSDT.....YSataRe + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 24 06 05 20 10 48 28 5c 2f 03 5f 53 42 5f 50 43 $.. .H(\/._SB_PC + 0030: 49 30 53 41 54 41 5b 82 4f 0c 50 52 54 30 08 5f I0SATA[.O.PRT0._ + 0040: 41 44 52 0b ff ff 14 44 0b 5f 53 44 44 01 08 47 ADR....D._SDD..G + 0050: 42 55 30 11 0a 0a 07 00 00 00 00 00 a0 00 8c 47 BU0............G + 0060: 42 55 30 0a 00 47 42 30 30 8c 47 42 55 30 0a 01 BU0..GB00.GBU0.. + 0070: 47 42 30 31 8c 47 42 55 30 0a 02 47 42 30 32 8c GB01.GBU0..GB02. + 0080: 47 42 55 30 0a 03 47 42 30 33 8c 47 42 55 30 0a GBU0..GB03.GBU0. + 0090: 04 47 42 30 34 8c 47 42 55 30 0a 05 47 42 30 35 .GB04.GBU0..GB05 + 00a0: 8c 47 42 55 30 0a 06 47 42 30 36 a0 46 04 93 87 .GBU0..GB06.F... + 00b0: 68 0b 00 02 8b 68 0a 9c 57 37 38 30 a0 1e 7b 57 h....h..W780..{W + 00c0: 37 38 30 0a 08 00 70 0a 10 47 42 30 30 70 0a 03 780...p..GB00p.. + 00d0: 47 42 30 31 70 0a ef 47 42 30 36 a1 16 70 0a 90 GB01p..GB06..p.. + 00e0: 47 42 30 30 70 0a 03 47 42 30 31 70 0a ef 47 42 GB00p..GB01p..GB + 00f0: 30 36 70 47 42 55 30 47 54 46 30 14 0b 5f 47 54 06pGBU0GTF0.._GT + 0100: 46 00 a4 47 54 46 30 5b 82 41 0d 50 52 54 31 08 F..GTF0[.A.PRT1. + 0110: 5f 41 44 52 0c ff ff 01 00 14 44 0b 5f 53 44 44 _ADR......D._SDD + 0120: 01 08 47 42 55 31 11 0a 0a 07 00 00 00 00 00 a0 ..GBU1.......... + 0130: 00 8c 47 42 55 31 0a 00 47 42 31 30 8c 47 42 55 ..GBU1..GB10.GBU + 0140: 31 0a 01 47 42 31 31 8c 47 42 55 31 0a 02 47 42 1..GB11.GBU1..GB + 0150: 31 32 8c 47 42 55 31 0a 03 47 42 31 33 8c 47 42 12.GBU1..GB13.GB + 0160: 55 31 0a 04 47 42 31 34 8c 47 42 55 31 0a 05 47 U1..GB14.GBU1..G + 0170: 42 31 35 8c 47 42 55 31 0a 06 47 42 31 36 a0 46 B15.GBU1..GB16.F + 0180: 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 38 31 a0 ...h....h..W781. + 0190: 1e 7b 57 37 38 31 0a 08 00 70 0a 10 47 42 31 30 .{W781...p..GB10 + 01a0: 70 0a 03 47 42 31 31 70 0a ef 47 42 31 36 a1 16 p..GB11p..GB16.. + 01b0: 70 0a 90 47 42 31 30 70 0a 03 47 42 31 31 70 0a p..GB10p..GB11p. + 01c0: ef 47 42 31 36 70 47 42 55 31 47 54 46 31 14 0b .GB16pGBU1GTF1.. + 01d0: 5f 47 54 46 00 a4 47 54 46 31 5b 82 41 0d 50 52 _GTF..GTF1[.A.PR + 01e0: 54 32 08 5f 41 44 52 0c ff ff 02 00 14 44 0b 5f T2._ADR......D._ + 01f0: 53 44 44 01 08 47 42 55 32 11 0a 0a 07 00 00 00 SDD..GBU2....... + 0200: 00 00 a0 00 8c 47 42 55 32 0a 00 47 42 32 30 8c .....GBU2..GB20. + 0210: 47 42 55 32 0a 01 47 42 32 31 8c 47 42 55 32 0a GBU2..GB21.GBU2. + 0220: 02 47 42 32 32 8c 47 42 55 32 0a 03 47 42 32 33 .GB22.GBU2..GB23 + 0230: 8c 47 42 55 32 0a 04 47 42 32 34 8c 47 42 55 32 .GBU2..GB24.GBU2 + 0240: 0a 05 47 42 32 35 8c 47 42 55 32 0a 06 47 42 32 ..GB25.GBU2..GB2 + 0250: 36 a0 46 04 93 87 68 0b 00 02 8b 68 0a 9c 57 37 6.F...h....h..W7 + 0260: 38 32 a0 1e 7b 57 37 38 32 0a 08 00 70 0a 10 47 82..{W782...p..G + 0270: 42 32 30 70 0a 03 47 42 32 31 70 0a ef 47 42 32 B20p..GB21p..GB2 + 0280: 36 a1 16 70 0a 90 47 42 32 30 70 0a 03 47 42 32 6..p..GB20p..GB2 + 0290: 31 70 0a ef 47 42 32 36 70 47 42 55 32 47 54 46 1p..GB26pGBU2GTF + 02a0: 32 14 0b 5f 47 54 46 00 a4 47 54 46 32 2.._GTF..GTF2 + +SSDT @ 0xbf6d981a + 0000: 53 53 44 54 a3 00 00 00 01 ed 42 72 74 52 65 66 SSDT......BrtRef + 0010: 44 44 30 31 42 52 54 00 00 10 00 00 49 4e 54 4c DD01BRT.....INTL + 0020: 24 06 05 20 10 4e 07 5c 2f 04 5f 53 42 5f 50 43 $.. .N.\/._SB_PC + 0030: 49 30 47 46 58 30 44 44 30 33 14 1e 5f 42 43 4c I0GFX0DD03.._BCL + 0040: 00 a4 12 16 0a 0a 46 0a 28 0a 00 0a 0a 0a 14 0a ......F.(....... + 0050: 1e 0a 28 0a 32 0a 3c 0a 46 14 25 5f 42 43 4d 01 ..(.2.<.F.%_BCM. + 0060: 78 68 0a 0a 60 61 70 61 5c 2f 05 5f 53 42 5f 50 xh..`apa\/._SB_P + 0070: 43 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 14 CI0LPCBEC0_BRTS. + 0080: 23 5f 42 51 43 00 77 5c 2f 05 5f 53 42 5f 50 43 #_BQC.w\/._SB_PC + 0090: 49 30 4c 50 43 42 45 43 30 5f 42 52 54 53 0a 0a I0LPCBEC0_BRTS.. + 00a0: 60 a4 60 `.` + +SSDT @ 0xbf6d8e10 + 0000: 53 53 44 54 5f 02 00 00 01 c8 50 6d 52 65 66 00 SSDT_.....PmRef. + 0010: 43 70 75 30 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Tst..0..INTL + 0020: 24 06 05 20 10 4a 23 5c 2e 5f 50 52 5f 43 50 55 $.. .J#\._PR_CPU + 0030: 30 08 5f 54 50 43 0a 00 14 4d 06 5f 50 54 43 00 0._TPC...M._PTC. + 0040: a0 37 7b 50 44 43 30 0a 04 00 a4 12 2c 02 11 14 .7{PDC0.....,... + 0050: 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 00 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 .y.............. + 0070: 00 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 ......y...,..... + 0080: 82 0c 00 01 04 01 00 10 10 00 00 00 00 00 00 79 ...............y + 0090: 00 11 14 0a 11 82 0c 00 01 04 01 00 10 10 00 00 ................ + 00a0: 00 00 00 00 79 00 08 54 53 53 49 12 41 07 08 12 ....y..TSSI.A... + 00b0: 0d 05 0a 64 0b e8 03 0a 00 0a 00 0a 00 12 0d 05 ...d............ + 00c0: 0a 58 0b 6b 03 0a 00 0a 0f 0a 00 12 0d 05 0a 4b .X.k...........K + 00d0: 0b ee 02 0a 00 0a 0e 0a 00 12 0d 05 0a 3f 0b 71 .............?.q + 00e0: 02 0a 00 0a 0d 0a 00 12 0d 05 0a 32 0b f4 01 0a ...........2.... + 00f0: 00 0a 0c 0a 00 12 0d 05 0a 26 0b 77 01 0a 00 0a .........&.w.... + 0100: 0b 0a 00 12 0c 05 0a 19 0a fa 0a 00 0a 0a 0a 00 ................ + 0110: 12 0c 05 0a 0d 0a 7d 0a 00 0a 09 0a 00 08 54 53 ......}.......TS + 0120: 53 4d 12 41 07 08 12 0d 05 0a 64 0b e8 03 0a 00 SM.A......d..... + 0130: 0a 00 0a 00 12 0d 05 0a 58 0b 6b 03 0a 00 0a 1e ........X.k..... + 0140: 0a 00 12 0d 05 0a 4b 0b ee 02 0a 00 0a 1c 0a 00 ......K......... + 0150: 12 0d 05 0a 3f 0b 71 02 0a 00 0a 1a 0a 00 12 0d ....?.q......... + 0160: 05 0a 32 0b f4 01 0a 00 0a 18 0a 00 12 0d 05 0a ..2............. + 0170: 26 0b 77 01 0a 00 0a 16 0a 00 12 0c 05 0a 19 0a &.w............. + 0180: fa 0a 00 0a 14 0a 00 12 0c 05 0a 0d 0a 7d 0a 00 .............}.. + 0190: 0a 12 0a 00 08 54 53 53 46 0a 00 14 43 08 5f 54 .....TSSF...C._T + 01a0: 53 53 00 a0 47 06 90 92 54 53 53 46 5b 12 5f 50 SS..G...TSSF[._P + 01b0: 53 53 00 70 5f 50 53 53 60 70 87 60 61 76 61 70 SS.p_PSS`p.`avap + 01c0: 83 88 83 88 60 61 00 0a 01 00 62 70 0a 00 63 a2 ....`a....bp..c. + 01d0: 35 95 63 87 54 53 53 49 70 78 77 62 74 0a 08 63 5.c.TSSIpxwbt..c + 01e0: 00 00 0a 08 00 00 64 70 64 88 83 88 54 53 53 49 ......dpd...TSSI + 01f0: 63 00 0a 01 00 70 64 88 83 88 54 53 53 4d 63 00 c....pd...TSSMc. + 0200: 0a 01 00 75 63 70 ff 54 53 53 46 a0 0e 7b 50 44 ...ucp.TSSF..{PD + 0210: 43 30 0a 04 00 a4 54 53 53 4d a4 54 53 53 49 14 C0....TSSM.TSSI. + 0220: 3f 5f 54 53 44 00 a0 27 90 7b 43 46 47 44 0c 00 ?_TSD..'.{CFGD.. + 0230: 00 00 01 00 92 7b 50 44 43 30 0a 04 00 a4 12 0f .....{PDC0...... + 0240: 01 12 0c 05 0a 05 0a 00 0a 00 0a fd 0a 02 a4 12 ................ + 0250: 0f 01 12 0c 05 0a 05 0a 00 0a 00 0a fc 0a 01 ............... + +SSDT @ 0xbf6d8d6a + 0000: 53 53 44 54 a6 00 00 00 01 6d 50 6d 52 65 66 00 SSDT.....mPmRef. + 0010: 43 70 75 31 54 73 74 00 00 30 00 00 49 4e 54 4c Cpu1Tst..0..INTL + 0020: 24 06 05 20 10 41 08 5c 2e 5f 50 52 5f 43 50 55 $.. .A.\._PR_CPU + 0030: 31 08 5f 54 50 43 0a 00 14 16 5f 50 54 43 00 a4 1._TPC...._PTC.. + 0040: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 54 43 14 \/._PR_CPU0_PTC. + 0050: 16 5f 54 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._TSS..\/._PR_CP + 0060: 55 30 5f 54 53 53 14 3f 5f 54 53 44 00 a0 27 90 U0_TSS.?_TSD..'. + 0070: 7b 43 46 47 44 0c 00 00 00 01 00 92 7b 50 44 43 {CFGD.......{PDC + 0080: 31 0a 04 00 a4 12 0f 01 12 0c 05 0a 05 0a 00 0a 1............... + 0090: 00 0a fd 0a 02 a4 12 0f 01 12 0c 05 0a 05 0a 00 ................ + 00a0: 0a 01 0a fc 0a 01 ...... + +SSDT @ 0xbf6d8884 + 0000: 53 53 44 54 e6 04 00 00 01 df 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 24 06 05 20 10 45 08 5c 00 08 53 53 44 54 12 43 $.. .E.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 9e 95 6d ...CPU0IST ....m + 0040: bf 0c b4 01 00 00 0d 43 50 55 31 49 53 54 20 00 .......CPU1IST . + 0050: 0c 52 97 6d bf 0c c8 00 00 00 0d 43 50 55 30 43 .R.m.......CPU0C + 0060: 53 54 20 00 0c 6f 90 6d bf 0c aa 04 00 00 0d 43 ST ..o.m.......C + 0070: 50 55 31 43 53 54 20 00 0c 19 95 6d bf 0c 85 00 PU1CST ....m.... + 0080: 00 00 08 43 46 47 44 0c f1 69 3f 11 08 5c 50 44 ...CFGD..i?..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 53 44 54 4c 0a 00 10 4d 21 5c 2e 5f ...\SDTL...M!\._ + 00b0: 50 52 5f 43 50 55 30 08 48 49 30 5f 0a 00 08 48 PR_CPU0.HI0_...H + 00c0: 43 30 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a C0_...H._PDC..h. + 00d0: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h + 00e0: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. + 00f0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... + 0100: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS + 0110: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... + 0120: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 pXq9SREVSSIZEb.I + 0130: 19 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k + 0140: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h + 0150: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h + 0160: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... + 0170: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. + 0180: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. + 0190: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 + 01a0: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... + 01b0: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI + 01c0: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID + 01d0: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. + 01e0: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ + 01f0: 50 44 43 30 0c ff ff ff 7f 00 43 41 50 30 50 44 PDC0......CAP0PD + 0200: 43 30 70 7b 50 44 43 30 0a ff 00 50 43 50 30 a0 C0p{PDC0...PCP0. + 0210: 4c 05 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b L.{CFGD....A...{ + 0220: 43 46 47 44 0c 00 00 00 01 00 93 7b 50 44 43 30 CFGD.......{PDC0 + 0230: 0a 09 00 0a 09 92 7b 53 44 54 4c 0a 01 00 7d 53 ......{SDTL...}S + 0240: 44 54 4c 0a 01 53 44 54 4c 5b 80 49 53 54 30 00 DTL..SDTL[.IST0. + 0250: 83 88 53 53 44 54 0a 01 00 83 88 53 53 44 54 0a ..SSDT.....SSDT. + 0260: 02 00 5b 20 49 53 54 30 48 49 30 5f a0 49 05 7b ..[ IST0HI0_.I.{ + 0270: 43 46 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 CFGD....N...{CFG + 0280: 44 0c 00 00 00 01 00 7b 50 44 43 30 0a 18 00 92 D......{PDC0.... + 0290: 7b 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 {SDTL...}SDTL..S + 02a0: 44 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 DTL[.CST0...SSDT + 02b0: 0a 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 .....SSDT...[ CS + 02c0: 54 30 48 43 30 5f a4 6b 10 4d 21 5c 2e 5f 50 52 T0HC0_.k.M!\._PR + 02d0: 5f 43 50 55 31 08 48 49 31 5f 0a 00 08 48 43 31 _CPU1.HI1_...HC1 + 02e0: 5f 0a 00 14 48 06 5f 50 44 43 01 8a 68 0a 00 52 _...H._PDC..h..R + 02f0: 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 EVS.h..SIZEp.h`p + 0300: 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 t`...a[.h.@wa... + 0310: 54 45 4d 50 08 53 54 53 31 11 07 0a 04 00 00 00 TEMP.STS1....... + 0320: 00 73 53 54 53 31 54 45 4d 50 62 5f 4f 53 43 11 .sSTS1TEMPb_OSC. + 0330: 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 .....w@.).G...pX + 0340: 71 39 53 52 45 56 53 53 49 5a 45 62 14 49 19 5f q9SREVSSIZEb.I._ + 0350: 4f 53 43 04 8a 6b 0a 00 53 54 53 31 8a 6b 0a 04 OSC..k..STS1.k.. + 0360: 43 41 50 31 8a 68 0a 00 49 49 44 30 8a 68 0a 04 CAP1.h..IID0.h.. + 0370: 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 0a 0c IID1.h..IID2.h.. + 0380: 49 49 44 33 08 55 49 44 31 11 13 0a 10 16 a6 77 IID3.UID1......w + 0390: 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a 55 49 @.).G...pXq9S.UI + 03a0: 44 31 0a 00 45 49 44 30 8a 55 49 44 31 0a 04 45 D1..EID0.UID1..E + 03b0: 49 44 31 8a 55 49 44 31 0a 08 45 49 44 32 8a 55 ID1.UID1..EID2.U + 03c0: 49 44 31 0a 0c 45 49 44 33 a0 32 92 90 90 93 49 ID1..EID3.2....I + 03d0: 49 44 30 45 49 44 30 93 49 49 44 31 45 49 44 31 ID0EID0.IID1EID1 + 03e0: 90 93 49 49 44 32 45 49 44 32 93 49 49 44 33 45 ..IID2EID2.IID3E + 03f0: 49 44 33 70 0a 06 53 54 53 31 a4 6b a0 0f 92 93 ID3p..STS1.k.... + 0400: 69 0a 01 70 0a 0a 53 54 53 31 a4 6b 7d 7b 50 44 i..p..STS1.k}{PD + 0410: 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 31 C1......CAP1PDC1 + 0420: 70 7b 50 44 43 31 0a ff 00 50 43 50 31 a0 4c 05 p{PDC1...PCP1.L. + 0430: 7b 43 46 47 44 0a 01 00 a0 41 05 90 90 7b 43 46 {CFGD....A...{CF + 0440: 47 44 0c 00 00 00 01 00 93 7b 50 44 43 31 0a 09 GD.......{PDC1.. + 0450: 00 0a 09 92 7b 53 44 54 4c 0a 10 00 7d 53 44 54 ....{SDTL...}SDT + 0460: 4c 0a 10 53 44 54 4c 5b 80 49 53 54 31 00 83 88 L..SDTL[.IST1... + 0470: 53 53 44 54 0a 04 00 83 88 53 53 44 54 0a 05 00 SSDT.....SSDT... + 0480: 5b 20 49 53 54 31 48 49 31 5f a0 49 05 7b 43 46 [ IST1HI1_.I.{CF + 0490: 47 44 0a f0 00 a0 4e 04 90 90 7b 43 46 47 44 0c GD....N...{CFGD. + 04a0: 00 00 00 01 00 7b 50 44 43 31 0a 18 00 92 7b 53 .....{PDC1....{S + 04b0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 04c0: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 04d0: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 04e0: 48 43 31 5f a4 6b HC1_.k + +XSDT @ 0xbf6d87f0 + 0000: 58 53 44 54 94 00 00 00 01 c2 4c 45 4e 4f 56 4f XSDT......LENOVO + 0010: 54 50 2d 36 38 20 20 20 00 00 04 06 20 4c 54 50 TP-68 .... LTP + 0020: 00 00 00 00 d2 fb 6d bf 00 00 00 00 c6 fc 6d bf ......m.......m. + 0030: 00 00 00 00 2e fd 6d bf 00 00 00 00 66 fd 6d bf ......m.....f.m. + 0040: 00 00 00 00 a2 fd 6d bf 00 00 00 00 d4 fd 6d bf ......m.......m. + 0050: 00 00 00 00 fa fd 6d bf 00 00 00 00 70 ff 6d bf ......m.....p.m. + 0060: 00 00 00 00 d8 ff 6d bf 00 00 00 00 bd 98 6d bf ......m.......m. + 0070: 00 00 00 00 1a 98 6d bf 00 00 00 00 10 8e 6d bf ......m.......m. + 0080: 00 00 00 00 6a 8d 6d bf 00 00 00 00 84 88 6d bf ....j.m.......m. + 0090: 00 00 00 00 .... + +RSD PTR @ 0xf7240 + 0000: 52 53 44 20 50 54 52 20 c5 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: 94 87 6d bf 24 00 00 00 f0 87 6d bf 00 00 00 00 ..m.$.....m..... + 0020: 39 00 00 00 9... + diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/osilinux-0001.log fwts-14.03.00/fwts-test/osilinux-0001/osilinux-0001.log --- fwts-14.02.00/fwts-test/osilinux-0001/osilinux-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/osilinux-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,37 @@ +osilinux osilinux: Disassemble DSDT to check for _OSI("Linux"). +osilinux ---------------------------------------------------------- +osilinux Test 1 of 1: Disassemble DSDT to check for _OSI("Linux"). +osilinux This is not strictly a failure mode, it just alerts one +osilinux that this has been defined in the DSDT and probably should +osilinux be avoided since the Linux ACPI driver matches onto the +osilinux Windows _OSI strings +osilinux { +osilinux If (_OSI ("Linux")) +osilinux { +osilinux Store (One, LINX) +osilinux Store (Zero, ECDY) +osilinux } +osilinux If (_OSI ("Windows 2001")) +osilinux { +osilinux Store (0x07D1, OSYS) +osilinux } +osilinux If (_OSI ("Windows 2001 SP1")) +osilinux { +osilinux Store (0x07D1, OSYS) +osilinux } +osilinux If (_OSI ("Windows 2001 SP2")) +osilinux { +osilinux Store (0x07D2, OSYS) +osilinux } +osilinux If (_OSI ("Windows 2006")) +osilinux { +osilinux Store (0x07D6, OSYS) +osilinux } +osilinux } +osilinux WARNING: Test 1, DSDT implements a deprecated +osilinux _OSI("Linux") test. +osilinux +osilinux ========================================================== +osilinux 0 passed, 0 failed, 1 warning, 0 aborted, 0 skipped, 0 +osilinux info only. +osilinux ========================================================== diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/osilinux-0002.log fwts-14.03.00/fwts-test/osilinux-0001/osilinux-0002.log --- fwts-14.02.00/fwts-test/osilinux-0001/osilinux-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/osilinux-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,14 @@ +osilinux osilinux: Disassemble DSDT to check for _OSI("Linux"). +osilinux ---------------------------------------------------------- +osilinux Test 1 of 1: Disassemble DSDT to check for _OSI("Linux"). +osilinux This is not strictly a failure mode, it just alerts one +osilinux that this has been defined in the DSDT and probably should +osilinux be avoided since the Linux ACPI driver matches onto the +osilinux Windows _OSI strings +osilinux PASSED: Test 1, DSDT does not implement a deprecated +osilinux _OSI("Linux") test. +osilinux +osilinux ========================================================== +osilinux 1 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +osilinux info only. +osilinux ========================================================== diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/test-0001.sh fwts-14.03.00/fwts-test/osilinux-0001/test-0001.sh --- fwts-14.02.00/fwts-test/osilinux-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test osilinux against known incorrect ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/osilinux.log.$$ + +$FWTS --show-tests | grep osilinux > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/osilinux-0001/acpidump-0001.log osilinux - | grep "^[0-9]*[ ]*osilinux" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/osilinux-0001/osilinux-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/osilinux-0001/test-0002.sh fwts-14.03.00/fwts-test/osilinux-0001/test-0002.sh --- fwts-14.02.00/fwts-test/osilinux-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/osilinux-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test osilinux against known correct ACPI tables" +NAME=test-0002.sh +TMPLOG=$TMP/osilinux.log.$$ + +$FWTS --show-tests | grep osilinux > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/osilinux-0001/acpidump-0002.log osilinux - | grep "^[0-9]*[ ]*osilinux" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/osilinux-0001/osilinux-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/syntaxcheck-0001/acpidump-0001.log fwts-14.03.00/fwts-test/syntaxcheck-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/syntaxcheck-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/syntaxcheck-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,1735 @@ +DSDT @ 0xbf6d9b6a + 0000: 44 53 44 54 f4 5f 00 00 02 11 54 4f 53 43 50 4c DSDT._....TOSCPL + 0010: 43 52 45 53 54 4c 4e 45 00 00 04 06 49 4e 54 4c CRESTLNE....INTL + 0020: 08 06 06 20 08 5a 30 30 30 01 08 5a 30 30 31 0a ... .Z000..Z001. + 0030: 02 08 5a 30 30 32 0a 04 08 5a 30 30 33 0a 08 08 ..Z002...Z003... + 0040: 5a 30 30 34 00 08 5a 30 30 35 0a 0f 08 5a 30 30 Z004..Z005...Z00 + 0050: 36 0a 0d 08 5a 30 30 37 0a 0b 08 5a 30 30 38 0a 6...Z007...Z008. + 0060: 09 08 45 43 44 59 0a 07 5b 01 4d 55 54 58 00 5b ..ECDY..[.MUTX.[ + 0070: 80 50 52 54 30 01 0a 80 0a 04 5b 81 0b 50 52 54 .PRT0.....[..PRT + 0080: 30 13 50 38 30 48 20 14 4e 07 50 38 58 48 0a a0 0.P80H .N.P8XH.. + 0090: 17 93 68 00 70 7d 7b 50 38 30 44 0c 00 ff ff ff ..h.p}{P80D..... + 00a0: 00 69 00 50 38 30 44 a0 1b 93 68 01 70 7d 7b 50 .i.P80D...h.p}{P + 00b0: 38 30 44 0c ff 00 ff ff 00 79 69 0a 08 00 00 50 80D......yi....P + 00c0: 38 30 44 a0 1c 93 68 0a 02 70 7d 7b 50 38 30 44 80D...h..p}{P80D + 00d0: 0c ff ff 00 ff 00 79 69 0a 10 00 00 50 38 30 44 ......yi....P80D + 00e0: a0 1c 93 68 0a 03 70 7d 7b 50 38 30 44 0c ff ff ...h..p}{P80D... + 00f0: ff 00 00 79 69 0a 18 00 00 50 38 30 44 70 50 38 ...yi....P80DpP8 + 0100: 30 44 50 38 30 48 14 0c 5f 50 49 43 01 70 68 47 0DP80H.._PIC.phG + 0110: 50 49 43 14 46 06 5f 50 54 53 01 70 00 50 38 30 PIC.F._PTS.p.P80 + 0120: 44 50 38 58 48 00 68 a0 1e 93 68 0a 03 70 01 5c DP8XH.h...h..p.\ + 0130: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0140: 30 5f 53 33 4c 44 a0 33 93 68 0a 04 70 01 5c 2f 0_S3LD.3.h..p.\/ + 0150: 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 ._SB_PCI0LPCBEC0 + 0160: 5f 53 33 4c 44 5c 2f 04 5f 53 42 5f 50 43 49 30 _S3LD\/._SB_PCI0 + 0170: 4c 50 43 42 50 48 53 53 0a 0e 14 4c 1c 5f 57 41 LPCBPHSS...L._WA + 0180: 4b 01 50 38 58 48 01 0a ab a0 30 91 93 68 0a 03 K.P8XH....0..h.. + 0190: 93 68 0a 04 a0 25 7b 43 46 47 44 0c 00 00 00 01 .h...%{CFGD..... + 01a0: 00 a0 18 90 7b 43 46 47 44 0a f0 00 93 4f 53 59 ....{CFGD....OSY + 01b0: 53 0b d1 07 54 52 41 50 0a 3d a0 18 93 52 50 31 S...TRAP.=...RP1 + 01c0: 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 D..\/._SB_PCI0RP + 01d0: 30 31 00 a0 18 93 52 50 32 44 00 86 5c 2f 03 5f 01....RP2D..\/._ + 01e0: 53 42 5f 50 43 49 30 52 50 30 32 00 a0 18 93 52 SB_PCI0RP02....R + 01f0: 50 33 44 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 P3D..\/._SB_PCI0 + 0200: 52 50 30 33 00 a0 18 93 52 50 34 44 00 86 5c 2f RP03....RP4D..\/ + 0210: 03 5f 53 42 5f 50 43 49 30 52 50 30 34 00 a0 18 ._SB_PCI0RP04... + 0220: 93 52 50 35 44 00 86 5c 2f 03 5f 53 42 5f 50 43 .RP5D..\/._SB_PC + 0230: 49 30 52 50 30 35 00 a0 18 93 52 50 36 44 00 86 I0RP05....RP6D.. + 0240: 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 36 00 \/._SB_PCI0RP06. + 0250: a0 12 93 68 0a 03 50 38 58 48 00 0a 30 54 52 41 ...h..P8XH..0TRA + 0260: 50 0a 46 a0 43 0d 93 68 0a 04 50 38 58 48 00 0a P.F.C..h..P8XH.. + 0270: 40 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 @\/._SB_PCI0LPCB + 0280: 50 48 53 53 0a 0f 70 57 41 4b 46 60 70 00 57 41 PHSS..pWAKF`p.WA + 0290: 4b 46 7b 60 0a 05 60 a0 18 93 60 01 50 38 58 48 KF{`..`...`.P8XH + 02a0: 00 0a 41 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 ..A.\._SB_PWRB.. + 02b0: a0 46 08 44 54 53 45 54 52 41 50 0a 47 a0 42 06 .F.DTSETRAP.G.B. + 02c0: 90 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 .\/._SB_PCI0LPCB + 02d0: 45 43 4f 4b 93 45 43 44 59 00 a0 27 92 95 44 54 ECOK.ECDY..'..DT + 02e0: 53 31 44 54 53 32 70 44 54 53 31 5c 2f 05 5f 53 S1DTS2pDTS1\/._S + 02f0: 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b B_PCI0LPCBEC0_SK + 0300: 54 41 a1 1d 70 44 54 53 32 5c 2f 05 5f 53 42 5f TA..pDTS2\/._SB_ + 0310: 50 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 PCI0LPCBEC0_SKTA + 0320: a1 16 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0330: 42 50 48 53 53 0a 10 5c 2e 5f 50 52 5f 52 50 50 BPHSS..\._PR_RPP + 0340: 43 a4 12 04 02 00 00 14 1e 47 45 54 42 0b 77 68 C........GETB.wh + 0350: 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 46 ..`wi..a[.j`aTBF + 0360: 33 a4 54 42 46 33 14 42 09 50 4e 4f 54 08 a0 4a 3.TBF3.B.PNOT..J + 0370: 06 4d 50 45 4e a0 31 7b 50 44 43 30 0a 08 00 86 .MPEN.1{PDC0.... + 0380: 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 a0 1a 7b 50 \._PR_CPU0....{P + 0390: 44 43 30 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC0...[".d.\._PR + 03a0: 5f 43 50 55 30 0a 81 a0 31 7b 50 44 43 31 0a 08 _CPU0...1{PDC1.. + 03b0: 00 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 80 a0 1a ..\._PR_CPU1.... + 03c0: 7b 50 44 43 31 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC1...[".d.\._ + 03d0: 50 52 5f 43 50 55 31 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU1.....\._P + 03e0: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 03f0: 50 52 5f 43 50 55 30 0a 81 14 17 54 52 41 50 09 PR_CPU0....TRAP. + 0400: 70 68 53 4d 49 46 70 00 54 52 50 30 a4 53 4d 49 phSMIFp.TRP0.SMI + 0410: 46 10 41 0f 5f 53 42 5f 14 4a 0e 5f 49 4e 49 00 F.A._SB_.J._INI. + 0420: 70 0b 99 99 4d 41 52 4b a0 1c 44 54 53 45 54 52 p...MARK..DTSETR + 0430: 41 50 0a 47 5e 2f 03 50 43 49 30 4c 50 43 42 50 AP.G^/.PCI0LPCBP + 0440: 48 53 53 0a 10 70 0b d0 07 4f 53 59 53 a0 4a 09 HSS..p...OSYS.J. + 0450: 5b 12 5f 4f 53 49 60 a0 18 5f 4f 53 49 0d 4c 69 [._OSI`.._OSI.Li + 0460: 6e 75 78 00 70 01 4c 49 4e 58 70 00 45 43 44 59 nux.p.LINXp.ECDY + 0470: a0 1b 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 .._OSI.Windows 2 + 0480: 30 30 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f 001.p...OSYS.._O + 0490: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04a0: 53 50 31 00 70 0b d1 07 4f 53 59 53 a0 1f 5f 4f SP1.p...OSYS.._O + 04b0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 04c0: 53 50 32 00 70 0b d2 07 4f 53 59 53 a0 1b 5f 4f SP2.p...OSYS.._O + 04d0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 SI.Windows 2006. + 04e0: 70 0b d6 07 4f 53 59 53 a0 14 90 4d 50 45 4e 93 p...OSYS...MPEN. + 04f0: 4f 53 59 53 0b d1 07 54 52 41 50 0a 3d 54 52 41 OSYS...TRAP.=TRA + 0500: 50 0a 2b 5b 80 47 4e 56 53 00 0c bc 2d 6e bf 0b P.+[.GNVS...-n.. + 0510: 00 01 5b 81 45 24 47 4e 56 53 10 4f 53 59 53 10 ..[.E$GNVS.OSYS. + 0520: 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 08 53 SMIF.PRM0.PRM1.S + 0530: 43 49 46 08 50 52 4d 32 08 50 52 4d 33 08 4c 43 CIF.PRM2.PRM3.LC + 0540: 4b 46 08 50 52 4d 34 08 50 52 4d 35 08 50 38 30 KF.PRM4.PRM5.P80 + 0550: 44 20 4c 49 44 53 08 50 57 52 53 08 44 42 47 53 D LIDS.PWRS.DBGS + 0560: 08 4c 49 4e 58 08 00 08 41 43 54 31 08 41 43 54 .LINX...ACT1.ACT + 0570: 54 08 50 53 56 54 08 54 43 31 56 08 54 43 32 56 T.PSVT.TC1V.TC2V + 0580: 08 54 53 50 56 08 43 52 54 54 08 44 54 53 45 08 .TSPV.CRTT.DTSE. + 0590: 44 54 53 31 08 44 54 53 32 08 00 40 05 41 50 49 DTS1.DTS2..@.API + 05a0: 43 08 4d 50 45 4e 08 50 43 50 30 08 50 43 50 31 C.MPEN.PCP0.PCP1 + 05b0: 08 50 50 43 4d 08 00 28 43 4d 41 50 08 43 4d 42 .PPCM..(CMAP.CMB + 05c0: 50 08 4c 50 54 50 08 46 44 43 50 08 00 30 49 47 P.LPTP.FDCP..0IG + 05d0: 44 53 08 54 4c 53 54 08 43 41 44 4c 08 50 41 44 DS.TLST.CADL.PAD + 05e0: 4c 08 43 53 54 45 10 4e 53 54 45 10 53 53 54 45 L.CSTE.NSTE.SSTE + 05f0: 10 4e 44 49 44 08 44 49 44 31 20 44 49 44 32 20 .NDID.DID1 DID2 + 0600: 44 49 44 33 20 44 49 44 34 20 44 49 44 35 20 00 DID3 DID4 DID5 . + 0610: 40 06 42 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 @.BLCS.BRTL.ALSE + 0620: 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 .ALAF.LLOW.LHIH. + 0630: 00 08 45 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c ..EMAE.EMAP.EMAL + 0640: 10 00 08 4d 45 46 45 08 00 18 54 50 4d 50 08 54 ...MEFE...TPMP.T + 0650: 50 4d 45 08 00 40 04 47 54 46 30 38 47 54 46 32 PME..@.GTF08GTF2 + 0660: 38 49 44 45 4d 08 47 54 46 31 38 00 40 09 41 53 8IDEM.GTF18.@.AS + 0670: 4c 42 20 49 42 54 54 08 49 50 41 54 08 49 54 56 LB IBTT.IPAT.ITV + 0680: 46 08 49 54 56 4d 08 49 50 53 43 08 49 42 4c 43 F.ITVM.IPSC.IBLC + 0690: 08 49 42 49 41 08 49 53 53 43 08 49 34 30 39 08 .IBIA.ISSC.I409. + 06a0: 49 35 30 39 08 49 36 30 39 08 49 37 30 39 08 49 I509.I609.I709.I + 06b0: 44 4d 4d 08 49 44 4d 53 08 49 46 31 45 08 48 56 DMM.IDMS.IF1E.HV + 06c0: 43 4f 08 4e 58 44 31 20 4e 58 44 32 20 4d 41 52 CO.NXD1 NXD2 MAR + 06d0: 4b 10 42 52 41 44 08 42 54 45 4e 08 56 56 45 4e K.BRAD.BTEN.VVEN + 06e0: 08 42 47 54 4c 08 54 4d 45 45 01 00 07 53 43 55 .BGTL.TMEE...SCU + 06f0: 30 01 53 43 55 31 01 53 43 55 32 01 53 43 55 33 0.SCU1.SCU2.SCU3 + 0700: 01 00 04 58 4b 53 50 01 58 4b 49 4e 01 58 4b 49 ...XKSP.XKIN.XKI + 0710: 44 01 58 4b 4f 4b 01 00 04 42 47 55 31 08 42 53 D.XKOK...BGU1.BS + 0720: 54 31 08 42 46 43 31 10 57 4b 4c 4e 08 57 41 4b T1.BFC1.WKLN.WAK + 0730: 46 08 44 53 4d 44 08 42 41 59 53 08 48 41 50 45 F.DSMD.BAYS.HAPE + 0740: 01 00 07 44 54 53 4d 01 00 07 4f 44 54 31 08 4f ...DTSM...ODT1.O + 0750: 44 54 32 08 44 54 53 57 08 08 44 53 45 4e 01 08 DT2.DTSW..DSEN.. + 0760: 45 43 4f 4e 00 08 47 50 49 43 00 08 43 54 59 50 ECON..GPIC..CTYP + 0770: 00 08 4c 30 31 43 00 08 56 46 4e 30 00 08 56 46 ..L01C..VFN0..VF + 0780: 4e 31 00 10 4a 7c 5f 47 50 45 14 46 35 5f 4c 30 N1..J|_GPE.F5_L0 + 0790: 31 00 72 4c 30 31 43 01 4c 30 31 43 50 38 58 48 1.rL01C.L01CP8XH + 07a0: 00 01 50 38 58 48 01 4c 30 31 43 a0 48 08 90 93 ..P8XH.L01C.H... + 07b0: 52 50 31 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 RP1D.\/._SB_PCI0 + 07c0: 52 50 30 31 48 50 53 58 5b 22 0a 64 a0 40 05 5c RP01HPSX[".d.@.\ + 07d0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 44 /._SB_PCI0RP01PD + 07e0: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 07f0: 50 30 31 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f P01PDCXp.\/._SB_ + 0800: 50 43 49 30 52 50 30 31 48 50 53 58 86 5c 2f 03 PCI0RP01HPSX.\/. + 0810: 5f 53 42 5f 50 43 49 30 52 50 30 31 00 a1 16 70 _SB_PCI0RP01...p + 0820: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0830: 48 50 53 58 a0 48 08 90 93 52 50 32 44 00 5c 2f HPSX.H...RP2D.\/ + 0840: 04 5f 53 42 5f 50 43 49 30 52 50 30 32 48 50 53 ._SB_PCI0RP02HPS + 0850: 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 5f 50 X[".d.@.\/._SB_P + 0860: 43 49 30 52 50 30 32 50 44 43 58 70 01 5c 2f 04 CI0RP02PDCXp.\/. + 0870: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 44 43 58 _SB_PCI0RP02PDCX + 0880: 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 p.\/._SB_PCI0RP0 + 0890: 32 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 2HPSX.\/._SB_PCI + 08a0: 30 52 50 30 32 00 a1 16 70 01 5c 2f 04 5f 53 42 0RP02...p.\/._SB + 08b0: 5f 50 43 49 30 52 50 30 32 48 50 53 58 a0 48 08 _PCI0RP02HPSX.H. + 08c0: 90 93 52 50 33 44 00 5c 2f 04 5f 53 42 5f 50 43 ..RP3D.\/._SB_PC + 08d0: 49 30 52 50 30 33 48 50 53 58 5b 22 0a 64 a0 40 I0RP03HPSX[".d.@ + 08e0: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 .\/._SB_PCI0RP03 + 08f0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0900: 30 52 50 30 33 50 44 43 58 70 01 5c 2f 04 5f 53 0RP03PDCXp.\/._S + 0910: 42 5f 50 43 49 30 52 50 30 33 48 50 53 58 86 5c B_PCI0RP03HPSX.\ + 0920: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 33 00 a1 /._SB_PCI0RP03.. + 0930: 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .p.\/._SB_PCI0RP + 0940: 30 33 48 50 53 58 a0 48 08 90 93 52 50 34 44 00 03HPSX.H...RP4D. + 0950: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 48 \/._SB_PCI0RP04H + 0960: 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 53 42 PSX[".d.@.\/._SB + 0970: 5f 50 43 49 30 52 50 30 34 50 44 43 58 70 01 5c _PCI0RP04PDCXp.\ + 0980: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 44 /._SB_PCI0RP04PD + 0990: 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 CXp.\/._SB_PCI0R + 09a0: 50 30 34 48 50 53 58 86 5c 2f 03 5f 53 42 5f 50 P04HPSX.\/._SB_P + 09b0: 43 49 30 52 50 30 34 00 a1 16 70 01 5c 2f 04 5f CI0RP04...p.\/._ + 09c0: 53 42 5f 50 43 49 30 52 50 30 34 48 50 53 58 a0 SB_PCI0RP04HPSX. + 09d0: 48 08 90 93 52 50 35 44 00 5c 2f 04 5f 53 42 5f H...RP5D.\/._SB_ + 09e0: 50 43 49 30 52 50 30 35 48 50 53 58 5b 22 0a 64 PCI0RP05HPSX[".d + 09f0: a0 40 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .@.\/._SB_PCI0RP + 0a00: 30 35 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 05PDCXp.\/._SB_P + 0a10: 43 49 30 52 50 30 35 50 44 43 58 70 01 5c 2f 04 CI0RP05PDCXp.\/. + 0a20: 5f 53 42 5f 50 43 49 30 52 50 30 35 48 50 53 58 _SB_PCI0RP05HPSX + 0a30: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 35 .\/._SB_PCI0RP05 + 0a40: 00 a1 16 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...p.\/._SB_PCI0 + 0a50: 52 50 30 35 48 50 53 58 a0 48 08 90 93 52 50 36 RP05HPSX.H...RP6 + 0a60: 44 00 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 D.\/._SB_PCI0RP0 + 0a70: 36 48 50 53 58 5b 22 0a 64 a0 40 05 5c 2f 04 5f 6HPSX[".d.@.\/._ + 0a80: 53 42 5f 50 43 49 30 52 50 30 36 50 44 43 58 70 SB_PCI0RP06PDCXp + 0a90: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 .\/._SB_PCI0RP06 + 0aa0: 50 44 43 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PDCXp.\/._SB_PCI + 0ab0: 30 52 50 30 36 48 50 53 58 86 5c 2f 03 5f 53 42 0RP06HPSX.\/._SB + 0ac0: 5f 50 43 49 30 52 50 30 36 00 a1 16 70 01 5c 2f _PCI0RP06...p.\/ + 0ad0: 04 5f 53 42 5f 50 43 49 30 52 50 30 36 48 50 53 ._SB_PCI0RP06HPS + 0ae0: 58 14 42 0d 5f 4c 30 32 00 70 00 47 50 45 43 a0 X.B._L02.p.GPEC. + 0af0: 4d 0a 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 M.\/._SB_PCI0LPC + 0b00: 42 45 43 4f 4b a0 4e 04 93 44 54 53 57 01 a0 27 BECOK.N..DTSW..' + 0b10: 92 95 44 54 53 31 44 54 53 32 70 44 54 53 31 5c ..DTS1DTS2pDTS1\ + 0b20: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 /._SB_PCI0LPCBEC + 0b30: 30 5f 53 4b 54 41 a1 1d 70 44 54 53 32 5c 2f 05 0_SKTA..pDTS2\/. + 0b40: 5f 53 42 5f 50 43 49 30 4c 50 43 42 45 43 30 5f _SB_PCI0LPCBEC0_ + 0b50: 53 4b 54 41 a1 48 04 a0 27 92 95 4f 44 54 31 4f SKTA.H..'..ODT1O + 0b60: 44 54 32 70 4f 44 54 31 5c 2f 05 5f 53 42 5f 50 DT2pODT1\/._SB_P + 0b70: 43 49 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 CI0LPCBEC0_SKTA. + 0b80: 1d 70 4f 44 54 32 5c 2f 05 5f 53 42 5f 50 43 49 .pODT2\/._SB_PCI + 0b90: 30 4c 50 43 42 45 43 30 5f 53 4b 54 41 a1 16 5c 0LPCBEC0_SKTA..\ + 0ba0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 42 50 48 /._SB_PCI0LPCBPH + 0bb0: 53 53 0a 10 14 18 5f 4c 30 33 00 86 5c 2f 03 5f SS...._L03..\/._ + 0bc0: 53 42 5f 50 43 49 30 55 53 42 31 0a 02 14 18 5f SB_PCI0USB1...._ + 0bd0: 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L04..\/._SB_PCI0 + 0be0: 55 53 42 32 0a 02 14 18 5f 4c 30 35 00 86 5c 2f USB2...._L05..\/ + 0bf0: 03 5f 53 42 5f 50 43 49 30 55 53 42 35 0a 02 14 ._SB_PCI0USB5... + 0c00: 36 5f 4c 30 36 00 a0 27 5c 2f 04 5f 53 42 5f 50 6_L06..'\/._SB_P + 0c10: 43 49 30 47 46 58 30 47 53 53 45 5c 2f 04 5f 53 CI0GFX0GSSE\/._S + 0c20: 42 5f 50 43 49 30 47 46 58 30 47 53 43 49 a1 07 B_PCI0GFX0GSCI.. + 0c30: 70 01 53 43 49 53 14 43 1f 5f 4c 30 39 00 a0 41 p.SCIS.C._L09..A + 0c40: 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 .\/._SB_PCI0RP01 + 0c50: 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 PSPXp.\/._SB_PCI + 0c60: 30 52 50 30 31 50 53 50 58 70 01 5c 2f 04 5f 53 0RP01PSPXp.\/._S + 0c70: 42 5f 50 43 49 30 52 50 30 31 50 4d 53 58 86 5c B_PCI0RP01PMSX.\ + 0c80: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + 0c90: a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + 0ca0: 30 32 50 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 02PSPXp.\/._SB_P + 0cb0: 43 49 30 52 50 30 32 50 53 50 58 70 01 5c 2f 04 CI0RP02PSPXp.\/. + 0cc0: 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d 53 58 _SB_PCI0RP02PMSX + 0cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 0ce0: 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 49 30 ...A.\/._SB_PCI0 + 0cf0: 52 50 30 33 50 53 50 58 70 01 5c 2f 04 5f 53 42 RP03PSPXp.\/._SB + 0d00: 5f 50 43 49 30 52 50 30 33 50 53 50 58 70 01 5c _PCI0RP03PSPXp.\ + 0d10: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 33 50 4d /._SB_PCI0RP03PM + 0d20: 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 SX.\/._SB_PCI0RP + 0d30: 30 33 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f 50 43 03...A.\/._SB_PC + 0d40: 49 30 52 50 30 34 50 53 50 58 70 01 5c 2f 04 5f I0RP04PSPXp.\/._ + 0d50: 53 42 5f 50 43 49 30 52 50 30 34 50 53 50 58 70 SB_PCI0RP04PSPXp + 0d60: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 .\/._SB_PCI0RP04 + 0d70: 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PMSX.\/._SB_PCI0 + 0d80: 52 50 30 34 0a 02 a0 41 05 5c 2f 04 5f 53 42 5f RP04...A.\/._SB_ + 0d90: 50 43 49 30 52 50 30 35 50 53 50 58 70 01 5c 2f PCI0RP05PSPXp.\/ + 0da0: 04 5f 53 42 5f 50 43 49 30 52 50 30 35 50 53 50 ._SB_PCI0RP05PSP + 0db0: 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 Xp.\/._SB_PCI0RP + 0dc0: 30 35 50 4d 53 58 86 5c 2f 03 5f 53 42 5f 50 43 05PMSX.\/._SB_PC + 0dd0: 49 30 52 50 30 35 0a 02 a0 41 05 5c 2f 04 5f 53 I0RP05...A.\/._S + 0de0: 42 5f 50 43 49 30 52 50 30 36 50 53 50 58 70 01 B_PCI0RP06PSPXp. + 0df0: 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 36 50 \/._SB_PCI0RP06P + 0e00: 53 50 58 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 SPXp.\/._SB_PCI0 + 0e10: 52 50 30 36 50 4d 53 58 86 5c 2f 03 5f 53 42 5f RP06PMSX.\/._SB_ + 0e20: 50 43 49 30 52 50 30 36 0a 02 14 18 5f 4c 30 42 PCI0RP06...._L0B + 0e30: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 43 49 ..\/._SB_PCI0PCI + 0e40: 42 0a 02 14 18 5f 4c 30 43 00 86 5c 2f 03 5f 53 B...._L0C..\/._S + 0e50: 42 5f 50 43 49 30 55 53 42 33 0a 02 14 4b 0b 5f B_PCI0USB3...K._ + 0e60: 4c 30 44 00 a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 L0D..;\/._SB_PCI + 0e70: 30 45 48 43 31 50 4d 45 53 70 01 5c 2f 04 5f 53 0EHC1PMESp.\/._S + 0e80: 42 5f 50 43 49 30 45 48 43 31 50 4d 45 53 86 5c B_PCI0EHC1PMES.\ + 0e90: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + 0ea0: a0 3b 5c 2f 04 5f 53 42 5f 50 43 49 30 45 48 43 .;\/._SB_PCI0EHC + 0eb0: 32 50 4d 45 53 70 01 5c 2f 04 5f 53 42 5f 50 43 2PMESp.\/._SB_PC + 0ec0: 49 30 45 48 43 32 50 4d 45 53 86 5c 2f 03 5f 53 I0EHC2PMES.\/._S + 0ed0: 42 5f 50 43 49 30 45 48 43 32 0a 02 a0 3b 5c 2f B_PCI0EHC2...;\/ + 0ee0: 04 5f 53 42 5f 50 43 49 30 48 44 45 46 50 4d 45 ._SB_PCI0HDEFPME + 0ef0: 53 70 01 5c 2f 04 5f 53 42 5f 50 43 49 30 48 44 Sp.\/._SB_PCI0HD + 0f00: 45 46 50 4d 45 53 86 5c 2f 03 5f 53 42 5f 50 43 EFPMES.\/._SB_PC + 0f10: 49 30 48 44 45 46 0a 02 14 18 5f 4c 30 45 00 86 I0HDEF...._L0E.. + 0f20: 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 34 0a \/._SB_PCI0USB4. + 0f30: 02 14 1c 5f 4c 31 42 00 80 4c 50 4f 4c 4c 50 4f ..._L1B..LPOLLPO + 0f40: 4c 86 5c 2e 5f 53 42 5f 4c 49 44 30 0a 80 10 46 L.\._SB_LID0...F + 0f50: 0b 5f 50 52 5f 5b 83 0b 43 50 55 30 00 10 10 00 ._PR_[..CPU0.... + 0f60: 00 06 5b 83 0b 43 50 55 31 01 10 10 00 00 06 14 ..[..CPU1....... + 0f70: 45 09 52 50 50 43 00 a0 4d 08 93 4f 53 59 53 0b E.RPPC..M..OSYS. + 0f80: d2 07 a0 42 08 7b 43 46 47 44 01 00 a0 42 04 94 ...B.{CFGD...B.. + 0f90: 5e 2e 43 50 55 30 5f 50 50 43 00 74 5e 2e 43 50 ^.CPU0_PPC.t^.CP + 0fa0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 0fb0: 43 50 4e 4f 54 72 5e 2e 43 50 55 30 5f 50 50 43 CPNOTr^.CPU0_PPC + 0fc0: 01 5e 2e 43 50 55 30 5f 50 50 43 50 4e 4f 54 a1 .^.CPU0_PPCPNOT. + 0fd0: 35 72 5e 2e 43 50 55 30 5f 50 50 43 01 5e 2e 43 5r^.CPU0_PPC.^.C + 0fe0: 50 55 30 5f 50 50 43 50 4e 4f 54 74 5e 2e 43 50 PU0_PPCPNOTt^.CP + 0ff0: 55 30 5f 50 50 43 01 5e 2e 43 50 55 30 5f 50 50 U0_PPC.^.CPU0_PP + 1000: 43 50 4e 4f 54 08 46 57 53 4f 0d 46 57 53 4f 00 CPNOT.FWSO.FWSO. + 1010: 08 5f 50 53 43 00 14 12 5f 50 53 30 00 70 5f 50 ._PSC..._PS0.p_P + 1020: 53 43 60 70 00 5f 50 53 43 14 0d 5f 50 53 33 00 SC`p._PSC.._PS3. + 1030: 70 0a 03 5f 50 53 43 10 8c fb 04 5f 53 42 5f 5b p.._PSC...._SB_[ + 1040: 82 4f 3e 41 4d 57 30 08 5f 48 49 44 0d 70 6e 70 .O>AMW0._HID.pnp + 1050: 30 63 31 34 00 08 5f 55 49 44 00 08 5f 57 44 47 0c14.._UID.._WDG + 1060: 11 3f 0a 3c a7 1d 85 2e 53 d0 5f 49 9d fa 1a 4a .?.<....S._I...J + 1070: d6 2e 6a 86 41 43 01 00 3b 6d 43 71 dd fb 72 4c ..j.AC..;mCq..rL + 1080: bc b8 43 5b fe 0d 64 f9 42 43 01 00 21 12 90 05 ..C[..d.BC..!... + 1090: 66 d5 d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 f.........).BA.. + 10a0: 08 53 54 41 43 11 07 0a 04 01 14 03 00 14 1f 57 .STAC..........W + 10b0: 51 41 43 01 70 0d 4d 58 4d 54 43 43 6f 6e 66 69 QAC.p.MXMTCConfi + 10c0: 67 44 61 74 61 00 5b 31 a4 53 54 41 43 08 53 54 gData.[1.STAC.ST + 10d0: 42 43 11 07 0a 04 01 00 00 00 14 34 57 51 42 43 BC.........4WQBC + 10e0: 01 70 0d 47 65 74 20 4d 58 4d 54 43 43 6f 6e 74 .p.Get MXMTCCont + 10f0: 72 6f 6c 44 61 74 61 3a 20 53 54 42 43 20 3d 20 rolData: STBC = + 1100: 00 5b 31 70 53 54 42 43 5b 31 a4 53 54 42 43 14 .[1pSTBC[1.STBC. + 1110: 47 06 57 53 42 43 02 70 69 53 54 42 43 70 0d 53 G.WSBC.piSTBCp.S + 1120: 65 74 20 4d 58 4d 54 43 43 6f 6e 74 72 6f 6c 44 et MXMTCControlD + 1130: 61 74 61 3a 20 53 54 42 43 20 3d 20 00 5b 31 70 ata: STBC = .[1p + 1140: 53 54 42 43 5b 31 a0 30 93 5e 5e 2f 03 50 43 49 STBC[1.0.^^/.PCI + 1150: 30 4c 50 43 42 45 43 4f 4b 01 70 83 88 53 54 42 0LPCBECOK.p..STB + 1160: 43 01 00 5e 5e 2f 04 50 43 49 30 4c 50 43 42 45 C..^^/.PCI0LPCBE + 1170: 43 30 5f 53 4b 54 43 08 57 51 42 41 11 43 2b 0b C0_SKTC.WQBA.C+. + 1180: ae 02 46 4f 4d 42 01 00 00 00 9e 02 00 00 c0 0b ..FOMB.......... + 1190: 00 00 44 53 00 01 1a 7d da 54 28 d9 85 00 01 06 ..DS...}.T(..... + 11a0: 18 42 10 07 10 0a 4b 61 02 c9 21 52 3c 18 94 05 .B....Ka..!R<... + 11b0: 10 43 88 57 04 44 04 84 bc 0a b0 29 c0 24 88 fa .C.W.D.....).$.. + 11c0: f7 87 28 09 0e 25 04 42 12 05 98 17 a0 5b 80 61 ..(..%.B.....[.a + 11d0: 01 b6 05 98 16 e0 18 92 4a 03 a7 04 96 02 21 a1 ........J.....!. + 11e0: 02 94 0b f0 2d 40 3b a2 24 0b b0 0c 23 02 8f 82 ....-@;.$...#... + 11f0: a1 71 68 ec 30 2c 13 4c 83 38 8c b2 91 45 60 dc .qh.0,.L.8...E`. + 1200: 4e 05 c8 15 20 4c 80 78 54 61 34 07 45 e0 42 63 N... L.xTa4.E.Bc + 1210: 64 40 c8 a3 00 ab a3 d0 a4 12 d8 bd 00 65 02 2c d@...........e., + 1220: 0a 10 27 c0 9a 00 63 48 32 28 40 9b 00 5b 20 42 ..'...cH2(@..[ B + 1230: 0f d4 19 8a 46 70 02 51 6a 46 11 48 ac 1a 01 85 ....Fp.QjF.H.... + 1240: 12 34 46 b0 10 81 c2 86 37 46 98 03 88 d1 fe 20 .4F.....7F..... + 1250: 48 20 05 e3 66 91 46 83 1a 6b 82 63 f7 68 4e b8 H ..f.F..k.c.hN. + 1260: 73 01 d2 e7 26 90 a3 3b b8 3a 07 4d 86 c7 b0 1e s...&..;.:.M.... + 1270: 06 d8 29 00 ef 1a 50 d3 3f 78 26 08 0e 35 44 8f ..)...P.?x&..5D. + 1280: 3a dc 09 1c fb 91 30 88 b3 3b 6e ac c3 c9 68 d0 :.....0..;n...h. + 1290: a5 0a 30 7b 00 d0 d0 12 9c f6 99 84 7e 0f 38 9f ..0{........~.8. + 12a0: 9e 21 89 fc 41 a0 46 e6 ff 3f b4 c7 78 5a 31 43 .!..A.F..?..xZ1C + 12b0: 3e 0b 1c 16 13 0b a1 4d 6a 3c 40 40 e1 d1 40 08 >......Mj<@@..@. + 12c0: 6f 06 9e af 09 46 86 90 93 f1 a0 06 e0 41 d7 3a o....F.......A.: + 12d0: 32 8d 27 a6 21 cf e8 00 22 bf 32 78 0c 41 02 f9 2.'.!...".2x.A.. + 12e0: c4 60 b8 c7 81 13 78 02 f0 59 40 10 92 00 21 51 .`....x..Y@...!Q + 12f0: e3 a7 47 08 7e 7a 78 93 30 28 1f d2 99 f9 90 e1 ..G.~zx.0(...... + 1300: 11 c2 07 c4 7b 9f 3b 19 c1 29 7b a4 e0 b0 7e 0e ....{.;..){...~. + 1310: 20 c0 af 0f 8f 0d 09 7c ae 08 8c 1d aa fd 0a 40 ......|.......@ + 1320: 08 1e ed 51 e0 54 23 1c 2d 78 08 8a 1c 03 4a cc ...Q.T#.-x....J. + 1330: 18 50 03 38 85 d0 e7 73 04 47 14 25 f6 21 19 da .P.8...s.G.%.!.. + 1340: 08 e1 1f 39 4e c1 f7 8b 23 3d ad 23 78 91 f0 08 ...9N...#=.#x... + 1350: 30 e1 ce 28 a8 38 30 f4 ff 7f 4c 01 dc 7a 3b a6 0..(.80...L..z;. + 1360: 80 3e c0 31 05 50 fc ff 3f a6 00 87 a8 c7 14 f4 .>.1.P..?....... + 1370: 40 0c 7c 2e a1 0d ff 96 c1 8e 03 87 74 6a 8f 28 @.|.........tj.( + 1380: 80 29 79 47 14 50 8c 14 d6 f1 04 18 05 3c 9b a0 .)yG.P.......<.. + 1390: 22 1d 4f 80 ce ff ff 78 02 58 b8 9a bc 92 84 7d ".O....x.X.....} + 13a0: 1e 78 1d 89 14 e3 41 e2 b5 e4 c1 24 46 98 08 8f .x....A....$F... + 13b0: 27 1e 47 c0 b7 82 28 91 8e 3e c4 83 49 28 63 3e '.G...(..>..I(c> + 13c0: a3 84 89 f9 04 70 22 ef 27 46 0a 73 2a 8f 27 2c .....p".'F.s*.', + 13d0: c4 f1 04 a0 85 e2 e3 09 3a 2c 84 fe ff c7 13 dc ........:,...... + 13e0: e1 c1 a7 0c fc 85 0c c6 f9 04 30 24 f0 7c 02 ca ..........0$.|.. + 13f0: db 18 e6 80 02 8c 14 da f4 a9 d1 a8 55 83 32 35 ............U.25 + 1400: ca 34 a8 d5 a7 52 63 c6 4c 9c 52 bc 6c 8d df f2 .4...Rc.L.R.l... + 1410: 9e 09 02 b1 20 0a 81 38 cc f3 42 20 96 a2 01 84 .... ..8..B .... + 1420: 85 06 a1 42 a9 05 e2 98 20 34 92 0a 10 f6 ff 07 ...B.... 4...... + 1430: 5b 82 1b 4c 49 44 30 08 5f 48 49 44 0c 41 d0 0c [..LID0._HID.A.. + 1440: 0d 14 0b 5f 4c 49 44 00 a4 4c 50 4f 4c 5b 82 0f ..._LID..LPOL[.. + 1450: 50 57 52 42 08 5f 48 49 44 0c 41 d0 0c 0c 5b 82 PWRB._HID.A...[. + 1460: 84 b9 04 50 43 49 30 14 09 5f 53 33 44 00 a4 0a ...PCI0.._S3D... + 1470: 02 14 09 5f 53 34 44 00 a4 0a 02 08 5f 48 49 44 ..._S4D....._HID + 1480: 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 d0 0a 03 5b .A...._CID.A...[ + 1490: 82 43 0e 4d 43 48 43 08 5f 41 44 52 00 5b 80 48 .C.MCHC._ADR.[.H + 14a0: 42 55 53 02 0a 40 0a c0 5b 81 4a 0c 48 42 55 53 BUS..@..[.J.HBUS + 14b0: 03 45 50 45 4e 01 00 0b 45 50 42 52 14 00 20 4d .EPEN...EPBR.. M + 14c0: 48 45 4e 01 00 0d 4d 48 42 52 12 00 40 0a 50 58 HEN...MHBR..@.PX + 14d0: 45 4e 01 50 58 53 5a 02 00 17 50 58 42 52 06 00 EN.PXSZ...PXBR.. + 14e0: 20 44 49 45 4e 01 00 0b 44 49 42 52 14 00 20 49 DIEN...DIBR.. I + 14f0: 50 45 4e 01 00 0b 49 50 42 52 14 00 40 0e 00 04 PEN...IPBR..@... + 1500: 50 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d PM0H...PM1L...PM + 1510: 31 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 1H...PM2L...PM2H + 1520: 02 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 ...PM3L...PM3H.. + 1530: 02 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 .PM4L...PM4H...P + 1540: 4d 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 M5L...PM5H...PM6 + 1550: 4c 02 00 02 50 4d 36 48 02 00 02 00 07 48 45 4e L...PM6H.....HEN + 1560: 41 01 00 40 05 54 55 55 44 10 00 40 06 00 04 54 A..@.TUUD..@...T + 1570: 4c 55 44 0c 08 42 55 46 30 11 4d 20 0b 08 02 88 LUD..BUF0.M .... + 1580: 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 00 01 87 ................ + 1590: 17 00 01 0c 03 00 00 00 00 00 00 00 00 f7 0c 00 ................ + 15a0: 00 00 00 00 00 f8 0c 00 00 47 01 f8 0c f8 0c 01 .........G...... + 15b0: 08 87 17 00 01 0c 03 00 00 00 00 00 0d 00 00 ff ................ + 15c0: ff 00 00 00 00 00 00 00 f3 00 00 87 17 00 00 0c ................ + 15d0: 03 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 ................ + 15e0: 00 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 ................ + 15f0: 00 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 1600: 17 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c ..........@..... + 1610: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 1620: 00 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 ................ + 1630: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c @............... + 1640: 00 ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1650: 00 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 ............?... + 1660: 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 ....@........... + 1670: 00 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 ..@...........@. + 1680: 00 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff ................ + 1690: bf 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c ........@....... + 16a0: 03 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 ................ + 16b0: 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 ..@............. + 16c0: 00 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 ....?.......@... + 16d0: 17 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e ..........@..... + 16e0: 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 ......@......... + 16f0: 00 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 ................ + 1700: 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e @............... + 1710: 00 ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 ..........@..... + 1720: 00 0c 03 00 00 00 00 00 00 0f 00 ff ff 0f 00 00 ................ + 1730: 00 00 00 00 00 01 00 87 17 00 00 0c 03 00 00 00 ................ + 1740: 00 00 00 00 00 ff ff ff df 00 00 00 00 00 00 00 ................ + 1750: 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 f0 ff ................ + 1760: ff bf fe 00 00 00 00 00 00 c0 0e 87 17 00 00 0c ................ + 1770: 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 00 ..........O..... + 1780: 00 00 00 00 00 79 00 14 4b 3d 5f 43 52 53 08 a0 .....y..K=_CRS.. + 1790: 1c 5e 2e 4d 43 48 43 50 4d 31 4c 8a 42 55 46 30 .^.MCHCPM1L.BUF0 + 17a0: 0a 7c 43 30 4c 4e 70 00 43 30 4c 4e a0 1f 93 5e .|C0LNp.C0LN...^ + 17b0: 2e 4d 43 48 43 50 4d 31 4c 01 8d 42 55 46 30 0b .MCHCPM1L..BUF0. + 17c0: 58 03 43 30 52 57 70 00 43 30 52 57 a0 1c 5e 2e X.C0RWp.C0RW..^. + 17d0: 4d 43 48 43 50 4d 31 48 8a 42 55 46 30 0a 96 43 MCHCPM1H.BUF0..C + 17e0: 34 4c 4e 70 00 43 34 4c 4e a0 1f 93 5e 2e 4d 43 4LNp.C4LN...^.MC + 17f0: 48 43 50 4d 31 48 01 8d 42 55 46 30 0b 28 04 43 HCPM1H..BUF0.(.C + 1800: 34 52 57 70 00 43 34 52 57 a0 1c 5e 2e 4d 43 48 4RWp.C4RW..^.MCH + 1810: 43 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e CPM2L.BUF0..C8LN + 1820: 70 00 43 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 p.C8LN...^.MCHCP + 1830: 4d 32 4c 01 8d 42 55 46 30 0b f8 04 43 38 52 57 M2L..BUF0...C8RW + 1840: 70 00 43 38 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d p.C8RW..^.MCHCPM + 1850: 32 48 8a 42 55 46 30 0a ca 43 43 4c 4e 70 00 43 2H.BUF0..CCLNp.C + 1860: 43 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 32 48 CLN...^.MCHCPM2H + 1870: 01 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 ..BUF0...CCRWp.C + 1880: 43 52 57 a0 1c 5e 2e 4d 43 48 43 50 4d 33 4c 8a CRW..^.MCHCPM3L. + 1890: 42 55 46 30 0a e4 44 30 4c 4e 70 00 44 30 4c 4e BUF0..D0LNp.D0LN + 18a0: a0 1f 93 5e 2e 4d 43 48 43 50 4d 33 4c 01 8d 42 ...^.MCHCPM3L..B + 18b0: 55 46 30 0b 98 06 44 30 52 57 70 00 44 30 52 57 UF0...D0RWp.D0RW + 18c0: a0 1c 5e 2e 4d 43 48 43 50 4d 33 48 8a 42 55 46 ..^.MCHCPM3H.BUF + 18d0: 30 0a fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1f 93 0..D4LNp.D4LN... + 18e0: 5e 2e 4d 43 48 43 50 4d 33 48 01 8d 42 55 46 30 ^.MCHCPM3H..BUF0 + 18f0: 0b 68 07 44 34 52 57 70 00 44 34 52 57 a0 1d 5e .h.D4RWp.D4RW..^ + 1900: 2e 4d 43 48 43 50 4d 34 4c 8a 42 55 46 30 0b 18 .MCHCPM4L.BUF0.. + 1910: 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1f 93 5e 2e .D8LNp.D8LN...^. + 1920: 4d 43 48 43 50 4d 34 4c 01 8d 42 55 46 30 0b 38 MCHCPM4L..BUF0.8 + 1930: 08 44 38 52 57 70 00 44 38 52 57 a0 1d 5e 2e 4d .D8RWp.D8RW..^.M + 1940: 43 48 43 50 4d 34 48 8a 42 55 46 30 0b 32 01 44 CHCPM4H.BUF0.2.D + 1950: 43 4c 4e 70 00 44 43 4c 4e a0 1f 93 5e 2e 4d 43 CLNp.DCLN...^.MC + 1960: 48 43 50 4d 34 48 01 8d 42 55 46 30 0b 08 09 44 HCPM4H..BUF0...D + 1970: 43 52 57 70 00 44 43 52 57 a0 1d 5e 2e 4d 43 48 CRWp.DCRW..^.MCH + 1980: 43 50 4d 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c CPM5L.BUF0.L.E0L + 1990: 4e 70 00 45 30 4c 4e a0 1f 93 5e 2e 4d 43 48 43 Np.E0LN...^.MCHC + 19a0: 50 4d 35 4c 01 8d 42 55 46 30 0b d8 09 45 30 52 PM5L..BUF0...E0R + 19b0: 57 70 00 45 30 52 57 a0 1d 5e 2e 4d 43 48 43 50 Wp.E0RW..^.MCHCP + 19c0: 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c 4e 70 M5H.BUF0.f.E4LNp + 19d0: 00 45 34 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d .E4LN...^.MCHCPM + 19e0: 35 48 01 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 5H..BUF0...E4RWp + 19f0: 00 45 34 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 .E4RW..^.MCHCPM6 + 1a00: 4c 8a 42 55 46 30 0b 80 01 45 38 4c 4e 70 00 45 L.BUF0...E8LNp.E + 1a10: 38 4c 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 4c 8LN...^.MCHCPM6L + 1a20: 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 00 45 ..BUF0.x.E8RWp.E + 1a30: 38 52 57 a0 1d 5e 2e 4d 43 48 43 50 4d 36 48 8a 8RW..^.MCHCPM6H. + 1a40: 42 55 46 30 0b 9a 01 45 43 4c 4e 70 00 45 43 4c BUF0...ECLNp.ECL + 1a50: 4e a0 1f 93 5e 2e 4d 43 48 43 50 4d 36 48 01 8d N...^.MCHCPM6H.. + 1a60: 42 55 46 30 0b 48 0c 45 43 52 57 70 00 45 43 52 BUF0.H.ECRWp.ECR + 1a70: 57 a0 1d 5e 2e 4d 43 48 43 50 4d 30 48 8a 42 55 W..^.MCHCPM0H.BU + 1a80: 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e a0 F0...F0LNp.F0LN. + 1a90: 1f 93 5e 2e 4d 43 48 43 50 4d 30 48 01 8d 42 55 ..^.MCHCPM0H..BU + 1aa0: 46 30 0b 18 0d 46 30 52 57 70 00 46 30 52 57 8a F0...F0RWp.F0RW. + 1ab0: 42 55 46 30 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 BUF0...M1MN.BUF0 + 1ac0: 0b c6 01 4d 31 4d 58 8a 42 55 46 30 0b ce 01 4d ...M1MX.BUF0...M + 1ad0: 31 4c 4e 8a 42 55 46 30 0b dc 01 4d 32 4d 4e 8a 1LN.BUF0...M2MN. + 1ae0: 42 55 46 30 0b e0 01 4d 32 4d 58 8a 42 55 46 30 BUF0...M2MX.BUF0 + 1af0: 0b e8 01 4d 32 4c 4e 79 5e 2e 4d 43 48 43 50 58 ...M2LNy^.MCHCPX + 1b00: 42 52 0a 1a 4d 31 4d 58 7a 0c 00 00 00 10 5e 2e BR..M1MXz.....^. + 1b10: 4d 43 48 43 50 58 53 5a 60 72 4d 31 4d 58 60 4d MCHCPXSZ`rM1MX`M + 1b20: 32 4d 4e 72 74 4d 32 4d 58 4d 32 4d 4e 00 01 4d 2MNrtM2MXM2MN..M + 1b30: 32 4c 4e 74 4d 31 4d 58 01 4d 31 4d 58 79 5e 2e 2LNtM1MX.M1MXy^. + 1b40: 4d 43 48 43 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 MCHCTLUD..M1MNrt + 1b50: 4d 31 4d 58 4d 31 4d 4e 00 01 4d 31 4c 4e a4 42 M1MXM1MN..M1LN.B + 1b60: 55 46 30 14 47 28 5f 50 52 54 00 a0 45 0f 47 50 UF0.G(_PRT..E.GP + 1b70: 49 43 a4 12 4d 0e 13 12 0b 04 0c ff ff 01 00 00 IC..M........... + 1b80: 00 0a 10 12 0b 04 0c ff ff 02 00 00 00 0a 10 12 ................ + 1b90: 0b 04 0c ff ff 07 00 00 00 0a 10 12 0b 04 0c ff ................ + 1ba0: ff 19 00 00 00 0a 14 12 0b 04 0c ff ff 1a 00 00 ................ + 1bb0: 00 0a 10 12 0b 04 0c ff ff 1a 00 01 00 0a 15 12 ................ + 1bc0: 0c 04 0c ff ff 1a 00 0a 02 00 0a 12 12 0b 04 0c ................ + 1bd0: ff ff 1b 00 00 00 0a 16 12 0b 04 0c ff ff 1c 00 ................ + 1be0: 00 00 0a 11 12 0b 04 0c ff ff 1c 00 01 00 0a 10 ................ + 1bf0: 12 0c 04 0c ff ff 1c 00 0a 02 00 0a 12 12 0c 04 ................ + 1c00: 0c ff ff 1c 00 0a 03 00 0a 13 12 0b 04 0c ff ff ................ + 1c10: 1d 00 00 00 0a 17 12 0b 04 0c ff ff 1d 00 01 00 ................ + 1c20: 0a 13 12 0c 04 0c ff ff 1d 00 0a 02 00 0a 12 12 ................ + 1c30: 0b 04 0c ff ff 1f 00 00 00 0a 13 12 0b 04 0c ff ................ + 1c40: ff 1f 00 01 00 0a 13 12 0c 04 0c ff ff 1f 00 0a ................ + 1c50: 02 00 0a 13 12 0c 04 0c ff ff 1f 00 0a 03 00 0a ................ + 1c60: 10 a1 49 18 a4 12 45 18 13 12 13 04 0c ff ff 01 ..I...E......... + 1c70: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1c80: 0c ff ff 02 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 ......^.LPCBLNKA + 1c90: 00 12 13 04 0c ff ff 07 00 00 5e 2e 4c 50 43 42 ..........^.LPCB + 1ca0: 4c 4e 4b 41 00 12 13 04 0c ff ff 19 00 00 5e 2e LNKA..........^. + 1cb0: 4c 50 43 42 4c 4e 4b 45 00 12 13 04 0c ff ff 1a LPCBLNKE........ + 1cc0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 ..^.LPCBLNKA.... + 1cd0: 0c ff ff 1a 00 01 5e 2e 4c 50 43 42 4c 4e 4b 46 ......^.LPCBLNKF + 1ce0: 00 12 14 04 0c ff ff 1a 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1cf0: 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1b 00 00 5e BLNKC..........^ + 1d00: 2e 4c 50 43 42 4c 4e 4b 47 00 12 13 04 0c ff ff .LPCBLNKG....... + 1d10: 1c 00 00 5e 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 ...^.LPCBLNKB... + 1d20: 04 0c ff ff 1c 00 01 5e 2e 4c 50 43 42 4c 4e 4b .......^.LPCBLNK + 1d30: 41 00 12 14 04 0c ff ff 1c 00 0a 02 5e 2e 4c 50 A...........^.LP + 1d40: 43 42 4c 4e 4b 43 00 12 14 04 0c ff ff 1c 00 0a CBLNKC.......... + 1d50: 03 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0c .^.LPCBLNKD..... + 1d60: ff ff 1d 00 00 5e 2e 4c 50 43 42 4c 4e 4b 48 00 .....^.LPCBLNKH. + 1d70: 12 13 04 0c ff ff 1d 00 01 5e 2e 4c 50 43 42 4c .........^.LPCBL + 1d80: 4e 4b 44 00 12 14 04 0c ff ff 1d 00 0a 02 5e 2e NKD...........^. + 1d90: 4c 50 43 42 4c 4e 4b 43 00 12 13 04 0c ff ff 1f LPCBLNKC........ + 1da0: 00 00 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 ..^.LPCBLNKD.... + 1db0: 0c ff ff 1f 00 01 5e 2e 4c 50 43 42 4c 4e 4b 44 ......^.LPCBLNKD + 1dc0: 00 12 14 04 0c ff ff 1f 00 0a 02 5e 2e 4c 50 43 ...........^.LPC + 1dd0: 42 4c 4e 4b 44 00 12 14 04 0c ff ff 1f 00 0a 03 BLNKD........... + 1de0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 40 14 50 ^.LPCBLNKA.[.@.P + 1df0: 44 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 DRC._HID.A...._U + 1e00: 49 44 01 08 42 55 46 30 11 46 06 0a 62 86 09 00 ID..BUF0.F..b... + 1e10: 01 00 00 00 00 00 40 00 00 86 09 00 01 00 00 00 ......@......... + 1e20: 00 00 40 00 00 86 09 00 01 00 00 00 00 00 10 00 ..@............. + 1e30: 00 86 09 00 01 00 00 00 00 00 10 00 00 86 09 00 ................ + 1e40: 01 00 00 00 00 00 00 00 00 86 09 00 01 00 00 d2 ................ + 1e50: fe 00 00 02 00 86 09 00 01 00 00 d4 fe 00 50 00 ..............P. + 1e60: 00 86 09 00 01 00 50 d4 fe 00 b0 04 00 79 00 14 ......P......y.. + 1e70: 4d 0b 5f 43 52 53 08 8a 42 55 46 30 0a 04 52 42 M._CRS..BUF0..RB + 1e80: 52 30 79 5e 5e 2e 4c 50 43 42 52 43 42 41 0a 0e R0y^^.LPCBRCBA.. + 1e90: 52 42 52 30 8a 42 55 46 30 0a 10 4d 42 52 30 79 RBR0.BUF0..MBR0y + 1ea0: 5e 5e 2e 4d 43 48 43 4d 48 42 52 0a 0e 4d 42 52 ^^.MCHCMHBR..MBR + 1eb0: 30 8a 42 55 46 30 0a 1c 44 42 52 30 79 5e 5e 2e 0.BUF0..DBR0y^^. + 1ec0: 4d 43 48 43 44 49 42 52 0a 0c 44 42 52 30 8a 42 MCHCDIBR..DBR0.B + 1ed0: 55 46 30 0a 28 45 42 52 30 79 5e 5e 2e 4d 43 48 UF0.(EBR0y^^.MCH + 1ee0: 43 45 50 42 52 0a 0c 45 42 52 30 8a 42 55 46 30 CEPBR..EBR0.BUF0 + 1ef0: 0a 34 58 42 52 30 79 5e 5e 2e 4d 43 48 43 50 58 .4XBR0y^^.MCHCPX + 1f00: 42 52 0a 1a 58 42 52 30 8a 42 55 46 30 0a 38 58 BR..XBR0.BUF0.8X + 1f10: 53 5a 30 7a 0c 00 00 00 10 5e 5e 2e 4d 43 48 43 SZ0z.....^^.MCHC + 1f20: 50 58 53 5a 58 53 5a 30 a4 42 55 46 30 5b 82 4d PXSZXSZ0.BUF0[.M + 1f30: 50 50 45 47 50 08 5f 41 44 52 0c 00 00 01 00 14 PPEGP._ADR...... + 1f40: 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 2c A._PRT..3GPIC.., + 1f50: 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ff ................ + 1f60: ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a 12 ................ + 1f70: 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 12 ............E... + 1f80: 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 43 A.........^^.LPC + 1f90: 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e 2e BLNKA........^^. + 1fa0: 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff 0a LPCBLNKB........ + 1fb0: 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 1fc0: 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 1fd0: 00 5b 82 49 46 56 47 41 5f 08 5f 41 44 52 00 08 .[.IFVGA_._ADR.. + 1fe0: 53 57 49 54 01 08 43 52 54 41 01 08 4c 43 44 41 SWIT..CRTA..LCDA + 1ff0: 01 08 54 56 41 41 01 08 56 4c 44 46 01 5b 80 56 ..TVAA..VLDF.[.V + 2000: 49 44 53 02 00 0a c8 5b 81 0b 56 49 44 53 03 56 IDS....[..VIDS.V + 2010: 44 49 44 20 14 09 5f 53 54 41 00 a4 0a 0f 08 5f DID .._STA....._ + 2020: 50 53 43 00 14 0c 5f 50 53 30 00 70 00 5f 50 53 PSC..._PS0.p._PS + 2030: 43 14 0c 5f 50 53 31 00 70 01 5f 50 53 43 14 0d C.._PS1.p._PSC.. + 2040: 5f 50 53 33 00 70 0a 03 5f 50 53 43 14 10 5f 44 _PS3.p.._PSC.._D + 2050: 4f 53 01 70 7b 68 0a 03 00 53 57 49 54 14 17 5f OS.p{h...SWIT.._ + 2060: 44 4f 44 00 a4 12 0f 03 0c 00 01 01 00 0c 10 01 DOD............. + 2070: 01 00 0b 00 02 5b 82 4d 08 43 52 54 5f 14 0a 5f .....[.M.CRT_.._ + 2080: 41 44 52 00 a4 0b 00 01 14 41 06 5f 44 43 53 00 ADR......A._DCS. + 2090: 5e 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 ^^^^.LPCBPHSS..p + 20a0: 43 41 44 4c 60 70 43 53 54 45 61 7b 60 0a 02 60 CADL`pCSTEa{`..` + 20b0: 7b 61 0a 02 61 a0 08 60 70 01 43 52 54 41 a1 07 {a..a..`p.CRTA.. + 20c0: 70 00 43 52 54 41 a0 13 43 52 54 41 a0 08 93 61 p.CRTA..CRTA...a + 20d0: 0a 02 a4 0a 1f a1 04 a4 0a 1d a1 0f a0 08 93 61 ...............a + 20e0: 0a 02 a4 0a 0f a1 04 a4 0a 0d 14 12 5f 44 47 53 ............_DGS + 20f0: 00 a0 07 43 52 54 41 a4 01 a1 03 a4 00 14 06 5f ...CRTA........_ + 2100: 44 53 53 01 5b 82 47 0e 4c 43 44 5f 14 0a 5f 41 DSS.[.G.LCD_.._A + 2110: 44 52 00 a4 0b 10 01 14 4d 05 5f 44 43 53 00 5e DR......M._DCS.^ + 2120: 5e 5e 5e 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 ^^^.LPCBPHSS..pC + 2130: 41 44 4c 60 70 43 53 54 45 61 7b 60 01 60 7b 61 ADL`pCSTEa{`.`{a + 2140: 01 61 a0 08 60 70 01 4c 43 44 41 a1 07 70 00 4c .a..`p.LCDA..p.L + 2150: 43 44 41 a0 12 4c 43 44 41 a0 07 93 61 01 a4 0a CDA..LCDA...a... + 2160: 1f a1 04 a4 0a 1d a1 0e a0 07 93 61 01 a4 0a 0f ...........a.... + 2170: a1 04 a4 0a 0d 14 12 5f 44 47 53 00 a0 07 4c 43 ......._DGS...LC + 2180: 44 41 a4 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 DA........_DSS.. + 2190: 1d 5f 42 43 4c 00 a4 12 15 0a 0a 46 0a 28 00 0a ._BCL......F.(.. + 21a0: 0a 0a 14 0a 1e 0a 28 0a 32 0a 3c 0a 46 14 20 5f ......(.2.<.F. _ + 21b0: 42 43 4d 01 78 68 0a 0a 60 61 70 61 5e 5e 5e 5e BCM.xh..`apa^^^^ + 21c0: 2f 03 4c 50 43 42 45 43 30 5f 42 52 54 53 14 1e /.LPCBEC0_BRTS.. + 21d0: 5f 42 51 43 00 77 5e 5e 5e 5e 2f 03 4c 50 43 42 _BQC.w^^^^/.LPCB + 21e0: 45 43 30 5f 42 52 54 53 0a 0a 60 a4 60 5b 82 4d EC0_BRTS..`.`[.M + 21f0: 08 54 56 5f 5f 14 0a 5f 41 44 52 00 a4 0b 00 02 .TV__.._ADR..... + 2200: 14 41 06 5f 44 43 53 00 5e 5e 5e 5e 2e 4c 50 43 .A._DCS.^^^^.LPC + 2210: 42 50 48 53 53 0a 0c 70 43 41 44 4c 60 70 43 53 BPHSS..pCADL`pCS + 2220: 54 45 61 7b 60 0a 04 60 7b 61 0a 04 61 a0 08 60 TEa{`..`{a..a..` + 2230: 70 01 54 56 41 41 a1 07 70 00 54 56 41 41 a0 13 p.TVAA..p.TVAA.. + 2240: 54 56 41 41 a0 08 93 61 0a 04 a4 0a 1f a1 04 a4 TVAA...a........ + 2250: 0a 1d a1 0f a0 08 93 61 0a 04 a4 0a 0f a1 04 a4 .......a........ + 2260: 0a 0d 14 12 5f 44 47 53 00 a0 07 54 56 41 41 a4 ...._DGS...TVAA. + 2270: 01 a1 03 a4 00 14 06 5f 44 53 53 01 14 49 10 44 ......._DSS..I.D + 2280: 53 53 57 00 a0 4a 0e 93 53 57 49 54 00 5e 5e 5e SSW..J..SWIT.^^^ + 2290: 2e 4c 50 43 42 50 48 53 53 0a 0c 70 43 41 44 4c .LPCBPHSS..pCADL + 22a0: 60 70 43 53 54 45 61 a0 16 94 61 01 7b 60 61 56 `pCSTEa...a.{`aV + 22b0: 4c 44 46 7b 56 4c 44 46 0a fe 56 4c 44 46 a0 43 LDF{VLDF..VLDF.C + 22c0: 0a 56 4c 44 46 a0 27 93 60 0a 09 a0 0b 93 61 0a .VLDF.'.`.....a. + 22d0: 08 53 54 42 4c 0a 02 a0 0a 93 61 01 53 54 42 4c .STBL.....a.STBL + 22e0: 0a 03 a0 0a 93 61 0a 09 53 54 42 4c 01 a0 28 93 .....a..STBL..(. + 22f0: 60 0a 0a a0 0b 93 61 0a 08 53 54 42 4c 0a 05 a0 `.....a..STBL... + 2300: 0a 93 61 0a 02 53 54 42 4c 01 a0 0b 93 61 0a 0a ..a..STBL....a.. + 2310: 53 54 42 4c 0a 04 a0 4b 04 93 60 0a 0b a0 0b 93 STBL...K..`..... + 2320: 61 0a 08 53 54 42 4c 0a 02 a0 0b 93 61 0a 09 53 a..STBL.....a..S + 2330: 54 42 4c 0a 05 a0 0a 93 61 01 53 54 42 4c 0a 03 TBL.....a.STBL.. + 2340: a0 0b 93 61 0a 0a 53 54 42 4c 0a 04 a0 0a 93 61 ...a..STBL.....a + 2350: 0a 02 53 54 42 4c 01 a0 0a 93 61 0a 0b 53 54 42 ..STBL....a..STB + 2360: 4c 01 a1 0c 70 01 56 4c 44 46 53 54 42 4c 01 a1 L...p.VLDFSTBL.. + 2370: 16 a0 14 93 53 57 49 54 01 5e 5e 5e 2e 4c 50 43 ....SWIT.^^^.LPC + 2380: 42 50 48 53 53 01 14 45 0b 53 54 42 4c 01 a0 16 BPHSS..E.STBL... + 2390: 93 68 01 70 00 43 52 54 41 70 01 4c 43 44 41 70 .h.p.CRTAp.LCDAp + 23a0: 00 54 56 41 41 a0 17 93 68 0a 02 70 01 43 52 54 .TVAA...h..p.CRT + 23b0: 41 70 00 4c 43 44 41 70 00 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23c0: 68 0a 03 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 23d0: 00 54 56 41 41 a0 17 93 68 0a 04 70 00 43 52 54 .TVAA...h..p.CRT + 23e0: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 23f0: 68 0a 05 70 00 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2400: 01 54 56 41 41 a0 17 93 68 0a 06 70 01 43 52 54 .TVAA...h..p.CRT + 2410: 41 70 00 4c 43 44 41 70 01 54 56 41 41 a0 17 93 Ap.LCDAp.TVAA... + 2420: 68 0a 07 70 01 43 52 54 41 70 01 4c 43 44 41 70 h..p.CRTAp.LCDAp + 2430: 01 54 56 41 41 86 56 47 41 5f 0a 80 5b 82 42 f8 .TVAA.VGA_..[.B. + 2440: 47 46 58 30 08 5f 41 44 52 0c 00 00 02 00 14 10 GFX0._ADR....... + 2450: 5f 44 4f 53 01 70 7b 68 0a 07 00 44 53 45 4e 14 _DOS.p{h...DSEN. + 2460: 41 26 5f 44 4f 44 00 70 00 4e 44 49 44 a0 15 92 A&_DOD.p.NDID... + 2470: 93 44 49 44 4c 00 70 53 44 44 4c 44 49 44 31 44 .DIDL.pSDDLDID1D + 2480: 49 44 31 a0 15 92 93 44 44 4c 32 00 70 53 44 44 ID1....DDL2.pSDD + 2490: 4c 44 49 44 32 44 49 44 32 a0 15 92 93 44 44 4c LDID2DID2....DDL + 24a0: 33 00 70 53 44 44 4c 44 49 44 33 44 49 44 33 a0 3.pSDDLDID3DID3. + 24b0: 15 92 93 44 44 4c 34 00 70 53 44 44 4c 44 49 44 ...DDL4.pSDDLDID + 24c0: 34 44 49 44 34 a0 15 92 93 44 44 4c 35 00 70 53 4DID4....DDL5.pS + 24d0: 44 44 4c 44 49 44 35 44 49 44 35 a0 2c 93 4e 44 DDLDID5DID5.,.ND + 24e0: 49 44 01 08 54 4d 50 31 12 07 01 0c ff ff ff ff ID..TMP1........ + 24f0: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2500: 31 00 00 a4 54 4d 50 31 a0 46 04 93 4e 44 49 44 1...TMP1.F..NDID + 2510: 0a 02 08 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ...TMP2......... + 2520: ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 ....p}.....DID1. + 2530: 88 54 4d 50 32 00 00 70 7d 0c 00 00 01 00 44 49 .TMP2..p}.....DI + 2540: 44 32 00 88 54 4d 50 32 01 00 a4 54 4d 50 32 a0 D2..TMP2...TMP2. + 2550: 4f 05 93 4e 44 49 44 0a 03 08 54 4d 50 33 12 11 O..NDID...TMP3.. + 2560: 03 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2570: 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 4d 50 p}.....DID1..TMP + 2580: 33 00 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 3..p}.....DID2.. + 2590: 54 4d 50 33 01 00 70 7d 0c 00 00 01 00 44 49 44 TMP3..p}.....DID + 25a0: 33 00 88 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 3..TMP3....TMP3. + 25b0: 48 07 93 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 H..NDID...TMP4.. + 25c0: 04 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 25d0: 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 .....p}.....DID1 + 25e0: 00 88 54 4d 50 34 00 00 70 7d 0c 00 00 01 00 44 ..TMP4..p}.....D + 25f0: 49 44 32 00 88 54 4d 50 34 01 00 70 7d 0c 00 00 ID2..TMP4..p}... + 2600: 01 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 ..DID3..TMP4...p + 2610: 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 }.....DID4..TMP4 + 2620: 0a 03 00 a4 54 4d 50 34 a0 41 09 94 4e 44 49 44 ....TMP4.A..NDID + 2630: 0a 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2640: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2650: ff ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 ...p}.....DID1.. + 2660: 54 4d 50 35 00 00 70 7d 0c 00 00 01 00 44 49 44 TMP5..p}.....DID + 2670: 32 00 88 54 4d 50 35 01 00 70 7d 0c 00 00 01 00 2..TMP5..p}..... + 2680: 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d 0c DID3..TMP5...p}. + 2690: 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a 03 ....DID4..TMP5.. + 26a0: 00 70 7d 0c 00 00 01 00 44 49 44 34 00 88 54 4d .p}.....DID4..TM + 26b0: 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b 00 P5....TMP5...... + 26c0: 04 5b 82 43 06 44 44 30 31 14 1c 5f 41 44 52 08 .[.C.DD01.._ADR. + 26d0: a0 09 93 44 49 44 31 00 a4 01 a1 0b a4 7b 0b ff ...DID1......{.. + 26e0: ff 44 49 44 31 00 14 0f 5f 44 43 53 00 a4 43 44 .DID1..._DCS..CD + 26f0: 44 53 44 49 44 31 14 0f 5f 44 47 53 00 a4 4e 44 DSDID1.._DGS..ND + 2700: 44 53 44 49 44 31 14 1f 5f 44 53 53 01 a0 18 93 DSDID1.._DSS.... + 2710: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 2720: 54 45 43 53 54 45 5b 82 44 06 44 44 30 32 14 1d TECSTE[.D.DD02.. + 2730: 5f 41 44 52 08 a0 0a 93 44 49 44 32 00 a4 0a 02 _ADR....DID2.... + 2740: a1 0b a4 7b 0b ff ff 44 49 44 32 00 14 0f 5f 44 ...{...DID2..._D + 2750: 43 53 00 a4 43 44 44 53 44 49 44 32 14 0f 5f 44 CS..CDDSDID2.._D + 2760: 47 53 00 a4 4e 44 44 53 44 49 44 32 14 1f 5f 44 GS..NDDSDID2.._D + 2770: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 2780: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 41 07 ...pNSTECSTE[.A. + 2790: 44 44 30 33 14 1d 5f 41 44 52 08 a0 0a 93 44 49 DD03.._ADR....DI + 27a0: 44 33 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 49 44 D3.......{...DID + 27b0: 33 00 14 1c 5f 44 43 53 00 a0 0a 93 44 49 44 33 3..._DCS....DID3 + 27c0: 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 33 14 .......CDDSDID3. + 27d0: 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 33 14 ._DGS..NDDSDID3. + 27e0: 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 ._DSS....{h..... + 27f0: 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 5b ......pNSTECSTE[ + 2800: 82 41 07 44 44 30 34 14 1d 5f 41 44 52 08 a0 0a .A.DD04.._ADR... + 2810: 93 44 49 44 34 00 a4 0a 04 a1 0b a4 7b 0b ff ff .DID4.......{... + 2820: 44 49 44 34 00 14 1c 5f 44 43 53 00 a0 0a 93 44 DID4..._DCS....D + 2830: 49 44 34 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 ID4.......CDDSDI + 2840: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D4.._DGS..NDDSDI + 2850: 44 34 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D4.._DSS....{h.. + 2860: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 2870: 54 45 5b 82 41 07 44 44 30 35 14 1d 5f 41 44 52 TE[.A.DD05.._ADR + 2880: 08 a0 0a 93 44 49 44 35 00 a4 0a 05 a1 0b a4 7b ....DID5.......{ + 2890: 0b ff ff 44 49 44 35 00 14 1c 5f 44 43 53 00 a0 ...DID5..._DCS.. + 28a0: 0a 93 44 49 44 35 00 a4 0a 0b a1 0a a4 43 44 44 ..DID5.......CDD + 28b0: 53 44 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 SDID5.._DGS..NDD + 28c0: 53 44 49 44 35 14 1f 5f 44 53 53 01 a0 18 93 7b SDID5.._DSS....{ + 28d0: 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 h...........pNST + 28e0: 45 43 53 54 45 14 4e 06 53 44 44 4c 01 75 4e 44 ECSTE.N.SDDL.uND + 28f0: 49 44 70 7b 68 0b 0f 0f 00 60 7d 0c 00 00 00 80 IDp{h....`}..... + 2900: 60 61 a0 09 93 44 49 44 4c 60 a4 61 a0 09 93 44 `a...DIDL`.a...D + 2910: 44 4c 32 60 a4 61 a0 09 93 44 44 4c 33 60 a4 61 DL2`.a...DDL3`.a + 2920: a0 09 93 44 44 4c 34 60 a4 61 a0 09 93 44 44 4c ...DDL4`.a...DDL + 2930: 35 60 a4 61 a0 09 93 44 44 4c 36 60 a4 61 a0 09 5`.a...DDL6`.a.. + 2940: 93 44 44 4c 37 60 a4 61 a0 09 93 44 44 4c 38 60 .DDL7`.a...DDL8` + 2950: a4 61 a4 00 14 4a 08 43 44 44 53 01 a0 0f 93 43 .a...J.CDDS....C + 2960: 41 44 4c 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 ADL{h..........C + 2970: 41 4c 32 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL2{h..........C + 2980: 41 4c 33 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL3{h..........C + 2990: 41 4c 34 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL4{h..........C + 29a0: 41 4c 35 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL5{h..........C + 29b0: 41 4c 36 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL6{h..........C + 29c0: 41 4c 37 7b 68 0b 0f 0f 00 a4 0a 1f a0 0f 93 43 AL7{h..........C + 29d0: 41 4c 38 7b 68 0b 0f 0f 00 a4 0a 1f a4 0a 1d 14 AL8{h........... + 29e0: 41 08 4e 44 44 53 01 a0 0e 93 4e 41 44 4c 7b 68 A.NDDS....NADL{h + 29f0: 0b 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 32 7b 68 0b .........NDL2{h. + 2a00: 0f 0f 00 a4 01 a0 0e 93 4e 44 4c 33 7b 68 0b 0f ........NDL3{h.. + 2a10: 0f 00 a4 01 a0 0e 93 4e 44 4c 34 7b 68 0b 0f 0f .......NDL4{h... + 2a20: 00 a4 01 a0 0e 93 4e 44 4c 35 7b 68 0b 0f 0f 00 ......NDL5{h.... + 2a30: a4 01 a0 0e 93 4e 44 4c 36 7b 68 0b 0f 0f 00 a4 .....NDL6{h..... + 2a40: 01 a0 0e 93 4e 44 4c 37 7b 68 0b 0f 0f 00 a4 01 ....NDL7{h...... + 2a50: a0 0e 93 4e 44 4c 38 7b 68 0b 0f 0f 00 a4 01 a4 ...NDL8{h....... + 2a60: 00 14 40 07 42 52 54 4e 09 a0 14 93 7b 44 49 44 ..@.BRTN....{DID + 2a70: 31 0b 00 0f 00 0b 00 04 86 44 44 30 31 68 a0 14 1........DD01h.. + 2a80: 93 7b 44 49 44 32 0b 00 0f 00 0b 00 04 86 44 44 .{DID2........DD + 2a90: 30 32 68 a0 14 93 7b 44 49 44 33 0b 00 0f 00 0b 02h...{DID3..... + 2aa0: 00 04 86 44 44 30 33 68 a0 14 93 7b 44 49 44 34 ...DD03h...{DID4 + 2ab0: 0b 00 0f 00 0b 00 04 86 44 44 30 34 68 a0 14 93 ........DD04h... + 2ac0: 7b 44 49 44 35 0b 00 0f 00 0b 00 04 86 44 44 30 {DID5........DD0 + 2ad0: 35 68 10 24 5e 5e 50 43 49 30 5b 80 4d 43 48 50 5h.$^^PCI0[.MCHP + 2ae0: 02 0a 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 ..@..[..MCHP..@0 + 2af0: 54 41 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 TASM...[.IGDP..@ + 2b00: 0a c0 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 ..[.E.IGDP..@... + 2b10: 47 49 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 GIVD...GUMA..... + 2b20: 47 4d 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 GMFN....@FASLE.. + 2b30: 18 47 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 .GSSE.GSSB.GSES. + 2b40: 00 30 00 08 43 44 56 4c 05 00 03 00 18 4c 42 50 .0..CDVL.....LBP + 2b50: 43 08 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 C..0ASLS [.IGDM. + 2b60: 41 53 4c 42 0b 00 20 5b 81 4e 16 49 47 44 4d 00 ASLB.. [.N.IGDM. + 2b70: 53 49 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 SIGN@.SIZE OVER + 2b80: 53 56 45 52 40 10 56 56 45 52 40 08 47 56 45 52 SVER@.VVER@.GVER + 2b90: 40 08 4d 42 4f 58 20 00 40 52 44 52 44 59 20 43 @.MBOX .@RDRDY C + 2ba0: 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 4c STS CEVT .@.DIDL + 2bb0: 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 20 DDL2 DDL3 DDL4 + 2bc0: 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 44 DDL5 DDL6 DDL7 D + 2bd0: 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 50 DL8 CPDL CPL2 CP + 2be0: 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 4c L3 CPL4 CPL5 CPL + 2bf0: 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 4c 6 CPL7 CPL8 CADL + 2c00: 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 20 CAL2 CAL3 CAL4 + 2c10: 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 43 CAL5 CAL6 CAL7 C + 2c20: 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e 44 AL8 NADL NDL2 ND + 2c30: 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 4c L3 NDL4 NDL5 NDL + 2c40: 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c 50 6 NDL7 NDL8 ASLP + 2c50: 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 20 TIDX CHPD CLID + 2c60: 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 43 CDCK SXSW EVTS C + 2c70: 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 45 NOT NRDY .@.SCIE + 2c80: 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 08 .GEFC.GXFC.GESF. + 2c90: 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a 41 ..PARM DSLP .@zA + 2ca0: 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 4c RDY ASLC TCHE AL + 2cb0: 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 4c SI BCLP PFIT CBL + 2cc0: 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 00 40 5c V BCLM@.CPFM .@\ + 2cd0: 47 56 44 31 80 00 0e 08 44 42 54 42 12 32 15 00 GVD1....DBTB.2.. + 2ce0: 0a 07 0a 38 0b c0 01 0b 00 0e 0a 3f 0b c7 01 0b ...8.......?.... + 2cf0: 07 0e 0b f8 01 0b 38 0e 0b c0 0f 00 00 00 00 00 ......8......... + 2d00: 0b 00 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 ..p..p.8p..q..~. + 2d10: 43 44 43 54 12 23 03 12 0a 03 0a c8 0b 40 01 0b CDCT.#.......@.. + 2d20: 90 01 12 0a 03 0a c8 0b 4d 01 0b 90 01 12 0a 03 ........M....... + 2d30: 0a de 0b 4d 01 0b 7d 01 08 53 55 43 43 01 08 4e ...M..}..SUCC..N + 2d40: 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 4e 43 52 VLD...CRIT...NCR + 2d50: 54 0a 06 14 4c 4a 47 53 43 49 08 14 44 1e 47 42 T...LJGSCI..D.GB + 2d60: 44 41 08 a0 1a 93 47 45 53 46 00 70 0b 79 02 50 DA....GESF.p.y.P + 2d70: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 1a ARMp.GESF.SUCC.. + 2d80: 93 47 45 53 46 01 70 0b 40 02 50 41 52 4d 70 00 .GESF.p.@.PARMp. + 2d90: 47 45 53 46 a4 53 55 43 43 a0 47 04 93 47 45 53 GESF.SUCC.G..GES + 2da0: 46 0a 04 7b 50 41 52 4d 0c 00 00 ff ef 50 41 52 F..{PARM.....PAR + 2db0: 4d 7b 50 41 52 4d 79 83 88 44 42 54 42 49 42 54 M{PARMy..DBTBIBT + 2dc0: 54 00 0a 10 00 50 41 52 4d 7d 49 42 54 54 50 41 T....PARM}IBTTPA + 2dd0: 52 4d 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 RMPARMp.GESF.SUC + 2de0: 43 a0 4a 06 93 47 45 53 46 0a 05 70 49 50 53 43 C.J..GESF..pIPSC + 2df0: 50 41 52 4d 7d 50 41 52 4d 79 49 50 41 54 0a 08 PARM}PARMyIPAT.. + 2e00: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 2e10: 4d 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 M}PARMyLIDS...PA + 2e20: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 2e30: 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 52 }PARMyIBIA...PAR + 2e40: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 47 Mp.GESF.SUCC.-.G + 2e50: 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d 50 ESF..pITVFPARM}P + 2e60: 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d 70 ARMyITVM...PARMp + 2e70: 00 47 45 53 46 a4 53 55 43 43 a0 4f 08 93 47 45 .GESF.SUCC.O..GE + 2e80: 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 41 SF..pGIVDPARM.PA + 2e90: 52 4d 01 50 41 52 4d 7d 50 41 52 4d 79 47 4d 46 RM.PARM}PARMyGMF + 2ea0: 4e 01 00 50 41 52 4d 7d 50 41 52 4d 0b 00 10 50 N..PARM}PARM...P + 2eb0: 41 52 4d a0 16 49 44 4d 4d 7d 50 41 52 4d 79 49 ARM..IDMM}PARMyI + 2ec0: 44 4d 53 0a 11 00 50 41 52 4d a1 12 7d 50 41 52 DMS...PARM..}PAR + 2ed0: 4d 79 49 44 4d 53 0a 0d 00 50 41 52 4d 7d 79 83 MyIDMS...PARM}y. + 2ee0: 88 83 88 43 44 43 54 48 56 43 4f 00 74 43 44 56 ...CDCTHVCO.tCDV + 2ef0: 4c 01 00 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 L......PARMPARMp + 2f00: 01 47 45 53 46 a4 53 55 43 43 a0 2a 93 47 45 53 .GESF.SUCC.*.GES + 2f10: 46 0a 0a 70 00 50 41 52 4d a0 10 49 53 53 43 7d F..p.PARM..ISSC} + 2f20: 50 41 52 4d 0a 03 50 41 52 4d 70 00 47 45 53 46 PARM..PARMp.GESF + 2f30: a4 53 55 43 43 70 00 47 45 53 46 a4 43 52 49 54 .SUCCp.GESF.CRIT + 2f40: 14 41 28 53 42 43 42 08 a0 20 93 47 45 53 46 00 .A(SBCB.. .GESF. + 2f50: 70 00 50 41 52 4d 70 0b 7d f7 50 41 52 4d 70 00 p.PARMp.}.PARMp. + 2f60: 47 45 53 46 a4 53 55 43 43 a0 18 93 47 45 53 46 GESF.SUCC...GESF + 2f70: 01 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 2f80: 43 43 a0 19 93 47 45 53 46 0a 03 70 00 47 45 53 CC...GESF..p.GES + 2f90: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 Fp.PARM.SUCC...G + 2fa0: 45 53 46 0a 04 70 00 47 45 53 46 70 00 50 41 52 ESF..p.GESFp.PAR + 2fb0: 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 05 70 M.SUCC...GESF..p + 2fc0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 2fd0: a0 37 93 47 45 53 46 0a 06 70 7b 50 41 52 4d 0a .7.GESF..p{PARM. + 2fe0: 0f 00 49 54 56 46 70 7a 7b 50 41 52 4d 0a f0 00 ..ITVFpz{PARM... + 2ff0: 0a 04 00 49 54 56 4d 70 00 47 45 53 46 70 00 50 ...ITVMp.GESFp.P + 3000: 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a ARM.SUCC...GESF. + 3010: 07 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 .p.GESFp.PARM.SU + 3020: 43 43 a0 19 93 47 45 53 46 0a 08 70 00 47 45 53 CC...GESF..p.GES + 3030: 46 70 00 50 41 52 4d a4 53 55 43 43 a0 24 93 47 Fp.PARM.SUCC.$.G + 3040: 45 53 46 0a 09 7b 50 41 52 4d 0a ff 49 42 54 54 ESF..{PARM..IBTT + 3050: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3060: 43 a0 46 05 93 47 45 53 46 0a 0a 7b 50 41 52 4d C.F..GESF..{PARM + 3070: 0a ff 49 50 53 43 a0 21 7b 7a 50 41 52 4d 0a 08 ..IPSC.!{zPARM.. + 3080: 00 0a ff 00 7b 7a 50 41 52 4d 0a 08 00 0a ff 49 ....{zPARM.....I + 3090: 50 41 54 76 49 50 41 54 7b 7a 50 41 52 4d 0a 14 PATvIPAT{zPARM.. + 30a0: 00 0a 07 49 42 49 41 70 00 47 45 53 46 70 00 50 ...IBIAp.GESFp.P + 30b0: 41 52 4d a4 53 55 43 43 a0 40 06 93 47 45 53 46 ARM.SUCC.@..GESF + 30c0: 0a 0b 7b 7a 50 41 52 4d 01 00 01 49 46 31 45 a0 ..{zPARM...IF1E. + 30d0: 21 7b 50 41 52 4d 0c 00 e0 01 00 00 7b 7a 50 41 !{PARM......{zPA + 30e0: 52 4d 0a 0d 00 0a 0f 49 44 4d 53 70 00 49 44 4d RM.....IDMSp.IDM + 30f0: 4d a1 16 7b 7a 50 41 52 4d 0a 11 00 0a 0f 49 44 M..{zPARM.....ID + 3100: 4d 53 70 01 49 44 4d 4d 70 00 47 45 53 46 70 00 MSp.IDMMp.GESFp. + 3110: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3120: 0a 10 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3130: 55 43 43 a0 1f 93 47 45 53 46 0a 11 7d 50 41 52 UCC...GESF..}PAR + 3140: 4d 0b 00 01 50 41 52 4d 70 00 47 45 53 46 a4 53 M...PARMp.GESF.S + 3150: 55 43 43 a0 49 04 93 47 45 53 46 0a 12 a0 26 7b UCC.I..GESF...&{ + 3160: 50 41 52 4d 01 00 a0 10 93 7a 50 41 52 4d 01 00 PARM.....zPARM.. + 3170: 01 70 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 .p.ISSC..p.GESF. + 3180: 43 52 49 54 a1 07 70 00 49 53 53 43 70 00 47 45 CRIT..p.ISSCp.GE + 3190: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 31a0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 31b0: 52 4d a4 53 55 43 43 70 00 47 45 53 46 a4 53 55 RM.SUCCp.GESF.SU + 31c0: 43 43 a0 11 93 47 45 46 43 0a 04 70 47 42 44 41 CC...GEFC..pGBDA + 31d0: 47 58 46 43 a0 11 93 47 45 46 43 0a 06 70 53 42 GXFC...GEFC..pSB + 31e0: 43 42 47 58 46 43 70 00 47 45 46 43 70 01 53 43 CBGXFCp.GEFCp.SC + 31f0: 49 53 70 00 47 53 53 45 70 00 53 43 49 45 a4 00 ISp.GSSEp.SCIE.. + 3200: 14 19 50 44 52 44 00 a0 0c 92 44 52 44 59 5b 22 ..PDRD....DRDY[" + 3210: 41 53 4c 50 a4 92 44 52 44 59 14 1d 50 53 54 53 ASLP..DRDY..PSTS + 3220: 00 a0 0e 94 43 53 54 53 0a 02 5b 22 41 53 4c 50 ....CSTS..["ASLP + 3230: a4 93 43 53 54 53 0a 03 14 47 06 47 4e 4f 54 02 ..CSTS...G.GNOT. + 3240: a0 07 50 44 52 44 a4 01 a0 07 50 53 54 53 a4 01 ..PDRD....PSTS.. + 3250: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 2c 90 phCEVTp..CSTS.,. + 3260: 93 43 48 50 44 00 93 69 00 a0 18 91 94 4f 53 59 .CHPD..i.....OSY + 3270: 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 50 43 49 S....OSYS....PCI + 3280: 30 69 a1 07 86 47 46 58 30 69 86 47 46 58 30 0a 0i...GFX0i.GFX0. + 3290: 80 a0 0c 92 50 53 54 53 70 00 43 45 56 54 a4 00 ....PSTSp.CEVT.. + 32a0: 14 13 47 48 44 53 01 70 68 54 49 44 58 a4 47 4e ..GHDS.phTIDX.GN + 32b0: 4f 54 01 00 14 14 47 4c 49 44 01 70 68 43 4c 49 OT....GLID.phCLI + 32c0: 44 a4 47 4e 4f 54 0a 02 00 14 15 47 44 43 4b 01 D.GNOT.....GDCK. + 32d0: 70 68 43 44 43 4b a4 47 4e 4f 54 0a 04 0a 80 14 phCDCK.GNOT..... + 32e0: 19 50 41 52 44 00 a0 0c 92 41 52 44 59 5b 22 41 .PARD....ARDY["A + 32f0: 53 4c 50 a4 92 41 52 44 59 14 46 0c 41 49 4e 54 SLP..ARDY.F.AINT + 3300: 02 a0 0e 92 7b 54 43 48 45 79 01 68 00 00 a4 01 ....{TCHEy.h.... + 3310: a0 07 50 41 52 44 a4 01 a0 4c 05 93 68 0a 02 a0 ..PARD...L..h... + 3320: 33 43 50 46 4d a0 0e 93 43 50 46 4d 01 70 0a 06 3CPFM...CPFM.p.. + 3330: 50 46 49 54 a0 0f 93 43 50 46 4d 0a 06 70 0a 08 PFIT...CPFM..p.. + 3340: 50 46 49 54 a0 0e 93 43 50 46 4d 0a 08 70 01 50 PFIT...CPFM..p.P + 3350: 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 49 54 FIT...PFIT..PFIT + 3360: 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 0a }PFIT.....PFITp. + 3370: 04 41 53 4c 43 a1 42 04 a0 28 93 68 01 70 78 77 .ASLC.B..(.h.pxw + 3380: 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d 42 43 4c i....d..BCLP}BCL + 3390: 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 41 53 4c P.....BCLPp..ASL + 33a0: 43 a1 16 a0 10 93 68 00 70 69 41 4c 53 49 70 01 C.....h.piALSIp. + 33b0: 41 53 4c 43 a1 03 a4 01 70 00 4c 42 50 43 a4 00 ASLC....p.LBPC.. + 33c0: 10 41 36 5c 00 5b 80 49 4f 5f 54 01 0b 00 08 0a .A6\.[.IO_T..... + 33d0: 10 5b 81 0e 49 4f 5f 54 01 00 40 04 54 52 50 30 .[..IO_T..@.TRP0 + 33e0: 08 5b 80 50 4d 49 4f 01 0b 00 10 0a 80 5b 81 28 .[.PMIO......[.( + 33f0: 50 4d 49 4f 01 00 40 15 00 08 00 02 41 43 50 57 PMIO..@.....ACPW + 3400: 01 00 45 0b 00 01 47 50 45 43 01 00 4e 10 00 09 ..E...GPEC..N... + 3410: 53 43 49 53 01 00 06 5b 80 47 50 49 4f 01 0b 80 SCIS...[.GPIO... + 3420: 11 0a 3c 5b 81 40 0c 47 50 49 4f 01 47 55 30 30 ..<[.@.GPIO.GU00 + 3430: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + 3440: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + 3450: 49 4f 33 08 00 20 47 4c 30 30 08 47 4c 30 31 08 IO3.. GL00.GL01. + 3460: 47 4c 30 32 08 00 03 47 50 32 37 01 47 50 32 38 GL02...GP27.GP28 + 3470: 01 00 03 00 40 04 47 42 30 30 08 47 42 30 31 08 ....@.GB00.GB01. + 3480: 47 42 30 32 08 47 42 30 33 08 00 40 08 47 49 56 GB02.GB03..@.GIV + 3490: 30 08 00 03 4c 50 4f 4c 01 00 04 47 49 56 32 08 0...LPOL...GIV2. + 34a0: 47 49 56 33 08 47 55 30 34 08 47 55 30 35 08 47 GIV3.GU04.GU05.G + 34b0: 55 30 36 08 47 55 30 37 08 47 49 4f 34 08 47 49 U06.GU07.GIO4.GI + 34c0: 4f 35 08 47 49 4f 36 08 47 49 4f 37 08 00 05 47 O5.GIO6.GIO7...G + 34d0: 50 33 37 01 00 02 47 4c 30 35 08 47 4c 30 36 08 P37...GL05.GL06. + 34e0: 47 4c 30 37 08 5b 80 52 43 52 42 00 0c 00 c0 d1 GL07.[.RCRB..... + 34f0: fe 0b 00 40 5b 81 48 05 52 43 52 42 13 00 80 00 ...@[.H.RCRB.... + 3500: 08 00 80 00 10 00 80 02 02 48 50 41 53 02 00 05 .........HPAS... + 3510: 48 50 41 45 01 00 48 09 00 01 50 41 54 44 01 53 HPAE..H...PATD.S + 3520: 41 54 44 01 53 4d 42 44 01 48 44 41 44 01 00 0b ATD.SMBD.HDAD... + 3530: 52 50 31 44 01 52 50 32 44 01 52 50 33 44 01 52 RP1D.RP2D.RP3D.R + 3540: 50 34 44 01 52 50 35 44 01 52 50 36 44 01 08 5f P4D.RP5D.RP6D.._ + 3550: 53 30 5f 12 05 03 00 00 00 08 5f 53 33 5f 12 07 S0_......._S3_.. + 3560: 03 0a 05 0a 05 00 08 5f 53 34 5f 12 07 03 0a 06 ......._S4_..... + 3570: 0a 06 00 08 5f 53 35 5f 12 07 03 0a 07 0a 07 00 ...._S5_........ + 3580: 14 45 04 47 45 54 50 09 a0 0e 93 7b 68 0a 09 00 .E.GETP....{h... + 3590: 00 a4 0c ff ff ff ff a0 0d 93 7b 68 0a 09 00 0a ..........{h.... + 35a0: 08 a4 0b 84 03 7a 7b 68 0b 00 03 00 0a 08 60 7a .....z{h......`z + 35b0: 7b 68 0b 00 30 00 0a 0c 61 a4 77 0a 1e 74 0a 09 {h..0...a.w..t.. + 35c0: 72 60 61 00 00 00 14 30 47 44 4d 41 0d a0 23 68 r`a....0GDMA..#h + 35d0: a0 07 90 69 6c a4 0a 14 a0 0e 90 6a 6c a4 77 74 ...il......jl.wt + 35e0: 0a 04 6b 00 0a 0f 00 a4 77 74 0a 04 6b 00 0a 1e ..k.....wt..k... + 35f0: 00 a4 0c ff ff ff ff 14 1f 47 45 54 54 09 a4 77 .........GETT..w + 3600: 0a 1e 74 0a 09 72 7b 7a 68 0a 02 00 0a 03 00 7b ..t..r{zh......{ + 3610: 68 0a 03 00 00 00 00 14 44 06 47 45 54 46 0b 08 h.......D.GETF.. + 3620: 54 4d 50 46 00 a0 0c 68 7d 54 4d 50 46 01 54 4d TMPF...h}TMPF.TM + 3630: 50 46 a0 11 7b 6a 0a 02 00 7d 54 4d 50 46 0a 02 PF..{j...}TMPF.. + 3640: 54 4d 50 46 a0 0d 69 7d 54 4d 50 46 0a 04 54 4d TMPF..i}TMPF..TM + 3650: 50 46 a0 11 7b 6a 0a 20 00 7d 54 4d 50 46 0a 08 PF..{j. .}TMPF.. + 3660: 54 4d 50 46 a0 12 7b 6a 0b 00 40 00 7d 54 4d 50 TMPF..{j..@.}TMP + 3670: 46 0a 10 54 4d 50 46 a4 54 4d 50 46 14 3d 53 45 F..TMPF.TMPF.=SE + 3680: 54 50 0b a0 08 94 68 0a f0 a4 0a 08 a1 2d a0 27 TP....h......-.' + 3690: 7b 69 0a 02 00 a0 10 90 92 94 68 0a 78 7b 6a 0a {i........h.x{j. + 36a0: 02 00 a4 0b 01 23 a0 0f 90 92 94 68 0a b4 7b 6a .....#.....h..{j + 36b0: 01 00 a4 0b 01 21 a4 0b 01 10 14 37 53 44 4d 41 .....!.....7SDMA + 36c0: 09 a0 08 92 94 68 0a 14 a4 01 a0 09 92 94 68 0a .....h........h. + 36d0: 1e a4 0a 02 a0 08 92 94 68 0a 2d a4 01 a0 09 92 ........h.-..... + 36e0: 94 68 0a 3c a4 0a 02 a0 08 92 94 68 0a 5a a4 01 .h.<.......h.Z.. + 36f0: a4 00 14 2f 53 45 54 54 0b a0 25 7b 69 0a 02 00 .../SETT..%{i... + 3700: a0 0f 90 92 94 68 0a 78 7b 6a 0a 02 00 a4 0a 0b .....h.x{j...... + 3710: a0 0e 90 92 94 68 0a b4 7b 6a 01 00 a4 0a 09 a4 .....h..{j...... + 3720: 0a 04 5b 82 4b 04 48 44 45 46 08 5f 41 44 52 0c ..[.K.HDEF._ADR. + 3730: 00 00 1b 00 5b 80 48 44 41 52 02 0a 4c 0a 10 5b ....[.HDAR..L..[ + 3740: 81 22 48 44 41 52 02 44 43 4b 41 01 00 07 44 43 ."HDAR.DCKA...DC + 3750: 4b 4d 01 00 06 44 43 4b 53 01 00 30 00 0f 50 4d KM...DCKS..0..PM + 3760: 45 53 01 08 5f 50 52 57 12 06 02 0a 0d 0a 03 5b ES.._PRW.......[ + 3770: 82 41 10 52 50 30 31 08 5f 41 44 52 0c 00 00 1c .A.RP01._ADR.... + 3780: 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 45 04 .[.PXCS..@..[.E. + 3790: 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 PXCS@.@...LASX.. + 37a0: 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 2ABPX...PDCX...P + 37b0: 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 DSX...LSCX..'..P + 37c0: 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 01 50 4d SPX..O<..HPSX.PM + 37d0: 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 44 52 00 SX.[..PXSX._ADR. + 37e0: 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 a4 12 .A._PRT..3GPIC.. + 37f0: 2c 04 12 09 04 0b ff ff 00 00 0a 10 12 09 04 0b ,............... + 3800: ff ff 01 00 0a 11 12 0a 04 0b ff ff 0a 02 00 0a ................ + 3810: 12 12 0a 04 0b ff ff 0a 03 00 0a 13 a1 45 05 a4 .............E.. + 3820: 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e 4c 50 .A.........^^.LP + 3830: 43 42 4c 4e 4b 41 00 12 12 04 0b ff ff 01 5e 5e CBLNKA........^^ + 3840: 2e 4c 50 43 42 4c 4e 4b 42 00 12 13 04 0b ff ff .LPCBLNKB....... + 3850: 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 ..^^.LPCBLNKC... + 3860: 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c 4e 4b ......^^.LPCBLNK + 3870: 44 00 5b 82 41 10 52 50 30 32 08 5f 41 44 52 0c D.[.A.RP02._ADR. + 3880: 01 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a c0 5b ....[.PXCS..@..[ + 3890: 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .E.PXCS@.@...LAS + 38a0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 38b0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 38c0: 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 53 58 ..PSPX..O<..HPSX + 38d0: 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 08 5f 41 .PMSX.[..PXSX._A + 38e0: 44 52 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 DR..A._PRT..3GPI + 38f0: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 11 12 C..,............ + 3900: 09 04 0b ff ff 01 00 0a 12 12 0a 04 0b ff ff 0a ................ + 3910: 02 00 0a 13 12 0a 04 0b ff ff 0a 03 00 0a 10 a1 ................ + 3920: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3930: 2e 4c 50 43 42 4c 4e 4b 42 00 12 12 04 0b ff ff .LPCBLNKB....... + 3940: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 43 00 12 13 04 .^^.LPCBLNKC.... + 3950: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 .....^^.LPCBLNKD + 3960: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3970: 4c 4e 4b 41 00 5b 82 4d 11 52 50 30 33 08 5f 41 LNKA.[.M.RP03._A + 3980: 44 52 0c 02 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3990: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 39a0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 39b0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 39c0: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 39d0: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 39e0: 08 5f 41 44 52 00 08 2e 50 58 53 58 5f 52 4d 56 ._ADR...PXSX_RMV + 39f0: 01 08 2e 50 58 53 58 5f 50 52 57 12 06 02 0a 09 ...PXSX_PRW..... + 3a00: 0a 03 14 41 09 5f 50 52 54 00 a0 33 47 50 49 43 ...A._PRT..3GPIC + 3a10: a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 12 12 09 ..,............. + 3a20: 04 0b ff ff 01 00 0a 13 12 0a 04 0b ff ff 0a 02 ................ + 3a30: 00 0a 10 12 0a 04 0b ff ff 0a 03 00 0a 11 a1 45 ...............E + 3a40: 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e 2e ...A.........^^. + 3a50: 4c 50 43 42 4c 4e 4b 43 00 12 12 04 0b ff ff 01 LPCBLNKC........ + 3a60: 5e 5e 2e 4c 50 43 42 4c 4e 4b 44 00 12 13 04 0b ^^.LPCBLNKD..... + 3a70: ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 ....^^.LPCBLNKA. + 3a80: 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3a90: 4e 4b 42 00 5b 82 4f 11 52 50 30 34 08 5f 41 44 NKB.[.O.RP04._AD + 3aa0: 52 0c 03 00 1c 00 5b 80 50 58 43 53 02 0a 40 0a R.....[.PXCS..@. + 3ab0: c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d 4c .[.E.PXCS@.@...L + 3ac0: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 3ad0: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 3ae0: 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 50 .'..PSPX..O<..HP + 3af0: 53 58 01 50 4d 53 58 01 5b 82 29 50 58 53 58 08 SX.PMSX.[.)PXSX. + 3b00: 5f 41 44 52 00 14 1d 5f 50 52 57 00 a0 0d 57 4b _ADR..._PRW...WK + 3b10: 4c 4e a4 12 06 02 0a 09 0a 03 a1 08 a4 12 05 02 LN.............. + 3b20: 0a 09 00 14 41 09 5f 50 52 54 00 a0 33 47 50 49 ....A._PRT..3GPI + 3b30: 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 0a 13 12 C..,............ + 3b40: 09 04 0b ff ff 01 00 0a 10 12 0a 04 0b ff ff 0a ................ + 3b50: 02 00 0a 11 12 0a 04 0b ff ff 0a 03 00 0a 12 a1 ................ + 3b60: 45 05 a4 12 41 05 04 12 12 04 0b ff ff 00 5e 5e E...A.........^^ + 3b70: 2e 4c 50 43 42 4c 4e 4b 44 00 12 12 04 0b ff ff .LPCBLNKD....... + 3b80: 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 13 04 .^^.LPCBLNKA.... + 3b90: 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 .....^^.LPCBLNKB + 3ba0: 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 42 .........^^.LPCB + 3bb0: 4c 4e 4b 43 00 5b 82 41 10 52 50 30 35 08 5f 41 LNKC.[.A.RP05._A + 3bc0: 44 52 0c 04 00 1c 00 5b 80 50 58 43 53 02 0a 40 DR.....[.PXCS..@ + 3bd0: 0a c0 5b 81 45 04 50 58 43 53 40 00 40 09 00 0d ..[.E.PXCS@.@... + 3be0: 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 LASX..2ABPX...PD + 3bf0: 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 CX...PDSX...LSCX + 3c00: 01 00 27 00 10 50 53 50 58 01 00 4f 3c 00 1e 48 ..'..PSPX..O<..H + 3c10: 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 58 53 58 PSX.PMSX.[..PXSX + 3c20: 08 5f 41 44 52 00 14 41 09 5f 50 52 54 00 a0 33 ._ADR..A._PRT..3 + 3c30: 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ff 00 00 GPIC..,......... + 3c40: 0a 10 12 09 04 0b ff ff 01 00 0a 11 12 0a 04 0b ................ + 3c50: ff ff 0a 02 00 0a 12 12 0a 04 0b ff ff 0a 03 00 ................ + 3c60: 0a 13 a1 45 05 a4 12 41 05 04 12 12 04 0b ff ff ...E...A........ + 3c70: 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 41 00 12 12 04 .^^.LPCBLNKA.... + 3c80: 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3c90: 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 42 4c ........^^.LPCBL + 3ca0: 4e 4b 43 00 12 13 04 0b ff ff 0a 03 5e 5e 2e 4c NKC.........^^.L + 3cb0: 50 43 42 4c 4e 4b 44 00 5b 82 41 10 52 50 30 36 PCBLNKD.[.A.RP06 + 3cc0: 08 5f 41 44 52 0c 05 00 1c 00 5b 80 50 58 43 53 ._ADR.....[.PXCS + 3cd0: 02 0a 40 0a c0 5b 81 45 04 50 58 43 53 40 00 40 ..@..[.E.PXCS@.@ + 3ce0: 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 ...LASX..2ABPX.. + 3cf0: 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c .PDCX...PDSX...L + 3d00: 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3c SCX..'..PSPX..O< + 3d10: 00 1e 48 50 53 58 01 50 4d 53 58 01 5b 82 0b 50 ..HPSX.PMSX.[..P + 3d20: 58 53 58 08 5f 41 44 52 00 14 41 09 5f 50 52 54 XSX._ADR..A._PRT + 3d30: 00 a0 33 47 50 49 43 a4 12 2c 04 12 09 04 0b ff ..3GPIC..,...... + 3d40: ff 00 00 0a 11 12 09 04 0b ff ff 01 00 0a 12 12 ................ + 3d50: 0a 04 0b ff ff 0a 02 00 0a 13 12 0a 04 0b ff ff ................ + 3d60: 0a 03 00 0a 10 a1 45 05 a4 12 41 05 04 12 12 04 ......E...A..... + 3d70: 0b ff ff 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 42 00 ....^^.LPCBLNKB. + 3d80: 12 12 04 0b ff ff 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 3d90: 4b 43 00 12 13 04 0b ff ff 0a 02 5e 5e 2e 4c 50 KC.........^^.LP + 3da0: 43 42 4c 4e 4b 44 00 12 13 04 0b ff ff 0a 03 5e CBLNKD.........^ + 3db0: 5e 2e 4c 50 43 42 4c 4e 4b 41 00 5b 82 4d 06 55 ^.LPCBLNKA.[.M.U + 3dc0: 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 5b 80 55 SB1._ADR.....[.U + 3dd0: 31 43 53 02 0a c4 0a 04 5b 81 0b 55 31 43 53 03 1CS.....[..U1CS. + 3de0: 55 31 45 4e 02 08 5f 50 52 57 12 06 02 0a 03 0a U1EN.._PRW...... + 3df0: 03 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 ..$_PSW...hp.ACP + 3e00: 57 a0 0c 41 43 50 57 70 0a 03 55 31 45 4e a1 07 W..ACPWp..U1EN.. + 3e10: 70 00 55 31 45 4e 14 09 5f 53 33 44 00 a4 0a 02 p.U1EN.._S3D.... + 3e20: 14 09 5f 53 34 44 00 a4 0a 02 5b 82 4c 06 55 53 .._S4D....[.L.US + 3e30: 42 32 08 5f 41 44 52 0c 01 00 1d 00 5b 80 55 32 B2._ADR.....[.U2 + 3e40: 43 53 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 CS.....[..U2CS.U + 3e50: 32 45 4e 02 08 5f 50 52 57 12 06 02 0a 04 0a 03 2EN.._PRW....... + 3e60: 14 23 5f 50 53 57 01 a0 14 68 70 01 41 43 50 57 .#_PSW...hp.ACPW + 3e70: a0 0b 41 43 50 57 70 01 55 32 45 4e a1 07 70 00 ..ACPWp.U2EN..p. + 3e80: 55 32 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 U2EN.._S3D...... + 3e90: 5f 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 33 _S4D....[.M.USB3 + 3ea0: 08 5f 41 44 52 0c 02 00 1d 00 5b 80 55 32 43 53 ._ADR.....[.U2CS + 3eb0: 02 0a c4 0a 04 5b 81 0b 55 32 43 53 03 55 33 45 .....[..U2CS.U3E + 3ec0: 4e 02 08 5f 50 52 57 12 06 02 0a 0c 0a 03 14 24 N.._PRW........$ + 3ed0: 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c _PSW...hp.ACPW.. + 3ee0: 41 43 50 57 70 0a 03 55 33 45 4e a1 07 70 00 55 ACPWp..U3EN..p.U + 3ef0: 33 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 3EN.._S3D......_ + 3f00: 53 34 44 00 a4 0a 02 5b 82 4d 06 55 53 42 34 08 S4D....[.M.USB4. + 3f10: 5f 41 44 52 0c 00 00 1a 00 5b 80 55 34 43 53 02 _ADR.....[.U4CS. + 3f20: 0a c4 0a 04 5b 81 0b 55 34 43 53 03 55 34 45 4e ....[..U4CS.U4EN + 3f30: 02 08 5f 50 52 57 12 06 02 0a 0e 0a 03 14 24 5f .._PRW........$_ + 3f40: 50 53 57 01 a0 15 68 70 01 41 43 50 57 a0 0c 41 PSW...hp.ACPW..A + 3f50: 43 50 57 70 0a 03 55 34 45 4e a1 07 70 00 55 34 CPWp..U4EN..p.U4 + 3f60: 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 EN.._S3D......_S + 3f70: 34 44 00 a4 0a 02 5b 82 41 06 55 53 42 35 08 5f 4D....[.A.USB5._ + 3f80: 41 44 52 0c 01 00 1a 00 5b 80 55 35 43 53 02 0a ADR.....[.U5CS.. + 3f90: c4 0a 04 5b 81 0b 55 35 43 53 03 55 35 45 4e 02 ...[..U5CS.U5EN. + 3fa0: 14 24 5f 50 53 57 01 a0 15 68 70 01 41 43 50 57 .$_PSW...hp.ACPW + 3fb0: a0 0c 41 43 50 57 70 0a 03 55 35 45 4e a1 07 70 ..ACPWp..U5EN..p + 3fc0: 00 55 35 45 4e 14 09 5f 53 33 44 00 a4 0a 02 14 .U5EN.._S3D..... + 3fd0: 09 5f 53 34 44 00 a4 0a 02 5b 82 4b 0a 45 48 43 ._S4D....[.K.EHC + 3fe0: 31 08 5f 41 44 52 0c 07 00 1d 00 5b 80 55 37 43 1._ADR.....[.U7C + 3ff0: 53 02 0a 54 0a 04 5b 81 0d 55 37 43 53 03 00 0f S..T..[..U7CS... + 4000: 50 4d 45 53 01 5b 82 4f 05 48 55 42 37 08 5f 41 PMES.[.O.HUB7._A + 4010: 44 52 00 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 DR.[..PRT1._ADR. + 4020: 5b 82 0c 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 [..PRT2._ADR..[. + 4030: 0c 50 52 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 .PRT3._ADR..[..P + 4040: 52 54 34 08 5f 41 44 52 0a 04 5b 82 0c 50 52 54 RT4._ADR..[..PRT + 4050: 35 08 5f 41 44 52 0a 05 5b 82 0c 50 52 54 36 08 5._ADR..[..PRT6. + 4060: 5f 41 44 52 0a 06 08 5f 50 52 57 12 06 02 0a 0d _ADR..._PRW..... + 4070: 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f 53 ...._S3D......_S + 4080: 34 44 00 a4 0a 02 5b 82 4f 08 45 48 43 32 08 5f 4D....[.O.EHC2._ + 4090: 41 44 52 0c 07 00 1a 00 5b 80 55 46 43 53 02 0a ADR.....[.UFCS.. + 40a0: 54 0a 04 5b 81 0d 55 46 43 53 03 00 0f 50 4d 45 T..[..UFCS...PME + 40b0: 53 01 5b 82 43 04 48 55 42 37 08 5f 41 44 52 00 S.[.C.HUB7._ADR. + 40c0: 5b 82 0b 50 52 54 31 08 5f 41 44 52 01 5b 82 0c [..PRT1._ADR.[.. + 40d0: 50 52 54 32 08 5f 41 44 52 0a 02 5b 82 0c 50 52 PRT2._ADR..[..PR + 40e0: 54 33 08 5f 41 44 52 0a 03 5b 82 0c 50 52 54 34 T3._ADR..[..PRT4 + 40f0: 08 5f 41 44 52 0a 04 08 5f 50 52 57 12 06 02 0a ._ADR..._PRW.... + 4100: 0d 0a 03 14 09 5f 53 33 44 00 a4 0a 02 14 09 5f ....._S3D......_ + 4110: 53 34 44 00 a4 0a 02 5b 82 4a 06 50 43 49 42 08 S4D....[.J.PCIB. + 4120: 5f 41 44 52 0c 00 00 1e 00 14 49 05 5f 50 52 54 _ADR......I._PRT + 4130: 00 a0 21 47 50 49 43 a4 12 1a 02 12 0b 04 0c ff ..!GPIC......... + 4140: ff 06 00 00 00 0a 16 12 0b 04 0c ff ff 06 00 01 ................ + 4150: 00 0a 17 a1 2f a4 12 2c 02 12 14 04 0c ff ff 06 ..../..,........ + 4160: 00 00 5e 5e 2e 4c 50 43 42 4c 4e 4b 47 00 12 14 ..^^.LPCBLNKG... + 4170: 04 0c ff ff 06 00 01 5e 5e 2e 4c 50 43 42 4c 4e .......^^.LPCBLN + 4180: 4b 48 00 5b 82 8d 2e 01 4c 50 43 42 08 5f 41 44 KH.[....LPCB._AD + 4190: 52 0c 00 00 1f 00 5b 80 4c 50 43 30 02 0a 40 0a R.....[.LPC0..@. + 41a0: c0 5b 81 4d 07 4c 50 43 30 00 00 40 10 50 41 52 .[.M.LPC0..@.PAR + 41b0: 43 08 50 42 52 43 08 50 43 52 43 08 50 44 52 43 C.PBRC.PCRC.PDRC + 41c0: 08 00 20 50 45 52 43 08 50 46 52 43 08 50 47 52 .. PERC.PFRC.PGR + 41d0: 43 08 50 48 52 43 08 00 40 0a 43 4d 41 52 03 00 C.PHRC..@.CMAR.. + 41e0: 01 43 4d 42 52 03 00 01 4c 50 54 52 02 00 06 43 .CMBR...LPTR...C + 41f0: 4d 41 44 01 43 4d 42 44 01 4c 50 54 44 01 46 44 MAD.CMBD.LPTD.FD + 4200: 44 44 01 00 2c 49 4f 52 32 10 00 02 4c 47 52 4d DD..,IOR2...LGRM + 4210: 06 00 48 32 52 41 45 4e 01 00 0d 52 43 42 41 12 ..H2RAEN...RCBA. + 4220: 5b 80 53 4d 49 30 01 0c 00 fe 00 00 0c 02 00 00 [.SMI0.......... + 4230: 00 5b 81 0b 53 4d 49 30 00 53 4d 49 43 08 5b 80 .[..SMI0.SMIC.[. + 4240: 53 4d 49 31 00 0c bd 2e 6e bf 0c 90 00 00 00 5b SMI1....n......[ + 4250: 81 16 53 4d 49 31 00 42 43 4d 44 08 44 49 44 5f ..SMI1.BCMD.DID_ + 4260: 20 49 4e 46 4f 40 40 5b 81 15 53 4d 49 31 00 01 INFO@@[..SMI1.. + 4270: 01 00 00 28 49 4e 46 5f 08 49 4e 46 31 20 5b 01 ...(INF_.INF1 [. + 4280: 50 53 4d 58 00 14 27 50 48 53 53 01 5b 23 50 53 PSMX..'PHSS.[#PS + 4290: 4d 58 ff ff 70 0a 80 42 43 4d 44 70 68 44 49 44 MX..p..BCMDphDID + 42a0: 5f 70 00 53 4d 49 43 5b 27 50 53 4d 58 5b 82 41 _p.SMIC['PSMX[.A + 42b0: 0a 4c 4e 4b 41 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKA._HID.A.... + 42c0: 5f 55 49 44 01 14 0d 5f 44 49 53 08 70 0a 80 50 _UID..._DIS.p..P + 42d0: 41 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ARC._PRS....#... + 42e0: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 41 11 09 y..8_CRS..RTLA.. + 42f0: 0a 06 23 00 00 18 79 00 8b 52 54 4c 41 01 49 52 ..#...y..RTLA.IR + 4300: 51 30 70 00 49 52 51 30 79 01 7b 50 41 52 43 0a Q0p.IRQ0y.{PARC. + 4310: 0f 00 49 52 51 30 a4 52 54 4c 41 14 1b 5f 53 52 ..IRQ0.RTLA.._SR + 4320: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 4330: 60 70 60 50 41 52 43 14 18 5f 53 54 41 08 a0 0c `p`PARC.._STA... + 4340: 7b 50 41 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PARC........... + 4350: 5b 82 42 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.B.LNKB._HID.A. + 4360: 0c 0f 08 5f 55 49 44 0a 02 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4370: 70 0a 80 50 42 52 43 08 5f 50 52 53 11 09 0a 06 p..PBRC._PRS.... + 4380: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4390: 4c 42 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LB....#...y..RTL + 43a0: 42 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 B.IRQ0p.IRQ0y.{P + 43b0: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 43c0: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 43d0: 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 54 Q0`v`p`PBRC.._ST + 43e0: 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 a1 A...{PBRC....... + 43f0: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 43 08 5f 48 49 ....[.B.LNKC._HI + 4400: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 0d 5f D.A...._UID...._ + 4410: 44 49 53 08 70 0a 80 50 43 52 43 08 5f 50 52 53 DIS.p..PCRC._PRS + 4420: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 4430: 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 79 00 ..RTLC....#...y. + 4440: 8b 52 54 4c 43 01 49 52 51 30 70 00 49 52 51 30 .RTLC.IRQ0p.IRQ0 + 4450: 79 01 7b 50 43 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PCRC...IRQ0.R + 4460: 54 4c 43 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLC.._SRS..h.IRQ + 4470: 30 82 49 52 51 30 60 76 60 70 60 50 43 52 43 14 0.IRQ0`v`p`PCRC. + 4480: 18 5f 53 54 41 08 a0 0c 7b 50 43 52 43 0a 80 00 ._STA...{PCRC... + 4490: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 44 ........[.B.LNKD + 44a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 44b0: 04 14 0d 5f 44 49 53 08 70 0a 80 50 44 52 43 08 ..._DIS.p..PDRC. + 44c0: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 44d0: 5f 43 52 53 08 08 52 54 4c 44 11 09 0a 06 23 00 _CRS..RTLD....#. + 44e0: 00 18 79 00 8b 52 54 4c 44 01 49 52 51 30 70 00 ..y..RTLD.IRQ0p. + 44f0: 49 52 51 30 79 01 7b 50 44 52 43 0a 0f 00 49 52 IRQ0y.{PDRC...IR + 4500: 51 30 a4 52 54 4c 44 14 1b 5f 53 52 53 09 8b 68 Q0.RTLD.._SRS..h + 4510: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 4520: 44 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 44 52 DRC.._STA...{PDR + 4530: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a C...........[.B. + 4540: 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKE._HID.A...._ + 4550: 55 49 44 0a 05 14 0d 5f 44 49 53 08 70 0a 80 50 UID...._DIS.p..P + 4560: 45 52 43 08 5f 50 52 53 11 09 0a 06 23 fa d4 18 ERC._PRS....#... + 4570: 79 00 14 38 5f 43 52 53 08 08 52 54 4c 45 11 09 y..8_CRS..RTLE.. + 4580: 0a 06 23 00 00 18 79 00 8b 52 54 4c 45 01 49 52 ..#...y..RTLE.IR + 4590: 51 30 70 00 49 52 51 30 79 01 7b 50 45 52 43 0a Q0p.IRQ0y.{PERC. + 45a0: 0f 00 49 52 51 30 a4 52 54 4c 45 14 1b 5f 53 52 ..IRQ0.RTLE.._SR + 45b0: 53 09 8b 68 01 49 52 51 30 82 49 52 51 30 60 76 S..h.IRQ0.IRQ0`v + 45c0: 60 70 60 50 45 52 43 14 18 5f 53 54 41 08 a0 0c `p`PERC.._STA... + 45d0: 7b 50 45 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b {PERC........... + 45e0: 5b 82 42 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 [.B.LNKF._HID.A. + 45f0: 0c 0f 08 5f 55 49 44 0a 06 14 0d 5f 44 49 53 08 ..._UID...._DIS. + 4600: 70 0a 80 50 46 52 43 08 5f 50 52 53 11 09 0a 06 p..PFRC._PRS.... + 4610: 23 fa d8 18 79 00 14 38 5f 43 52 53 08 08 52 54 #...y..8_CRS..RT + 4620: 4c 46 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c LF....#...y..RTL + 4630: 46 01 49 52 51 30 70 00 49 52 51 30 79 01 7b 50 F.IRQ0p.IRQ0y.{P + 4640: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 4650: 1b 5f 53 52 53 09 8b 68 01 49 52 51 30 82 49 52 ._SRS..h.IRQ0.IR + 4660: 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 54 Q0`v`p`PFRC.._ST + 4670: 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 a1 A...{PFRC....... + 4680: 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 47 08 5f 48 49 ....[.B.LNKG._HI + 4690: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 0d 5f D.A...._UID...._ + 46a0: 44 49 53 08 70 0a 80 50 47 52 43 08 5f 50 52 53 DIS.p..PGRC._PRS + 46b0: 11 09 0a 06 23 fa d4 18 79 00 14 38 5f 43 52 53 ....#...y..8_CRS + 46c0: 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 79 00 ..RTLG....#...y. + 46d0: 8b 52 54 4c 47 01 49 52 51 30 70 00 49 52 51 30 .RTLG.IRQ0p.IRQ0 + 46e0: 79 01 7b 50 47 52 43 0a 0f 00 49 52 51 30 a4 52 y.{PGRC...IRQ0.R + 46f0: 54 4c 47 14 1b 5f 53 52 53 09 8b 68 01 49 52 51 TLG.._SRS..h.IRQ + 4700: 30 82 49 52 51 30 60 76 60 70 60 50 47 52 43 14 0.IRQ0`v`p`PGRC. + 4710: 18 5f 53 54 41 08 a0 0c 7b 50 47 52 43 0a 80 00 ._STA...{PGRC... + 4720: a4 0a 09 a1 04 a4 0a 0b 5b 82 42 0a 4c 4e 4b 48 ........[.B.LNKH + 4730: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 4740: 08 14 0d 5f 44 49 53 08 70 0a 80 50 48 52 43 08 ..._DIS.p..PHRC. + 4750: 5f 50 52 53 11 09 0a 06 23 fa d8 18 79 00 14 38 _PRS....#...y..8 + 4760: 5f 43 52 53 08 08 52 54 4c 48 11 09 0a 06 23 00 _CRS..RTLH....#. + 4770: 00 18 79 00 8b 52 54 4c 48 01 49 52 51 30 70 00 ..y..RTLH.IRQ0p. + 4780: 49 52 51 30 79 01 7b 50 48 52 43 0a 0f 00 49 52 IRQ0y.{PHRC...IR + 4790: 51 30 a4 52 54 4c 48 14 1b 5f 53 52 53 09 8b 68 Q0.RTLH.._SRS..h + 47a0: 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 50 .IRQ0.IRQ0`v`p`P + 47b0: 48 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 48 52 HRC.._STA...{PHR + 47c0: 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 3d 44 C...........[.=D + 47d0: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 47e0: 52 53 11 28 0a 25 47 01 00 00 00 00 01 20 47 01 RS.(.%G...... G. + 47f0: 81 00 81 00 01 11 47 01 93 00 93 00 01 0d 47 01 ......G.......G. + 4800: c0 00 c0 00 01 20 2a 10 01 79 00 5b 82 26 46 57 ..... *..y.[.&FW + 4810: 48 44 08 5f 48 49 44 0c 25 d4 08 00 08 5f 43 52 HD._HID.%...._CR + 4820: 53 11 11 0a 0e 86 09 00 00 00 00 00 ff 00 00 00 S............... + 4830: 01 79 00 5b 82 40 0b 48 50 45 54 08 5f 48 49 44 .y.[.@.HPET._HID + 4840: 0c 41 d0 01 03 08 5f 43 49 44 0c 41 d0 0c 01 08 .A...._CID.A.... + 4850: 42 55 46 30 11 11 0a 0e 86 09 00 00 00 00 d0 fe BUF0............ + 4860: 00 04 00 00 79 00 14 27 5f 53 54 41 00 a0 13 92 ....y..'_STA.... + 4870: 95 4f 53 59 53 0b d1 07 a0 08 48 50 41 45 a4 0a .OSYS.....HPAE.. + 4880: 0f a1 0a a0 08 48 50 41 45 a4 0a 0b a4 00 14 46 .....HPAE......F + 4890: 05 5f 43 52 53 08 a0 49 04 48 50 41 45 8a 42 55 ._CRS..I.HPAE.BU + 48a0: 46 30 0a 04 48 50 54 30 a0 11 93 48 50 41 53 01 F0..HPT0...HPAS. + 48b0: 70 0c 00 10 d0 fe 48 50 54 30 a0 12 93 48 50 41 p.....HPT0...HPA + 48c0: 53 0a 02 70 0c 00 20 d0 fe 48 50 54 30 a0 12 93 S..p.. ..HPT0... + 48d0: 48 50 41 53 0a 03 70 0c 00 30 d0 fe 48 50 54 30 HPAS..p..0..HPT0 + 48e0: a4 42 55 46 30 5b 82 45 0a 49 50 49 43 08 5f 48 .BUF0[.E.IPIC._H + 48f0: 49 44 0b 41 d0 08 5f 43 52 53 11 41 09 0a 8d 47 ID.A.._CRS.A...G + 4900: 01 20 00 20 00 01 02 47 01 24 00 24 00 01 02 47 . . ...G.$.$...G + 4910: 01 28 00 28 00 01 02 47 01 2c 00 2c 00 01 02 47 .(.(...G.,.,...G + 4920: 01 30 00 30 00 01 02 47 01 34 00 34 00 01 02 47 .0.0...G.4.4...G + 4930: 01 38 00 38 00 01 02 47 01 3c 00 3c 00 01 02 47 .8.8...G.<.<...G + 4940: 01 a0 00 a0 00 01 02 47 01 a4 00 a4 00 01 02 47 .......G.......G + 4950: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 4960: 01 b0 00 b0 00 01 02 47 01 b4 00 b4 00 01 02 47 .......G.......G + 4970: 01 b8 00 b8 00 01 02 47 01 bc 00 bc 00 01 02 47 .......G.......G + 4980: 01 d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 4d ......."..y.[.%M + 4990: 41 54 48 08 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 ATH._HID.A...._C + 49a0: 52 53 11 10 0a 0d 47 01 f0 00 f0 00 01 01 22 00 RS....G.......". + 49b0: 20 79 00 5b 82 4b 09 4c 44 52 43 08 5f 48 49 44 y.[.K.LDRC._HID + 49c0: 0c 41 d0 0c 02 08 5f 55 49 44 0a 02 08 5f 43 52 .A...._UID..._CR + 49d0: 53 11 4e 07 0a 7a 47 01 2e 00 2e 00 01 02 47 01 S.N..zG.......G. + 49e0: 4e 00 4e 00 01 02 47 01 61 00 61 00 01 01 47 01 N.N...G.a.a...G. + 49f0: 63 00 63 00 01 01 47 01 65 00 65 00 01 01 47 01 c.c...G.e.e...G. + 4a00: 67 00 67 00 01 01 47 01 80 00 80 00 01 01 47 01 g.g...G.......G. + 4a10: 92 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 ......G.......G. + 4a20: 80 06 80 06 01 20 47 01 00 08 00 08 01 10 47 01 ..... G.......G. + 4a30: 00 10 00 10 01 80 47 01 80 11 80 11 01 40 47 01 ......G......@G. + 4a40: 00 fe 00 fe 01 01 47 01 00 ff 00 ff 01 80 79 00 ......G.......y. + 4a50: 5b 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b [.%RTC_._HID.A.. + 4a60: 00 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 .._CRS....G.p.p. + 4a70: 01 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f .."..y.[.-TIMR._ + 4a80: 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a HID.A...._CRS... + 4a90: 15 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 .G.@.@...G.P.P.. + 4aa0: 04 22 01 00 79 00 5b 82 32 41 43 41 44 08 5f 48 ."..y.[.2ACAD._H + 4ab0: 49 44 0d 41 43 50 49 30 30 30 33 00 08 5f 50 43 ID.ACPI0003.._PC + 4ac0: 4c 12 06 01 5f 53 42 5f 14 11 5f 50 53 52 00 70 L..._SB_.._PSR.p + 4ad0: 01 41 43 50 57 a4 41 43 50 57 14 1a 45 43 4f 4b .ACPW.ACPW..ECOK + 4ae0: 00 a0 0f 93 5e 2e 45 43 30 5f 5a 30 30 39 01 a4 ....^.EC0_Z009.. + 4af0: 01 a1 03 a4 00 5b 82 4e 6f 45 43 30 5f 08 5f 48 .....[.NoEC0_._H + 4b00: 49 44 0c 41 d0 0c 09 08 5f 47 50 45 0a 1c 08 5a ID.A...._GPE...Z + 4b10: 30 30 39 00 08 5f 43 52 53 11 15 0a 12 47 01 62 009.._CRS....G.b + 4b20: 00 62 00 01 01 47 01 66 00 66 00 01 01 79 00 14 .b...G.f.f...y.. + 4b30: 3b 5f 52 45 47 02 a0 34 93 68 0a 03 70 69 5a 30 ;_REG..4.h..piZ0 + 4b40: 30 39 a0 28 5b 12 5f 4f 53 49 60 70 00 42 54 44 09.([._OSI`p.BTD + 4b50: 53 a0 19 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 S.._OSI.Windows + 4b60: 32 30 30 36 00 70 01 42 54 44 53 5b 80 45 52 41 2006.p.BTDS[.ERA + 4b70: 4d 03 00 0a ff 5b 81 4e 2e 45 52 41 4d 11 00 40 M....[.N.ERAM..@ + 4b80: 30 53 4d 50 52 08 53 4d 53 54 08 53 4d 41 44 08 0SMPR.SMST.SMAD. + 4b90: 53 4d 43 4d 08 53 4d 44 30 40 10 42 43 4e 54 08 SMCM.SMD0@.BCNT. + 4ba0: 53 4d 41 41 18 00 40 04 43 48 47 4d 10 43 48 47 SMAA..@.CHGM.CHG + 4bb0: 53 10 45 4e 49 44 08 45 4e 49 42 08 45 4e 44 44 S.ENID.ENIB.ENDD + 4bc0: 08 43 48 47 56 08 43 48 47 41 10 42 41 4c 30 01 .CHGV.CHGA.BAL0. + 4bd0: 42 41 4c 31 01 42 41 4c 32 01 42 41 4c 33 01 42 BAL1.BAL2.BAL3.B + 4be0: 42 43 30 01 42 42 43 31 01 42 42 43 32 01 42 42 BC0.BBC1.BBC2.BB + 4bf0: 43 33 01 00 08 50 48 44 44 01 49 46 44 44 01 49 C3...PHDD.IFDD.I + 4c00: 4f 44 44 01 53 48 44 44 01 53 31 32 30 01 45 46 ODD.SHDD.S120.EF + 4c10: 44 44 01 43 52 54 44 01 53 50 57 52 01 53 42 54 DD.CRTD.SPWR.SBT + 4c20: 4e 01 56 49 44 4f 01 56 4f 4c 44 01 56 4f 4c 55 N.VIDO.VOLD.VOLU + 4c30: 01 4d 55 54 45 01 43 4f 4e 54 01 42 52 47 54 01 .MUTE.CONT.BRGT. + 4c40: 48 42 54 4e 01 53 34 53 54 01 53 4b 45 59 01 42 HBTN.S4ST.SKEY.B + 4c50: 4b 45 59 01 54 4f 55 50 01 46 4e 42 4e 01 4c 49 KEY.TOUP.FNBN.LI + 4c60: 44 46 01 44 49 47 4d 01 55 57 41 4b 01 00 08 44 DF.DIGM.UWAK...D + 4c70: 4b 53 50 01 44 4b 49 4e 01 44 4b 49 44 01 44 4b KSP.DKIN.DKID.DK + 4c80: 4f 4b 01 00 04 44 4b 50 57 01 00 07 42 54 4e 53 OK...DKPW...BTNS + 4c90: 08 53 31 4c 44 01 53 33 4c 44 01 56 47 41 51 01 .S1LD.S3LD.VGAQ. + 4ca0: 50 43 4d 51 01 50 43 4d 52 01 41 44 50 54 01 53 PCMQ.PCMR.ADPT.S + 4cb0: 4c 4c 53 01 53 59 53 37 01 50 57 41 4b 01 4d 57 LLS.SYS7.PWAK.MW + 4cc0: 41 4b 01 4c 57 41 4b 01 00 05 00 28 54 43 4e 4c AK.LWAK....(TCNL + 4cd0: 08 54 4d 50 49 08 54 4d 53 44 08 46 41 53 4e 04 .TMPI.TMSD.FASN. + 4ce0: 46 41 53 55 04 50 43 56 4c 04 00 02 53 57 54 4f FASU.PCVL...SWTO + 4cf0: 01 48 57 54 4f 01 4d 4f 44 45 01 46 41 4e 53 02 .HWTO.MODE.FANS. + 4d00: 49 4e 49 54 01 46 41 4e 31 01 46 41 4e 32 01 46 INIT.FAN1.FAN2.F + 4d10: 41 4e 54 01 53 4b 4e 4d 01 43 54 4d 50 08 4c 49 ANT.SKNM.CTMP.LI + 4d20: 44 45 01 50 4d 45 45 01 50 57 42 45 01 52 4e 47 DE.PMEE.PWBE.RNG + 4d30: 45 01 42 54 57 45 01 44 43 4b 45 01 00 02 53 4b E.BTWE.DCKE...SK + 4d40: 54 58 08 53 4b 54 42 08 53 4b 54 43 08 53 4b 54 TX.SKTB.SKTC.SKT + 4d50: 41 08 00 08 48 41 50 4c 02 48 41 50 52 01 00 05 A...HAPL.HAPR... + 4d60: 42 54 44 54 01 42 54 50 57 01 42 54 44 53 01 42 BTDT.BTPW.BTDS.B + 4d70: 54 50 53 01 42 54 53 57 01 42 54 57 4b 01 42 54 TPS.BTSW.BTWK.BT + 4d80: 4c 44 01 00 01 42 52 54 53 08 43 4e 54 53 08 57 LD...BRTS.CNTS.W + 4d90: 4c 41 54 01 42 54 41 54 01 57 4c 45 58 01 42 54 LAT.BTAT.WLEX.BT + 4da0: 45 58 01 4b 4c 53 57 01 57 4c 4f 4b 01 00 02 50 EX.KLSW.WLOK...P + 4db0: 54 49 44 08 43 50 55 54 08 45 50 4b 54 08 47 48 TID.CPUT.EPKT.GH + 4dc0: 49 44 08 00 04 42 4d 46 30 03 42 54 59 30 01 42 ID...BMF0.BTY0.B + 4dd0: 53 54 30 08 42 52 43 30 10 42 53 4e 30 10 42 50 ST0.BRC0.BSN0.BP + 4de0: 56 30 10 42 44 56 30 10 42 44 43 30 10 42 46 43 V0.BDV0.BDC0.BFC + 4df0: 30 10 47 41 55 30 08 43 59 43 30 08 42 50 43 30 0.GAU0.CYC0.BPC0 + 4e00: 10 42 41 43 30 10 42 41 54 30 08 42 54 57 30 10 .BAC0.BAT0.BTW0. + 4e10: 42 44 4e 30 08 00 40 04 00 04 42 4d 46 31 03 42 BDN0..@...BMF1.B + 4e20: 54 59 31 01 42 53 54 31 08 42 52 43 31 10 42 53 TY1.BST1.BRC1.BS + 4e30: 4e 31 10 42 50 56 31 10 42 44 56 31 10 42 44 43 N1.BPV1.BDV1.BDC + 4e40: 31 10 42 46 43 31 10 47 41 55 31 08 43 59 43 31 1.BFC1.GAU1.CYC1 + 4e50: 08 42 50 43 31 10 42 41 43 31 10 42 41 54 31 08 .BPC1.BAC1.BAT1. + 4e60: 42 54 57 31 10 14 37 5f 51 31 31 00 70 0a 87 50 BTW1..7_Q11.p..P + 4e70: 38 30 48 a0 13 49 47 44 53 5e 5e 5e 2e 47 46 58 80H..IGDS^^^.GFX + 4e80: 30 42 52 54 4e 0a 87 a1 15 86 5e 5e 5e 2f 03 50 0BRTN.....^^^/.P + 4e90: 45 47 50 56 47 41 5f 4c 43 44 5f 0a 87 14 37 5f EGPVGA_LCD_...7_ + 4ea0: 51 31 32 00 70 0a 86 50 38 30 48 a0 13 49 47 44 Q12.p..P80H..IGD + 4eb0: 53 5e 5e 5e 2e 47 46 58 30 42 52 54 4e 0a 86 a1 S^^^.GFX0BRTN... + 4ec0: 15 86 5e 5e 5e 2f 03 50 45 47 50 56 47 41 5f 4c ..^^^/.PEGPVGA_L + 4ed0: 43 44 5f 0a 86 14 40 05 5f 51 31 43 00 70 0d 3d CD_...@._Q1C.p.= + 4ee0: 3d 3d 3d 3d 51 55 45 52 59 5f 31 43 3d 3d 3d 3d ====QUERY_1C==== + 4ef0: 3d 00 5b 31 a0 31 56 49 44 4f a0 12 49 47 44 53 =.[1.1VIDO..IGDS + 4f00: 5e 5e 5e 2e 47 46 58 30 47 48 44 53 00 a1 12 5e ^^^.GFX0GHDS...^ + 4f10: 5e 5e 2f 03 50 45 47 50 56 47 41 5f 44 53 53 57 ^^/.PEGPVGA_DSSW + 4f20: 70 00 56 49 44 4f 14 21 5f 51 31 44 00 70 0d 3d p.VIDO.!_Q1D.p.= + 4f30: 3d 3d 3d 3d 51 55 45 52 59 5f 31 44 3d 3d 3d 3d ====QUERY_1D==== + 4f40: 3d 00 5b 31 50 43 4c 4b 14 21 5f 51 31 45 00 70 =.[1PCLK.!_Q1E.p + 4f50: 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 31 45 3d 3d .=====QUERY_1E== + 4f60: 3d 3d 3d 00 5b 31 50 43 4c 4b 14 39 5f 51 32 35 ===.[1PCLK.9_Q25 + 4f70: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 35 .p.=====QUERY_25 + 4f80: 3d 3d 3d 3d 3d 00 5b 31 5b 22 0b e8 03 86 5e 5e =====.[1["....^^ + 4f90: 42 41 54 31 0a 81 5b 22 0b e8 03 86 5e 5e 42 41 BAT1..["....^^BA + 4fa0: 54 31 0a 80 14 2f 5f 51 33 34 00 70 0d 3d 3d 3d T1.../_Q34.p.=== + 4fb0: 3d 3d 51 55 45 52 59 5f 33 34 3d 3d 3d 3d 3d 00 ==QUERY_34=====. + 4fc0: 5b 31 a0 11 42 4b 45 59 50 48 53 53 0a 71 70 00 [1..BKEYPHSS.qp. + 4fd0: 42 4b 45 59 14 32 5f 51 33 37 00 70 0d 3d 3d 3d BKEY.2_Q37.p.=== + 4fe0: 3d 3d 51 55 45 52 59 5f 33 37 3d 3d 3d 3d 3d 00 ==QUERY_37=====. + 4ff0: 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 03 86 5e [1.ACAD..["....^ + 5000: 5e 42 41 54 31 0a 80 14 32 5f 51 33 38 00 70 0d ^BAT1...2_Q38.p. + 5010: 3d 3d 3d 3d 3d 51 55 45 52 59 5f 33 38 3d 3d 3d =====QUERY_38=== + 5020: 3d 3d 00 5b 31 86 41 43 41 44 0a 80 5b 22 0b e8 ==.[1.ACAD..[".. + 5030: 03 86 5e 5e 42 41 54 31 0a 80 14 29 5f 51 32 44 ..^^BAT1...)_Q2D + 5040: 00 70 0d 3d 3d 3d 3d 3d 51 55 45 52 59 5f 32 44 .p.=====QUERY_2D + 5050: 3d 3d 3d 3d 3d 00 5b 31 70 00 44 54 53 4d 54 52 =====.[1p.DTSMTR + 5060: 41 50 0a 46 14 29 5f 51 32 45 00 70 0d 3d 3d 3d AP.F.)_Q2E.p.=== + 5070: 3d 3d 51 55 45 52 59 5f 32 45 3d 3d 3d 3d 3d 00 ==QUERY_2E=====. + 5080: 5b 31 70 01 44 54 53 4d 54 52 41 50 0a 46 5b 80 [1p.DTSMTRAP.F[. + 5090: 43 43 4c 4b 01 0b 10 10 0a 04 5b 81 20 43 43 4c CCLK......[. CCL + 50a0: 4b 03 00 01 44 55 54 59 03 54 48 45 4e 01 00 03 K...DUTY.THEN... + 50b0: 46 54 54 5f 01 00 08 54 53 54 53 01 5b 80 45 43 FTT_...TSTS.[.EC + 50c0: 52 4d 03 00 0a ff 5b 81 44 04 45 43 52 4d 11 00 RM....[.D.ECRM.. + 50d0: 40 4a 45 52 49 42 10 45 52 42 44 08 00 48 0a 53 @JERIB.ERBD..H.S + 50e0: 44 54 4d 08 46 53 53 4e 04 46 41 4e 55 04 50 54 DTM.FSSN.FANU.PT + 50f0: 56 4c 03 00 04 54 54 48 52 01 00 48 06 50 4a 49 VL...TTHR..H.PJI + 5100: 44 08 00 08 00 48 1d 52 46 52 44 10 5b 01 46 41 D....H.RFRD.[.FA + 5110: 4d 58 00 14 22 46 41 4e 47 01 5b 23 46 41 4d 58 MX.."FANG.[#FAMX + 5120: ff ff 70 68 45 52 49 42 70 45 52 42 44 60 5b 27 ..phERIBpERBD`[' + 5130: 46 41 4d 58 a4 60 14 22 46 41 4e 57 02 5b 23 46 FAMX.`."FANW.[#F + 5140: 41 4d 58 ff ff 70 68 45 52 49 42 70 69 45 52 42 AMX..phERIBpiERB + 5150: 44 5b 27 46 41 4d 58 a4 69 14 09 54 55 56 52 01 D['FAMX.i..TUVR. + 5160: a4 0a 03 14 2e 54 48 52 4f 01 a0 09 93 68 00 a4 .....THRO....h.. + 5170: 54 48 45 4e a1 1d a0 09 93 68 01 a4 44 55 54 59 THEN.....h..DUTY + 5180: a1 11 a0 0a 93 68 0a 02 a4 54 54 48 52 a1 04 a4 .....h...TTHR... + 5190: 0a ff 14 2a 43 4c 43 4b 01 a0 10 93 68 00 70 00 ...*CLCK....h.p. + 51a0: 54 48 45 4e 70 00 46 54 54 5f a1 0d 70 68 44 55 THENp.FTT_..phDU + 51b0: 54 59 70 01 54 48 45 4e a4 54 48 45 4e 14 37 50 TYp.THEN.THEN.7P + 51c0: 43 4c 4b 00 70 50 54 56 4c 60 a0 10 93 60 00 70 CLK.pPTVL`...`.p + 51d0: 00 54 48 45 4e 70 00 46 54 54 5f a1 19 76 60 70 .THENp.FTT_..v`p + 51e0: 80 60 00 61 7b 61 0a 07 61 70 61 44 55 54 59 70 .`.a{a..apaDUTYp + 51f0: 01 54 48 45 4e 5b 82 4b 22 42 41 54 31 08 5f 48 .THEN[.K"BAT1._H + 5200: 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 01 08 5f 50 ID.A...._UID.._P + 5210: 43 4c 12 06 01 5f 53 42 5f 14 39 5f 53 54 41 00 CL..._SB_.9_STA. + 5220: a0 29 90 45 43 4f 4b 93 45 43 44 59 00 a0 13 5e .).ECOK.ECDY...^ + 5230: 5e 2e 45 43 30 5f 42 41 4c 30 5b 22 0a 14 a4 0a ^.EC0_BAL0[".... + 5240: 1f a1 08 5b 22 0a 14 a4 0a 0f a1 08 5b 22 0a 14 ...[".......[".. + 5250: a4 0a 1f 14 48 10 5f 42 49 46 00 08 53 54 41 54 ....H._BIF..STAT + 5260: 12 3a 0d 01 0b a0 0f 0b a0 0f 01 0b 5c 2b 0b a4 .:..........\+.. + 5270: 01 0a 9c 0b 08 01 0b c4 0e 0d 50 41 33 34 36 35 ..........PA3465 + 5280: 55 20 00 0d 33 36 35 38 51 00 0d 4c 69 2d 49 6f U ..3658Q..Li-Io + 5290: 6e 00 0d 43 4f 4d 50 41 4c 20 00 a0 4b 07 90 45 n..COMPAL ..K..E + 52a0: 43 4f 4b 93 45 43 44 59 00 70 5e 5e 2e 45 43 30 COK.ECDY.p^^.EC0 + 52b0: 5f 42 44 4e 30 60 a0 23 93 60 0a 08 70 0a b4 88 _BDN0`.#.`..p... + 52c0: 53 54 41 54 0a 06 00 70 0d 50 41 33 34 35 37 55 STAT...p.PA3457U + 52d0: 20 00 88 53 54 41 54 0a 09 00 a0 24 93 60 0a 20 ..STAT....$.`. + 52e0: 70 0b 02 01 88 53 54 41 54 0a 06 00 70 0d 50 41 p....STAT...p.PA + 52f0: 33 34 35 37 55 20 00 88 53 54 41 54 0a 09 00 5b 3457U ..STAT...[ + 5300: 22 0a 14 70 5e 5e 2e 45 43 30 5f 42 44 43 30 42 "..p^^.EC0_BDC0B + 5310: 46 43 31 5b 22 0a 14 a1 12 70 0d 4c 69 2d 49 6f FC1["....p.Li-Io + 5320: 6e 00 88 53 54 41 54 0a 0b 00 a0 2c 42 46 43 31 n..STAT....,BFC1 + 5330: 78 42 46 43 31 0a 64 60 61 77 61 0a 64 61 70 61 xBFC1.d`awa.dapa + 5340: 42 46 43 31 70 61 88 53 54 41 54 01 00 70 61 88 BFC1pa.STAT..pa. + 5350: 53 54 41 54 0a 02 00 a4 53 54 41 54 14 45 0c 5f STAT....STAT.E._ + 5360: 42 53 54 00 08 50 42 53 54 12 10 04 00 0c ff ff BST..PBST....... + 5370: ff ff 0c ff ff ff ff 0b 5c 2b 70 0b 5c 2b 63 a0 ........\+p.\+c. + 5380: 38 90 45 43 4f 4b 93 45 43 44 59 00 5b 22 0a 14 8.ECOK.ECDY.[".. + 5390: 70 5e 5e 2e 45 43 30 5f 42 53 54 30 42 53 54 31 p^^.EC0_BST0BST1 + 53a0: 5b 22 0a 14 70 5e 5e 2e 45 43 30 5f 47 41 55 30 ["..p^^.EC0_GAU0 + 53b0: 42 47 55 31 5b 22 0a 14 a0 15 42 46 43 31 77 42 BGU1["....BFC1wB + 53c0: 47 55 31 42 46 43 31 62 78 62 0a 64 64 62 a1 09 GU1BFC1bxb.ddb.. + 53d0: 77 42 47 55 31 0a 28 62 70 42 53 54 31 88 50 42 wBGU1.(bpBST1.PB + 53e0: 53 54 00 00 70 00 88 50 42 53 54 01 00 70 62 88 ST..p..PBST..pb. + 53f0: 50 42 53 54 0a 02 00 70 63 88 50 42 53 54 0a 03 PBST...pc.PBST.. + 5400: 00 a0 1b 94 45 43 44 59 00 76 45 43 44 59 a0 0e ....ECDY.vECDY.. + 5410: 93 45 43 44 59 00 86 42 41 54 31 0a 80 a4 50 42 .ECDY..BAT1...PB + 5420: 53 54 5b 82 2e 50 53 32 4b 08 5f 48 49 44 0c 41 ST[..PS2K._HID.A + 5430: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 5440: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 5450: 79 00 5b 82 1e 50 53 32 4d 08 5f 48 49 44 0c 41 y.[..PS2M._HID.A + 5460: d0 0f 13 08 5f 43 52 53 11 09 0a 06 23 00 10 01 ...._CRS....#... + 5470: 79 00 5b 82 43 6a 50 41 54 41 08 5f 41 44 52 0c y.[.CjPATA._ADR. + 5480: 01 00 1f 00 5b 80 50 41 43 53 02 0a 40 0a c0 5b ....[.PACS..@..[ + 5490: 81 49 04 50 41 43 53 03 50 52 49 54 10 00 10 50 .I.PACS.PRIT...P + 54a0: 53 49 54 04 00 1c 53 59 4e 43 04 00 0c 53 44 54 SIT...SYNC...SDT + 54b0: 30 02 00 02 53 44 54 31 02 00 4a 04 49 43 52 30 0...SDT1..J.ICR0 + 54c0: 04 49 43 52 31 04 49 43 52 32 04 49 43 52 33 04 .ICR1.ICR2.ICR3. + 54d0: 49 43 52 34 04 49 43 52 35 04 5b 82 4b 63 50 52 ICR4.ICR5.[.KcPR + 54e0: 49 44 08 5f 41 44 52 00 14 40 17 5f 47 54 4d 00 ID._ADR..@._GTM. + 54f0: 08 50 42 55 46 11 17 0a 14 00 00 00 00 00 00 00 .PBUF........... + 5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 8a 50 42 ..............PB + 5510: 55 46 00 50 49 4f 30 8a 50 42 55 46 0a 04 44 4d UF.PIO0.PBUF..DM + 5520: 41 30 8a 50 42 55 46 0a 08 50 49 4f 31 8a 50 42 A0.PBUF..PIO1.PB + 5530: 55 46 0a 0c 44 4d 41 31 8a 50 42 55 46 0a 10 46 UF..DMA1.PBUF..F + 5540: 4c 41 47 70 47 45 54 50 50 52 49 54 50 49 4f 30 LAGpGETPPRITPIO0 + 5550: 70 47 44 4d 41 7b 53 59 4e 43 01 00 7b 49 43 52 pGDMA{SYNC..{ICR + 5560: 33 01 00 7b 49 43 52 30 01 00 53 44 54 30 7b 49 3..{ICR0..SDT0{I + 5570: 43 52 31 01 00 44 4d 41 30 a0 14 93 44 4d 41 30 CR1..DMA0...DMA0 + 5580: 0c ff ff ff ff 70 50 49 4f 30 44 4d 41 30 a0 2e .....pPIO0DMA0.. + 5590: 7b 50 52 49 54 0b 00 40 00 a0 14 93 7b 50 52 49 {PRIT..@....{PRI + 55a0: 54 0a 90 00 0a 80 70 0b 84 03 50 49 4f 31 a1 0e T.....p...PIO1.. + 55b0: 70 47 45 54 54 50 53 49 54 50 49 4f 31 a1 0b 70 pGETTPSITPIO1..p + 55c0: 0c ff ff ff ff 50 49 4f 31 70 47 44 4d 41 7b 53 .....PIO1pGDMA{S + 55d0: 59 4e 43 0a 02 00 7b 49 43 52 33 0a 02 00 7b 49 YNC...{ICR3...{I + 55e0: 43 52 30 0a 02 00 53 44 54 31 7b 49 43 52 31 0a CR0...SDT1{ICR1. + 55f0: 02 00 44 4d 41 31 a0 14 93 44 4d 41 31 0c ff ff ..DMA1...DMA1... + 5600: ff ff 70 50 49 4f 31 44 4d 41 31 70 47 45 54 46 ..pPIO1DMA1pGETF + 5610: 7b 53 59 4e 43 01 00 7b 53 59 4e 43 0a 02 00 50 {SYNC..{SYNC...P + 5620: 52 49 54 46 4c 41 47 a0 2c 7b 93 50 49 4f 30 0c RITFLAG.,{.PIO0. + 5630: ff ff ff ff 93 44 4d 41 30 0c ff ff ff ff 00 70 .....DMA0......p + 5640: 0a 78 50 49 4f 30 70 0a 14 44 4d 41 30 70 0a 03 .xPIO0p..DMA0p.. + 5650: 46 4c 41 47 a4 50 42 55 46 14 4c 2a 5f 53 54 4d FLAG.PBUF.L*_STM + 5660: 03 8a 68 00 50 49 4f 30 8a 68 0a 04 44 4d 41 30 ..h.PIO0.h..DMA0 + 5670: 8a 68 0a 08 50 49 4f 31 8a 68 0a 0c 44 4d 41 31 .h..PIO1.h..DMA1 + 5680: 8a 68 0a 10 46 4c 41 47 a0 41 12 93 87 69 0b 00 .h..FLAG.A...i.. + 5690: 02 7b 50 52 49 54 0b f0 c0 50 52 49 54 7b 53 59 .{PRIT...PRIT{SY + 56a0: 4e 43 0a 02 53 59 4e 43 70 00 53 44 54 30 7b 49 NC..SYNCp.SDT0{I + 56b0: 43 52 30 0a 02 49 43 52 30 7b 49 43 52 31 0a 02 CR0..ICR0{ICR1.. + 56c0: 49 43 52 31 7b 49 43 52 33 0a 02 49 43 52 33 7b ICR1{ICR3..ICR3{ + 56d0: 49 43 52 35 0a 02 49 43 52 35 8b 69 0a 62 57 34 ICR5..ICR5.i.bW4 + 56e0: 39 30 8b 69 0a 6a 57 35 33 30 8b 69 0a 7e 57 36 90.i.jW530.i.~W6 + 56f0: 33 30 8b 69 0a 80 57 36 34 30 8b 69 0a b0 57 38 30.i..W640.i..W8 + 5700: 38 30 8b 69 0a ba 57 39 33 30 7d 50 52 49 54 0b 80.i..W930}PRIT. + 5710: 04 80 50 52 49 54 a0 1e 90 7b 46 4c 41 47 0a 02 ..PRIT...{FLAG.. + 5720: 00 7b 57 34 39 30 0b 00 08 00 7d 50 52 49 54 0a .{W490....}PRIT. + 5730: 02 50 52 49 54 7d 50 52 49 54 53 45 54 50 50 49 .PRIT}PRITSETPPI + 5740: 4f 30 57 35 33 30 57 36 34 30 50 52 49 54 a0 4b O0W530W640PRIT.K + 5750: 05 7b 46 4c 41 47 01 00 7d 53 59 4e 43 01 53 59 .{FLAG..}SYNC.SY + 5760: 4e 43 70 53 44 4d 41 44 4d 41 30 53 44 54 30 a0 NCpSDMADMA0SDT0. + 5770: 12 95 44 4d 41 30 0a 1e 7d 49 43 52 33 01 49 43 ..DMA0..}ICR3.IC + 5780: 52 33 a0 12 95 44 4d 41 30 0a 3c 7d 49 43 52 30 R3...DMA0.<}ICR0 + 5790: 01 49 43 52 30 a0 14 7b 57 39 33 30 0b 00 20 00 .ICR0..{W930.. . + 57a0: 7d 49 43 52 31 01 49 43 52 31 a0 4b 15 93 87 6a }ICR1.ICR1.K...j + 57b0: 0b 00 02 7b 50 52 49 54 0b 0f bf 50 52 49 54 70 ...{PRIT...PRITp + 57c0: 00 50 53 49 54 7b 53 59 4e 43 01 53 59 4e 43 70 .PSIT{SYNC.SYNCp + 57d0: 00 53 44 54 31 7b 49 43 52 30 01 49 43 52 30 7b .SDT1{ICR0.ICR0{ + 57e0: 49 43 52 31 01 49 43 52 31 7b 49 43 52 33 01 49 ICR1.ICR1{ICR3.I + 57f0: 43 52 33 7b 49 43 52 35 01 49 43 52 35 8b 6a 0a CR3{ICR5.ICR5.j. + 5800: 62 57 34 39 31 8b 6a 0a 6a 57 35 33 31 8b 6a 0a bW491.j.jW531.j. + 5810: 7e 57 36 33 31 8b 6a 0a 80 57 36 34 31 8b 6a 0a ~W631.j..W641.j. + 5820: b0 57 38 38 31 8b 6a 0a ba 57 39 33 31 7d 50 52 .W881.j..W931}PR + 5830: 49 54 0b 40 80 50 52 49 54 a0 1e 90 7b 46 4c 41 IT.@.PRIT...{FLA + 5840: 47 0a 08 00 7b 57 34 39 31 0b 00 08 00 7d 50 52 G...{W491....}PR + 5850: 49 54 0a 20 50 52 49 54 a0 4c 04 7b 46 4c 41 47 IT. PRIT.L.{FLAG + 5860: 0a 10 00 7d 50 52 49 54 0b 00 40 50 52 49 54 a0 ...}PRIT..@PRIT. + 5870: 13 94 50 49 4f 31 0a f0 7d 50 52 49 54 0a 80 50 ..PIO1..}PRIT..P + 5880: 52 49 54 a1 21 7d 50 52 49 54 0a 10 50 52 49 54 RIT.!}PRIT..PRIT + 5890: 70 53 45 54 54 50 49 4f 31 57 35 33 31 57 36 34 pSETTPIO1W531W64 + 58a0: 31 50 53 49 54 a0 40 06 7b 46 4c 41 47 0a 04 00 1PSIT.@.{FLAG... + 58b0: 7d 53 59 4e 43 0a 02 53 59 4e 43 70 53 44 4d 41 }SYNC..SYNCpSDMA + 58c0: 44 4d 41 31 53 44 54 31 a0 13 95 44 4d 41 31 0a DMA1SDT1...DMA1. + 58d0: 1e 7d 49 43 52 33 0a 02 49 43 52 33 a0 13 95 44 .}ICR3..ICR3...D + 58e0: 4d 41 31 0a 3c 7d 49 43 52 30 0a 02 49 43 52 30 MA1.<}ICR0..ICR0 + 58f0: a0 15 7b 57 39 33 31 0b 00 20 00 7d 49 43 52 31 ..{W931.. .}ICR1 + 5900: 0a 02 49 43 52 31 5b 82 47 10 50 5f 44 30 08 5f ..ICR1[.G.P_D0._ + 5910: 41 44 52 00 14 4a 0f 5f 47 54 46 00 08 50 49 42 ADR..J._GTF..PIB + 5920: 30 11 11 0a 0e 03 00 00 00 00 a0 ef 03 00 00 00 0............... + 5930: 00 a0 ef 8c 50 49 42 30 01 50 4d 44 30 8c 50 49 ....PIB0.PMD0.PI + 5940: 42 30 0a 08 44 4d 44 30 a0 40 06 7b 50 52 49 54 B0..DMD0.@.{PRIT + 5950: 0a 02 00 a0 13 93 7b 50 52 49 54 0a 09 00 0a 08 ......{PRIT..... + 5960: 70 0a 08 50 4d 44 30 a1 41 04 70 0a 0a 50 4d 44 p..PMD0.A.p..PMD + 5970: 30 7a 7b 50 52 49 54 0b 00 03 00 0a 08 60 7a 7b 0z{PRIT......`z{ + 5980: 50 52 49 54 0b 00 30 00 0a 0c 61 72 60 61 62 a0 PRIT..0...ar`ab. + 5990: 0c 93 0a 03 62 70 0a 0b 50 4d 44 30 a0 0c 93 0a ....bp..PMD0.... + 59a0: 05 62 70 0a 0c 50 4d 44 30 a1 07 70 01 50 4d 44 .bp..PMD0..p.PMD + 59b0: 30 a0 43 04 7b 53 59 4e 43 01 00 70 7d 53 44 54 0.C.{SYNC..p}SDT + 59c0: 30 0a 40 00 44 4d 44 30 a0 2c 7b 49 43 52 31 01 0.@.DMD0.,{ICR1. + 59d0: 00 a0 13 7b 49 43 52 30 01 00 72 44 4d 44 30 0a ...{ICR0..rDMD0. + 59e0: 02 44 4d 44 30 a0 0f 7b 49 43 52 33 01 00 70 0a .DMD0..{ICR3..p. + 59f0: 45 44 4d 44 30 a1 14 7d 74 7b 50 4d 44 30 0a 07 EDMD0..}t{PMD0.. + 5a00: 00 0a 02 00 0a 20 44 4d 44 30 a4 50 49 42 30 5b ..... DMD0.PIB0[ + 5a10: 82 46 10 50 5f 44 31 08 5f 41 44 52 01 14 49 0f .F.P_D1._ADR..I. + 5a20: 5f 47 54 46 00 08 50 49 42 31 11 11 0a 0e 03 00 _GTF..PIB1...... + 5a30: 00 00 00 b0 ef 03 00 00 00 00 b0 ef 8c 50 49 42 .............PIB + 5a40: 31 01 50 4d 44 31 8c 50 49 42 31 0a 08 44 4d 44 1.PMD1.PIB1..DMD + 5a50: 31 a0 4b 05 7b 50 52 49 54 0a 20 00 a0 13 93 7b 1.K.{PRIT. ....{ + 5a60: 50 52 49 54 0a 90 00 0a 80 70 0a 08 50 4d 44 31 PRIT.....p..PMD1 + 5a70: a1 3c 72 7b 50 53 49 54 0a 03 00 7a 7b 50 53 49 . $TMPLOG +diff $TMPLOG $FWTSTESTDIR/syntaxcheck-0001/syntaxcheck-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/wmi-0001/acpidump-0001.log fwts-14.03.00/fwts-test/wmi-0001/acpidump-0001.log --- fwts-14.02.00/fwts-test/wmi-0001/acpidump-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/acpidump-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,4882 @@ +DSDT @ 0xdafe8000 + 0000: 44 53 44 54 52 02 01 00 01 8d 4c 45 4e 4f 56 4f DSDTR.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 49 4e 54 4c TP-G2 ....INTL + 0020: 09 11 06 20 10 4f 06 5c 5f 50 52 5f 5b 83 0b 43 ... .O.\_PR_[..C + 0030: 50 55 30 01 10 04 00 00 06 5b 83 0b 43 50 55 31 PU0......[..CPU1 + 0040: 02 10 04 00 00 06 5b 83 0b 43 50 55 32 03 10 04 ......[..CPU2... + 0050: 00 00 06 5b 83 0b 43 50 55 33 04 10 04 00 00 06 ...[..CPU3...... + 0060: 5b 83 0b 43 50 55 34 05 10 04 00 00 06 5b 83 0b [..CPU4......[.. + 0070: 43 50 55 35 06 10 04 00 00 06 5b 83 0b 43 50 55 CPU5......[..CPU + 0080: 36 07 10 04 00 00 06 5b 83 0b 43 50 55 37 08 10 6......[..CPU7.. + 0090: 04 00 00 06 10 47 1a 5c 00 14 42 1a 50 4e 54 46 .....G.\..B.PNTF + 00a0: 01 a0 4c 17 7b 5c 50 50 4d 46 0b 00 04 00 a0 2d ..L.{\PPMF.....- + 00b0: 91 90 7b 50 44 43 30 0a 08 00 91 93 68 0a 80 93 ..{PDC0.....h... + 00c0: 68 0a 82 90 7b 50 44 43 30 0a 10 00 93 68 0a 81 h...{PDC0....h.. + 00d0: 86 5c 2e 5f 50 52 5f 43 50 55 30 68 a0 2d 91 90 .\._PR_CPU0h.-.. + 00e0: 7b 50 44 43 31 0a 08 00 91 93 68 0a 80 93 68 0a {PDC1.....h...h. + 00f0: 82 90 7b 50 44 43 31 0a 10 00 93 68 0a 81 86 5c ..{PDC1....h...\ + 0100: 2e 5f 50 52 5f 43 50 55 31 68 a0 2d 91 90 7b 50 ._PR_CPU1h.-..{P + 0110: 44 43 32 0a 08 00 91 93 68 0a 80 93 68 0a 82 90 DC2.....h...h... + 0120: 7b 50 44 43 32 0a 10 00 93 68 0a 81 86 5c 2e 5f {PDC2....h...\._ + 0130: 50 52 5f 43 50 55 32 68 a0 2d 91 90 7b 50 44 43 PR_CPU2h.-..{PDC + 0140: 33 0a 08 00 91 93 68 0a 80 93 68 0a 82 90 7b 50 3.....h...h...{P + 0150: 44 43 33 0a 10 00 93 68 0a 81 86 5c 2e 5f 50 52 DC3....h...\._PR + 0160: 5f 43 50 55 33 68 a0 2d 91 90 7b 50 44 43 34 0a _CPU3h.-..{PDC4. + 0170: 08 00 91 93 68 0a 80 93 68 0a 82 90 7b 50 44 43 ....h...h...{PDC + 0180: 34 0a 10 00 93 68 0a 81 86 5c 2e 5f 50 52 5f 43 4....h...\._PR_C + 0190: 50 55 34 68 a0 2d 91 90 7b 50 44 43 35 0a 08 00 PU4h.-..{PDC5... + 01a0: 91 93 68 0a 80 93 68 0a 82 90 7b 50 44 43 35 0a ..h...h...{PDC5. + 01b0: 10 00 93 68 0a 81 86 5c 2e 5f 50 52 5f 43 50 55 ...h...\._PR_CPU + 01c0: 35 68 a0 2d 91 90 7b 50 44 43 36 0a 08 00 91 93 5h.-..{PDC6..... + 01d0: 68 0a 80 93 68 0a 82 90 7b 50 44 43 36 0a 10 00 h...h...{PDC6... + 01e0: 93 68 0a 81 86 5c 2e 5f 50 52 5f 43 50 55 36 68 .h...\._PR_CPU6h + 01f0: a0 2d 91 90 7b 50 44 43 37 0a 08 00 91 93 68 0a .-..{PDC7.....h. + 0200: 80 93 68 0a 82 90 7b 50 44 43 37 0a 10 00 93 68 ..h...{PDC7....h + 0210: 0a 81 86 5c 2e 5f 50 52 5f 43 50 55 37 68 a1 1d ...\._PR_CPU7h.. + 0220: a0 1b 91 93 68 0a 80 91 93 68 0a 81 93 68 0a 82 ....h....h...h.. + 0230: 86 5c 2e 5f 50 52 5f 43 50 55 30 68 5b 80 4d 4e .\._PR_CPU0h[.MN + 0240: 56 53 00 0c 18 d0 f9 da 0b 00 10 5b 81 40 41 4d VS.........[.@AM + 0250: 4e 56 53 03 00 80 80 06 47 41 50 41 20 47 41 50 NVS.....GAPA GAP + 0260: 4c 20 44 43 4b 49 20 44 43 4b 53 20 56 43 44 4c L DCKI DCKS VCDL + 0270: 01 56 43 44 43 01 56 43 44 54 01 56 43 44 44 01 .VCDC.VCDT.VCDD. + 0280: 00 01 56 43 53 53 01 56 43 44 42 01 56 43 49 4e ..VCSS.VCDB.VCIN + 0290: 01 56 56 50 4f 08 42 52 54 4e 08 42 52 4c 56 08 .VVPO.BRTN.BRLV. + 02a0: 43 44 46 4c 08 43 44 41 48 08 50 4d 4f 44 02 50 CDFL.CDAH.PMOD.P + 02b0: 44 49 52 01 50 44 4d 41 01 00 04 4c 46 44 43 01 DIR.PDMA...LFDC. + 02c0: 00 07 43 32 4e 41 01 43 33 4e 41 01 43 34 4e 41 ..C2NA.C3NA.C4NA + 02d0: 01 43 36 4e 41 01 43 37 4e 41 01 00 03 00 08 00 .C6NA.C7NA...... + 02e0: 02 00 01 4e 48 50 53 01 4e 50 4d 45 01 00 03 55 ...NHPS.NPME...U + 02f0: 4f 50 54 08 42 54 49 44 20 44 50 50 30 01 44 50 OPT.BTID DPP0.DP + 0300: 50 31 01 44 50 50 32 01 44 50 50 33 01 44 50 50 P1.DPP2.DPP3.DPP + 0310: 34 01 44 50 50 35 01 00 02 00 08 54 43 52 54 10 4.DPP5.....TCRT. + 0320: 54 50 53 56 10 54 54 43 31 10 54 54 43 32 10 54 TPSV.TTC1.TTC2.T + 0330: 54 53 50 10 53 52 41 48 08 53 52 48 45 08 53 52 TSP.SRAH.SRHE.SR + 0340: 45 31 08 53 52 45 32 08 53 52 45 33 08 53 52 45 E1.SRE2.SRE3.SRE + 0350: 34 08 53 52 45 35 08 53 52 45 36 08 53 52 55 31 4.SRE5.SRE6.SRU1 + 0360: 08 53 52 55 32 08 53 52 55 33 08 53 52 55 37 08 .SRU2.SRU3.SRU7. + 0370: 53 52 55 34 08 53 52 55 35 08 53 52 55 38 08 53 SRU4.SRU5.SRU8.S + 0380: 52 50 42 08 53 52 4c 50 08 53 52 53 41 08 53 52 RPB.SRLP.SRSA.SR + 0390: 53 4d 08 43 57 41 43 01 43 57 41 53 01 43 57 55 SM.CWAC.CWAS.CWU + 03a0: 45 01 43 57 55 53 01 00 04 43 57 41 50 10 43 57 E.CWUS...CWAP.CW + 03b0: 41 54 10 44 42 47 43 01 00 07 46 53 31 4c 10 46 AT.DBGC...FS1L.F + 03c0: 53 31 4d 10 46 53 31 48 10 46 53 32 4c 10 46 53 S1M.FS1H.FS2L.FS + 03d0: 32 4d 10 46 53 32 48 10 46 53 33 4c 10 46 53 33 2M.FS2H.FS3L.FS3 + 03e0: 4d 10 46 53 33 48 10 54 41 54 43 01 00 06 54 41 M.FS3H.TATC...TA + 03f0: 54 4c 01 54 41 54 57 08 54 4e 46 54 04 54 4e 54 TL.TATW.TNFT.TNT + 0400: 54 04 54 44 46 41 04 54 44 54 41 04 54 44 46 44 T.TDFA.TDTA.TDFD + 0410: 04 54 44 54 44 04 54 43 46 41 04 54 43 54 41 04 .TDTD.TCFA.TCTA. + 0420: 54 43 46 44 04 54 43 54 44 04 54 53 46 54 04 54 TCFD.TCTD.TSFT.T + 0430: 53 54 54 04 54 49 54 30 08 54 43 52 30 10 54 50 STT.TIT0.TCR0.TP + 0440: 53 30 10 54 49 54 31 08 54 43 52 31 10 54 50 53 S0.TIT1.TCR1.TPS + 0450: 31 10 54 49 54 32 08 54 43 52 32 10 54 50 53 32 1.TIT2.TCR2.TPS2 + 0460: 10 54 49 46 30 08 54 49 46 31 08 54 49 46 32 08 .TIF0.TIF1.TIF2. + 0470: 00 38 42 54 48 49 01 00 07 48 44 49 52 01 48 44 .8BTHI...HDIR.HD + 0480: 45 48 01 48 44 53 50 01 48 44 50 50 01 48 44 55 EH.HDSP.HDPP.HDU + 0490: 42 01 48 44 4d 43 01 00 02 54 50 4d 45 08 42 49 B.HDMC...TPME.BI + 04a0: 44 45 04 49 44 45 54 04 00 01 44 54 53 45 01 00 DE.IDET...DTSE.. + 04b0: 06 44 54 53 30 08 44 54 53 31 08 44 54 30 30 01 .DTS0.DTS1.DT00. + 04c0: 44 54 30 31 01 44 54 30 32 01 44 54 30 33 01 00 DT01.DT02.DT03.. + 04d0: 04 4c 49 44 42 01 43 34 57 52 01 43 34 41 43 01 .LIDB.C4WR.C4AC. + 04e0: 4f 44 44 58 01 43 4d 50 52 01 49 4c 4e 46 01 50 ODDX.CMPR.ILNF.P + 04f0: 4c 55 58 01 00 01 00 48 05 00 04 00 01 49 44 4d LUX....H.....IDM + 0500: 4d 01 00 02 00 03 00 01 00 01 4c 49 44 53 01 00 M.........LIDS.. + 0510: 02 00 08 00 04 00 04 54 43 47 30 01 54 43 47 31 .......TCG0.TCG1 + 0520: 01 00 06 53 57 47 50 08 49 50 4d 53 08 49 50 4d ...SWGP.IPMS.IPM + 0530: 42 48 07 49 50 4d 52 18 49 50 4d 4f 18 49 50 4d BH.IPMR.IPMO.IPM + 0540: 41 08 56 49 47 44 01 56 44 53 43 01 00 02 56 44 A.VIGD.VDSC...VD + 0550: 53 50 01 00 03 00 18 41 53 46 54 08 50 4c 31 4c SP.....ASFT.PL1L + 0560: 08 50 4c 31 4d 08 43 48 4b 43 20 43 48 4b 45 20 .PL1M.CHKC CHKE + 0570: 41 54 52 42 20 00 08 50 50 43 52 08 54 50 43 52 ATRB ..PPCR.TPCR + 0580: 05 00 03 00 48 07 43 54 44 50 08 50 50 43 41 08 ....H.CTDP.PPCA. + 0590: 54 50 43 41 05 00 03 42 46 57 42 48 12 4f 53 50 TPCA...BFWBH.OSP + 05a0: 58 01 4f 53 43 34 01 00 06 53 50 45 4e 01 53 43 X.OSC4...SPEN.SC + 05b0: 52 4d 01 47 46 50 4c 01 45 54 41 55 01 49 48 42 RM.GFPL.ETAU.IHB + 05c0: 43 01 41 50 4d 44 01 00 02 46 54 50 53 08 48 49 C.APMD...FTPS.HI + 05d0: 53 54 08 4c 50 53 54 08 4c 57 53 54 08 00 18 4d ST.LPST.LWST...M + 05e0: 54 41 55 08 00 40 10 48 50 45 54 20 50 4b 4c 49 TAU..@.HPET PKLI + 05f0: 10 56 4c 43 58 10 56 4e 49 54 08 56 42 44 30 08 .VLCX.VNIT.VBD0. + 0600: 56 42 44 54 40 08 56 42 50 4c 10 56 42 50 48 10 VBDT@.VBPL.VBPH. + 0610: 56 42 4d 4c 08 56 42 4d 48 08 56 45 44 49 40 40 VBML.VBMH.VEDI@@ + 0620: 50 44 43 49 10 49 53 43 47 20 49 53 53 50 01 49 PDCI.ISCG ISSP.I + 0630: 53 57 4b 02 00 05 53 48 41 31 40 0a 46 46 44 54 SWK...SHA1@.FFDT + 0640: 01 00 07 4c 57 43 50 01 4c 57 45 4e 01 00 06 55 ...LWCP.LWEN...U + 0650: 53 42 52 01 00 07 41 50 53 54 08 00 08 5b 81 44 SBR...APST...[.D + 0660: 09 4d 4e 56 53 01 00 80 80 05 57 49 54 4d 08 57 .MNVS.....WITM.W + 0670: 53 45 4c 08 57 4c 53 30 08 57 4c 53 31 08 57 4c SEL.WLS0.WLS1.WL + 0680: 53 32 08 57 4c 53 33 08 57 4c 53 34 08 57 4c 53 S2.WLS3.WLS4.WLS + 0690: 35 08 57 4c 53 36 08 57 4c 53 37 08 57 4c 53 38 5.WLS6.WLS7.WLS8 + 06a0: 08 57 4c 53 39 08 57 4c 53 41 08 57 4c 53 42 08 .WLS9.WLSA.WLSB. + 06b0: 57 4c 53 43 08 57 4c 53 44 08 57 45 4e 43 08 57 WLSC.WLSD.WENC.W + 06c0: 4b 42 44 08 57 50 54 59 08 57 50 41 53 48 40 57 KBD.WPTY.WPASH@W + 06d0: 50 4e 57 48 40 57 53 50 4d 08 57 53 50 53 08 57 PNWH@WSPM.WSPS.W + 06e0: 53 4d 4e 08 57 53 4d 58 08 57 53 45 4e 08 57 53 SMN.WSMX.WSEN.WS + 06f0: 4b 42 08 5b 81 10 4d 4e 56 53 01 00 80 00 05 44 KB.[..MNVS.....D + 0700: 42 47 53 40 40 5b 80 47 4e 56 53 00 0c 18 ce f6 BGS@@[.GNVS..... + 0710: da 0b c8 01 5b 81 4b 2c 47 4e 56 53 10 4f 53 59 ....[.K,GNVS.OSY + 0720: 53 10 53 4d 49 46 08 50 52 4d 30 08 50 52 4d 31 S.SMIF.PRM0.PRM1 + 0730: 08 00 48 05 50 57 52 53 08 00 48 06 00 38 52 45 ..H.PWRS..H..8RE + 0740: 56 4e 08 00 10 41 50 49 43 08 54 43 4e 54 08 50 VN...APIC.TCNT.P + 0750: 43 50 30 08 50 43 50 31 08 50 50 43 4d 08 50 50 CP0.PCP1.PPCM.PP + 0760: 4d 46 20 43 36 37 4c 08 00 40 05 49 47 44 53 08 MF C67L..@.IGDS. + 0770: 54 4c 53 54 08 43 41 44 4c 08 50 41 44 4c 08 43 TLST.CADL.PADL.C + 0780: 53 54 45 10 4e 53 54 45 10 53 53 54 45 10 4e 44 STE.NSTE.SSTE.ND + 0790: 49 44 08 44 49 44 31 20 44 49 44 32 20 44 49 44 ID.DID1 DID2 DID + 07a0: 33 20 44 49 44 34 20 44 49 44 35 20 4b 53 56 30 3 DID4 DID5 KSV0 + 07b0: 20 4b 53 56 31 08 00 38 42 4c 43 53 08 42 52 54 KSV1..8BLCS.BRT + 07c0: 4c 08 00 48 07 54 50 4d 50 08 00 08 4d 4f 52 44 L..H.TPMP...MORD + 07d0: 08 54 43 47 50 08 50 50 52 50 20 50 50 52 51 08 .TCGP.PPRP PPRQ. + 07e0: 4c 50 50 52 08 47 54 46 30 38 47 54 46 32 38 49 LPPR.GTF08GTF28I + 07f0: 44 45 4d 08 47 54 46 31 38 42 49 44 5f 08 50 4c DEM.GTF18BID_.PL + 0800: 49 44 08 41 4f 41 43 08 53 4c 44 52 20 57 41 4b ID.AOAC.SLDR WAK + 0810: 52 08 00 40 05 41 53 4c 42 20 49 42 54 54 08 49 R..@.ASLB IBTT.I + 0820: 50 41 54 08 49 54 56 46 08 49 54 56 4d 08 49 50 PAT.ITVF.ITVM.IP + 0830: 53 43 08 49 42 4c 43 08 49 42 49 41 08 49 53 53 SC.IBLC.IBIA.ISS + 0840: 43 08 49 34 30 39 08 49 35 30 39 08 49 36 30 39 C.I409.I509.I609 + 0850: 08 49 37 30 39 08 49 50 43 46 08 49 44 4d 53 08 .I709.IPCF.IDMS. + 0860: 49 46 31 45 08 48 56 43 4f 08 4e 58 44 31 20 4e IF1E.HVCO.NXD1 N + 0870: 58 44 32 20 4e 58 44 33 20 4e 58 44 34 20 4e 58 XD2 NXD3 NXD4 NX + 0880: 44 35 20 4e 58 44 36 20 4e 58 44 37 20 4e 58 44 D5 NXD6 NXD7 NXD + 0890: 38 20 47 53 4d 49 08 50 41 56 50 08 00 08 4f 53 8 GSMI.PAVP...OS + 08a0: 43 43 08 4e 45 58 50 08 53 44 47 56 08 53 44 44 CC.NEXP.SDGV.SDD + 08b0: 56 08 00 30 44 53 45 4e 08 45 43 4f 4e 08 00 08 V..0DSEN.ECON... + 08c0: 43 54 59 50 08 4c 30 31 43 08 56 46 4e 30 08 56 CTYP.L01C.VFN0.V + 08d0: 46 4e 31 08 00 40 07 4e 56 47 41 20 4e 56 48 41 FN1..@.NVGA NVHA + 08e0: 20 41 4d 44 41 20 44 49 44 36 20 44 49 44 37 20 AMDA DID6 DID7 + 08f0: 44 49 44 38 20 45 42 41 53 20 43 50 53 50 20 45 DID8 EBAS CPSP E + 0900: 45 43 50 20 45 56 43 50 20 58 42 41 53 20 4f 42 ECP EVCP XBAS OB + 0910: 53 31 20 4f 42 53 32 20 4f 42 53 33 20 4f 42 53 S1 OBS2 OBS3 OBS + 0920: 34 20 4f 42 53 35 20 4f 42 53 36 20 4f 42 53 37 4 OBS5 OBS6 OBS7 + 0930: 20 4f 42 53 38 20 00 48 05 41 54 4d 43 08 50 54 OBS8 .H.ATMC.PT + 0940: 4d 43 08 41 54 52 41 08 50 54 52 41 08 50 4e 48 MC.ATRA.PTRA.PNH + 0950: 4d 20 54 42 41 42 20 54 42 41 48 20 52 54 49 50 M TBAB TBAH RTIP + 0960: 08 54 53 4f 44 08 41 54 50 43 08 50 54 50 43 08 .TSOD.ATPC.PTPC. + 0970: 50 46 4c 56 08 42 52 45 56 08 48 47 4d 44 08 50 PFLV.BREV.HGMD.P + 0980: 57 4f 4b 08 48 4c 52 53 08 44 53 45 4c 08 45 53 WOK.HLRS.DSEL.ES + 0990: 45 4c 08 50 53 45 4c 08 50 57 45 4e 08 50 52 53 EL.PSEL.PWEN.PRS + 09a0: 54 08 44 50 42 4d 08 44 50 43 4d 08 44 50 44 4d T.DPBM.DPCM.DPDM + 09b0: 08 41 4c 46 50 08 49 4d 4f 4e 08 50 44 54 53 08 .ALFP.IMON.PDTS. + 09c0: 50 4b 47 41 08 50 41 4d 54 08 41 43 30 46 08 41 PKGA.PAMT.AC0F.A + 09d0: 43 31 46 08 00 48 19 58 48 43 4d 08 58 48 50 4d C1F..H.XHCM.XHPM + 09e0: 08 10 8c 51 0d 5c 5f 53 42 5f 14 4a 30 5f 49 4e ...Q.\_SB_.J0_IN + 09f0: 49 00 a0 43 0f 5b 12 5c 5f 4f 53 49 60 a0 2c 5c I..C.[.\_OSI`.,\ + 0a00: 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 _OSI.Windows 200 + 0a10: 31 00 70 0a 01 5c 57 4e 54 46 70 0a 01 5c 57 58 1.p..\WNTFp..\WX + 0a20: 50 46 70 0a 00 5c 57 53 50 56 a0 20 5c 5f 4f 53 PFp..\WSPV. \_OS + 0a30: 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 53 I.Windows 2001 S + 0a40: 50 31 00 70 0a 01 5c 57 53 50 56 a0 20 5c 5f 4f P1.p..\WSPV. \_O + 0a50: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 31 20 SI.Windows 2001 + 0a60: 53 50 32 00 70 0a 02 5c 57 53 50 56 a0 1c 5c 5f SP2.p..\WSPV..\_ + 0a70: 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 OSI.Windows 2006 + 0a80: 00 70 0a 01 5c 57 56 49 53 a0 2e 5c 5f 4f 53 49 .p..\WVIS..\_OSI + 0a90: 0d 57 69 6e 64 6f 77 73 20 32 30 30 39 00 70 0a .Windows 2009.p. + 0aa0: 01 5c 57 49 4e 37 70 0a 01 5c 2f 03 5f 53 42 5f .\WIN7p..\/._SB_ + 0ab0: 47 44 43 4b 58 48 4f 53 a0 15 5c 5f 4f 53 49 0d GDCKXHOS..\_OSI. + 0ac0: 4c 69 6e 75 78 00 70 0a 01 5c 4c 4e 55 58 a0 17 Linux.p..\LNUX.. + 0ad0: 5c 5f 4f 53 49 0d 46 72 65 65 42 53 44 00 70 0a \_OSI.FreeBSD.p. + 0ae0: 01 5c 4c 4e 55 58 a1 2d a0 2b 93 5c 53 43 4d 50 .\LNUX.-.+.\SCMP + 0af0: 5c 5f 4f 53 5f 0d 4d 69 63 72 6f 73 6f 66 74 20 \_OS_.Microsoft + 0b00: 57 69 6e 64 6f 77 73 20 4e 54 00 00 70 0a 01 5c Windows NT..p..\ + 0b10: 57 4e 54 46 a0 12 92 95 5c 5f 52 45 56 0a 02 70 WNTF....\_REV..p + 0b20: 0a 01 5c 48 38 44 52 70 0a 01 5c 4f 53 49 46 70 ..\H8DRp..\OSIFp + 0b30: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 0b40: 43 5f 5f 41 43 5f 5f 5f 50 53 52 5c 50 57 52 53 C__AC___PSR\PWRS + 0b50: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 4d \/._SB_PCI0LPC_M + 0b60: 4f 55 5f 4d 48 49 44 a0 26 5c 4c 4e 55 58 5c 2f OU_MHID.&\LNUX\/ + 0b70: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 0b80: 5f 53 41 55 4d 0a 02 5c 55 43 4d 53 0a 1c 70 5c _SAUM..\UCMS..p\ + 0b90: 53 52 41 48 5c 2f 03 5f 53 42 5f 50 43 49 30 52 SRAH\/._SB_PCI0R + 0ba0: 49 44 5f a0 1e 56 49 47 44 70 5c 53 52 48 45 5c ID_..VIGDp\SRHE\ + 0bb0: 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f 52 49 /._SB_PCI0VID_RI + 0bc0: 44 5f a1 1a 70 5c 53 52 48 45 5c 2f 04 5f 53 42 D_..p\SRHE\/._SB + 0bd0: 5f 50 43 49 30 50 45 47 5f 52 49 44 5f 70 5c 53 _PCI0PEG_RID_p\S + 0be0: 52 45 31 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 RE1\/._SB_PCI0EX + 0bf0: 50 31 52 49 44 5f 70 5c 53 52 45 32 5c 2f 04 5f P1RID_p\SRE2\/._ + 0c00: 53 42 5f 50 43 49 30 45 58 50 32 52 49 44 5f 70 SB_PCI0EXP2RID_p + 0c10: 5c 53 52 45 33 5c 2f 04 5f 53 42 5f 50 43 49 30 \SRE3\/._SB_PCI0 + 0c20: 45 58 50 33 52 49 44 5f 70 5c 53 52 55 37 5c 2f EXP3RID_p\SRU7\/ + 0c30: 04 5f 53 42 5f 50 43 49 30 45 48 43 31 52 49 44 ._SB_PCI0EHC1RID + 0c40: 5f 70 5c 53 52 55 38 5c 2f 04 5f 53 42 5f 50 43 _p\SRU8\/._SB_PC + 0c50: 49 30 45 48 43 32 52 49 44 5f 70 5c 53 52 4c 50 I0EHC2RID_p\SRLP + 0c60: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 52 \/._SB_PCI0LPC_R + 0c70: 49 44 5f 70 5c 53 52 53 41 5c 2f 04 5f 53 42 5f ID_p\SRSA\/._SB_ + 0c80: 50 43 49 30 53 41 54 31 52 49 44 5f 70 5c 53 52 PCI0SAT1RID_p\SR + 0c90: 53 4d 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 SM\/._SB_PCI0SMB + 0ca0: 55 52 49 44 5f a0 48 04 56 44 53 50 70 5c 56 48 URID_.H.VDSPp\VH + 0cb0: 59 42 0a 05 0a 00 61 a0 36 7b 61 0a 80 00 a0 1a YB....a.6{a..... + 0cc0: 5c 57 49 4e 37 a0 13 92 93 7b 61 0a 03 00 0a 03 \WIN7....{a..... + 0cd0: 5c 56 48 59 42 0a 06 0a 03 a1 14 a0 12 93 7b 61 \VHYB.........{a + 0ce0: 0a 03 00 0a 03 5c 56 48 59 42 0a 06 0a 02 5c 55 .....\VHYB....\U + 0cf0: 43 4d 53 0a 1d 5b 82 4b 11 4c 4e 4b 41 08 5f 48 CMS..[.K.LNKA._H + 0d00: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 01 14 28 ID.A...._UID...( + 0d10: 5f 53 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f _STA....VPIR\/._ + 0d20: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 41 a4 SB_PCI0LPC_PIRA. + 0d30: 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06 ........_PRS.... + 0d40: 23 f8 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f #...y../_DIS.}\/ + 0d50: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 ._SB_PCI0LPC_PIR + 0d60: 41 0a 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 A..\/._SB_PCI0LP + 0d70: 43 5f 50 49 52 41 08 42 55 46 41 11 09 0a 06 23 C_PIRA.BUFA....# + 0d80: 00 00 18 79 00 8b 42 55 46 41 0a 01 49 52 41 31 ...y..BUFA..IRA1 + 0d90: 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50 .:_CRS.{\/._SB_P + 0da0: 43 49 30 4c 50 43 5f 50 49 52 41 0a 8f 60 a0 0e CI0LPC_PIRA..`.. + 0db0: 56 50 49 52 60 79 0a 01 60 49 52 41 31 a1 08 70 VPIR`y..`IRA1..p + 0dc0: 0a 00 49 52 41 31 a4 42 55 46 41 14 46 04 5f 53 ..IRA1.BUFA.F._S + 0dd0: 52 53 01 8b 68 0a 01 49 52 41 32 82 49 52 41 32 RS..h..IRA2.IRA2 + 0de0: 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 `{\/._SB_PCI0LPC + 0df0: 5f 50 49 52 41 0a 70 61 7d 61 76 60 61 70 61 5c _PIRA.pa}av`apa\ + 0e00: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 /._SB_PCI0LPC_PI + 0e10: 52 41 5b 82 4b 11 4c 4e 4b 42 08 5f 48 49 44 0c RA[.K.LNKB._HID. + 0e20: 41 d0 0c 0f 08 5f 55 49 44 0a 02 14 28 5f 53 54 A...._UID...(_ST + 0e30: 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f A....VPIR\/._SB_ + 0e40: 50 43 49 30 4c 50 43 5f 50 49 52 42 a4 0a 09 a1 PCI0LPC_PIRB.... + 0e50: 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e ....._PRS....#.. + 0e60: 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53 .y../_DIS.}\/._S + 0e70: 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 42 0a 80 B_PCI0LPC_PIRB.. + 0e80: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 \/._SB_PCI0LPC_P + 0e90: 49 52 42 08 42 55 46 42 11 09 0a 06 23 00 00 18 IRB.BUFB....#... + 0ea0: 79 00 8b 42 55 46 42 0a 01 49 52 42 31 14 3a 5f y..BUFB..IRB1.:_ + 0eb0: 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 CRS.{\/._SB_PCI0 + 0ec0: 4c 50 43 5f 50 49 52 42 0a 8f 60 a0 0e 56 50 49 LPC_PIRB..`..VPI + 0ed0: 52 60 79 0a 01 60 49 52 42 31 a1 08 70 0a 00 49 R`y..`IRB1..p..I + 0ee0: 52 42 31 a4 42 55 46 42 14 46 04 5f 53 52 53 01 RB1.BUFB.F._SRS. + 0ef0: 8b 68 0a 01 49 52 42 32 82 49 52 42 32 60 7b 5c .h..IRB2.IRB2`{\ + 0f00: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 /._SB_PCI0LPC_PI + 0f10: 52 42 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f RB.pa}av`apa\/._ + 0f20: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 42 5b SB_PCI0LPC_PIRB[ + 0f30: 82 4b 11 4c 4e 4b 43 08 5f 48 49 44 0c 41 d0 0c .K.LNKC._HID.A.. + 0f40: 0f 08 5f 55 49 44 0a 03 14 28 5f 53 54 41 00 a0 .._UID...(_STA.. + 0f50: 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f 50 43 49 ..VPIR\/._SB_PCI + 0f60: 30 4c 50 43 5f 50 49 52 43 a4 0a 09 a1 04 a4 0a 0LPC_PIRC....... + 0f70: 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e 18 79 00 .._PRS....#...y. + 0f80: 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53 42 5f 50 ./_DIS.}\/._SB_P + 0f90: 43 49 30 4c 50 43 5f 50 49 52 43 0a 80 5c 2f 04 CI0LPC_PIRC..\/. + 0fa0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 43 _SB_PCI0LPC_PIRC + 0fb0: 08 42 55 46 43 11 09 0a 06 23 00 00 18 79 00 8b .BUFC....#...y.. + 0fc0: 42 55 46 43 0a 01 49 52 43 31 14 3a 5f 43 52 53 BUFC..IRC1.:_CRS + 0fd0: 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 .{\/._SB_PCI0LPC + 0fe0: 5f 50 49 52 43 0a 8f 60 a0 0e 56 50 49 52 60 79 _PIRC..`..VPIR`y + 0ff0: 0a 01 60 49 52 43 31 a1 08 70 0a 00 49 52 43 31 ..`IRC1..p..IRC1 + 1000: a4 42 55 46 43 14 46 04 5f 53 52 53 01 8b 68 0a .BUFC.F._SRS..h. + 1010: 01 49 52 43 32 82 49 52 43 32 60 7b 5c 2f 04 5f .IRC2.IRC2`{\/._ + 1020: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 43 0a SB_PCI0LPC_PIRC. + 1030: 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f 53 42 5f pa}av`apa\/._SB_ + 1040: 50 43 49 30 4c 50 43 5f 50 49 52 43 5b 82 4b 11 PCI0LPC_PIRC[.K. + 1050: 4c 4e 4b 44 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKD._HID.A...._ + 1060: 55 49 44 0a 04 14 28 5f 53 54 41 00 a0 1c 92 56 UID...(_STA....V + 1070: 50 49 52 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 PIR\/._SB_PCI0LP + 1080: 43 5f 50 49 52 44 a4 0a 09 a1 04 a4 0a 0b 08 5f C_PIRD........._ + 1090: 50 52 53 11 09 0a 06 23 f8 0e 18 79 00 14 2f 5f PRS....#...y../_ + 10a0: 44 49 53 00 7d 5c 2f 04 5f 53 42 5f 50 43 49 30 DIS.}\/._SB_PCI0 + 10b0: 4c 50 43 5f 50 49 52 44 0a 80 5c 2f 04 5f 53 42 LPC_PIRD..\/._SB + 10c0: 5f 50 43 49 30 4c 50 43 5f 50 49 52 44 08 42 55 _PCI0LPC_PIRD.BU + 10d0: 46 44 11 09 0a 06 23 00 00 18 79 00 8b 42 55 46 FD....#...y..BUF + 10e0: 44 0a 01 49 52 44 31 14 3a 5f 43 52 53 00 7b 5c D..IRD1.:_CRS.{\ + 10f0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 /._SB_PCI0LPC_PI + 1100: 52 44 0a 8f 60 a0 0e 56 50 49 52 60 79 0a 01 60 RD..`..VPIR`y..` + 1110: 49 52 44 31 a1 08 70 0a 00 49 52 44 31 a4 42 55 IRD1..p..IRD1.BU + 1120: 46 44 14 46 04 5f 53 52 53 01 8b 68 0a 01 49 52 FD.F._SRS..h..IR + 1130: 44 32 82 49 52 44 32 60 7b 5c 2f 04 5f 53 42 5f D2.IRD2`{\/._SB_ + 1140: 50 43 49 30 4c 50 43 5f 50 49 52 44 0a 70 61 7d PCI0LPC_PIRD.pa} + 1150: 61 76 60 61 70 61 5c 2f 04 5f 53 42 5f 50 43 49 av`apa\/._SB_PCI + 1160: 30 4c 50 43 5f 50 49 52 44 5b 82 4b 11 4c 4e 4b 0LPC_PIRD[.K.LNK + 1170: 45 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 E._HID.A...._UID + 1180: 0a 05 14 28 5f 53 54 41 00 a0 1c 92 56 50 49 52 ...(_STA....VPIR + 1190: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 \/._SB_PCI0LPC_P + 11a0: 49 52 45 a4 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53 IRE........._PRS + 11b0: 11 09 0a 06 23 f8 0e 18 79 00 14 2f 5f 44 49 53 ....#...y../_DIS + 11c0: 00 7d 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 .}\/._SB_PCI0LPC + 11d0: 5f 50 49 52 45 0a 80 5c 2f 04 5f 53 42 5f 50 43 _PIRE..\/._SB_PC + 11e0: 49 30 4c 50 43 5f 50 49 52 45 08 42 55 46 45 11 I0LPC_PIRE.BUFE. + 11f0: 09 0a 06 23 00 00 18 79 00 8b 42 55 46 45 0a 01 ...#...y..BUFE.. + 1200: 49 52 45 31 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f IRE1.:_CRS.{\/._ + 1210: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 45 0a SB_PCI0LPC_PIRE. + 1220: 8f 60 a0 0e 56 50 49 52 60 79 0a 01 60 49 52 45 .`..VPIR`y..`IRE + 1230: 31 a1 08 70 0a 00 49 52 45 31 a4 42 55 46 45 14 1..p..IRE1.BUFE. + 1240: 46 04 5f 53 52 53 01 8b 68 0a 01 49 52 45 32 82 F._SRS..h..IRE2. + 1250: 49 52 45 32 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 IRE2`{\/._SB_PCI + 1260: 30 4c 50 43 5f 50 49 52 45 0a 70 61 7d 61 76 60 0LPC_PIRE.pa}av` + 1270: 61 70 61 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 apa\/._SB_PCI0LP + 1280: 43 5f 50 49 52 45 5b 82 4b 11 4c 4e 4b 46 08 5f C_PIRE[.K.LNKF._ + 1290: 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 06 14 HID.A...._UID... + 12a0: 28 5f 53 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04 (_STA....VPIR\/. + 12b0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 46 _SB_PCI0LPC_PIRF + 12c0: a4 0a 09 a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a ........._PRS... + 12d0: 06 23 f8 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c .#...y../_DIS.}\ + 12e0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 /._SB_PCI0LPC_PI + 12f0: 52 46 0a 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c RF..\/._SB_PCI0L + 1300: 50 43 5f 50 49 52 46 08 42 55 46 46 11 09 0a 06 PC_PIRF.BUFF.... + 1310: 23 00 00 18 79 00 8b 42 55 46 46 0a 01 49 52 46 #...y..BUFF..IRF + 1320: 31 14 3a 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 1.:_CRS.{\/._SB_ + 1330: 50 43 49 30 4c 50 43 5f 50 49 52 46 0a 8f 60 a0 PCI0LPC_PIRF..`. + 1340: 0e 56 50 49 52 60 79 0a 01 60 49 52 46 31 a1 08 .VPIR`y..`IRF1.. + 1350: 70 0a 00 49 52 46 31 a4 42 55 46 46 14 46 04 5f p..IRF1.BUFF.F._ + 1360: 53 52 53 01 8b 68 0a 01 49 52 46 32 82 49 52 46 SRS..h..IRF2.IRF + 1370: 32 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 2`{\/._SB_PCI0LP + 1380: 43 5f 50 49 52 46 0a 70 61 7d 61 76 60 61 70 61 C_PIRF.pa}av`apa + 1390: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 \/._SB_PCI0LPC_P + 13a0: 49 52 46 5b 82 4b 11 4c 4e 4b 47 08 5f 48 49 44 IRF[.K.LNKG._HID + 13b0: 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 28 5f 53 .A...._UID...(_S + 13c0: 54 41 00 a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42 TA....VPIR\/._SB + 13d0: 5f 50 43 49 30 4c 50 43 5f 50 49 52 47 a4 0a 09 _PCI0LPC_PIRG... + 13e0: a1 04 a4 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8 ......_PRS....#. + 13f0: 0e 18 79 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f ..y../_DIS.}\/._ + 1400: 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 47 0a SB_PCI0LPC_PIRG. + 1410: 80 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 1420: 50 49 52 47 08 42 55 46 47 11 09 0a 06 23 00 00 PIRG.BUFG....#.. + 1430: 18 79 00 8b 42 55 46 47 0a 01 49 52 47 31 14 3a .y..BUFG..IRG1.: + 1440: 5f 43 52 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 _CRS.{\/._SB_PCI + 1450: 30 4c 50 43 5f 50 49 52 47 0a 8f 60 a0 0e 56 50 0LPC_PIRG..`..VP + 1460: 49 52 60 79 0a 01 60 49 52 47 31 a1 08 70 0a 00 IR`y..`IRG1..p.. + 1470: 49 52 47 31 a4 42 55 46 47 14 46 04 5f 53 52 53 IRG1.BUFG.F._SRS + 1480: 01 8b 68 0a 01 49 52 47 32 82 49 52 47 32 60 7b ..h..IRG2.IRG2`{ + 1490: 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 \/._SB_PCI0LPC_P + 14a0: 49 52 47 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04 IRG.pa}av`apa\/. + 14b0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 47 _SB_PCI0LPC_PIRG + 14c0: 5b 82 4b 11 4c 4e 4b 48 08 5f 48 49 44 0c 41 d0 [.K.LNKH._HID.A. + 14d0: 0c 0f 08 5f 55 49 44 0a 08 14 28 5f 53 54 41 00 ..._UID...(_STA. + 14e0: a0 1c 92 56 50 49 52 5c 2f 04 5f 53 42 5f 50 43 ...VPIR\/._SB_PC + 14f0: 49 30 4c 50 43 5f 50 49 52 48 a4 0a 09 a1 04 a4 I0LPC_PIRH...... + 1500: 0a 0b 08 5f 50 52 53 11 09 0a 06 23 f8 0e 18 79 ..._PRS....#...y + 1510: 00 14 2f 5f 44 49 53 00 7d 5c 2f 04 5f 53 42 5f ../_DIS.}\/._SB_ + 1520: 50 43 49 30 4c 50 43 5f 50 49 52 48 0a 80 5c 2f PCI0LPC_PIRH..\/ + 1530: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 ._SB_PCI0LPC_PIR + 1540: 48 08 42 55 46 48 11 09 0a 06 23 00 00 18 79 00 H.BUFH....#...y. + 1550: 8b 42 55 46 48 0a 01 49 52 48 31 14 3a 5f 43 52 .BUFH..IRH1.:_CR + 1560: 53 00 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 S.{\/._SB_PCI0LP + 1570: 43 5f 50 49 52 48 0a 8f 60 a0 0e 56 50 49 52 60 C_PIRH..`..VPIR` + 1580: 79 0a 01 60 49 52 48 31 a1 08 70 0a 00 49 52 48 y..`IRH1..p..IRH + 1590: 31 a4 42 55 46 48 14 46 04 5f 53 52 53 01 8b 68 1.BUFH.F._SRS..h + 15a0: 0a 01 49 52 48 32 82 49 52 48 32 60 7b 5c 2f 04 ..IRH2.IRH2`{\/. + 15b0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 50 49 52 48 _SB_PCI0LPC_PIRH + 15c0: 0a 70 61 7d 61 76 60 61 70 61 5c 2f 04 5f 53 42 .pa}av`apa\/._SB + 15d0: 5f 50 43 49 30 4c 50 43 5f 50 49 52 48 14 39 56 _PCI0LPC_PIRH.9V + 15e0: 50 49 52 01 70 0a 01 60 a0 0a 7b 68 0a 80 00 70 PIR.p..`..{h...p + 15f0: 0a 00 60 a1 21 7b 68 0a 0f 61 a0 09 95 61 0a 03 ..`.!{h..a...a.. + 1600: 70 0a 00 60 a1 10 a0 0e 91 93 61 0a 08 93 61 0a p..`......a...a. + 1610: 0d 70 0a 00 60 a4 60 5b 82 4f 47 4d 45 4d 5f 08 .p..`.`[.OGMEM_. + 1620: 5f 48 49 44 0c 41 d0 0c 01 08 4d 45 4d 53 11 42 _HID.A....MEMS.B + 1630: 0d 0a ce 86 09 00 01 00 00 00 00 00 00 0a 00 86 ................ + 1640: 09 00 00 00 00 0c 00 00 00 00 00 86 09 00 00 00 ................ + 1650: 40 0c 00 00 00 00 00 86 09 00 00 00 80 0c 00 00 @............... + 1660: 00 00 00 86 09 00 00 00 c0 0c 00 00 00 00 00 86 ................ + 1670: 09 00 00 00 00 0d 00 00 00 00 00 86 09 00 00 00 ................ + 1680: 40 0d 00 00 00 00 00 86 09 00 00 00 80 0d 00 00 @............... + 1690: 00 00 00 86 09 00 00 00 c0 0d 00 00 00 00 00 86 ................ + 16a0: 09 00 00 00 00 0e 00 00 00 00 00 86 09 00 00 00 ................ + 16b0: 40 0e 00 00 00 00 00 86 09 00 00 00 80 0e 00 00 @............... + 16c0: 00 00 00 86 09 00 00 00 c0 0e 00 00 00 00 00 86 ................ + 16d0: 09 00 00 00 00 0f 00 00 00 01 00 86 09 00 01 00 ................ + 16e0: 00 10 00 00 00 ee 01 86 09 00 00 00 00 c0 fe 00 ................ + 16f0: 00 14 00 86 09 00 00 00 c0 d4 fe 00 40 2b 01 79 ............@+.y + 1700: 00 8a 4d 45 4d 53 0a 14 4d 43 30 4c 8a 4d 45 4d ..MEMS..MC0L.MEM + 1710: 53 0a 20 4d 43 34 4c 8a 4d 45 4d 53 0a 2c 4d 43 S. MC4L.MEMS.,MC + 1720: 38 4c 8a 4d 45 4d 53 0a 38 4d 43 43 4c 8a 4d 45 8L.MEMS.8MCCL.ME + 1730: 4d 53 0a 44 4d 44 30 4c 8a 4d 45 4d 53 0a 50 4d MS.DMD0L.MEMS.PM + 1740: 44 34 4c 8a 4d 45 4d 53 0a 5c 4d 44 38 4c 8a 4d D4L.MEMS.\MD8L.M + 1750: 45 4d 53 0a 68 4d 44 43 4c 8a 4d 45 4d 53 0a 74 EMS.hMDCL.MEMS.t + 1760: 4d 45 30 4c 8a 4d 45 4d 53 0a 80 4d 45 34 4c 8a ME0L.MEMS..ME4L. + 1770: 4d 45 4d 53 0a 8c 4d 45 38 4c 8a 4d 45 4d 53 0a MEMS..ME8L.MEMS. + 1780: 98 4d 45 43 4c 8d 4d 45 4d 53 0a 78 4d 43 30 57 .MECL.MEMS.xMC0W + 1790: 8d 4d 45 4d 53 0a d8 4d 43 34 57 8d 4d 45 4d 53 .MEMS..MC4W.MEMS + 17a0: 0b 38 01 4d 43 38 57 8d 4d 45 4d 53 0b 98 01 4d .8.MC8W.MEMS...M + 17b0: 43 43 57 8d 4d 45 4d 53 0b f8 01 4d 44 30 57 8d CCW.MEMS...MD0W. + 17c0: 4d 45 4d 53 0b 58 02 4d 44 34 57 8d 4d 45 4d 53 MEMS.X.MD4W.MEMS + 17d0: 0b b8 02 4d 44 38 57 8d 4d 45 4d 53 0b 18 03 4d ...MD8W.MEMS...M + 17e0: 44 43 57 8d 4d 45 4d 53 0b 78 03 4d 45 30 57 8d DCW.MEMS.x.ME0W. + 17f0: 4d 45 4d 53 0b d8 03 4d 45 34 57 8d 4d 45 4d 53 MEMS...ME4W.MEMS + 1800: 0b 38 04 4d 45 38 57 8d 4d 45 4d 53 0b 98 04 4d .8.ME8W.MEMS...M + 1810: 45 43 57 8a 4d 45 4d 53 0a ac 4d 45 42 31 8a 4d ECW.MEMS..MEB1.M + 1820: 45 4d 53 0a b0 4d 45 4c 31 8a 4d 45 4d 53 0a bc EMS..MEL1.MEMS.. + 1830: 4d 45 4c 32 8a 4d 45 4d 53 0a c8 4d 45 4c 33 14 MEL2.MEMS..MEL3. + 1840: 48 25 5f 43 52 53 00 7b 5c 2f 03 5f 53 42 5f 50 H%_CRS.{\/._SB_P + 1850: 43 49 30 50 41 4d 31 0a 03 60 a0 18 60 70 0b 00 CI0PAM1..`..`p.. + 1860: 40 4d 43 30 4c a0 0d 7b 60 0a 02 00 70 0a 01 4d @MC0L..{`...p..M + 1870: 43 30 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 C0W{\/._SB_PCI0P + 1880: 41 4d 31 0a 30 60 a0 18 60 70 0b 00 40 4d 43 34 AM1.0`..`p..@MC4 + 1890: 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 43 34 57 7b L..{`. .p..MC4W{ + 18a0: 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 32 0a \/._SB_PCI0PAM2. + 18b0: 03 60 a0 18 60 70 0b 00 40 4d 43 38 4c a0 0d 7b .`..`p..@MC8L..{ + 18c0: 60 0a 02 00 70 0a 01 4d 43 38 57 7b 5c 2f 03 5f `...p..MC8W{\/._ + 18d0: 53 42 5f 50 43 49 30 50 41 4d 32 0a 30 60 a0 18 SB_PCI0PAM2.0`.. + 18e0: 60 70 0b 00 40 4d 43 43 4c a0 0d 7b 60 0a 20 00 `p..@MCCL..{`. . + 18f0: 70 0a 01 4d 43 43 57 7b 5c 2f 03 5f 53 42 5f 50 p..MCCW{\/._SB_P + 1900: 43 49 30 50 41 4d 33 0a 03 60 a0 18 60 70 0b 00 CI0PAM3..`..`p.. + 1910: 40 4d 44 30 4c a0 0d 7b 60 0a 02 00 70 0a 01 4d @MD0L..{`...p..M + 1920: 44 30 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 D0W{\/._SB_PCI0P + 1930: 41 4d 33 0a 30 60 a0 18 60 70 0b 00 40 4d 44 34 AM3.0`..`p..@MD4 + 1940: 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 44 34 57 7b L..{`. .p..MD4W{ + 1950: 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 34 0a \/._SB_PCI0PAM4. + 1960: 03 60 a0 18 60 70 0b 00 40 4d 44 38 4c a0 0d 7b .`..`p..@MD8L..{ + 1970: 60 0a 02 00 70 0a 01 4d 44 38 57 7b 5c 2f 03 5f `...p..MD8W{\/._ + 1980: 53 42 5f 50 43 49 30 50 41 4d 34 0a 30 60 a0 18 SB_PCI0PAM4.0`.. + 1990: 60 70 0b 00 40 4d 44 43 4c a0 0d 7b 60 0a 20 00 `p..@MDCL..{`. . + 19a0: 70 0a 01 4d 44 43 57 7b 5c 2f 03 5f 53 42 5f 50 p..MDCW{\/._SB_P + 19b0: 43 49 30 50 41 4d 35 0a 03 60 a0 18 60 70 0b 00 CI0PAM5..`..`p.. + 19c0: 40 4d 45 30 4c a0 0d 7b 60 0a 02 00 70 0a 01 4d @ME0L..{`...p..M + 19d0: 45 30 57 7b 5c 2f 03 5f 53 42 5f 50 43 49 30 50 E0W{\/._SB_PCI0P + 19e0: 41 4d 35 0a 30 60 a0 18 60 70 0b 00 40 4d 45 34 AM5.0`..`p..@ME4 + 19f0: 4c a0 0d 7b 60 0a 20 00 70 0a 01 4d 45 34 57 7b L..{`. .p..ME4W{ + 1a00: 5c 2f 03 5f 53 42 5f 50 43 49 30 50 41 4d 36 0a \/._SB_PCI0PAM6. + 1a10: 03 60 a0 18 60 70 0b 00 40 4d 45 38 4c a0 0d 7b .`..`p..@ME8L..{ + 1a20: 60 0a 02 00 70 0a 01 4d 45 38 57 7b 5c 2f 03 5f `...p..ME8W{\/._ + 1a30: 53 42 5f 50 43 49 30 50 41 4d 36 0a 30 60 a0 18 SB_PCI0PAM6.0`.. + 1a40: 60 70 0b 00 40 4d 45 43 4c a0 0d 7b 60 0a 20 00 `p..@MECL..{`. . + 1a50: 70 0a 01 4d 45 43 57 74 5c 4d 45 4d 58 4d 45 42 p..MECWt\MEMXMEB + 1a60: 31 4d 45 4c 31 a0 2d 92 93 5c 2f 05 5f 53 42 5f 1MEL1.-..\/._SB_ + 1a70: 50 43 49 30 4c 50 43 5f 54 50 4d 5f 5f 53 54 41 PCI0LPC_TPM__STA + 1a80: 0a 0f 70 0c 00 00 40 01 4d 45 4c 32 70 0a 00 4d ..p...@.MEL2p..M + 1a90: 45 4c 33 a4 4d 45 4d 53 5b 82 48 10 4c 49 44 5f EL3.MEMS[.H.LID_ + 1aa0: 08 5f 48 49 44 0c 41 d0 0c 0d 14 46 05 5f 4c 49 ._HID.A....F._LI + 1ab0: 44 00 a0 49 04 90 93 5c 49 4c 4e 46 0a 00 93 5c D..I...\ILNF...\ + 1ac0: 50 4c 55 58 0a 00 a0 1e 5c 48 38 44 52 a4 5c 2f PLUX....\H8DR.\/ + 1ad0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 1ae0: 5f 48 50 4c 44 a1 16 a0 0f 7b 5c 52 42 45 43 0a _HPLD....{\RBEC. + 1af0: 46 0a 04 00 a4 0a 01 a1 04 a4 0a 00 a1 04 a4 0a F............... + 1b00: 01 14 1f 5f 50 52 57 00 a0 0e 5c 4c 57 43 50 a4 ..._PRW...\LWCP. + 1b10: 12 06 02 0a 1d 0a 04 a1 09 a4 12 06 02 0a 1d 0a ................ + 1b20: 03 14 40 08 5f 50 53 57 01 a0 3f 5c 48 38 44 52 ..@._PSW..?\H8DR + 1b30: a0 1c 68 70 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 ..hp..\/._SB_PCI + 1b40: 30 4c 50 43 5f 45 43 5f 5f 48 57 4c 4f a1 1b 70 0LPC_EC__HWLO..p + 1b50: 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 1b60: 5f 45 43 5f 5f 48 57 4c 4f a1 1c a0 0d 68 5c 4d _EC__HWLO....h\M + 1b70: 42 45 43 0a 32 0a ff 0a 04 a1 0c 5c 4d 42 45 43 BEC.2......\MBEC + 1b80: 0a 32 0a fb 0a 00 a0 1b 5c 4c 57 43 50 a0 0a 68 .2......\LWCP..h + 1b90: 70 0a 01 5c 4c 57 45 4e a1 09 70 0a 00 5c 4c 57 p..\LWEN..p..\LW + 1ba0: 45 4e 5b 82 44 08 53 4c 50 42 08 5f 48 49 44 0c EN[.D.SLPB._HID. + 1bb0: 41 d0 0c 0e 14 0e 5f 50 52 57 00 a4 12 06 02 0a A....._PRW...... + 1bc0: 1d 0a 03 14 44 06 5f 50 53 57 01 a0 3f 5c 48 38 ....D._PSW..?\H8 + 1bd0: 44 52 a0 1c 68 70 0a 01 5c 2f 05 5f 53 42 5f 50 DR..hp..\/._SB_P + 1be0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57 46 4e a1 CI0LPC_EC__HWFN. + 1bf0: 1b 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c .p..\/._SB_PCI0L + 1c00: 50 43 5f 45 43 5f 5f 48 57 46 4e a1 1c a0 0d 68 PC_EC__HWFN....h + 1c10: 5c 4d 42 45 43 0a 32 0a ff 0a 10 a1 0c 5c 4d 42 \MBEC.2......\MB + 1c20: 45 43 0a 32 0a ef 0a 00 10 4e 19 5c 00 08 55 50 EC.2.....N.\..UP + 1c30: 43 30 12 0a 04 0a ff 0a 00 0a 00 0a 00 08 50 4c C0............PL + 1c40: 44 30 11 13 0a 10 81 00 00 00 00 00 00 00 91 12 D0.............. + 1c50: 00 00 03 00 00 00 08 55 50 43 31 12 0a 04 0a ff .......UPC1..... + 1c60: 0a 00 0a 00 0a 00 08 50 4c 44 31 11 13 0a 10 81 .......PLD1..... + 1c70: 00 00 00 00 00 00 00 91 12 00 00 03 00 00 00 08 ................ + 1c80: 55 50 43 32 12 0a 04 0a ff 0a ff 0a 00 0a 00 08 UPC2............ + 1c90: 50 4c 44 32 11 13 0a 10 81 00 00 00 00 00 00 00 PLD2............ + 1ca0: 33 1c 00 00 03 00 00 00 08 55 50 43 33 12 0a 04 3........UPC3... + 1cb0: 0a ff 0a 02 0a 00 0a 00 08 50 4c 44 33 11 13 0a .........PLD3... + 1cc0: 10 81 00 00 00 00 00 00 00 48 1d 00 00 00 00 00 .........H...... + 1cd0: 00 08 55 50 43 34 12 0a 04 0a ff 0a 00 0a 00 0a ..UPC4.......... + 1ce0: 00 08 50 4c 44 34 11 13 0a 10 81 00 00 00 00 00 ..PLD4.......... + 1cf0: 00 00 69 0c 00 00 03 00 00 00 08 55 50 43 35 12 ..i........UPC5. + 1d00: 0a 04 0a ff 0a 02 0a 00 0a 00 08 50 4c 44 35 11 ...........PLD5. + 1d10: 13 0a 10 81 00 00 00 00 00 00 00 19 12 00 00 03 ................ + 1d20: 00 00 00 08 55 50 43 36 12 0a 04 0a 00 0a ff 0a ....UPC6........ + 1d30: 00 0a 00 08 50 4c 44 36 11 13 0a 10 81 00 00 00 ....PLD6........ + 1d40: 00 00 00 00 30 1c 00 00 00 00 00 00 08 55 50 43 ....0........UPC + 1d50: 37 12 0a 04 0a ff 0a ff 0a 00 0a 00 08 50 4c 44 7............PLD + 1d60: 37 11 13 0a 10 81 00 00 00 00 00 00 00 33 1c 00 7............3.. + 1d70: 00 03 00 00 00 08 55 50 43 39 12 0a 04 0a ff 0a ......UPC9...... + 1d80: 00 0a 00 0a 00 08 50 4c 44 39 11 13 0a 10 81 00 ......PLD9...... + 1d90: 00 00 00 00 00 00 59 12 00 00 03 00 00 00 08 55 ......Y........U + 1da0: 50 43 49 12 0a 04 0a ff 0a ff 0a 00 0a 00 08 50 PCI............P + 1db0: 4c 44 49 11 13 0a 10 81 00 00 00 00 00 00 00 30 LDI............0 + 1dc0: 1c 00 00 00 00 00 00 5b 82 81 e6 06 50 43 49 30 .......[....PCI0 + 1dd0: 08 5f 42 42 4e 0a 00 08 5f 41 44 52 0a 00 08 52 ._BBN..._ADR...R + 1de0: 49 44 5f 0a 00 08 5f 53 33 44 0a 02 08 4c 52 52 ID_..._S3D...LRR + 1df0: 54 12 47 1e 16 12 15 04 0c ff ff 01 00 0a 00 5c T.G............\ + 1e00: 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff ._SB_LNKA....... + 1e10: ff 02 00 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a .....\._SB_LNKA. + 1e20: 00 12 15 04 0c ff ff 14 00 0a 00 5c 2e 5f 53 42 ...........\._SB + 1e30: 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff ff 16 00 0a _LNKA........... + 1e40: 00 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 15 04 .\._SB_LNKA..... + 1e50: 0c ff ff 16 00 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b .......\._SB_LNK + 1e60: 44 0a 00 12 15 04 0c ff ff 16 00 0a 02 5c 2e 5f D............\._ + 1e70: 53 42 5f 4c 4e 4b 43 0a 00 12 15 04 0c ff ff 16 SB_LNKC......... + 1e80: 00 0a 03 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 ...\._SB_LNKB... + 1e90: 15 04 0c ff ff 19 00 0a 00 5c 2e 5f 53 42 5f 4c .........\._SB_L + 1ea0: 4e 4b 45 0a 00 12 15 04 0c ff ff 1a 00 0a 00 5c NKE............\ + 1eb0: 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff ._SB_LNKA....... + 1ec0: ff 1b 00 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 47 0a .....\._SB_LNKG. + 1ed0: 00 12 15 04 0c ff ff 1c 00 0a 00 5c 2e 5f 53 42 ...........\._SB + 1ee0: 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff ff 1c 00 0a _LNKA........... + 1ef0: 01 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 15 04 .\._SB_LNKB..... + 1f00: 0c ff ff 1c 00 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b .......\._SB_LNK + 1f10: 43 0a 00 12 15 04 0c ff ff 1c 00 0a 03 5c 2e 5f C............\._ + 1f20: 53 42 5f 4c 4e 4b 44 0a 00 12 15 04 0c ff ff 1d SB_LNKD......... + 1f30: 00 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 48 0a 00 12 ...\._SB_LNKH... + 1f40: 15 04 0c ff ff 1d 00 0a 01 5c 2e 5f 53 42 5f 4c .........\._SB_L + 1f50: 4e 4b 44 0a 00 12 15 04 0c ff ff 1d 00 0a 02 5c NKD............\ + 1f60: 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 15 04 0c ff ._SB_LNKA....... + 1f70: ff 1d 00 0a 03 5c 2e 5f 53 42 5f 4c 4e 4b 43 0a .....\._SB_LNKC. + 1f80: 00 12 15 04 0c ff ff 1f 00 0a 00 5c 2e 5f 53 42 ...........\._SB + 1f90: 5f 4c 4e 4b 46 0a 00 12 15 04 0c ff ff 1f 00 0a _LNKF........... + 1fa0: 01 5c 2e 5f 53 42 5f 4c 4e 4b 44 0a 00 12 15 04 .\._SB_LNKD..... + 1fb0: 0c ff ff 1f 00 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b .......\._SB_LNK + 1fc0: 43 0a 00 12 15 04 0c ff ff 1f 00 0a 03 5c 2e 5f C............\._ + 1fd0: 53 42 5f 4c 4e 4b 41 0a 00 08 41 52 52 54 12 47 SB_LNKA...ARRT.G + 1fe0: 13 16 12 0d 04 0c ff ff 01 00 0a 00 0a 00 0a 10 ................ + 1ff0: 12 0d 04 0c ff ff 02 00 0a 00 0a 00 0a 10 12 0d ................ + 2000: 04 0c ff ff 14 00 0a 00 0a 00 0a 10 12 0d 04 0c ................ + 2010: ff ff 16 00 0a 00 0a 00 0a 10 12 0d 04 0c ff ff ................ + 2020: 16 00 0a 01 0a 00 0a 13 12 0d 04 0c ff ff 16 00 ................ + 2030: 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 16 00 0a 03 ................ + 2040: 0a 00 0a 11 12 0d 04 0c ff ff 19 00 0a 00 0a 00 ................ + 2050: 0a 14 12 0d 04 0c ff ff 1a 00 0a 00 0a 00 0a 10 ................ + 2060: 12 0d 04 0c ff ff 1b 00 0a 00 0a 00 0a 16 12 0d ................ + 2070: 04 0c ff ff 1c 00 0a 00 0a 00 0a 10 12 0d 04 0c ................ + 2080: ff ff 1c 00 0a 01 0a 00 0a 11 12 0d 04 0c ff ff ................ + 2090: 1c 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 1c 00 ................ + 20a0: 0a 03 0a 00 0a 13 12 0d 04 0c ff ff 1d 00 0a 00 ................ + 20b0: 0a 00 0a 17 12 0d 04 0c ff ff 1d 00 0a 01 0a 00 ................ + 20c0: 0a 13 12 0d 04 0c ff ff 1d 00 0a 02 0a 00 0a 10 ................ + 20d0: 12 0d 04 0c ff ff 1d 00 0a 03 0a 00 0a 12 12 0d ................ + 20e0: 04 0c ff ff 1f 00 0a 00 0a 00 0a 15 12 0d 04 0c ................ + 20f0: ff ff 1f 00 0a 01 0a 00 0a 13 12 0d 04 0c ff ff ................ + 2100: 1f 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 1f 00 ................ + 2110: 0a 03 0a 00 0a 10 14 19 5f 50 52 54 00 a0 0b 5c ........_PRT...\ + 2120: 47 50 49 43 a4 41 52 52 54 a1 06 a4 4c 52 52 54 GPIC.ARRT...LRRT + 2130: 08 5f 48 49 44 0c 41 d0 0a 08 08 5f 43 49 44 0c ._HID.A...._CID. + 2140: 41 d0 0a 03 5b 80 4d 48 43 53 02 0a 40 0a c0 5b A...[.MHCS..@..[ + 2150: 81 36 4d 48 43 53 03 00 40 20 50 41 4d 30 08 50 .6MHCS..@ PAM0.P + 2160: 41 4d 31 08 50 41 4d 32 08 50 41 4d 33 08 50 41 AM1.PAM2.PAM3.PA + 2170: 4d 34 08 50 41 4d 35 08 50 41 4d 36 08 00 48 1a M4.PAM5.PAM6..H. + 2180: 00 14 54 4c 55 44 0c 08 5f 43 52 53 11 45 1c 0b ..TLUD.._CRS.E.. + 2190: c0 01 88 0d 00 02 0c 00 00 00 00 00 ff 00 00 00 ................ + 21a0: 00 01 47 01 f8 0c f8 0c 01 08 88 0d 00 01 0c 03 ..G............. + 21b0: 00 00 00 00 f7 0c 00 00 f8 0c 88 0d 00 01 0c 03 ................ + 21c0: 00 00 00 0d ff ff 00 00 00 f3 87 17 00 00 0c 03 ................ + 21d0: 00 00 00 00 00 00 0a 00 ff ff 0b 00 00 00 00 00 ................ + 21e0: 00 00 02 00 87 17 00 00 0c 03 00 00 00 00 00 00 ................ + 21f0: 0c 00 ff 3f 0c 00 00 00 00 00 00 40 00 00 87 17 ...?.......@.... + 2200: 00 00 0c 03 00 00 00 00 00 40 0c 00 ff 7f 0c 00 .........@...... + 2210: 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 .....@.......... + 2220: 00 00 00 80 0c 00 ff bf 0c 00 00 00 00 00 00 40 ...............@ + 2230: 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0c 00 ................ + 2240: ff ff 0c 00 00 00 00 00 00 40 00 00 87 17 00 00 .........@...... + 2250: 0c 03 00 00 00 00 00 00 0d 00 ff 3f 0d 00 00 00 ...........?.... + 2260: 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 ...@............ + 2270: 00 40 0d 00 ff 7f 0d 00 00 00 00 00 00 40 00 00 .@...........@.. + 2280: 87 17 00 00 0c 03 00 00 00 00 00 80 0d 00 ff bf ................ + 2290: 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 .......@........ + 22a0: 00 00 00 00 00 c0 0d 00 ff ff 0d 00 00 00 00 00 ................ + 22b0: 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 00 .@.............. + 22c0: 0e 00 ff 3f 0e 00 00 00 00 00 00 40 00 00 87 17 ...?.......@.... + 22d0: 00 00 0c 03 00 00 00 00 00 40 0e 00 ff 7f 0e 00 .........@...... + 22e0: 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 .....@.......... + 22f0: 00 00 00 80 0e 00 ff bf 0e 00 00 00 00 00 00 40 ...............@ + 2300: 00 00 87 17 00 00 0c 03 00 00 00 00 00 c0 0e 00 ................ + 2310: ff ff 0e 00 00 00 00 00 00 40 00 00 87 17 00 00 .........@...... + 2320: 0c 03 00 00 00 00 00 00 10 00 ff ff bf fe 00 00 ................ + 2330: 00 00 00 00 b0 fe 87 17 00 00 0c 03 00 00 00 00 ................ + 2340: 00 00 d4 fe ff bf d4 fe 00 00 00 00 00 c0 00 00 ................ + 2350: 79 00 8a 5f 43 52 53 0a 68 43 30 4c 4e 8a 5f 43 y.._CRS.hC0LN._C + 2360: 52 53 0a 82 43 34 4c 4e 8a 5f 43 52 53 0a 9c 43 RS..C4LN._CRS..C + 2370: 38 4c 4e 8a 5f 43 52 53 0a b6 43 43 4c 4e 8a 5f 8LN._CRS..CCLN._ + 2380: 43 52 53 0a d0 44 30 4c 4e 8a 5f 43 52 53 0a ea CRS..D0LN._CRS.. + 2390: 44 34 4c 4e 8a 5f 43 52 53 0b 04 01 44 38 4c 4e D4LN._CRS...D8LN + 23a0: 8a 5f 43 52 53 0b 1e 01 44 43 4c 4e 8a 5f 43 52 ._CRS...DCLN._CR + 23b0: 53 0b 38 01 45 30 4c 4e 8a 5f 43 52 53 0b 52 01 S.8.E0LN._CRS.R. + 23c0: 45 34 4c 4e 8a 5f 43 52 53 0b 6c 01 45 38 4c 4e E4LN._CRS.l.E8LN + 23d0: 8a 5f 43 52 53 0b 86 01 45 43 4c 4e 8a 5f 43 52 ._CRS...ECLN._CR + 23e0: 53 0b 94 01 58 58 4d 4e 8a 5f 43 52 53 0b 98 01 S...XXMN._CRS... + 23f0: 58 58 4d 58 8a 5f 43 52 53 0b a0 01 58 58 4c 4e XXMX._CRS...XXLN + 2400: 8a 5f 43 52 53 0b ae 01 46 34 4d 4e 8a 5f 43 52 ._CRS...F4MN._CR + 2410: 53 0b b2 01 46 34 4d 58 8a 5f 43 52 53 0b ba 01 S...F4MX._CRS... + 2420: 46 34 4c 4e 8b 5f 43 52 53 0a 0a 42 30 4d 58 8b F4LN._CRS..B0MX. + 2430: 5f 43 52 53 0a 0e 42 30 4c 4e 14 4e 12 5f 49 4e _CRS..B0LN.N._IN + 2440: 49 08 70 0a 3f 42 30 4d 58 70 72 0a 3f 0a 01 00 I.p.?B0MXpr.?... + 2450: 42 30 4c 4e a0 11 92 5c 4f 53 49 46 5c 2e 5f 53 B0LN...\OSIF\._S + 2460: 42 5f 5f 49 4e 49 79 54 4c 55 44 0a 14 60 70 60 B__INIyTLUD..`p` + 2470: 5c 4d 45 4d 58 70 60 58 58 4d 4e 72 74 58 58 4d \MEMXp`XXMNrtXXM + 2480: 58 58 58 4d 4e 00 0a 01 58 58 4c 4e a0 10 93 5c XXXMN...XXLN...\ + 2490: 54 50 4d 50 0a 00 70 0a 00 46 34 4c 4e a0 10 7b TPMP..p..F4LN..{ + 24a0: 50 41 4d 31 0a 03 00 70 0a 00 43 30 4c 4e a0 10 PAM1...p..C0LN.. + 24b0: 7b 50 41 4d 31 0a 30 00 70 0a 00 43 34 4c 4e a0 {PAM1.0.p..C4LN. + 24c0: 10 7b 50 41 4d 32 0a 03 00 70 0a 00 43 38 4c 4e .{PAM2...p..C8LN + 24d0: a0 10 7b 50 41 4d 32 0a 30 00 70 0a 00 43 43 4c ..{PAM2.0.p..CCL + 24e0: 4e a0 10 7b 50 41 4d 33 0a 03 00 70 0a 00 44 30 N..{PAM3...p..D0 + 24f0: 4c 4e a0 10 7b 50 41 4d 33 0a 30 00 70 0a 00 44 LN..{PAM3.0.p..D + 2500: 34 4c 4e a0 10 7b 50 41 4d 34 0a 03 00 70 0a 00 4LN..{PAM4...p.. + 2510: 44 38 4c 4e a0 10 7b 50 41 4d 34 0a 30 00 70 0a D8LN..{PAM4.0.p. + 2520: 00 44 43 4c 4e a0 10 7b 50 41 4d 35 0a 03 00 70 .DCLN..{PAM5...p + 2530: 0a 00 45 30 4c 4e a0 10 7b 50 41 4d 35 0a 30 00 ..E0LN..{PAM5.0. + 2540: 70 0a 00 45 34 4c 4e a0 10 7b 50 41 4d 36 0a 03 p..E4LN..{PAM6.. + 2550: 00 70 0a 00 45 38 4c 4e a0 10 7b 50 41 4d 36 0a .p..E8LN..{PAM6. + 2560: 30 00 70 0a 00 45 43 4c 4e 08 53 55 50 50 0a 00 0.p..ECLN.SUPP.. + 2570: 08 43 54 52 4c 0a 00 14 4d 2b 5f 4f 53 43 04 8a .CTRL...M+_OSC.. + 2580: 6b 0a 00 43 44 57 31 8a 6b 0a 04 43 44 57 32 8a k..CDW1.k..CDW2. + 2590: 6b 0a 08 43 44 57 33 a0 2c 5c 2f 04 5f 53 42 5f k..CDW3.,\/._SB_ + 25a0: 50 43 49 30 58 48 43 49 43 55 49 44 68 a4 5c 2f PCI0XHCICUIDh.\/ + 25b0: 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 4f 53 ._SB_PCI0XHCIPOS + 25c0: 43 69 6a 6b a0 41 26 93 68 11 13 0a 10 5b 4d db Cijk.A&.h....[M. + 25d0: 33 f7 1f 1c 40 96 57 74 41 c0 3d d7 66 70 43 44 3...@.WtA.=.fpCD + 25e0: 57 32 53 55 50 50 70 43 44 57 33 43 54 52 4c 7b W2SUPPpCDW3CTRL{ + 25f0: 43 54 52 4c 0a 0d 43 54 52 4c a0 49 1f 92 7b 43 CTRL..CTRL.I..{C + 2600: 44 57 31 0a 01 00 a0 4a 0c 7b 43 54 52 4c 0a 01 DW1....J.{CTRL.. + 2610: 00 a0 33 92 5c 56 49 47 44 70 0a 00 5c 2f 04 5f ..3.\VIGDp..\/._ + 2620: 53 42 5f 50 43 49 30 50 45 47 5f 48 50 47 50 70 SB_PCI0PEG_HPGPp + 2630: 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 50 45 47 ..\/._SB_PCI0PEG + 2640: 5f 47 4d 47 50 70 0a 00 5c 2f 04 5f 53 42 5f 50 _GMGPp..\/._SB_P + 2650: 43 49 30 45 58 50 31 48 50 43 45 70 0a 01 5c 2f CI0EXP1HPCEp..\/ + 2660: 04 5f 53 42 5f 50 43 49 30 45 58 50 31 48 50 43 ._SB_PCI0EXP1HPC + 2670: 53 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 45 Sp..\/._SB_PCI0E + 2680: 58 50 31 50 44 43 5f 70 0a 00 5c 2f 04 5f 53 42 XP1PDC_p..\/._SB + 2690: 5f 50 43 49 30 45 58 50 33 48 50 43 45 70 0a 01 _PCI0EXP3HPCEp.. + 26a0: 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 33 48 \/._SB_PCI0EXP3H + 26b0: 50 43 53 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 PCSp..\/._SB_PCI + 26c0: 30 45 58 50 33 50 44 43 5f 70 0a 01 5c 4e 48 50 0EXP3PDC_p..\NHP + 26d0: 53 a0 42 12 7b 43 54 52 4c 0a 04 00 a0 33 92 5c S.B.{CTRL....3.\ + 26e0: 56 49 47 44 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 VIGDp..\/._SB_PC + 26f0: 49 30 50 45 47 5f 50 4d 47 50 70 0a 00 5c 2f 04 I0PEG_PMGPp..\/. + 2700: 5f 53 42 5f 50 43 49 30 50 45 47 5f 47 4d 47 50 _SB_PCI0PEG_GMGP + 2710: a0 41 04 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 .A.\/._SB_PCI0EX + 2720: 50 31 50 4d 43 45 70 0a 00 5c 2f 04 5f 53 42 5f P1PMCEp..\/._SB_ + 2730: 50 43 49 30 45 58 50 31 50 4d 43 45 70 0a 01 5c PCI0EXP1PMCEp..\ + 2740: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 31 50 4d /._SB_PCI0EXP1PM + 2750: 43 53 a0 41 04 5c 2f 04 5f 53 42 5f 50 43 49 30 CS.A.\/._SB_PCI0 + 2760: 45 58 50 32 50 4d 43 45 70 0a 00 5c 2f 04 5f 53 EXP2PMCEp..\/._S + 2770: 42 5f 50 43 49 30 45 58 50 32 50 4d 43 45 70 0a B_PCI0EXP2PMCEp. + 2780: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32 .\/._SB_PCI0EXP2 + 2790: 50 4d 43 53 a0 41 04 5c 2f 04 5f 53 42 5f 50 43 PMCS.A.\/._SB_PC + 27a0: 49 30 45 58 50 33 50 4d 43 45 70 0a 00 5c 2f 04 I0EXP3PMCEp..\/. + 27b0: 5f 53 42 5f 50 43 49 30 45 58 50 33 50 4d 43 45 _SB_PCI0EXP3PMCE + 27c0: 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 p..\/._SB_PCI0EX + 27d0: 50 33 50 4d 43 53 70 0a 00 5c 2f 04 5f 53 42 5f P3PMCSp..\/._SB_ + 27e0: 50 43 49 30 4c 50 43 5f 45 58 50 45 70 0a 01 5c PCI0LPC_EXPEp..\ + 27f0: 4e 50 4d 45 a0 11 92 93 69 0a 01 7d 43 44 57 31 NPME....i..}CDW1 + 2800: 0a 0a 43 44 57 31 a0 16 92 93 43 44 57 33 43 54 ..CDW1....CDW3CT + 2810: 52 4c 7d 43 44 57 31 0a 10 43 44 57 31 70 43 54 RL}CDW1..CDW1pCT + 2820: 52 4c 43 44 57 33 a1 0c 7d 43 44 57 31 0a 06 43 RLCDW3..}CDW1..C + 2830: 44 57 31 a4 6b 5b 01 4d 44 47 53 07 08 56 44 45 DW1.k[.MDGS..VDE + 2840: 45 0a 01 08 56 44 44 41 11 03 0a 02 8d 56 44 44 E...VDDA.....VDD + 2850: 41 0a 00 56 55 50 43 8d 56 44 44 41 0a 01 56 51 A..VUPC.VDDA..VQ + 2860: 44 4c 8d 56 44 44 41 0a 02 56 51 44 43 8d 56 44 DL.VDDA..VQDC.VD + 2870: 44 41 0a 03 56 51 44 30 8d 56 44 44 41 0a 04 56 DA..VQD0.VDDA..V + 2880: 51 44 31 8d 56 44 44 41 0a 05 56 51 44 32 8d 56 QD1.VDDA..VQD2.V + 2890: 44 44 41 0a 06 56 53 44 4c 8d 56 44 44 41 0a 07 DDA..VSDL.VDDA.. + 28a0: 56 53 44 43 8d 56 44 44 41 0a 08 56 53 44 30 8d VSDC.VDDA..VSD0. + 28b0: 56 44 44 41 0a 09 56 53 44 31 8d 56 44 44 41 0a VDDA..VSD1.VDDA. + 28c0: 0a 56 53 44 32 8d 56 44 44 41 0a 0b 56 53 44 33 .VSD2.VDDA..VSD3 + 28d0: 8d 56 44 44 41 0a 0c 56 53 44 34 8d 56 44 44 41 .VDDA..VSD4.VDDA + 28e0: 0a 0d 56 53 44 35 8d 56 44 44 41 0a 0e 4d 53 57 ..VSD5.VDDA..MSW + 28f0: 54 5b 82 87 51 01 56 49 44 5f 08 5f 41 44 52 0c T[..Q.VID_._ADR. + 2900: 00 00 02 00 08 52 49 44 5f 0a 00 5b 80 56 50 43 .....RID_..[.VPC + 2910: 47 02 0a 00 0b 00 01 5b 81 0e 56 50 43 47 03 00 G......[..VPCG.. + 2920: 40 6a 56 50 57 52 08 08 4d 49 44 4c 0b 00 04 08 @jVPWR..MIDL.... + 2930: 4d 49 44 43 0b 00 01 08 4d 49 44 30 0b 00 03 08 MIDC....MID0.... + 2940: 4d 49 44 31 0b 01 03 08 4d 49 44 32 0b 02 03 08 MID1....MID2.... + 2950: 4d 49 44 33 0b 03 03 08 4d 49 44 34 0b 04 03 08 MID3....MID4.... + 2960: 4d 49 44 35 0b 05 03 08 5f 53 33 44 0a 03 14 1a MID5...._S3D.... + 2970: 5f 49 4e 49 00 70 5c 2f 03 5f 53 42 5f 4c 49 44 _INI.p\/._SB_LID + 2980: 5f 5f 4c 49 44 43 4c 49 44 14 07 5f 50 53 30 00 __LIDCLID.._PS0. + 2990: a3 14 07 5f 50 53 31 00 a3 14 07 5f 50 53 32 00 ..._PS1...._PS2. + 29a0: a3 14 07 5f 50 53 33 00 a3 14 0c 56 53 57 54 00 ..._PS3....VSWT. + 29b0: 47 48 44 53 0a 00 14 36 56 4c 4f 43 01 a0 2f 93 GHDS...6VLOC../. + 29c0: 68 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 h\/._SB_LID__LID + 29d0: 5c 56 53 4c 44 68 a0 16 93 56 50 57 52 0a 00 70 \VSLDh...VPWR..p + 29e0: 68 43 4c 49 44 47 4e 4f 54 0a 02 0a 00 14 4c 07 hCLIDGNOT.....L. + 29f0: 5f 44 4f 53 01 7b 68 0a 03 68 a0 3a 93 68 0a 02 _DOS.{h..h.:.h.. + 2a00: 70 0a 14 60 a2 30 60 76 60 5b 23 4d 44 47 53 ff p..`.0`v`[#MDGS. + 2a10: ff a0 19 93 0a 00 4d 53 57 54 70 0a 01 4d 53 57 ......MSWTp..MSW + 2a20: 54 70 0a 00 60 70 68 56 44 45 45 5b 27 4d 44 47 Tp..`phVDEE['MDG + 2a30: 53 5b 22 0a c8 a1 34 5b 23 4d 44 47 53 ff ff a0 S["...4[#MDGS... + 2a40: 0f 93 56 44 45 45 0a 02 70 0a 00 4d 53 57 54 a0 ..VDEE..p..MSWT. + 2a50: 0c 94 68 0a 02 70 0a 01 56 44 45 45 a1 07 70 68 ..h..p..VDEE..ph + 2a60: 56 44 45 45 5b 27 4d 44 47 53 14 4c 57 5f 44 4f VDEE['MDGS.LW_DO + 2a70: 44 00 70 0a 00 4e 44 49 44 a0 0e 92 93 44 49 44 D.p..NDID....DID + 2a80: 4c 0a 00 75 4e 44 49 44 a0 0e 92 93 44 44 4c 32 L..uNDID....DDL2 + 2a90: 0a 00 75 4e 44 49 44 a0 0e 92 93 44 44 4c 33 0a ..uNDID....DDL3. + 2aa0: 00 75 4e 44 49 44 a0 0e 92 93 44 44 4c 34 0a 00 .uNDID....DDL4.. + 2ab0: 75 4e 44 49 44 a0 0e 92 93 44 44 4c 35 0a 00 75 uNDID....DDL5..u + 2ac0: 4e 44 49 44 a0 0e 92 93 44 44 4c 36 0a 00 75 4e NDID....DDL6..uN + 2ad0: 44 49 44 a0 0e 92 93 44 44 4c 37 0a 00 75 4e 44 DID....DDL7..uND + 2ae0: 49 44 a0 0e 92 93 44 44 4c 38 0a 00 75 4e 44 49 ID....DDL8..uNDI + 2af0: 44 a0 33 93 4e 44 49 44 0a 01 08 54 4d 50 31 12 D.3.NDID...TMP1. + 2b00: 07 01 0c ff ff ff ff 70 7d 0c 00 00 01 80 7b 0b .......p}.....{. + 2b10: 0f 0f 44 49 44 4c 00 00 88 54 4d 50 31 0a 00 00 ..DIDL...TMP1... + 2b20: a4 54 4d 50 31 a0 42 05 93 4e 44 49 44 0a 02 08 .TMP1.B..NDID... + 2b30: 54 4d 50 32 12 0c 02 0c ff ff ff ff 0c ff ff ff TMP2............ + 2b40: ff 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 49 44 4c .p}.....{...DIDL + 2b50: 00 00 88 54 4d 50 32 0a 00 00 70 7d 0c 00 00 01 ...TMP2...p}.... + 2b60: 80 7b 0b 0f 0f 44 44 4c 32 00 00 88 54 4d 50 32 .{...DDL2...TMP2 + 2b70: 0a 01 00 a4 54 4d 50 32 a0 40 07 93 4e 44 49 44 ....TMP2.@..NDID + 2b80: 0a 03 08 54 4d 50 33 12 11 03 0c ff ff ff ff 0c ...TMP3......... + 2b90: ff ff ff ff 0c ff ff ff ff 70 7d 0c 00 00 01 80 .........p}..... + 2ba0: 7b 0b 0f 0f 44 49 44 4c 00 00 88 54 4d 50 33 0a {...DIDL...TMP3. + 2bb0: 00 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c ..p}.....{...DDL + 2bc0: 32 00 00 88 54 4d 50 33 0a 01 00 70 7d 0c 00 00 2...TMP3...p}... + 2bd0: 01 80 7b 0b 0f 0f 44 44 4c 33 00 00 88 54 4d 50 ..{...DDL3...TMP + 2be0: 33 0a 02 00 a4 54 4d 50 33 a0 4e 08 93 4e 44 49 3....TMP3.N..NDI + 2bf0: 44 0a 04 08 54 4d 50 34 12 16 04 0c ff ff ff ff D...TMP4........ + 2c00: 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 70 ...............p + 2c10: 7d 0c 00 00 01 80 7b 0b 0f 0f 44 49 44 4c 00 00 }.....{...DIDL.. + 2c20: 88 54 4d 50 34 0a 00 00 70 7d 0c 00 00 01 80 7b .TMP4...p}.....{ + 2c30: 0b 0f 0f 44 44 4c 32 00 00 88 54 4d 50 34 0a 01 ...DDL2...TMP4.. + 2c40: 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 33 .p}.....{...DDL3 + 2c50: 00 00 88 54 4d 50 34 0a 02 00 70 7d 0c 00 00 01 ...TMP4...p}.... + 2c60: 80 7b 0b 0f 0f 44 44 4c 34 00 00 88 54 4d 50 34 .{...DDL4...TMP4 + 2c70: 0a 03 00 a4 54 4d 50 34 a0 4c 0a 93 4e 44 49 44 ....TMP4.L..NDID + 2c80: 0a 05 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ...TMP5......... + 2c90: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2ca0: ff ff ff 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 49 ...p}.....{...DI + 2cb0: 44 4c 00 00 88 54 4d 50 35 0a 00 00 70 7d 0c 00 DL...TMP5...p}.. + 2cc0: 00 01 80 7b 0b 0f 0f 44 44 4c 32 00 00 88 54 4d ...{...DDL2...TM + 2cd0: 50 35 0a 01 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f P5...p}.....{... + 2ce0: 44 44 4c 33 00 00 88 54 4d 50 35 0a 02 00 70 7d DDL3...TMP5...p} + 2cf0: 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 34 00 00 88 .....{...DDL4... + 2d00: 54 4d 50 35 0a 03 00 70 7d 0c 00 00 01 80 7b 0b TMP5...p}.....{. + 2d10: 0f 0f 44 44 4c 35 00 00 88 54 4d 50 35 0a 04 00 ..DDL5...TMP5... + 2d20: a4 54 4d 50 35 a0 4a 0c 93 4e 44 49 44 0a 06 08 .TMP5.J..NDID... + 2d30: 54 4d 50 36 12 20 06 0c ff ff ff ff 0c ff ff ff TMP6. .......... + 2d40: ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2d50: 0c ff ff ff ff 70 7d 0c 00 00 01 80 7b 0b 0f 0f .....p}.....{... + 2d60: 44 49 44 4c 00 00 88 54 4d 50 36 0a 00 00 70 7d DIDL...TMP6...p} + 2d70: 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 32 00 00 88 .....{...DDL2... + 2d80: 54 4d 50 36 0a 01 00 70 7d 0c 00 00 01 80 7b 0b TMP6...p}.....{. + 2d90: 0f 0f 44 44 4c 33 00 00 88 54 4d 50 36 0a 02 00 ..DDL3...TMP6... + 2da0: 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 34 00 p}.....{...DDL4. + 2db0: 00 88 54 4d 50 36 0a 03 00 70 7d 0c 00 00 01 80 ..TMP6...p}..... + 2dc0: 7b 0b 0f 0f 44 44 4c 35 00 00 88 54 4d 50 36 0a {...DDL5...TMP6. + 2dd0: 04 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c ..p}.....{...DDL + 2de0: 36 00 00 88 54 4d 50 36 0a 05 00 a4 54 4d 50 36 6...TMP6....TMP6 + 2df0: a0 48 0e 93 4e 44 49 44 0a 07 08 54 4d 50 37 12 .H..NDID...TMP7. + 2e00: 25 07 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff %............... + 2e10: ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff ................ + 2e20: 0c ff ff ff ff 70 7d 0c 00 00 01 80 7b 0b 0f 0f .....p}.....{... + 2e30: 44 49 44 4c 00 00 88 54 4d 50 37 0a 00 00 70 7d DIDL...TMP7...p} + 2e40: 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 32 00 00 88 .....{...DDL2... + 2e50: 54 4d 50 37 0a 01 00 70 7d 0c 00 00 01 80 7b 0b TMP7...p}.....{. + 2e60: 0f 0f 44 44 4c 33 00 00 88 54 4d 50 37 0a 02 00 ..DDL3...TMP7... + 2e70: 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 34 00 p}.....{...DDL4. + 2e80: 00 88 54 4d 50 37 0a 03 00 70 7d 0c 00 00 01 80 ..TMP7...p}..... + 2e90: 7b 0b 0f 0f 44 44 4c 35 00 00 88 54 4d 50 37 0a {...DDL5...TMP7. + 2ea0: 04 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c ..p}.....{...DDL + 2eb0: 36 00 00 88 54 4d 50 37 0a 05 00 70 7d 0c 00 00 6...TMP7...p}... + 2ec0: 01 80 7b 0b 0f 0f 44 44 4c 37 00 00 88 54 4d 50 ..{...DDL7...TMP + 2ed0: 37 0a 06 00 a4 54 4d 50 37 a0 46 10 94 4e 44 49 7....TMP7.F..NDI + 2ee0: 44 0a 07 08 54 4d 50 38 12 2a 08 0c ff ff ff ff D...TMP8.*...... + 2ef0: 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ................ + 2f00: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + 2f10: ff ff ff 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 49 ...p}.....{...DI + 2f20: 44 4c 00 00 88 54 4d 50 38 0a 00 00 70 7d 0c 00 DL...TMP8...p}.. + 2f30: 00 01 80 7b 0b 0f 0f 44 44 4c 32 00 00 88 54 4d ...{...DDL2...TM + 2f40: 50 38 0a 01 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f P8...p}.....{... + 2f50: 44 44 4c 33 00 00 88 54 4d 50 38 0a 02 00 70 7d DDL3...TMP8...p} + 2f60: 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 34 00 00 88 .....{...DDL4... + 2f70: 54 4d 50 38 0a 03 00 70 7d 0c 00 00 01 80 7b 0b TMP8...p}.....{. + 2f80: 0f 0f 44 44 4c 35 00 00 88 54 4d 50 38 0a 04 00 ..DDL5...TMP8... + 2f90: 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c 36 00 p}.....{...DDL6. + 2fa0: 00 88 54 4d 50 38 0a 05 00 70 7d 0c 00 00 01 80 ..TMP8...p}..... + 2fb0: 7b 0b 0f 0f 44 44 4c 37 00 00 88 54 4d 50 38 0a {...DDL7...TMP8. + 2fc0: 06 00 70 7d 0c 00 00 01 80 7b 0b 0f 0f 44 44 4c ..p}.....{...DDL + 2fd0: 38 00 00 88 54 4d 50 38 0a 07 00 a4 54 4d 50 38 8...TMP8....TMP8 + 2fe0: a4 12 05 01 0b 00 04 14 14 56 44 53 57 01 a0 0d .........VDSW... + 2ff0: 93 56 50 57 52 0a 00 47 44 43 4b 68 14 4b 1e 56 .VPWR..GDCKh.K.V + 3000: 43 41 44 01 70 0a 00 60 a0 10 93 7b 44 49 44 4c CAD.p..`...{DIDL + 3010: 0b 0f 0f 00 68 70 0a 0d 60 a1 48 08 a0 10 93 7b ....hp..`.H....{ + 3020: 44 44 4c 32 0b 0f 0f 00 68 70 0a 0d 60 a1 44 07 DDL2....hp..`.D. + 3030: a0 10 93 7b 44 44 4c 33 0b 0f 0f 00 68 70 0a 0d ...{DDL3....hp.. + 3040: 60 a1 40 06 a0 10 93 7b 44 44 4c 34 0b 0f 0f 00 `.@....{DDL4.... + 3050: 68 70 0a 0d 60 a1 4c 04 a0 10 93 7b 44 44 4c 35 hp..`.L....{DDL5 + 3060: 0b 0f 0f 00 68 70 0a 0d 60 a1 38 a0 10 93 7b 44 ....hp..`.8...{D + 3070: 44 4c 36 0b 0f 0f 00 68 70 0a 0d 60 a1 25 a0 10 DL6....hp..`.%.. + 3080: 93 7b 44 44 4c 37 0b 0f 0f 00 68 70 0a 0d 60 a1 .{DDL7....hp..`. + 3090: 12 a0 10 93 7b 44 44 4c 38 0b 0f 0f 00 68 70 0a ....{DDL8....hp. + 30a0: 0d 60 a0 11 93 7b 43 50 44 4c 0b 0f 0f 00 68 7d .`...{CPDL....h} + 30b0: 0a 10 60 60 a1 4f 08 a0 11 93 7b 43 50 4c 32 0b ..``.O....{CPL2. + 30c0: 0f 0f 00 68 7d 0a 10 60 60 a1 4a 07 a0 11 93 7b ...h}..``.J....{ + 30d0: 43 50 4c 33 0b 0f 0f 00 68 7d 0a 10 60 60 a1 45 CPL3....h}..``.E + 30e0: 06 a0 11 93 7b 43 50 4c 34 0b 0f 0f 00 68 7d 0a ....{CPL4....h}. + 30f0: 10 60 60 a1 40 05 a0 11 93 7b 43 50 4c 35 0b 0f .``.@....{CPL5.. + 3100: 0f 00 68 7d 0a 10 60 60 a1 3b a0 11 93 7b 43 50 ..h}..``.;...{CP + 3110: 4c 36 0b 0f 0f 00 68 7d 0a 10 60 60 a1 27 a0 11 L6....h}..``.'.. + 3120: 93 7b 43 50 4c 37 0b 0f 0f 00 68 7d 0a 10 60 60 .{CPL7....h}..`` + 3130: a1 13 a0 11 93 7b 43 50 4c 38 0b 0f 0f 00 68 7d .....{CPL8....h} + 3140: 0a 10 60 60 a0 11 93 7b 43 41 44 4c 0b 0f 0f 00 ..``...{CADL.... + 3150: 68 7d 0a 02 60 60 a1 4f 08 a0 11 93 7b 43 41 4c h}..``.O....{CAL + 3160: 32 0b 0f 0f 00 68 7d 0a 02 60 60 a1 4a 07 a0 11 2....h}..``.J... + 3170: 93 7b 43 41 4c 33 0b 0f 0f 00 68 7d 0a 02 60 60 .{CAL3....h}..`` + 3180: a1 45 06 a0 11 93 7b 43 41 4c 34 0b 0f 0f 00 68 .E....{CAL4....h + 3190: 7d 0a 02 60 60 a1 40 05 a0 11 93 7b 43 41 4c 35 }..``.@....{CAL5 + 31a0: 0b 0f 0f 00 68 7d 0a 02 60 60 a1 3b a0 11 93 7b ....h}..``.;...{ + 31b0: 43 41 4c 36 0b 0f 0f 00 68 7d 0a 02 60 60 a1 27 CAL6....h}..``.' + 31c0: a0 11 93 7b 43 41 4c 37 0b 0f 0f 00 68 7d 0a 02 ...{CAL7....h}.. + 31d0: 60 60 a1 13 a0 11 93 7b 43 41 4c 38 0b 0f 0f 00 ``.....{CAL8.... + 31e0: 68 7d 0a 02 60 60 a4 60 14 4c 09 4e 44 44 53 01 h}..``.`.L.NDDS. + 31f0: a0 0f 93 7b 4e 41 44 4c 0b 0f 0f 00 68 a4 0a 01 ...{NADL....h... + 3200: a1 41 08 a0 0f 93 7b 4e 44 4c 32 0b 0f 0f 00 68 .A....{NDL2....h + 3210: a4 0a 01 a1 4e 06 a0 0f 93 7b 4e 44 4c 33 0b 0f ....N....{NDL3.. + 3220: 0f 00 68 a4 0a 01 a1 4b 05 a0 0f 93 7b 4e 44 4c ..h....K....{NDL + 3230: 34 0b 0f 0f 00 68 a4 0a 01 a1 48 04 a0 0f 93 7b 4....h....H....{ + 3240: 4e 44 4c 35 0b 0f 0f 00 68 a4 0a 01 a1 35 a0 0f NDL5....h....5.. + 3250: 93 7b 4e 44 4c 36 0b 0f 0f 00 68 a4 0a 01 a1 23 .{NDL6....h....# + 3260: a0 0f 93 7b 4e 44 4c 37 0b 0f 0f 00 68 a4 0a 01 ...{NDL7....h... + 3270: a1 11 a0 0f 93 7b 4e 44 4c 38 0b 0f 0f 00 68 a4 .....{NDL8....h. + 3280: 0a 01 a4 0a 00 5b 82 44 06 4c 43 44 30 14 0a 5f .....[.D.LCD0.._ + 3290: 41 44 52 00 a4 0b 00 04 14 0f 5f 44 43 53 00 a4 ADR......._DCS.. + 32a0: 56 43 41 44 4d 49 44 4c 14 0f 5f 44 47 53 00 a4 VCADMIDL.._DGS.. + 32b0: 4e 44 44 53 4d 49 44 4c 14 0e 5f 44 53 53 01 7b NDDSMIDL.._DSS.{ + 32c0: 68 0a 01 56 53 44 4c 14 23 5f 44 44 43 01 a0 0b h..VSDL.#_DDC... + 32d0: 93 68 0a 01 a4 5c 56 45 44 49 a1 0d a0 0b 93 68 .h...\VEDI.....h + 32e0: 0a 02 a4 5c 56 45 44 49 a4 0a 00 5b 82 3f 43 52 ...\VEDI...[.?CR + 32f0: 54 30 14 0a 5f 41 44 52 00 a4 0b 00 01 14 0f 5f T0.._ADR......._ + 3300: 44 43 53 00 a4 56 43 41 44 4d 49 44 43 14 0f 5f DCS..VCADMIDC.._ + 3310: 44 47 53 00 a4 4e 44 44 53 4d 49 44 43 14 0e 5f DGS..NDDSMIDC.._ + 3320: 44 53 53 01 7b 68 0a 01 56 53 44 43 5b 82 3f 44 DSS.{h..VSDC[.?D + 3330: 56 49 30 14 0a 5f 41 44 52 00 a4 0b 00 03 14 0f VI0.._ADR....... + 3340: 5f 44 43 53 00 a4 56 43 41 44 4d 49 44 30 14 0f _DCS..VCADMID0.. + 3350: 5f 44 47 53 00 a4 4e 44 44 53 4d 49 44 30 14 0e _DGS..NDDSMID0.. + 3360: 5f 44 53 53 01 7b 68 0a 01 56 53 44 30 5b 82 3f _DSS.{h..VSD0[.? + 3370: 44 56 49 31 14 0a 5f 41 44 52 00 a4 0b 01 03 14 DVI1.._ADR...... + 3380: 0f 5f 44 43 53 00 a4 56 43 41 44 4d 49 44 31 14 ._DCS..VCADMID1. + 3390: 0f 5f 44 47 53 00 a4 4e 44 44 53 4d 49 44 31 14 ._DGS..NDDSMID1. + 33a0: 0e 5f 44 53 53 01 7b 68 0a 01 56 53 44 31 5b 82 ._DSS.{h..VSD1[. + 33b0: 3f 44 56 49 32 14 0a 5f 41 44 52 00 a4 0b 02 03 ?DVI2.._ADR..... + 33c0: 14 0f 5f 44 43 53 00 a4 56 43 41 44 4d 49 44 32 .._DCS..VCADMID2 + 33d0: 14 0f 5f 44 47 53 00 a4 4e 44 44 53 4d 49 44 32 .._DGS..NDDSMID2 + 33e0: 14 0e 5f 44 53 53 01 7b 68 0a 01 56 53 44 32 5b .._DSS.{h..VSD2[ + 33f0: 82 3f 44 56 49 33 14 0a 5f 41 44 52 00 a4 0b 03 .?DVI3.._ADR.... + 3400: 03 14 0f 5f 44 43 53 00 a4 56 43 41 44 4d 49 44 ..._DCS..VCADMID + 3410: 33 14 0f 5f 44 47 53 00 a4 4e 44 44 53 4d 49 44 3.._DGS..NDDSMID + 3420: 33 14 0e 5f 44 53 53 01 7b 68 0a 01 56 53 44 33 3.._DSS.{h..VSD3 + 3430: 5b 82 3f 44 56 49 34 14 0a 5f 41 44 52 00 a4 0b [.?DVI4.._ADR... + 3440: 04 03 14 0f 5f 44 43 53 00 a4 56 43 41 44 4d 49 ...._DCS..VCADMI + 3450: 44 34 14 0f 5f 44 47 53 00 a4 4e 44 44 53 4d 49 D4.._DGS..NDDSMI + 3460: 44 34 14 0e 5f 44 53 53 01 7b 68 0a 01 56 53 44 D4.._DSS.{h..VSD + 3470: 34 5b 82 3f 44 56 49 35 14 0a 5f 41 44 52 00 a4 4[.?DVI5.._ADR.. + 3480: 0b 05 03 14 0f 5f 44 43 53 00 a4 56 43 41 44 4d ....._DCS..VCADM + 3490: 49 44 35 14 0f 5f 44 47 53 00 a4 4e 44 44 53 4d ID5.._DGS..NDDSM + 34a0: 49 44 35 14 0e 5f 44 53 53 01 7b 68 0a 01 56 53 ID5.._DSS.{h..VS + 34b0: 44 35 5b 80 49 47 44 50 02 0a 40 0a c0 5b 81 45 D5[.IGDP..@..[.E + 34c0: 05 49 47 44 50 00 00 40 09 00 01 47 49 56 44 01 .IGDP..@...GIVD. + 34d0: 00 02 47 55 4d 41 03 00 09 00 04 47 4d 46 4e 01 ..GUMA.....GMFN. + 34e0: 00 1b 00 40 46 41 53 4c 45 08 00 18 47 53 53 45 ...@FASLE...GSSE + 34f0: 01 47 53 53 42 0e 47 53 45 53 01 00 30 00 0c 43 .GSSB.GSES..0..C + 3500: 44 56 4c 01 00 03 00 18 4c 42 50 43 08 00 30 41 DVL.....LBPC..0A + 3510: 53 4c 53 20 5b 80 49 47 44 4d 00 5c 41 53 4c 42 SLS [.IGDM.\ASLB + 3520: 0b 00 20 5b 81 48 19 49 47 44 4d 00 53 49 47 4e .. [.H.IGDM.SIGN + 3530: 40 08 53 49 5a 45 20 4f 56 45 52 20 53 56 45 52 @.SIZE OVER SVER + 3540: 40 10 56 56 45 52 40 08 47 56 45 52 40 08 4d 42 @.VVER@.GVER@.MB + 3550: 4f 58 20 44 4d 4f 44 20 00 40 50 44 52 44 59 20 OX DMOD .@PDRDY + 3560: 43 53 54 53 20 43 45 56 54 20 00 40 0a 44 49 44 CSTS CEVT .@.DID + 3570: 4c 20 44 44 4c 32 20 44 44 4c 33 20 44 44 4c 34 L DDL2 DDL3 DDL4 + 3580: 20 44 44 4c 35 20 44 44 4c 36 20 44 44 4c 37 20 DDL5 DDL6 DDL7 + 3590: 44 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 20 43 DDL8 CPDL CPL2 C + 35a0: 50 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 43 50 PL3 CPL4 CPL5 CP + 35b0: 4c 36 20 43 50 4c 37 20 43 50 4c 38 20 43 41 44 L6 CPL7 CPL8 CAD + 35c0: 4c 20 43 41 4c 32 20 43 41 4c 33 20 43 41 4c 34 L CAL2 CAL3 CAL4 + 35d0: 20 43 41 4c 35 20 43 41 4c 36 20 43 41 4c 37 20 CAL5 CAL6 CAL7 + 35e0: 43 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 20 4e CAL8 NADL NDL2 N + 35f0: 44 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 4e 44 DL3 NDL4 NDL5 ND + 3600: 4c 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 53 4c L6 NDL7 NDL8 ASL + 3610: 50 20 54 49 44 58 20 43 48 50 44 20 43 4c 49 44 P TIDX CHPD CLID + 3620: 20 43 44 43 4b 20 53 58 53 57 20 45 56 54 53 20 CDCK SXSW EVTS + 3630: 43 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 43 49 CNOT NRDY .@.SCI + 3640: 45 01 47 45 46 43 04 47 58 46 43 03 47 45 53 46 E.GEFC.GXFC.GESF + 3650: 08 00 10 50 41 52 4d 20 44 53 4c 50 20 00 40 7a ...PARM DSLP .@z + 3660: 41 52 44 59 20 41 53 4c 43 20 54 43 48 45 20 41 ARDY ASLC TCHE A + 3670: 4c 53 49 20 42 43 4c 50 20 50 46 49 54 20 43 42 LSI BCLP PFIT CB + 3680: 4c 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 45 50 LV BCLM@.CPFM EP + 3690: 46 4d 20 50 4c 55 54 40 25 50 46 4d 42 20 43 43 FM PLUT@%PFMB CC + 36a0: 44 56 20 50 43 46 54 20 00 40 2f 47 56 44 31 80 DV PCFT .@/GVD1. + 36b0: 00 0c 50 48 45 44 20 42 44 44 43 40 80 08 44 42 ..PHED BDDC@..DB + 36c0: 54 42 12 38 15 0a 00 0a 07 0a 38 0b c0 01 0b 00 TB.8......8..... + 36d0: 0e 0a 3f 0b c7 01 0b 07 0e 0b f8 01 0b 38 0e 0b ..?..........8.. + 36e0: c0 0f 0a 00 0a 00 0a 00 0a 00 0a 00 0b 00 70 0b ..............p. + 36f0: 07 70 0b 38 70 0b c0 71 0b 00 7e 08 43 44 43 54 .p.8p..q..~.CDCT + 3700: 12 29 05 12 07 02 0a e4 0b 40 01 12 07 02 0a de .).......@...... + 3710: 0b 4d 01 12 07 02 0a de 0b 4d 01 12 06 02 0a 00 .M.......M...... + 3720: 0a 00 12 07 02 0a de 0b 4d 01 08 53 55 43 43 0a ........M..SUCC. + 3730: 01 08 4e 56 4c 44 0a 02 08 43 52 49 54 0a 04 08 ..NVLD...CRIT... + 3740: 4e 43 52 54 0a 06 14 48 05 47 53 43 49 08 a0 11 NCRT...H.GSCI... + 3750: 93 47 45 46 43 0a 04 70 47 42 44 41 47 58 46 43 .GEFC..pGBDAGXFC + 3760: a0 11 93 47 45 46 43 0a 06 70 53 42 43 42 47 58 ...GEFC..pSBCBGX + 3770: 46 43 70 0a 00 47 45 46 43 70 0a 01 5c 2f 04 5f FCp..GEFCp..\/._ + 3780: 53 42 5f 50 43 49 30 4c 50 43 5f 53 43 49 53 70 SB_PCI0LPC_SCISp + 3790: 0a 00 47 53 53 45 70 0a 00 53 43 49 45 a4 00 14 ..GSSEp..SCIE... + 37a0: 4b 1e 47 42 44 41 08 a0 1b 93 47 45 53 46 0a 00 K.GBDA....GESF.. + 37b0: 70 0b 41 02 50 41 52 4d 70 00 47 45 53 46 a4 53 p.A.PARMp.GESF.S + 37c0: 55 43 43 a0 1b 93 47 45 53 46 0a 01 70 0b 02 02 UCC...GESF..p... + 37d0: 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 PARMp.GESF.SUCC. + 37e0: 47 04 93 47 45 53 46 0a 04 7b 50 41 52 4d 0c 00 G..GESF..{PARM.. + 37f0: 00 ff ef 50 41 52 4d 7b 50 41 52 4d 79 83 88 44 ...PARM{PARMy..D + 3800: 42 54 42 49 42 54 54 00 0a 10 00 50 41 52 4d 7d BTBIBTT....PARM} + 3810: 49 42 54 54 50 41 52 4d 50 41 52 4d 70 00 47 45 IBTTPARMPARMp.GE + 3820: 53 46 a4 53 55 43 43 a0 45 08 93 47 45 53 46 0a SF.SUCC.E..GESF. + 3830: 05 a0 17 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c ...\/._SB_LID__L + 3840: 49 44 70 0a 01 4c 49 44 53 a1 08 70 0a 00 4c 49 IDp..LIDS..p..LI + 3850: 44 53 70 49 50 53 43 50 41 52 4d 72 50 41 52 4d DSpIPSCPARMrPARM + 3860: 0a 01 50 41 52 4d 72 50 41 52 4d 0b 00 03 50 41 ..PARMrPARM...PA + 3870: 52 4d 72 50 41 52 4d 0c 00 00 01 00 50 41 52 4d RMrPARM.....PARM + 3880: 7d 50 41 52 4d 79 4c 49 44 53 0a 10 00 50 41 52 }PARMyLIDS...PAR + 3890: 4d 7d 50 41 52 4d 79 49 42 49 41 0a 14 00 50 41 M}PARMyIBIA...PA + 38a0: 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 2d 93 RMp.GESF.SUCC.-. + 38b0: 47 45 53 46 0a 06 70 49 54 56 46 50 41 52 4d 7d GESF..pITVFPARM} + 38c0: 50 41 52 4d 79 49 54 56 4d 0a 04 00 50 41 52 4d PARMyITVM...PARM + 38d0: 70 00 47 45 53 46 a4 53 55 43 43 a0 47 07 93 47 p.GESF.SUCC.G..G + 38e0: 45 53 46 0a 07 70 47 49 56 44 50 41 52 4d 7f 50 ESF..pGIVDPARM.P + 38f0: 41 52 4d 0a 01 50 41 52 4d 7d 50 41 52 4d 79 47 ARM..PARM}PARMyG + 3900: 4d 46 4e 0a 01 00 50 41 52 4d 7d 50 41 52 4d 79 MFN...PARM}PARMy + 3910: 0a 03 0a 0b 00 50 41 52 4d 7d 50 41 52 4d 79 0a .....PARM}PARMy. + 3920: 03 0a 11 00 50 41 52 4d 7d 79 83 88 83 88 43 44 ....PARM}y....CD + 3930: 43 54 48 56 43 4f 00 43 44 56 4c 00 0a 15 00 50 CTHVCO.CDVL....P + 3940: 41 52 4d 50 41 52 4d 70 0a 01 47 45 53 46 a4 53 ARMPARMp..GESF.S + 3950: 55 43 43 a0 2c 93 47 45 53 46 0a 0a 70 0a 00 50 UCC.,.GESF..p..P + 3960: 41 52 4d a0 10 49 53 53 43 7d 50 41 52 4d 0a 03 ARM..ISSC}PARM.. + 3970: 50 41 52 4d 70 0a 00 47 45 53 46 a4 53 55 43 43 PARMp..GESF.SUCC + 3980: 70 00 47 45 53 46 a4 43 52 49 54 14 4b 2a 53 42 p.GESF.CRIT.K*SB + 3990: 43 42 08 a0 1b 93 47 45 53 46 0a 00 70 0b 01 01 CB....GESF..p... + 39a0: 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 PARMp.GESF.SUCC. + 39b0: 19 93 47 45 53 46 0a 01 70 00 47 45 53 46 70 00 ..GESF..p.GESFp. + 39c0: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 39d0: 0a 03 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 39e0: 55 43 43 a0 19 93 47 45 53 46 0a 04 70 00 47 45 UCC...GESF..p.GE + 39f0: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 3a00: 47 45 53 46 0a 05 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 3a10: 52 4d a4 53 55 43 43 a0 37 93 47 45 53 46 0a 06 RM.SUCC.7.GESF.. + 3a20: 70 7b 50 41 52 4d 0a 0f 00 49 54 56 46 70 7a 7b p{PARM...ITVFpz{ + 3a30: 50 41 52 4d 0a f0 00 0a 04 00 49 54 56 4d 70 00 PARM......ITVMp. + 3a40: 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 GESFp.PARM.SUCC. + 3a50: 19 93 47 45 53 46 0a 07 70 00 47 45 53 46 70 00 ..GESF..p.GESFp. + 3a60: 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 PARM.SUCC...GESF + 3a70: 0a 08 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 ..p.GESFp.PARM.S + 3a80: 55 43 43 a0 24 93 47 45 53 46 0a 09 7b 50 41 52 UCC.$.GESF..{PAR + 3a90: 4d 0a ff 49 42 54 54 70 00 47 45 53 46 70 00 50 M..IBTTp.GESFp.P + 3aa0: 41 52 4d a4 53 55 43 43 a0 46 05 93 47 45 53 46 ARM.SUCC.F..GESF + 3ab0: 0a 0a 7b 50 41 52 4d 0a ff 49 50 53 43 a0 21 7b ..{PARM..IPSC.!{ + 3ac0: 7a 50 41 52 4d 0a 08 00 0a ff 00 7b 7a 50 41 52 zPARM......{zPAR + 3ad0: 4d 0a 08 00 0a ff 49 50 41 54 76 49 50 41 54 7b M.....IPATvIPAT{ + 3ae0: 7a 50 41 52 4d 0a 14 00 0a 07 49 42 49 41 70 00 zPARM.....IBIAp. + 3af0: 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 GESFp.PARM.SUCC. + 3b00: 47 05 93 47 45 53 46 0a 0b 7b 7a 50 41 52 4d 0a G..GESF..{zPARM. + 3b10: 01 00 0a 01 49 46 31 45 a0 1c 7b 50 41 52 4d 79 ....IF1E..{PARMy + 3b20: 0a 0f 0a 0d 00 00 7b 7a 50 41 52 4d 0a 0d 00 0a ......{zPARM.... + 3b30: 0f 49 44 4d 53 a1 10 7b 7a 50 41 52 4d 0a 11 00 .IDMS..{zPARM... + 3b40: 0a 0f 49 44 4d 53 70 00 47 45 53 46 70 00 50 41 ..IDMSp.GESFp.PA + 3b50: 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 10 RM.SUCC...GESF.. + 3b60: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 3b70: 43 a0 2c 93 47 45 53 46 0a 11 70 79 4c 49 44 53 C.,.GESF..pyLIDS + 3b80: 0a 08 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 ...PARMrPARM...P + 3b90: 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 4e ARMp.GESF.SUCC.N + 3ba0: 04 93 47 45 53 46 0a 12 a0 2a 7b 50 41 52 4d 0a ..GESF...*{PARM. + 3bb0: 01 00 a0 13 93 7a 50 41 52 4d 0a 01 00 0a 01 70 .....zPARM.....p + 3bc0: 0a 01 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 43 ..ISSC..p.GESF.C + 3bd0: 52 49 54 a1 08 70 0a 00 49 53 53 43 70 00 47 45 RIT..p..ISSCp.GE + 3be0: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 SFp.PARM.SUCC... + 3bf0: 47 45 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 GESF..p.GESFp.PA + 3c00: 52 4d a4 53 55 43 43 a0 24 93 47 45 53 46 0a 14 RM.SUCC.$.GESF.. + 3c10: 7b 50 41 52 4d 0a 0f 50 41 56 50 70 00 47 45 53 {PARM..PAVPp.GES + 3c20: 46 70 00 50 41 52 4d a4 53 55 43 43 70 00 47 45 Fp.PARM.SUCCp.GE + 3c30: 53 46 a4 53 55 43 43 14 19 50 44 52 44 00 a0 0c SF.SUCC..PDRD... + 3c40: 92 44 52 44 59 5b 22 41 53 4c 50 a4 92 44 52 44 .DRDY["ASLP..DRD + 3c50: 59 14 1d 50 53 54 53 00 a0 0e 94 43 53 54 53 0a Y..PSTS....CSTS. + 3c60: 02 5b 22 41 53 4c 50 a4 93 43 53 54 53 0a 03 14 .["ASLP..CSTS... + 3c70: 45 07 47 4e 4f 54 02 a0 08 50 44 52 44 a4 0a 01 E.GNOT...PDRD... + 3c80: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 42 04 phCEVTp..CSTS.B. + 3c90: 90 93 43 48 50 44 0a 00 93 69 0a 00 a0 33 92 93 ..CHPD...i...3.. + 3ca0: 68 0a 01 a0 19 90 5c 57 58 50 46 92 5c 57 56 49 h.....\WXPF.\WVI + 3cb0: 53 86 5c 2e 5f 53 42 5f 50 43 49 30 69 a1 12 86 S.\._SB_PCI0i... + 3cc0: 5c 2f 03 5f 53 42 5f 50 43 49 30 56 49 44 5f 69 \/._SB_PCI0VID_i + 3cd0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 56 49 44 5f .\/._SB_PCI0VID_ + 3ce0: 0a 80 a4 0a 00 14 15 47 48 44 53 01 70 68 54 49 .......GHDS.phTI + 3cf0: 44 58 a4 47 4e 4f 54 0a 01 0a 00 14 15 47 4c 49 DX.GNOT......GLI + 3d00: 44 01 70 68 43 4c 49 44 a4 47 4e 4f 54 0a 02 0a D.phCLID.GNOT... + 3d10: 00 14 0f 47 4c 49 53 01 70 68 43 4c 49 44 a4 0a ...GLIS.phCLID.. + 3d20: 00 14 15 47 44 43 4b 01 70 68 43 44 43 4b a4 47 ...GDCK.phCDCK.G + 3d30: 4e 4f 54 0a 04 0a 80 14 0c 47 44 43 53 01 70 68 NOT......GDCS.ph + 3d40: 43 44 43 4b 14 19 50 41 52 44 00 a0 0c 92 41 52 CDCK..PARD....AR + 3d50: 44 59 5b 22 41 53 4c 50 a4 92 41 52 44 59 14 4b DY["ASLP..ARDY.K + 3d60: 0a 41 49 4e 54 02 a0 10 92 7b 54 43 48 45 79 0a .AINT....{TCHEy. + 3d70: 01 68 00 00 a4 0a 01 a0 08 50 41 52 44 a4 0a 01 .h.......PARD... + 3d80: a0 25 93 68 0a 02 7f 50 46 49 54 0a 07 50 46 49 .%.h...PFIT..PFI + 3d90: 54 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 70 T}PFIT.....PFITp + 3da0: 0a 04 41 53 4c 43 a1 49 05 a0 20 93 68 0a 01 70 ..ASLC.I.. .h..p + 3db0: 69 42 43 4c 50 7d 42 43 4c 50 0c 00 00 00 80 42 iBCLP}BCLP.....B + 3dc0: 43 4c 50 70 0a 0a 41 53 4c 43 a1 35 a0 19 93 68 CLPp..ASLC.5...h + 3dd0: 0a 03 70 69 50 46 4d 42 7d 50 46 4d 42 0c 00 01 ..piPFMB}PFMB... + 3de0: 00 80 50 46 4d 42 a1 19 a0 12 93 68 0a 00 70 69 ..PFMB.....h..pi + 3df0: 41 4c 53 49 70 0a 01 41 53 4c 43 a1 04 a4 0a 01 ALSIp..ASLC..... + 3e00: 70 0a 01 41 53 4c 45 a4 0a 00 5b 82 87 16 03 4c p..ASLE...[....L + 3e10: 50 43 5f 08 5f 41 44 52 0c 00 00 1f 00 08 5f 53 PC_._ADR......_S + 3e20: 33 44 0a 03 08 52 49 44 5f 0a 00 5b 82 4b 1c 53 3D...RID_..[.K.S + 3e30: 49 4f 5f 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 IO_._HID.A...._U + 3e40: 49 44 0a 00 08 53 43 52 53 11 4b 10 0b 06 01 47 ID...SCRS.K....G + 3e50: 01 10 00 10 00 01 10 47 01 90 00 90 00 01 10 47 .......G.......G + 3e60: 01 24 00 24 00 01 02 47 01 28 00 28 00 01 02 47 .$.$...G.(.(...G + 3e70: 01 2c 00 2c 00 01 02 47 01 30 00 30 00 01 02 47 .,.,...G.0.0...G + 3e80: 01 34 00 34 00 01 02 47 01 38 00 38 00 01 02 47 .4.4...G.8.8...G + 3e90: 01 3c 00 3c 00 01 02 47 01 a4 00 a4 00 01 02 47 .<.<...G.......G + 3ea0: 01 a8 00 a8 00 01 02 47 01 ac 00 ac 00 01 02 47 .......G.......G + 3eb0: 01 b0 00 b0 00 01 06 47 01 b8 00 b8 00 01 02 47 .......G.......G + 3ec0: 01 bc 00 bc 00 01 02 47 01 50 00 50 00 01 04 47 .......G.P.P...G + 3ed0: 01 72 00 72 00 01 06 47 01 00 04 00 04 01 80 47 .r.r...G.......G + 3ee0: 01 00 05 00 05 01 80 47 01 00 08 00 08 01 10 47 .......G.......G + 3ef0: 01 e0 15 e0 15 01 10 47 01 00 16 00 16 01 80 86 .......G........ + 3f00: 09 00 01 00 00 00 f8 00 00 00 04 86 09 00 01 00 ................ + 3f10: 00 00 00 00 10 00 00 86 09 00 01 00 c0 d1 fe 00 ................ + 3f20: 40 00 00 86 09 00 01 00 00 d1 fe 00 40 00 00 86 @...........@... + 3f30: 09 00 01 00 80 d1 fe 00 10 00 00 86 09 00 01 00 ................ + 3f40: 90 d1 fe 00 10 00 00 86 09 00 01 00 50 d4 fe 00 ............P... + 3f50: 70 00 00 79 00 8a 53 43 52 53 0a c0 54 52 4d 42 p..y..SCRS..TRMB + 3f60: 14 47 09 5f 43 52 53 00 70 5c 54 42 41 42 54 52 .G._CRS.p\TBABTR + 3f70: 4d 42 a0 20 93 5c 2f 05 5f 53 42 5f 50 43 49 30 MB. .\/._SB_PCI0 + 3f80: 4c 50 43 5f 54 50 4d 5f 5f 53 54 41 0a 0f a4 53 LPC_TPM__STA...S + 3f90: 43 52 53 a1 44 06 74 87 53 43 52 53 0a 02 60 08 CRS.D.t.SCRS..`. + 3fa0: 42 55 46 30 11 02 60 72 60 87 5c 2f 05 5f 53 42 BUF0..`r`.\/._SB + 3fb0: 5f 50 43 49 30 4c 50 43 5f 54 50 4d 5f 42 55 46 _PCI0LPC_TPM_BUF + 3fc0: 31 60 08 42 55 46 31 11 02 60 70 53 43 52 53 42 1`.BUF1..`pSCRSB + 3fd0: 55 46 30 73 42 55 46 30 5c 2f 05 5f 53 42 5f 50 UF0sBUF0\/._SB_P + 3fe0: 43 49 30 4c 50 43 5f 54 50 4d 5f 42 55 46 31 42 CI0LPC_TPM_BUF1B + 3ff0: 55 46 31 a4 42 55 46 31 5b 80 4c 50 43 53 02 0a UF1.BUF1[.LPCS.. + 4000: 00 0b 00 01 5b 81 4b 09 4c 50 43 53 00 00 40 30 ....[.K.LPCS..@0 + 4010: 50 49 52 41 08 50 49 52 42 08 50 49 52 43 08 50 PIRA.PIRB.PIRC.P + 4020: 49 52 44 08 53 45 52 51 08 00 18 50 49 52 45 08 IRD.SERQ...PIRE. + 4030: 50 49 52 46 08 50 49 52 47 08 50 49 52 48 08 00 PIRF.PIRG.PIRH.. + 4040: 40 0a 58 55 31 41 03 00 01 58 55 32 41 03 00 01 @.XU1A...XU2A... + 4050: 58 50 41 5f 02 00 02 58 46 41 5f 01 00 03 58 55 XPA_...XFA_...XU + 4060: 31 45 01 58 55 32 45 01 58 50 45 5f 01 58 46 45 1E.XU2E.XPE_.XFE + 4070: 5f 01 00 0c 58 47 31 45 01 00 01 58 47 31 41 0e _...XG1E...XG1A. + 4080: 00 10 58 47 32 45 01 00 01 58 47 32 41 0e 00 40 ..XG2E...XG2A..@ + 4090: 0b 00 02 43 4c 4b 52 01 00 07 45 58 50 45 01 00 ...CLKR...EXPE.. + 40a0: 05 5b 80 4c 50 49 4f 01 0b 00 05 0a 80 5b 81 4b .[.LPIO......[.K + 40b0: 04 4c 50 49 4f 03 00 40 06 00 08 00 08 00 06 47 .LPIO..@.......G + 40c0: 4c 49 53 01 00 01 00 08 00 40 0e 00 06 58 48 50 LIS......@...XHP + 40d0: 44 01 00 49 05 00 06 50 49 44 48 02 00 08 50 49 D..I...PIDH...PI + 40e0: 44 4c 02 00 4e 06 44 4f 49 30 01 44 4f 49 31 01 DL..N.DOI0.DOI1. + 40f0: 44 4f 49 32 01 44 4f 49 33 01 5b 80 50 4d 49 4f DOI2.DOI3.[.PMIO + 4100: 01 0b 00 04 0a 80 5b 81 1c 50 4d 49 4f 00 00 40 ......[..PMIO..@ + 4110: 21 00 01 53 57 47 45 01 00 4e 10 00 09 53 43 49 !..SWGE..N...SCI + 4120: 53 01 00 06 5b 80 49 4f 5f 54 01 0b 00 08 0a 10 S...[.IO_T...... + 4130: 5b 81 24 49 4f 5f 54 01 54 52 50 49 10 00 10 00 [.$IO_T.TRPI.... + 4140: 10 00 10 54 52 50 30 08 00 08 00 08 00 08 00 08 ...TRP0......... + 4150: 00 08 00 08 00 08 5b 82 33 50 49 43 5f 08 5f 48 ......[.3PIC_._H + 4160: 49 44 0b 41 d0 08 5f 43 52 53 11 20 0a 1d 47 01 ID.A.._CRS. ..G. + 4170: 20 00 20 00 01 02 47 01 a0 00 a0 00 01 02 47 01 . ...G.......G. + 4180: d0 04 d0 04 01 02 22 04 00 79 00 5b 82 25 54 49 ......"..y.[.%TI + 4190: 4d 52 08 5f 48 49 44 0c 41 d0 01 00 08 5f 43 52 MR._HID.A...._CR + 41a0: 53 11 10 0a 0d 47 01 40 00 40 00 01 04 22 01 00 S....G.@.@...".. + 41b0: 79 00 5b 82 48 06 48 50 45 54 08 5f 48 49 44 0c y.[.H.HPET._HID. + 41c0: 41 d0 01 03 14 1f 5f 53 54 41 00 a0 10 90 5c 57 A....._STA....\W + 41d0: 4e 54 46 92 5c 57 58 50 46 a4 0a 00 a1 04 a4 0a NTF.\WXPF....... + 41e0: 0f a4 0a 00 08 42 55 46 30 11 11 0a 0e 86 09 00 .....BUF0....... + 41f0: 00 00 00 d0 fe 00 04 00 00 79 00 14 20 5f 43 52 .........y.. _CR + 4200: 53 08 8a 42 55 46 30 0a 04 48 50 54 30 70 5c 48 S..BUF0..HPT0p\H + 4210: 50 45 54 48 50 54 30 a4 42 55 46 30 5b 82 35 44 PETHPT0.BUF0[.5D + 4220: 4d 41 43 08 5f 48 49 44 0c 41 d0 02 00 08 5f 43 MAC._HID.A...._C + 4230: 52 53 11 20 0a 1d 47 01 00 00 00 00 01 10 47 01 RS. ..G.......G. + 4240: 80 00 80 00 01 10 47 01 c0 00 c0 00 01 20 2a 10 ......G...... *. + 4250: 05 79 00 5b 82 22 53 50 4b 52 08 5f 48 49 44 0c .y.[."SPKR._HID. + 4260: 41 d0 08 00 08 5f 43 52 53 11 0d 0a 0a 47 01 61 A...._CRS....G.a + 4270: 00 61 00 01 01 79 00 5b 82 25 46 50 55 5f 08 5f .a...y.[.%FPU_._ + 4280: 48 49 44 0c 41 d0 0c 04 08 5f 43 52 53 11 10 0a HID.A...._CRS... + 4290: 0d 47 01 f0 00 f0 00 01 01 22 00 20 79 00 5b 82 .G.......". y.[. + 42a0: 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b 00 08 %RTC_._HID.A.... + 42b0: 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 01 02 _CRS....G.p.p... + 42c0: 22 00 01 79 00 5b 82 2d 4b 42 44 5f 08 5f 48 49 "..y.[.-KBD_._HI + 42d0: 44 0c 41 d0 03 03 08 5f 43 52 53 11 18 0a 15 47 D.A...._CRS....G + 42e0: 01 60 00 60 00 01 01 47 01 64 00 64 00 01 01 22 .`.`...G.d.d..." + 42f0: 02 00 79 00 5b 82 4a 05 4d 4f 55 5f 08 5f 48 49 ..y.[.J.MOU_._HI + 4300: 44 0c 24 4d 37 80 08 5f 43 49 44 0c 41 d0 0f 13 D.$M7.._CID.A... + 4310: 08 5f 43 52 53 11 08 0a 05 22 00 10 79 00 14 31 ._CRS...."..y..1 + 4320: 4d 48 49 44 00 a0 1e 5c 2f 04 5f 53 42 5f 50 43 MHID...\/._SB_PC + 4330: 49 30 4c 50 43 5f 50 41 44 44 70 0c 24 4d 37 80 I0LPC_PADDp.$M7. + 4340: 5f 48 49 44 a1 0b 70 0c 30 ae 00 20 5f 48 49 44 _HID..p.0.. _HID + 4350: 5b 80 49 4d 47 41 01 0b e0 15 0a 10 5b 81 21 49 [.IMGA......[.!I + 4360: 4d 47 41 01 00 08 00 08 00 08 57 41 4b 52 10 00 MGA.......WAKR.. + 4370: 38 47 41 49 58 08 00 08 47 41 44 54 08 00 08 5b 8GAIX...GADT...[ + 4380: 86 4f 05 47 41 49 58 47 41 44 54 01 00 40 28 00 .O.GAIXGADT..@(. + 4390: 03 49 56 50 57 01 44 56 50 57 01 42 4c 50 4c 01 .IVPW.DVPW.BLPL. + 43a0: 00 02 54 50 34 52 01 50 41 44 52 01 42 50 41 44 ..TP4R.PADR.BPAD + 43b0: 01 00 01 00 01 50 41 44 44 01 00 42 07 45 50 57 .....PADD..B.EPW + 43c0: 47 01 00 01 43 53 4f 4e 01 44 53 43 49 01 44 53 G...CSON.DSCI.DS + 43d0: 43 53 01 44 4c 41 4e 01 00 4a 30 47 41 49 44 08 CS.DLAN..J0GAID. + 43e0: 10 48 0c 5c 5f 53 42 5f 08 54 43 47 50 11 0b 0a .H.\_SB_.TCGP... + 43f0: 08 1f e0 1f 01 02 04 08 f0 8c 54 43 47 50 0a 00 ..........TCGP.. + 4400: 50 50 52 51 8c 54 43 47 50 0a 01 50 50 4c 31 8c PPRQ.TCGP..PPL1. + 4410: 54 43 47 50 0a 02 50 50 52 50 8c 54 43 47 50 0a TCGP..PPRP.TCGP. + 4420: 03 54 50 52 53 8c 54 43 47 50 0a 04 50 50 4f 52 .TPRS.TCGP..PPOR + 4430: 8c 54 43 47 50 0a 05 54 50 4d 56 8c 54 43 47 50 .TCGP..TPMV.TCGP + 4440: 0a 06 4d 4f 52 5f 8c 54 43 47 50 0a 07 54 56 45 ..MOR_.TCGP..TVE + 4450: 4e 5b 80 54 43 47 43 01 0a 72 0a 02 5b 81 10 54 N[.TCGC..r..[..T + 4460: 43 47 43 11 54 49 44 58 08 54 50 44 41 08 5b 86 CGC.TIDX.TPDA.[. + 4470: 1c 54 49 44 58 54 50 44 41 11 00 40 20 54 50 50 .TIDXTPDA..@ TPP + 4480: 31 08 50 50 4c 4f 08 54 50 50 33 08 5b 80 53 4d 1.PPLO.TPP3.[.SM + 4490: 49 50 01 0a b2 0a 02 5b 81 10 53 4d 49 50 02 53 IP.....[..SMIP.S + 44a0: 4d 49 54 08 53 4d 49 44 08 5b 80 54 50 4d 46 00 MIT.SMID.[.TPMF. + 44b0: 0c 00 00 ff ff 0b 55 aa 5b 81 10 54 50 4d 46 10 ......U.[..TPMF. + 44c0: 50 50 49 50 08 50 50 49 43 08 5b 82 42 59 54 50 PPIP.PPIC.[.BYTP + 44d0: 4d 5f 08 54 4d 50 56 0a 00 14 46 08 5f 48 49 44 M_.TMPV...F._HID + 44e0: 00 a0 0f 93 54 56 49 44 0b d1 15 a4 0c 24 d8 01 ....TVID.....$.. + 44f0: 02 a0 18 91 93 54 56 49 44 0b 50 10 93 54 56 49 .....TVID.P..TVI + 4500: 44 0b 0b 10 a4 0c 5c a3 10 00 a0 0f 93 54 56 49 D.....\......TVI + 4510: 44 0b fa 19 a4 0c 4d cf 35 04 a0 0f 93 54 44 49 D.....M.5....TDI + 4520: 44 0b 02 10 a4 0c 08 6d 01 02 a0 0f 93 54 44 49 D......m.....TDI + 4530: 44 0b 01 10 a4 0c 08 6d 01 01 a0 0f 93 54 56 49 D......m.....TVI + 4540: 44 0b 14 11 a4 0c 06 8d 12 00 a0 0f 93 54 56 49 D............TVI + 4550: 44 0b 4a 10 a4 0c 4d af 12 00 a4 0c 41 d0 0c 31 D.J...M.....A..1 + 4560: 08 5f 43 49 44 0c 41 d0 0c 31 08 5f 55 49 44 0a ._CID.A..1._UID. + 4570: 01 5b 80 54 4d 4d 42 00 0c 00 00 d4 fe 0b 00 10 .[.TMMB......... + 4580: 5b 81 26 54 4d 4d 42 11 41 43 43 53 08 00 48 0b [.&TMMB.ACCS..H. + 4590: 54 53 54 41 08 54 42 43 41 08 00 80 73 07 54 56 TSTA.TBCA...s.TV + 45a0: 49 44 10 54 44 49 44 10 14 23 5f 53 54 41 00 a0 ID.TDID..#_STA.. + 45b0: 0b 93 41 43 43 53 0a ff a4 0a 00 a1 0d a0 0b 93 ..ACCS.......... + 45c0: 54 50 4d 45 0a 00 a4 0a 00 a4 0a 0f 08 42 55 46 TPME.........BUF + 45d0: 31 11 11 0a 0e 86 09 00 00 00 00 d4 fe 00 50 00 1.............P. + 45e0: 00 79 00 14 0b 5f 43 52 53 08 a4 42 55 46 31 14 .y..._CRS..BUF1. + 45f0: 3c 55 43 4d 50 02 a0 0a 92 93 0a 10 87 68 a4 0a + 4f30: a0 1e 90 62 92 57 42 4f 4e 5c 57 42 45 43 0a 07 ...b.WBON\WBEC.. + 4f40: 0a 00 5c 57 42 45 43 0a 06 0a 00 5b 22 0a 64 a0 ..\WBEC....[".d. + 4f50: 0e 92 93 61 0a ff 5c 57 42 45 43 0a 07 61 a0 0e ...a..\WBEC..a.. + 4f60: 92 93 60 0a ff 5c 57 42 45 43 0a 06 60 a0 05 93 ..`..\WBEC..`... + 4f70: 68 0a 03 a0 0a 93 68 0a 07 5b 22 0b f4 01 14 42 h.....h..["....B + 4f80: 07 45 56 4e 54 01 a0 37 5c 48 38 44 52 a0 18 68 .EVNT..7\H8DR..h + 4f90: 7d 48 41 4d 37 0a 01 48 41 4d 37 7d 48 41 4d 35 }HAM7..HAM7}HAM5 + 4fa0: 0a 04 48 41 4d 35 a1 17 7b 48 41 4d 37 0a fe 48 ..HAM5..{HAM7..H + 4fb0: 41 4d 37 7b 48 41 4d 35 0a fb 48 41 4d 35 a1 32 AM7{HAM5..HAM5.2 + 4fc0: a0 18 68 5c 4d 42 45 43 0a 17 0a ff 0a 01 5c 4d ..h\MBEC......\M + 4fd0: 42 45 43 0a 15 0a ff 0a 04 a1 17 5c 4d 42 45 43 BEC........\MBEC + 4fe0: 0a 17 0a fe 0a 00 5c 4d 42 45 43 0a 15 0a fb 0a ......\MBEC..... + 4ff0: 00 5b 84 49 07 50 55 42 53 03 00 00 14 2b 5f 53 .[.I.PUBS....+_S + 5000: 54 41 00 a0 0c 5c 48 38 44 52 70 48 55 42 53 60 TA...\H8DRpHUBS` + 5010: a1 0c 7b 5c 52 42 45 43 0a 3b 0a 10 60 a0 05 60 ..{\RBEC.;..`..` + 5020: a4 0a 01 a1 04 a4 0a 00 14 21 5f 4f 4e 5f 00 a0 .........!_ON_.. + 5030: 0d 5c 48 38 44 52 70 0a 01 48 55 42 53 a1 0c 5c .\H8DRp..HUBS..\ + 5040: 4d 42 45 43 0a 3b 0a ff 0a 10 14 21 5f 4f 46 46 MBEC.;.....!_OFF + 5050: 00 a0 0d 5c 48 38 44 52 70 0a 00 48 55 42 53 a1 ...\H8DRp..HUBS. + 5060: 0c 5c 4d 42 45 43 0a 3b 0a ef 0a 00 14 2b 43 48 .\MBEC.;.....+CH + 5070: 4b 53 00 70 0b e8 03 60 a2 13 48 4d 50 52 5b 22 KS.p...`..HMPR[" + 5080: 0a 01 76 60 a0 07 92 60 a4 0b 80 80 a0 07 48 4d ..v`...`......HM + 5090: 44 4e a4 00 a4 0b 81 80 14 4b 12 4c 50 4d 44 00 DN.......K.LPMD. + 50a0: 70 0a 00 60 70 0a 00 61 70 0a 00 62 a0 40 08 5c p..`p..ap..b.@.\ + 50b0: 48 38 44 52 a0 48 07 48 50 41 43 a0 0c 48 50 4c H8DR.H.HPAC..HPL + 50c0: 4f 70 5c 4c 50 53 54 60 a1 44 06 a0 41 06 95 48 Op\LPST`.D..A..H + 50d0: 57 41 54 0a 5a a0 1f 48 42 30 41 a0 19 91 7b 48 WAT.Z..HB0A...{H + 50e0: 42 30 53 0a 10 00 95 7b 48 42 30 53 0a 07 00 0a B0S....{HB0S.... + 50f0: 02 70 0a 01 61 a1 05 70 0a 01 61 a0 1f 48 42 31 .p..a..p..a..HB1 + 5100: 41 a0 19 91 7b 48 42 31 53 0a 10 00 95 7b 48 42 A...{HB1S....{HB + 5110: 31 53 0a 07 00 0a 02 70 0a 01 62 a1 05 70 0a 01 1S.....p..b..p.. + 5120: 62 a0 0b 90 61 62 70 5c 4c 50 53 54 60 a1 44 09 b...abp\LPST`.D. + 5130: a0 41 09 7b 5c 52 42 45 43 0a 46 0a 10 00 a0 13 .A.{\RBEC.F..... + 5140: 7b 5c 52 42 45 43 0a 34 0a 80 00 70 5c 4c 50 53 {\RBEC.4...p\LPS + 5150: 54 60 a1 4f 06 a0 4c 06 95 5c 52 42 45 43 0a c9 T`.O..L..\RBEC.. + 5160: 0a 5a 70 5c 52 42 45 43 0a 38 63 a0 1a 7b 63 0a .Zp\RBEC.8c..{c. + 5170: 80 00 a0 13 91 7b 63 0a 10 00 95 7b 63 0a 07 00 .....{c....{c... + 5180: 0a 02 70 0a 01 61 a1 05 70 0a 01 62 70 5c 52 42 ..p..a..p..bp\RB + 5190: 45 43 0a 39 63 a0 1a 7b 63 0a 80 00 a0 13 91 7b EC.9c..{c......{ + 51a0: 63 0a 10 00 95 7b 63 0a 07 00 0a 02 70 0a 01 61 c....{c.....p..a + 51b0: a1 05 70 0a 01 62 a0 0b 90 61 62 70 5c 4c 50 53 ..p..b...abp\LPS + 51c0: 54 60 a4 60 14 3a 43 4c 50 4d 00 a0 33 7b 5c 50 T`.`.:CLPM..3{\P + 51d0: 50 4d 46 0a 01 00 a0 0d 5c 4f 53 50 58 5c 50 4e PMF.....\OSPX\PN + 51e0: 54 46 0a 80 a1 1a 70 4c 50 4d 44 60 a0 09 60 5c TF....pLPMD`..`\ + 51f0: 53 54 45 50 0a 04 a1 08 5c 53 54 45 50 0a 05 5b STEP....\STEP..[ + 5200: 01 4d 43 50 55 07 14 44 04 5f 51 31 30 00 a0 3c .MCPU..D._Q10..< + 5210: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 5220: 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0a 01 5c 2f 06 C__HKEYMHKK..\/. + 5230: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 5240: 48 4b 45 59 4d 48 4b 51 0b 01 10 14 07 5f 51 31 HKEYMHKQ....._Q1 + 5250: 31 00 a3 14 44 04 5f 51 31 32 00 a0 3c 5c 2f 06 1...D._Q12..<\/. + 5260: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 5270: 48 4b 45 59 4d 48 4b 4b 0a 02 5c 2f 06 5f 53 42 HKEYMHKK..\/._SB + 5280: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + 5290: 59 4d 48 4b 51 0b 02 10 14 41 05 5f 51 31 33 00 YMHKQ....A._Q13. + 52a0: a0 3a 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 .:\/._SB_PCI0LPC + 52b0: 5f 45 43 5f 5f 48 4b 45 59 44 48 4b 43 5c 2f 06 _EC__HKEYDHKC\/. + 52c0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 52d0: 48 4b 45 59 4d 48 4b 51 0b 04 10 a1 0e 86 5c 2e HKEYMHKQ......\. + 52e0: 5f 53 42 5f 53 4c 50 42 0a 80 14 44 04 5f 51 36 _SB_SLPB...D._Q6 + 52f0: 34 00 a0 3c 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 4..<\/._SB_PCI0L + 5300: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0a PC_EC__HKEYMHKK. + 5310: 10 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 5320: 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 05 10 14 EC__HKEYMHKQ.... + 5330: 44 04 5f 51 36 35 00 a0 3c 5c 2f 06 5f 53 42 5f D._Q65..<\/._SB_ + 5340: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + 5350: 4d 48 4b 4b 0a 20 5c 2f 06 5f 53 42 5f 50 43 49 MHKK. \/._SB_PCI + 5360: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 5370: 51 0b 06 10 14 4b 09 5f 51 31 36 00 a0 3c 5c 2f Q....K._Q16..<\/ + 5380: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 5390: 5f 48 4b 45 59 4d 48 4b 4b 0a 40 5c 2f 06 5f 53 _HKEYMHKK.@\/._S + 53a0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + 53b0: 45 59 4d 48 4b 51 0b 07 10 a1 46 05 a0 21 93 5c EYMHKQ....F..!.\ + 53c0: 56 48 59 42 0a 03 0a 00 0a 03 86 5c 2f 03 5f 53 VHYB.......\/._S + 53d0: 42 5f 50 43 49 30 56 49 44 5f 0a 80 a4 00 a0 18 B_PCI0VID_...... + 53e0: 56 49 47 44 5c 2f 04 5f 53 42 5f 50 43 49 30 56 VIGD\/._SB_PCI0V + 53f0: 49 44 5f 56 53 57 54 a1 18 5c 2f 05 5f 53 42 5f ID_VSWT..\/._SB_ + 5400: 50 43 49 30 50 45 47 5f 56 49 44 5f 56 53 57 54 PCI0PEG_VID_VSWT + 5410: 14 42 05 5f 51 31 37 00 a0 3c 5c 2f 06 5f 53 42 .B._Q17..<\/._SB + 5420: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + 5430: 59 4d 48 4b 4b 0a 80 5c 2f 06 5f 53 42 5f 50 43 YMHKK..\/._SB_PC + 5440: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 I0LPC_EC__HKEYMH + 5450: 4b 51 0b 08 10 a1 0d a0 0b 92 5c 57 4e 54 46 56 KQ........\WNTFV + 5460: 45 58 50 14 46 04 5f 51 31 38 00 a0 3d 5c 2f 06 EXP.F._Q18..=\/. + 5470: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 5480: 48 4b 45 59 4d 48 4b 4b 0b 00 01 5c 2f 06 5f 53 HKEYMHKK...\/._S + 5490: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + 54a0: 45 59 4d 48 4b 51 0b 09 10 a3 14 45 04 5f 51 36 EYMHKQ.....E._Q6 + 54b0: 36 00 a0 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 6..=\/._SB_PCI0L + 54c0: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0b PC_EC__HKEYMHKK. + 54d0: 00 02 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 54e0: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 0a 10 _EC__HKEYMHKQ... + 54f0: 14 45 04 5f 51 31 41 00 a0 3d 5c 2f 06 5f 53 42 .E._Q1A..=\/._SB + 5500: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + 5510: 59 4d 48 4b 4b 0b 00 04 5c 2f 06 5f 53 42 5f 50 YMHKK...\/._SB_P + 5520: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + 5530: 48 4b 51 0b 0b 10 14 24 5f 51 31 42 00 5c 2f 06 HKQ....$_Q1B.\/. + 5540: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 5550: 48 4b 45 59 4d 48 4b 51 0b 0c 10 14 45 04 5f 51 HKEYMHKQ....E._Q + 5560: 36 32 00 a0 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 62..=\/._SB_PCI0 + 5570: 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b LPC_EC__HKEYMHKK + 5580: 0b 00 10 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 ...\/._SB_PCI0LP + 5590: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 0d C_EC__HKEYMHKQ.. + 55a0: 10 14 45 04 5f 51 36 30 00 a0 3d 5c 2f 06 5f 53 ..E._Q60..=\/._S + 55b0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + 55c0: 45 59 4d 48 4b 4b 0b 00 20 5c 2f 06 5f 53 42 5f EYMHKK.. \/._SB_ + 55d0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + 55e0: 4d 48 4b 51 0b 0e 10 14 45 04 5f 51 36 31 00 a0 MHKQ....E._Q61.. + 55f0: 3d 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f =\/._SB_PCI0LPC_ + 5600: 45 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0b 00 40 5c EC__HKEYMHKK..@\ + 5610: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 5620: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 0f 10 14 4e 04 __HKEYMHKQ....N. + 5630: 5f 51 31 46 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 _Q1F..?\/._SB_PC + 5640: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 I0LPC_EC__HKEYMH + 5650: 4b 4b 0c 00 00 02 00 5c 2f 06 5f 53 42 5f 50 43 KK.....\/._SB_PC + 5660: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 I0LPC_EC__HKEYMH + 5670: 4b 51 0b 12 10 5c 55 43 4d 53 0a 0e 14 47 04 5f KQ...\UCMS...G._ + 5680: 51 36 37 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 Q67..?\/._SB_PCI + 5690: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 56a0: 4b 0c 00 00 04 00 5c 2f 06 5f 53 42 5f 50 43 49 K.....\/._SB_PCI + 56b0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 56c0: 51 0b 13 10 14 47 04 5f 51 31 43 00 a0 3f 5c 2f Q....G._Q1C..?\/ + 56d0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 56e0: 5f 48 4b 45 59 4d 48 4b 4b 0c 00 00 00 01 5c 2f _HKEYMHKK.....\/ + 56f0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 5700: 5f 48 4b 45 59 4d 48 4b 51 0b 19 10 14 47 04 5f _HKEYMHKQ....G._ + 5710: 51 31 44 00 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 Q1D..?\/._SB_PCI + 5720: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 5730: 4b 0c 00 00 00 02 5c 2f 06 5f 53 42 5f 50 43 49 K.....\/._SB_PCI + 5740: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 5750: 51 0b 1a 10 14 48 0f 5f 51 32 36 00 a0 28 56 49 Q....H._Q26..(VI + 5760: 47 44 a0 0b 5c 57 56 49 53 5c 56 42 54 44 5c 2f GD..\WVIS\VBTD\/ + 5770: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 5780: 5f 42 52 4e 53 a1 08 5c 55 43 4d 53 0a 12 a0 2e _BRNS..\UCMS.... + 5790: 5c 2f 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 \/._SB_PCI0PEG_V + 57a0: 49 44 5f 49 53 4f 50 86 5c 2f 04 5f 53 42 5f 50 ID_ISOP.\/._SB_P + 57b0: 43 49 30 50 45 47 5f 56 49 44 5f 0a df 5b 22 0b CI0PEG_VID_..[". + 57c0: f4 01 86 41 43 5f 5f 0a 80 86 5c 2e 5f 54 5a 5f ...AC__...\._TZ_ + 57d0: 54 48 4d 30 0a 80 a0 0e 5c 57 58 50 46 5b 23 4d THM0....\WXPF[#M + 57e0: 43 50 55 ff ff 70 0a 01 50 57 52 53 a0 18 7b 5c CPU..p..PWRS..{\ + 57f0: 50 50 4d 46 0a 01 00 a0 0d 5c 4f 53 50 58 5c 50 PPMF.....\OSPX\P + 5800: 4e 54 46 0a 80 a0 0a 5c 57 58 50 46 5b 22 0a 64 NTF....\WXPF[".d + 5810: a0 0d 5c 4f 53 43 34 5c 50 4e 54 46 0a 81 a0 0c ..\OSC4\PNTF.... + 5820: 5c 57 58 50 46 5b 27 4d 43 50 55 5c 2f 06 5f 53 \WXPF['MCPU\/._S + 5830: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + 5840: 45 59 4d 48 4b 51 0b 40 60 41 54 4d 43 14 24 5f EYMHKQ.@`ATMC.$_ + 5850: 51 32 45 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c Q2E.\/._SB_PCI0L + 5860: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b PC_EC__HKEYMHKQ. + 5870: 40 60 14 48 0f 5f 51 32 37 00 a0 28 56 49 47 44 @`.H._Q27..(VIGD + 5880: a0 0b 5c 57 56 49 53 5c 56 42 54 44 5c 2f 05 5f ..\WVIS\VBTD\/._ + 5890: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 SB_PCI0LPC_EC__B + 58a0: 52 4e 53 a1 08 5c 55 43 4d 53 0a 12 a0 2e 5c 2f RNS..\UCMS....\/ + 58b0: 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 49 44 ._SB_PCI0PEG_VID + 58c0: 5f 49 53 4f 50 86 5c 2f 04 5f 53 42 5f 50 43 49 _ISOP.\/._SB_PCI + 58d0: 30 50 45 47 5f 56 49 44 5f 0a df 5b 22 0b f4 01 0PEG_VID_..["... + 58e0: 86 41 43 5f 5f 0a 80 86 5c 2e 5f 54 5a 5f 54 48 .AC__...\._TZ_TH + 58f0: 4d 30 0a 80 a0 0e 5c 57 58 50 46 5b 23 4d 43 50 M0....\WXPF[#MCP + 5900: 55 ff ff 70 0a 00 50 57 52 53 a0 18 7b 5c 50 50 U..p..PWRS..{\PP + 5910: 4d 46 0a 01 00 a0 0d 5c 4f 53 50 58 5c 50 4e 54 MF.....\OSPX\PNT + 5920: 46 0a 80 a0 0a 5c 57 58 50 46 5b 22 0a 64 a0 0d F....\WXPF[".d.. + 5930: 5c 4f 53 43 34 5c 50 4e 54 46 0a 81 a0 0c 5c 57 \OSC4\PNTF....\W + 5940: 58 50 46 5b 27 4d 43 50 55 5c 2f 06 5f 53 42 5f XPF['MCPU\/._SB_ + 5950: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + 5960: 4d 48 4b 51 0b 40 60 41 54 4d 43 14 24 5f 51 32 MHKQ.@`ATMC.$_Q2 + 5970: 46 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 F.\/._SB_PCI0LPC + 5980: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 40 60 _EC__HKEYMHKQ.@` + 5990: 14 49 0a 5f 51 32 41 00 5c 56 43 4d 53 0a 01 5c .I._Q2A.\VCMS..\ + 59a0: 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 a0 4b /._SB_LID__LID.K + 59b0: 08 93 5c 49 4c 4e 46 0a 00 5c 2f 06 5f 53 42 5f ..\ILNF..\/._SB_ + 59c0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + 59d0: 4d 48 4b 51 0b 02 50 a0 42 06 93 5c 50 4c 55 58 MHKQ..P.B..\PLUX + 59e0: 0a 00 a0 2f 56 49 47 44 5c 2f 04 5f 53 42 5f 50 .../VIGD\/._SB_P + 59f0: 43 49 30 56 49 44 5f 47 4c 49 53 0a 01 5c 2f 04 CI0VID_GLIS..\/. + 5a00: 5f 53 42 5f 50 43 49 30 56 49 44 5f 56 4c 4f 43 _SB_PCI0VID_VLOC + 5a10: 0a 01 a1 1a 5c 2f 05 5f 53 42 5f 50 43 49 30 50 ....\/._SB_PCI0P + 5a20: 45 47 5f 56 49 44 5f 56 4c 4f 43 0a 01 86 5c 2e EG_VID_VLOC...\. + 5a30: 5f 53 42 5f 4c 49 44 5f 0a 80 14 4b 09 5f 51 32 _SB_LID_...K._Q2 + 5a40: 42 00 5c 55 43 4d 53 0a 0d 5c 56 43 4d 53 0a 01 B.\UCMS..\VCMS.. + 5a50: 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 a0 \/._SB_LID__LID. + 5a60: 46 07 93 5c 49 4c 4e 46 0a 00 5c 2f 06 5f 53 42 F..\ILNF..\/._SB + 5a70: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + 5a80: 59 4d 48 4b 51 0b 01 50 a0 4d 04 93 5c 50 4c 55 YMHKQ..P.M..\PLU + 5a90: 58 0a 00 a0 1a 56 49 47 44 5c 2f 04 5f 53 42 5f X....VIGD\/._SB_ + 5aa0: 50 43 49 30 56 49 44 5f 47 4c 49 53 0a 00 a1 1a PCI0VID_GLIS.... + 5ab0: 5c 2f 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 \/._SB_PCI0PEG_V + 5ac0: 49 44 5f 56 4c 4f 43 0a 00 86 5c 2e 5f 53 42 5f ID_VLOC...\._SB_ + 5ad0: 4c 49 44 5f 0a 80 14 06 5f 51 33 44 00 14 43 04 LID_...._Q3D..C. + 5ae0: 5f 51 34 38 00 a0 3b 7b 5c 50 50 4d 46 0a 01 00 _Q48..;{\PPMF... + 5af0: a0 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a 80 a1 08 ..\OSPX\PNTF.... + 5b00: 5c 53 54 45 50 0a 04 70 0a 01 5c 2f 05 5f 53 42 \STEP..p..\/._SB + 5b10: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 43 41 4c _PCI0LPC_EC__CAL + 5b20: 4d 14 28 5f 51 34 39 00 a0 21 7b 5c 50 50 4d 46 M.(_Q49..!{\PPMF + 5b30: 0a 01 00 a0 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a .....\OSPX\PNTF. + 5b40: 80 a1 08 5c 53 54 45 50 0a 05 14 10 5f 51 37 46 ...\STEP...._Q7F + 5b50: 00 5b 32 01 00 00 01 80 0b c3 02 14 24 5f 51 34 .[2.........$_Q4 + 5b60: 45 00 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 E.\/._SB_PCI0LPC + 5b70: 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 11 60 _EC__HKEYMHKQ..` + 5b80: 14 24 5f 51 34 46 00 5c 2f 06 5f 53 42 5f 50 43 .$_Q4F.\/._SB_PC + 5b90: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 I0LPC_EC__HKEYMH + 5ba0: 4b 51 0b 12 60 14 24 5f 51 34 36 00 5c 2f 06 5f KQ..`.$_Q46.\/._ + 5bb0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + 5bc0: 4b 45 59 4d 48 4b 51 0b 12 60 14 24 5f 51 32 32 KEYMHKQ..`.$_Q22 + 5bd0: 00 43 4c 50 4d a0 0c 48 42 30 41 86 42 41 54 30 .CLPM..HB0A.BAT0 + 5be0: 0a 80 a0 0c 48 42 31 41 86 42 41 54 31 0a 80 14 ....HB1A.BAT1... + 5bf0: 11 5f 51 34 41 00 43 4c 50 4d 86 42 41 54 30 0a ._Q4A.CLPM.BAT0. + 5c00: 81 14 0d 5f 51 34 42 00 86 42 41 54 30 0a 80 14 ..._Q4B..BAT0... + 5c10: 49 08 5f 51 34 43 00 43 4c 50 4d a0 41 06 5c 57 I._Q4C.CLPM.A.\W + 5c20: 4e 54 46 a0 3d 48 42 31 41 70 0a 01 5c 2f 06 5f NTF.=HB1Ap..\/._ + 5c30: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 SB_PCI0LPC_EC__B + 5c40: 41 54 31 58 42 31 53 86 5c 2f 05 5f 53 42 5f 50 AT1XB1S.\/._SB_P + 5c50: 43 49 30 4c 50 43 5f 45 43 5f 5f 42 41 54 31 0a CI0LPC_EC__BAT1. + 5c60: 01 a1 1b 86 5c 2f 05 5f 53 42 5f 50 43 49 30 4c ....\/._SB_PCI0L + 5c70: 50 43 5f 45 43 5f 5f 42 41 54 31 0a 03 a1 1b 86 PC_EC__BAT1..... + 5c80: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 5c90: 43 5f 5f 42 41 54 31 0a 81 14 25 5f 51 34 44 00 C__BAT1...%_Q4D. + 5ca0: a0 1e 7b 5e 2e 42 41 54 31 42 31 53 54 5e 2e 42 ..{^.BAT1B1ST^.B + 5cb0: 41 54 31 58 42 31 53 00 86 42 41 54 31 0a 80 14 AT1XB1S..BAT1... + 5cc0: 11 5f 51 32 34 00 43 4c 50 4d 86 42 41 54 30 0a ._Q24.CLPM.BAT0. + 5cd0: 80 14 29 5f 51 32 35 00 a0 22 7b 5e 2e 42 41 54 ..)_Q25.."{^.BAT + 5ce0: 31 42 31 53 54 5e 2e 42 41 54 31 58 42 31 53 00 1B1ST^.BAT1XB1S. + 5cf0: 43 4c 50 4d 86 42 41 54 31 0a 80 14 47 08 42 41 CLPM.BAT1...G.BA + 5d00: 54 57 01 70 5c 2f 06 5f 53 42 5f 50 43 49 30 4c TW.p\/._SB_PCI0L + 5d10: 50 43 5f 45 43 5f 5f 42 41 54 31 58 42 31 53 60 PC_EC__BAT1XB1S` + 5d20: a0 0c 5c 48 38 44 52 70 48 42 31 41 61 a1 18 a0 ..\H8DRpHB1Aa... + 5d30: 10 7b 5c 52 42 45 43 0a 39 0a 80 00 70 0a 01 61 .{\RBEC.9...p..a + 5d40: a1 05 70 0a 00 61 a0 3c 7f 60 61 00 70 61 5c 2f ..p..a.<.`a.pa\/ + 5d50: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 5d60: 5f 42 41 54 31 58 42 31 53 86 5c 2f 05 5f 53 42 _BAT1XB1S.\/._SB + 5d70: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 41 54 _PCI0LPC_EC__BAT + 5d80: 31 0a 01 5b 81 31 45 43 4f 52 01 00 40 50 53 42 1..[.1ECOR..@PSB + 5d90: 52 43 10 53 42 46 43 10 53 42 41 45 10 53 42 52 RC.SBFC.SBAE.SBR + 5da0: 53 10 53 42 41 43 10 53 42 56 4f 10 53 42 41 46 S.SBAC.SBVO.SBAF + 5db0: 10 53 42 42 53 10 5b 81 18 45 43 4f 52 01 00 40 .SBBS.[..ECOR..@ + 5dc0: 50 53 42 42 4d 10 53 42 4d 44 10 53 42 43 43 10 PSBBM.SBMD.SBCC. + 5dd0: 5b 81 27 45 43 4f 52 01 00 40 50 53 42 44 43 10 [.'ECOR..@PSBDC. + 5de0: 53 42 44 56 10 53 42 4f 4d 10 53 42 53 49 10 53 SBDV.SBOM.SBSI.S + 5df0: 42 44 54 10 53 42 53 4e 10 5b 81 0e 45 43 4f 52 BDT.SBSN.[..ECOR + 5e00: 01 00 40 50 53 42 43 48 20 5b 81 0f 45 43 4f 52 ..@PSBCH [..ECOR + 5e10: 01 00 40 50 53 42 4d 4e 40 08 5b 81 0f 45 43 4f ..@PSBMN@.[..ECO + 5e20: 52 01 00 40 50 53 42 44 4e 40 08 5b 01 42 41 54 R..@PSBDN@.[.BAT + 5e30: 4d 07 14 48 16 47 42 49 46 03 5b 23 42 41 54 4d M..H.GBIF.[#BATM + 5e40: ff ff a0 48 12 6a 7d 68 0a 01 48 49 49 44 70 53 ...H.j}h..HIIDpS + 5e50: 42 42 4d 67 7a 67 0a 0f 67 7f 67 0a 01 88 69 0a BBMgzg..g.g...i. + 5e60: 00 00 70 68 48 49 49 44 a0 0a 67 77 53 42 46 43 ..phHIID..gwSBFC + 5e70: 0a 0a 61 a1 07 70 53 42 46 43 61 70 61 88 69 0a ..a..pSBFCapa.i. + 5e80: 02 00 7d 68 0a 02 48 49 49 44 a0 0a 67 77 53 42 ..}h..HIID..gwSB + 5e90: 44 43 0a 0a 60 a1 07 70 53 42 44 43 60 70 60 88 DC..`..pSBDC`p`. + 5ea0: 69 0a 01 00 78 61 0a 14 62 88 69 0a 05 00 a0 0a i...xa..b.i..... + 5eb0: 67 70 0a c8 88 69 0a 06 00 a1 21 a0 15 53 42 44 gp...i....!..SBD + 5ec0: 56 78 0c 40 0d 03 00 53 42 44 56 62 88 69 0a 06 Vx.@...SBDVb.i.. + 5ed0: 00 a1 09 70 0a 00 88 69 0a 06 00 70 53 42 44 56 ...p...i...pSBDV + 5ee0: 88 69 0a 04 00 70 53 42 53 4e 60 08 53 45 52 4e .i...pSBSN`.SERN + 5ef0: 11 09 0a 06 20 20 20 20 20 00 70 0a 04 62 a2 15 .... .p..b.. + 5f00: 60 78 60 0a 0a 61 60 72 61 0a 30 88 53 45 52 4e `x`..a`ra.0.SERN + 5f10: 62 00 76 62 70 53 45 52 4e 88 69 0a 0a 00 7d 68 b.vbpSERN.i...}h + 5f20: 0a 06 48 49 49 44 70 53 42 44 4e 88 69 0a 09 00 ..HIIDpSBDN.i... + 5f30: 7d 68 0a 04 48 49 49 44 08 42 54 59 50 11 08 0a }h..HIID.BTYP... + 5f40: 05 00 00 00 00 00 70 53 42 43 48 42 54 59 50 70 ......pSBCHBTYPp + 5f50: 42 54 59 50 88 69 0a 0b 00 7d 68 0a 05 48 49 49 BTYP.i...}h..HII + 5f60: 44 70 53 42 4d 4e 88 69 0a 0c 00 a1 27 70 0c ff DpSBMN.i....'p.. + 5f70: ff ff ff 88 69 0a 01 00 70 0a 00 88 69 0a 05 00 ....i...p...i... + 5f80: 70 0a 00 88 69 0a 06 00 70 0c ff ff ff ff 88 69 p...i...p......i + 5f90: 0a 02 00 5b 27 42 41 54 4d a4 69 14 4a 0d 47 42 ...['BATM.i.J.GB + 5fa0: 53 54 04 5b 23 42 41 54 4d ff ff a0 0a 7b 69 0a ST.[#BATM....{i. + 5fb0: 20 00 70 0a 02 60 a1 12 a0 0a 7b 69 0a 40 00 70 .p..`....{i.@.p + 5fc0: 0a 01 60 a1 05 70 0a 00 60 a0 06 7b 69 0a 07 00 ..`..p..`..{i... + 5fd0: a1 06 7d 60 0a 04 60 a0 19 93 7b 69 0a 07 00 0a ..}`..`...{i.... + 5fe0: 07 70 0a 04 60 70 0a 00 61 70 0a 00 62 70 0a 00 .p..`p..ap..bp.. + 5ff0: 63 a1 40 06 70 68 48 49 49 44 70 53 42 56 4f 63 c.@.phHIIDpSBVOc + 6000: a0 0a 6a 77 53 42 52 43 0a 0a 62 a1 07 70 53 42 ..jwSBRC..b..pSB + 6010: 52 43 62 70 53 42 41 43 61 a0 1c 92 95 61 0b 00 RCbpSBACa....a.. + 6020: 80 a0 0e 7b 60 0a 01 00 74 0c 00 00 01 00 61 61 ...{`...t.....aa + 6030: a1 05 70 0a 00 61 a1 0d a0 0b 92 7b 60 0a 02 00 ..p..a.....{`... + 6040: 70 0a 00 61 a0 0d 6a 77 63 61 61 78 61 0b e8 03 p..a..jwcaaxa... + 6050: 67 61 70 60 88 6b 0a 00 00 70 61 88 6b 0a 01 00 gap`.k...pa.k... + 6060: 70 62 88 6b 0a 02 00 70 63 88 6b 0a 03 00 5b 27 pb.k...pc.k...[' + 6070: 42 41 54 4d a4 6b 5b 82 47 15 42 41 54 30 08 5f BATM.k[.G.BAT0._ + 6080: 48 49 44 0c 41 d0 0c 0a 08 5f 55 49 44 0a 00 08 HID.A...._UID... + 6090: 5f 50 43 4c 12 07 01 5c 5f 53 42 5f 08 42 30 53 _PCL...\_SB_.B0S + 60a0: 54 0a 00 08 42 54 30 49 12 23 0d 0a 00 0c ff ff T...BT0I.#...... + 60b0: ff ff 0c ff ff ff ff 0a 01 0b 30 2a 0a 00 0a 00 ..........0*.... + 60c0: 0a 01 0a 01 0d 00 0d 00 0d 00 0d 00 08 42 54 30 .............BT0 + 60d0: 50 12 02 04 14 44 04 5f 53 54 41 00 a0 0f 5c 48 P....D._STA...\H + 60e0: 38 44 52 70 48 42 30 41 42 30 53 54 a1 1e a0 13 8DRpHB0AB0ST.... + 60f0: 7b 5c 52 42 45 43 0a 38 0a 80 00 70 0a 01 42 30 {\RBEC.8...p..B0 + 6100: 53 54 a1 08 70 0a 00 42 30 53 54 a0 08 42 30 53 ST..p..B0ST..B0S + 6110: 54 a4 0a 1f a1 04 a4 0a 0f 14 47 04 5f 42 49 46 T.........G._BIF + 6120: 00 70 0a 00 67 70 0a 0a 66 a2 2b 90 92 67 66 a0 .p..gp..f.+..gf. + 6130: 1f 48 42 30 41 a0 13 93 7b 48 42 30 53 0a 07 00 .HB0A...{HB0S... + 6140: 0a 07 5b 22 0b e8 03 76 66 a1 05 70 0a 01 67 a1 ..["...vf..p..g. + 6150: 05 70 0a 00 66 a4 47 42 49 46 0a 00 42 54 30 49 .p..f.GBIF..BT0I + 6160: 67 14 23 5f 42 53 54 00 7f 83 88 42 54 30 49 0a g.#_BST....BT0I. + 6170: 00 00 0a 01 60 a4 47 42 53 54 0a 00 48 42 30 53 ....`.GBST..HB0S + 6180: 60 42 54 30 50 14 49 04 5f 42 54 50 01 7b 48 41 `BT0P.I._BTP.{HA + 6190: 4d 34 0a ef 48 41 4d 34 a0 36 68 70 68 61 a0 11 M4..HAM4.6hpha.. + 61a0: 92 83 88 42 54 30 49 0a 00 00 78 61 0a 0a 60 61 ...BT0I...xa..`a + 61b0: 7b 61 0a ff 48 54 30 4c 7b 7a 61 0a 08 00 0a ff {a..HT0L{za..... + 61c0: 48 54 30 48 7d 48 41 4d 34 0a 10 48 41 4d 34 5b HT0H}HAM4..HAM4[ + 61d0: 82 49 19 42 41 54 31 08 5f 48 49 44 0c 41 d0 0c .I.BAT1._HID.A.. + 61e0: 0a 08 5f 55 49 44 0a 01 08 5f 50 43 4c 12 07 01 .._UID..._PCL... + 61f0: 5c 5f 53 42 5f 08 42 31 53 54 0a 00 08 58 42 31 \_SB_.B1ST...XB1 + 6200: 53 0a 01 08 42 54 31 49 12 23 0d 0a 00 0c ff ff S...BT1I.#...... + 6210: ff ff 0c ff ff ff ff 0a 01 0b 30 2a 0a 00 0a 00 ..........0*.... + 6220: 0a 01 0a 01 0d 00 0d 00 0d 00 0d 00 08 42 54 31 .............BT1 + 6230: 50 12 02 04 14 47 06 5f 53 54 41 00 a0 0f 5c 48 P....G._STA...\H + 6240: 38 44 52 70 48 42 31 41 42 31 53 54 a1 1e a0 13 8DRpHB1AB1ST.... + 6250: 7b 5c 52 42 45 43 0a 39 0a 80 00 70 0a 01 42 31 {\RBEC.9...p..B1 + 6260: 53 54 a1 08 70 0a 00 42 31 53 54 a0 1f 42 31 53 ST..p..B1ST..B1S + 6270: 54 a0 08 58 42 31 53 a4 0a 1f a1 10 a0 09 5c 57 T..XB1S.......\W + 6280: 4e 54 46 a4 0a 00 a1 04 a4 0a 1f a1 10 a0 09 5c NTF............\ + 6290: 57 4e 54 46 a4 0a 00 a1 04 a4 0a 0f 14 47 04 5f WNTF.........G._ + 62a0: 42 49 46 00 70 0a 00 67 70 0a 0a 66 a2 2b 90 92 BIF.p..gp..f.+.. + 62b0: 67 66 a0 1f 48 42 31 41 a0 13 93 7b 48 42 31 53 gf..HB1A...{HB1S + 62c0: 0a 07 00 0a 07 5b 22 0b e8 03 76 66 a1 05 70 0a .....["...vf..p. + 62d0: 01 67 a1 05 70 0a 00 66 a4 47 42 49 46 0a 10 42 .g..p..f.GBIF..B + 62e0: 54 31 49 67 14 23 5f 42 53 54 00 7f 83 88 42 54 T1Ig.#_BST....BT + 62f0: 31 49 0a 00 00 0a 01 60 a4 47 42 53 54 0a 10 48 1I.....`.GBST..H + 6300: 42 31 53 60 42 54 31 50 14 49 04 5f 42 54 50 01 B1S`BT1P.I._BTP. + 6310: 7b 48 41 4d 34 0a df 48 41 4d 34 a0 36 68 70 68 {HAM4..HAM4.6hph + 6320: 61 a0 11 92 83 88 42 54 31 49 0a 00 00 78 61 0a a.....BT1I...xa. + 6330: 0a 60 61 7b 61 0a ff 48 54 31 4c 7b 7a 61 0a 08 .`a{a..HT1L{za.. + 6340: 00 0a ff 48 54 31 48 7d 48 41 4d 34 0a 20 48 41 ...HT1H}HAM4. HA + 6350: 4d 34 14 17 5f 45 4a 30 01 a0 10 68 70 0a 00 42 M4.._EJ0...hp..B + 6360: 31 53 54 70 0a 00 58 42 31 53 5b 82 4d 05 41 43 1STp..XB1S[.M.AC + 6370: 5f 5f 08 5f 48 49 44 0d 41 43 50 49 30 30 30 33 __._HID.ACPI0003 + 6380: 00 08 5f 55 49 44 0a 00 08 5f 50 43 4c 12 07 01 .._UID..._PCL... + 6390: 5c 5f 53 42 5f 14 29 5f 50 53 52 00 a0 0b 5c 48 \_SB_.)_PSR...\H + 63a0: 38 44 52 a4 48 50 41 43 a1 16 a0 0f 7b 5c 52 42 8DR.HPAC....{\RB + 63b0: 45 43 0a 46 0a 10 00 a4 0a 01 a1 04 a4 0a 00 14 EC.F............ + 63c0: 09 5f 53 54 41 00 a4 0a 0f 5b 82 4a 75 48 4b 45 ._STA....[.JuHKE + 63d0: 59 08 5f 48 49 44 0c 30 ae 00 68 14 09 5f 53 54 Y._HID.0..h.._ST + 63e0: 41 00 a4 0a 0f 14 0a 4d 48 4b 56 00 a4 0b 00 01 A......MHKV..... + 63f0: 08 44 48 4b 43 0a 00 08 44 48 4b 42 0a 01 5b 01 .DHKC...DHKB..[. + 6400: 58 44 48 4b 07 08 44 48 4b 48 0a 00 08 44 48 4b XDHK..DHKH...DHK + 6410: 57 0a 00 08 44 48 4b 53 0a 00 08 44 48 4b 44 0a W...DHKS...DHKD. + 6420: 00 08 44 48 4b 4e 0b 08 08 08 44 48 4b 54 0a 00 ..DHKN....DHKT.. + 6430: 08 44 48 57 57 0a 00 14 0c 4d 48 4b 41 00 a4 0c .DHWW....MHKA... + 6440: fb ff ff 07 14 0b 4d 48 4b 4e 00 a4 44 48 4b 4e ......MHKN..DHKN + 6450: 14 18 4d 48 4b 4b 01 a0 0d 44 48 4b 43 a4 7b 44 ..MHKK...DHKC.{D + 6460: 48 4b 4e 68 00 a1 03 a4 00 14 40 05 4d 48 4b 4d HKNh......@.MHKM + 6470: 02 5b 23 58 44 48 4b ff ff a0 06 94 68 0a 20 a3 .[#XDHK.....h. . + 6480: a1 33 79 01 76 68 60 a0 29 7b 60 0c fb ff ff 07 .3y.vh`.){`..... + 6490: 00 a0 0c 69 7d 60 44 48 4b 4e 44 48 4b 4e a1 12 ...i}`DHKNDHKN.. + 64a0: 7b 44 48 4b 4e 7f 60 0c ff ff ff ff 00 44 48 4b {DHKN.`......DHK + 64b0: 4e a1 02 a3 5b 27 58 44 48 4b 14 13 4d 48 4b 53 N...['XDHK..MHKS + 64c0: 00 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a 80 14 0c ..\._SB_SLPB.... + 64d0: 4d 48 4b 43 01 70 68 44 48 4b 43 14 49 08 4d 48 MHKC.phDHKC.I.MH + 64e0: 4b 50 00 5b 23 58 44 48 4b ff ff a0 11 44 48 57 KP.[#XDHK....DHW + 64f0: 57 70 44 48 57 57 61 70 00 44 48 57 57 a1 4f 05 WpDHWWap.DHWW.O. + 6500: a0 11 44 48 4b 57 70 44 48 4b 57 61 70 00 44 48 ..DHKWpDHKWap.DH + 6510: 4b 57 a1 4a 04 a0 11 44 48 4b 44 70 44 48 4b 44 KW.J...DHKDpDHKD + 6520: 61 70 00 44 48 4b 44 a1 35 a0 11 44 48 4b 53 70 ap.DHKD.5..DHKSp + 6530: 44 48 4b 53 61 70 00 44 48 4b 53 a1 21 a0 11 44 DHKSap.DHKS.!..D + 6540: 48 4b 54 70 44 48 4b 54 61 70 00 44 48 4b 54 a1 HKTpDHKTap.DHKT. + 6550: 0d 70 44 48 4b 48 61 70 00 44 48 4b 48 5b 27 58 .pDHKHap.DHKH['X + 6560: 44 48 4b a4 61 14 3e 4d 48 4b 45 01 70 68 44 48 DHK.a.>MHKE.phDH + 6570: 4b 42 5b 23 58 44 48 4b ff ff 70 00 44 48 4b 48 KB[#XDHK..p.DHKH + 6580: 70 00 44 48 4b 57 70 00 44 48 4b 53 70 00 44 48 p.DHKWp.DHKSp.DH + 6590: 4b 44 70 00 44 48 4b 54 70 00 44 48 57 57 5b 27 KDp.DHKTp.DHWW[' + 65a0: 58 44 48 4b 14 45 0b 4d 48 4b 51 01 a0 4d 0a 44 XDHK.E.MHKQ..M.D + 65b0: 48 4b 42 a0 40 09 44 48 4b 43 5b 23 58 44 48 4b HKB.@.DHKC[#XDHK + 65c0: ff ff a0 06 95 68 0b 00 10 a1 4d 06 a0 0c 95 68 .....h....M....h + 65d0: 0b 00 20 70 68 44 48 4b 48 a1 4d 05 a0 0c 95 68 .. phDHKH.M....h + 65e0: 0b 00 30 70 68 44 48 4b 57 a1 4d 04 a0 0c 95 68 ..0phDHKW.M....h + 65f0: 0b 00 40 70 68 44 48 4b 53 a1 3d a0 0c 95 68 0b ..@phDHKS.=...h. + 6600: 00 50 70 68 44 48 4b 44 a1 2e a0 0c 95 68 0b 00 .PphDHKD.....h.. + 6610: 60 70 68 44 48 4b 48 a1 1f a0 0c 95 68 0b 00 70 `phDHKH.....h..p + 6620: 70 68 44 48 4b 54 a1 10 a0 0c 95 68 0b 00 80 70 phDHKT.....h...p + 6630: 68 44 48 57 57 a1 01 5b 27 58 44 48 4b 86 48 4b hDHWW..['XDHK.HK + 6640: 45 59 0a 80 a1 15 a0 13 93 68 0b 04 10 86 5c 2e EY.......h....\. + 6650: 5f 53 42 5f 53 4c 50 42 0a 80 14 49 05 4d 48 4b _SB_SLPB...I.MHK + 6660: 42 01 a0 26 93 68 0a 00 5c 2f 05 5f 53 42 5f 50 B..&.h..\/._SB_P + 6670: 43 49 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a CI0LPC_EC__BEEP. + 6680: 11 70 0a 00 5c 4c 49 44 42 a1 2a a0 26 93 68 0a .p..\LIDB.*.&.h. + 6690: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 66a0: 45 43 5f 5f 42 45 45 50 0a 10 70 0a 01 5c 4c 49 EC__BEEP..p..\LI + 66b0: 44 42 a1 01 14 47 04 4d 48 4b 44 00 a0 3f 93 5c DB...G.MHKD..?.\ + 66c0: 50 4c 55 58 0a 00 a0 1a 56 49 47 44 5c 2f 04 5f PLUX....VIGD\/._ + 66d0: 53 42 5f 50 43 49 30 56 49 44 5f 56 4c 4f 43 0a SB_PCI0VID_VLOC. + 66e0: 00 a1 1a 5c 2f 05 5f 53 42 5f 50 43 49 30 50 45 ...\/._SB_PCI0PE + 66f0: 47 5f 56 49 44 5f 56 4c 4f 43 0a 00 14 3e 4d 48 G_VID_VLOC...>MH + 6700: 51 43 01 a0 31 5c 57 4e 54 46 a0 0b 93 68 0a 00 QC..1\WNTF...h.. + 6710: a4 5c 43 57 41 43 a1 1e a0 0b 93 68 0a 01 a4 5c .\CWAC.....h...\ + 6720: 43 57 41 50 a1 10 a0 0b 93 68 0a 02 a4 5c 43 57 CWAP.....h...\CW + 6730: 41 54 a1 02 a3 a1 02 a3 a4 0a 00 14 35 4d 48 47 AT..........5MHG + 6740: 43 00 a0 28 5c 57 4e 54 46 5b 23 58 44 48 4b ff C..(\WNTF[#XDHK. + 6750: ff a0 0b 43 4b 43 34 0a 00 70 0a 03 60 a1 05 70 ...CKC4..p..`..p + 6760: 0a 04 60 5b 27 58 44 48 4b a4 60 a1 02 a3 a4 0a ..`['XDHK.`..... + 6770: 00 14 4c 06 4d 48 53 43 01 a0 41 06 90 5c 43 57 ..L.MHSC..A..\CW + 6780: 41 43 5c 57 4e 54 46 5b 23 58 44 48 4b ff ff a0 AC\WNTF[#XDHK... + 6790: 45 04 5c 4f 53 43 34 a0 1c 93 68 0a 03 a0 16 92 E.\OSC4...h..... + 67a0: 5c 43 57 41 53 5c 50 4e 54 46 0a 81 70 0a 01 5c \CWAS\PNTF..p..\ + 67b0: 43 57 41 53 a1 20 a0 1b 93 68 0a 04 a0 15 5c 43 CWAS. ...h....\C + 67c0: 57 41 53 5c 50 4e 54 46 0a 81 70 0a 00 5c 43 57 WAS\PNTF..p..\CW + 67d0: 41 53 a1 02 a3 5b 27 58 44 48 4b a1 02 a3 14 47 AS...['XDHK....G + 67e0: 05 43 4b 43 34 01 70 0a 00 60 a0 13 5c 43 34 57 .CKC4.p..`..\C4W + 67f0: 52 a0 0c 92 5c 43 34 41 43 7d 60 0a 01 60 a0 0b R...\C4AC}`..`.. + 6800: 5c 43 34 4e 41 7d 60 0a 02 60 a0 11 90 5c 43 57 \C4NA}`..`...\CW + 6810: 41 43 5c 43 57 41 53 7d 60 0a 04 60 a0 11 90 5c AC\CWAS}`..`...\ + 6820: 43 57 55 45 5c 43 57 55 53 7d 60 0a 08 60 7b 60 CWUE\CWUS}`..`{` + 6830: 80 68 00 60 a4 60 14 0c 4d 48 51 45 00 a4 5c 43 .h.`.`..MHQE..\C + 6840: 34 57 52 14 19 4d 48 47 45 00 a0 0f 90 5c 43 34 4WR..MHGE....\C4 + 6850: 57 52 5c 43 34 41 43 a4 0a 04 a4 0a 03 14 44 06 WR\C4AC.......D. + 6860: 4d 48 53 45 01 a0 4c 05 5c 43 34 57 52 70 5c 43 MHSE..L.\C4WRp\C + 6870: 34 41 43 60 a0 25 93 68 0a 03 70 0a 00 5c 43 34 4AC`.%.h..p..\C4 + 6880: 41 43 a0 17 7f 60 5c 43 34 41 43 00 a0 0d 5c 4f AC...`\C4AC...\O + 6890: 53 43 34 5c 50 4e 54 46 0a 81 a1 27 a0 25 93 68 SC4\PNTF...'.%.h + 68a0: 0a 04 70 0a 01 5c 43 34 41 43 a0 17 7f 60 5c 43 ..p..\C4AC...`\C + 68b0: 34 41 43 00 a0 0d 5c 4f 53 43 34 5c 50 4e 54 46 4AC...\OSC4\PNTF + 68c0: 0a 81 14 0d 55 41 57 4f 01 a4 5c 55 41 57 53 68 ....UAWO..\UAWSh + 68d0: 14 13 4d 4c 43 47 01 70 5c 4b 42 4c 53 0a 00 0a ..MLCG.p\KBLS... + 68e0: 00 60 a4 60 14 4a 08 4d 4c 43 53 01 70 5c 4b 42 .`.`.J.MLCS.p\KB + 68f0: 4c 53 0a 01 68 60 a0 46 07 92 7b 60 0c 00 00 00 LS..h`.F..{`.... + 6900: 80 00 a0 27 7b 68 0c 00 00 01 00 00 5c 2f 06 5f ...'{h......\/._ + 6910: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + 6920: 4b 45 59 4d 48 4b 51 0b 01 60 a1 42 04 a0 3f 5c KEYMHKQ..`.B..?\ + 6930: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 6940: 5f 5f 48 4b 45 59 4d 48 4b 4b 0c 00 00 02 00 5c __HKEYMHKK.....\ + 6950: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 6960: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 12 10 a4 60 14 __HKEYMHKQ....`. + 6970: 12 44 53 53 47 01 7d 0b 00 04 5c 50 44 43 49 60 .DSSG.}...\PDCI` + 6980: a4 60 14 12 44 53 53 53 01 7d 5c 50 44 43 49 68 .`..DSSS.}\PDCIh + 6990: 5c 50 44 43 49 14 10 53 42 53 47 01 a4 5c 53 59 \PDCI..SBSG..\SY + 69a0: 42 43 0a 00 0a 00 14 0f 53 42 53 53 01 a4 5c 53 BC......SBSS..\S + 69b0: 59 42 43 0a 01 68 14 15 50 42 4c 47 01 70 5c 42 YBC..h..PBLG.p\B + 69c0: 52 4c 56 60 7d 60 0b 00 0f 61 a4 61 14 41 06 50 RLV`}`...a.a.A.P + 69d0: 42 4c 53 01 70 68 5c 42 52 4c 56 a0 1d 5c 56 49 BLS.ph\BRLV..\VI + 69e0: 47 44 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 GD\/._SB_PCI0LPC + 69f0: 5f 45 43 5f 5f 42 52 4e 53 a1 0b 5c 56 42 52 43 _EC__BRNS..\VBRC + 6a00: 5c 42 52 4c 56 a0 25 92 5c 4e 42 43 46 5c 2f 06 \BRLV.%.\NBCF\/. + 6a10: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 6a20: 48 4b 45 59 4d 48 4b 51 0b 50 60 a4 0a 00 14 4b HKEYMHKQ.P`....K + 6a30: 04 50 4d 53 47 01 70 5c 50 52 53 4d 0a 00 0a 00 .PMSG.p\PRSM.... + 6a40: 60 a0 36 92 5c 41 50 49 4e a0 0e 7b 60 0a 10 00 `.6.\APIN..{`... + 6a50: 70 0a 01 5c 41 50 4d 44 a1 09 70 0a 00 5c 41 50 p..\APMD..p..\AP + 6a60: 4d 44 a0 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a 80 MD..\OSPX\PNTF.. + 6a70: 70 0a 01 5c 41 50 49 4e a4 60 14 45 05 50 4d 53 p..\APIN.`.E.PMS + 6a80: 53 01 5c 50 52 53 4d 0a 01 68 a0 42 04 91 90 92 S.\PRSM..h.B.... + 6a90: 5c 41 50 4d 44 7b 68 0a 10 00 90 5c 41 50 4d 44 \APMD{h....\APMD + 6aa0: 92 7b 68 0a 10 00 a0 0e 7b 68 0a 10 00 70 0a 01 .{h.....{h...p.. + 6ab0: 5c 41 50 4d 44 a1 09 70 0a 00 5c 41 50 4d 44 a0 \APMD..p..\APMD. + 6ac0: 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a 80 a4 0a 00 .\OSPX\PNTF..... + 6ad0: 14 20 49 53 53 47 01 70 5c 49 53 53 50 60 7d 60 . ISSG.p\ISSP`}` + 6ae0: 0a 80 60 7d 60 7b 5c 49 53 43 47 0a 30 00 60 a4 ..`}`{\ISCG.0.`. + 6af0: 60 14 10 49 53 53 53 01 70 68 5c 49 53 43 47 a4 `..ISSS.ph\ISCG. + 6b00: 0a 00 14 10 46 46 53 47 01 a4 5c 49 46 52 53 0a ....FFSG..\IFRS. + 6b10: 00 0a 00 14 11 46 46 53 53 01 5c 49 46 52 53 0a .....FFSS.\IFRS. + 6b20: 01 68 a4 0a 00 10 46 27 5c 2f 05 5f 53 42 5f 50 .h....F'\/._SB_P + 6b30: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 08 CI0LPC_EC__HKEY. + 6b40: 49 4e 44 56 0a 00 14 4c 07 4d 48 51 49 00 a0 15 INDV...L.MHQI... + 6b50: 7b 5c 49 50 4d 53 0a 01 00 7d 49 4e 44 56 0a 01 {\IPMS...}INDV.. + 6b60: 49 4e 44 56 a0 15 7b 5c 49 50 4d 53 0a 02 00 7d INDV..{\IPMS...} + 6b70: 49 4e 44 56 0a 02 49 4e 44 56 a0 16 7b 5c 49 50 INDV..INDV..{\IP + 6b80: 4d 53 0a 04 00 7d 49 4e 44 56 0b 00 01 49 4e 44 MS...}INDV...IND + 6b90: 56 a0 16 7b 5c 49 50 4d 53 0a 08 00 7d 49 4e 44 V..{\IPMS...}IND + 6ba0: 56 0b 00 02 49 4e 44 56 a0 15 7b 5c 49 50 4d 53 V...INDV..{\IPMS + 6bb0: 0a 10 00 7d 49 4e 44 56 0a 04 49 4e 44 56 a4 49 ...}INDV..INDV.I + 6bc0: 4e 44 56 14 42 17 4d 48 47 49 01 08 52 45 54 42 NDV.B.MHGI..RETB + 6bd0: 11 03 0a 10 8c 52 45 54 42 0a 00 4d 48 47 53 79 .....RETB..MHGSy + 6be0: 0a 01 68 60 a0 4c 14 7b 49 4e 44 56 60 00 a0 24 ..h`.L.{INDV`..$ + 6bf0: 93 68 0a 00 5b 13 52 45 54 42 0a 08 0a 78 42 52 .h..[.RETB...xBR + 6c00: 42 55 70 5c 49 50 4d 42 42 52 42 55 70 0a 10 4d BUp\IPMBBRBUp..M + 6c10: 48 47 53 a1 4d 11 a0 24 93 68 0a 01 5b 13 52 45 HGS.M..$.h..[.RE + 6c20: 54 42 0a 08 0a 18 52 52 42 55 70 5c 49 50 4d 52 TB....RRBUp\IPMR + 6c30: 52 52 42 55 70 0a 04 4d 48 47 53 a1 45 0f a0 48 RRBUp..MHGS.E..H + 6c40: 08 93 68 0a 08 5b 13 52 45 54 42 0a 10 0a 18 4f ..h..[.RETB....O + 6c50: 44 42 55 8c 52 45 54 42 0a 01 4d 48 47 5a 70 5c DBU.RETB..MHGZp\ + 6c60: 49 50 4d 4f 4f 44 42 55 a0 47 05 93 5e 5e 42 44 IPMOODBU.G..^^BD + 6c70: 45 56 0a 03 a0 0e 5c 48 38 44 52 70 5e 5e 48 50 EV....\H8DRp^^HP + 6c80: 42 55 61 a1 0c 7b 5c 52 42 45 43 0a 47 0a 01 61 BUa..{\RBEC.G..a + 6c90: a0 0e 92 61 7d 0a 04 4d 48 47 5a 4d 48 47 5a a0 ...a}..MHGZMHGZ. + 6ca0: 20 93 5e 5e 42 53 54 53 0a 00 7d 0a 01 4d 48 47 .^^BSTS..}..MHG + 6cb0: 5a 4d 48 47 5a 7d 0a 02 4d 48 47 5a 4d 48 47 5a ZMHGZ}..MHGZMHGZ + 6cc0: 70 0a 05 4d 48 47 53 a1 49 06 a0 2f 93 68 0a 09 p..MHGS.I../.h.. + 6cd0: 5b 13 52 45 54 42 0a 10 0a 08 41 55 42 55 70 5c [.RETB....AUBUp\ + 6ce0: 49 50 4d 41 41 55 42 55 70 0a 01 88 52 45 54 42 IPMAAUBUp...RETB + 6cf0: 0a 01 00 70 0a 03 4d 48 47 53 a1 36 a0 34 93 68 ...p..MHGS.6.4.h + 6d00: 0a 02 70 5c 56 44 59 4e 0a 00 0a 00 61 7b 61 0a ..p\VDYN....a{a. + 6d10: 0f 88 52 45 54 42 0a 02 00 7a 61 0a 04 61 7b 61 ..RETB...za..a{a + 6d20: 0a 0f 88 52 45 54 42 0a 01 00 70 0a 03 4d 48 47 ...RETB...p..MHG + 6d30: 53 a4 52 45 54 42 14 45 06 4d 48 53 49 02 79 0a S.RETB.E.MHSI.y. + 6d40: 01 68 60 a0 48 05 7b 49 4e 44 56 60 00 a0 3e 93 .h`.H.{INDV`..>. + 6d50: 68 0a 08 a0 38 69 a0 0e 5c 48 38 44 52 70 5e 5e h...8i..\H8DRp^^ + 6d60: 48 50 42 55 61 a1 0c 7b 5c 52 42 45 43 0a 47 0a HPBUa..{\RBEC.G. + 6d70: 01 61 a0 19 92 61 70 5e 5e 42 47 49 44 0a 00 5e .a...ap^^BGID..^ + 6d80: 5e 42 44 45 56 5e 5e 4e 42 49 4e 61 a1 0f a0 0d ^BDEV^^NBINa.... + 6d90: 93 68 0a 02 5c 56 44 59 4e 0a 01 69 10 47 06 5c .h..\VDYN..i.G.\ + 6da0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 6db0: 5f 5f 14 41 05 5f 51 36 41 00 a0 06 48 44 4d 43 __.A._Q6A...HDMC + 6dc0: a3 a1 42 04 a0 3f 5c 2f 06 5f 53 42 5f 50 43 49 ..B..?\/._SB_PCI + 6dd0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 6de0: 4b 0c 00 00 00 04 5c 2f 06 5f 53 42 5f 50 43 49 K.....\/._SB_PCI + 6df0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + 6e00: 51 0b 1b 10 10 48 0a 5c 2f 05 5f 53 42 5f 50 43 Q....H.\/._SB_PC + 6e10: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 14 1b I0LPC_EC__HKEY.. + 6e20: 4d 4d 54 47 00 70 0b 01 01 60 a0 0d 48 44 4d 43 MMTG.p...`..HDMC + 6e30: 7d 60 0c 00 00 01 00 60 a4 60 14 42 07 4d 4d 54 }`.....`.`.B.MMT + 6e40: 53 01 a0 06 48 44 4d 43 a3 a1 43 06 a0 20 93 68 S...HDMC..C.. .h + 6e50: 0a 02 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 6e60: 5f 45 43 5f 5f 4c 45 44 5f 0a 0e 0a 80 a1 3f a0 _EC__LED_.....?. + 6e70: 20 93 68 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 30 .h..\/._SB_PCI0 + 6e80: 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 0e 0a c0 LPC_EC__LED_.... + 6e90: a1 1c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 6ea0: 5f 45 43 5f 5f 4c 45 44 5f 0a 0e 0a 00 10 45 06 _EC__LED_.....E. + 6eb0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 6ec0: 43 5f 5f 48 4b 45 59 14 09 50 57 4d 43 00 a4 0a C__HKEY..PWMC... + 6ed0: 01 14 41 04 50 57 4d 47 00 70 5c 2f 05 5f 53 42 ..A.PWMG.p\/._SB + 6ee0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 57 4d _PCI0LPC_EC__PWM + 6ef0: 48 60 79 60 0a 08 60 7d 60 5c 2f 05 5f 53 42 5f H`y`..`}`\/._SB_ + 6f00: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 57 4d 4c PCI0LPC_EC__PWML + 6f10: 60 a4 60 10 39 5c 2f 04 5f 53 42 5f 50 43 49 30 `.`.9\/._SB_PCI0 + 6f20: 4c 50 43 5f 45 43 5f 5f 14 24 5f 51 33 46 00 5c LPC_EC__.$_Q3F.\ + 6f30: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 6f40: 5f 5f 48 4b 45 59 4d 48 4b 51 0b 00 60 10 25 5c __HKEYMHKQ..`.%\ + 6f50: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 6f60: 5f 5f 48 4b 45 59 14 0c 4e 55 4d 47 00 70 0a 00 __HKEY..NUMG.p.. + 6f70: 60 a4 60 5b 82 43 b1 50 45 47 5f 08 5f 41 44 52 `.`[.C.PEG_._ADR + 6f80: 0c 00 00 01 00 08 5f 53 33 44 0a 03 08 52 49 44 ......_S3D...RID + 6f90: 5f 0a 00 08 4c 41 52 54 12 2a 02 12 13 04 0b ff _...LART.*...... + 6fa0: ff 0a 00 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 12 ...\._SB_LNKA... + 6fb0: 13 04 0b ff ff 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b .......\._SB_LNK + 6fc0: 42 0a 00 08 41 41 52 54 12 1a 02 12 0b 04 0b ff B...AART........ + 6fd0: ff 0a 00 0a 00 0a 10 12 0b 04 0b ff ff 0a 01 0a ................ + 6fe0: 00 0a 11 14 19 5f 50 52 54 00 a0 0b 5c 47 50 49 ....._PRT...\GPI + 6ff0: 43 a4 41 41 52 54 a1 06 a4 4c 41 52 54 5b 01 4d C.AART...LART[.M + 7000: 44 47 53 07 08 56 44 45 45 0a 01 08 56 44 44 41 DGS..VDEE...VDDA + 7010: 11 03 0a 04 8d 56 44 44 41 0a 00 56 55 50 43 8d .....VDDA..VUPC. + 7020: 56 44 44 41 0a 01 56 51 44 4c 8d 56 44 44 41 0a VDDA..VQDL.VDDA. + 7030: 02 56 51 44 43 8d 56 44 44 41 0a 03 56 51 44 30 .VQDC.VDDA..VQD0 + 7040: 8d 56 44 44 41 0a 04 56 51 44 31 8d 56 44 44 41 .VDDA..VQD1.VDDA + 7050: 0a 05 56 51 44 32 8d 56 44 44 41 0a 06 56 51 44 ..VQD2.VDDA..VQD + 7060: 33 8d 56 44 44 41 0a 07 56 51 44 34 8d 56 44 44 3.VDDA..VQD4.VDD + 7070: 41 0a 08 56 51 44 35 8d 56 44 44 41 0a 09 56 53 A..VQD5.VDDA..VS + 7080: 44 4c 8d 56 44 44 41 0a 0a 56 53 44 43 8d 56 44 DL.VDDA..VSDC.VD + 7090: 44 41 0a 0b 56 53 44 30 8d 56 44 44 41 0a 0c 56 DA..VSD0.VDDA..V + 70a0: 53 44 31 8d 56 44 44 41 0a 0d 56 53 44 32 8d 56 SD1.VDDA..VSD2.V + 70b0: 44 44 41 0a 0e 56 53 44 33 8d 56 44 44 41 0a 0f DDA..VSD3.VDDA.. + 70c0: 56 53 44 34 8d 56 44 44 41 0a 10 56 53 44 35 8d VSD4.VDDA..VSD5. + 70d0: 56 44 44 41 0a 11 4d 53 57 54 8d 56 44 44 41 0a VDDA..MSWT.VDDA. + 70e0: 12 56 57 53 54 5b 82 4b 97 56 49 44 5f 08 5f 41 .VWST[.K.VID_._A + 70f0: 44 52 0a 00 5b 80 56 50 43 47 02 0a 00 0b 00 01 DR..[.VPCG...... + 7100: 5b 81 1e 56 50 43 47 03 00 40 16 56 53 49 44 20 [..VPCG..@.VSID + 7110: 00 40 08 56 49 44 53 20 00 40 16 56 50 57 52 08 .@.VIDS .@.VPWR. + 7120: 08 5f 53 33 44 0a 03 08 44 47 4f 53 0a 00 14 45 ._S3D...DGOS...E + 7130: 04 5f 49 4e 49 00 5c 56 55 50 53 0a 02 70 5c 56 ._INI.\VUPS..p\V + 7140: 43 44 4c 56 51 44 4c 70 5c 56 43 44 43 56 51 44 CDLVQDLp\VCDCVQD + 7150: 43 70 5c 56 43 44 54 56 51 44 30 70 5c 56 43 44 Cp\VCDTVQD0p\VCD + 7160: 44 56 51 44 31 a0 0e 49 53 4f 50 5c 56 48 59 42 DVQD1..ISOP\VHYB + 7170: 0a 04 0a 01 14 4d 0c 5f 50 53 30 00 a0 49 0b 49 .....M._PS0..I.I + 7180: 53 4f 50 a0 4c 07 44 47 4f 53 5c 56 48 59 42 0a SOP.L.DGOS\VHYB. + 7190: 02 0a 00 5b 22 0a 64 5c 56 48 59 42 0a 00 0a 01 ...[".d\VHYB.... + 71a0: 5b 22 0a 0a 5c 56 48 59 42 0a 0a 0a 01 5b 22 0a ["..\VHYB....[". + 71b0: 64 5c 56 48 59 42 0a 02 0a 01 5b 22 0a 01 5c 56 d\VHYB....["..\V + 71c0: 48 59 42 0a 08 0a 01 70 0a 0a 60 70 0a 32 61 a2 HYB....p..`p.2a. + 71d0: 11 61 5b 22 60 a0 09 5c 4c 43 48 4b 0a 01 a5 76 .a["`..\LCHK...v + 71e0: 61 5c 56 48 59 42 0a 0a 0a 00 5c 56 48 59 42 0a a\VHYB....\VHYB. + 71f0: 04 0a 00 5c 53 57 54 54 0a 01 70 00 44 47 4f 53 ...\SWTT..p.DGOS + 7200: a1 17 a0 15 92 93 56 53 49 44 0c aa 17 f4 21 5c ......VSID....!\ + 7210: 56 48 59 42 0a 04 0a 00 5c 56 48 59 42 0a 09 5c VHYB....\VHYB..\ + 7220: 2f 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 49 /._SB_PCI0PEG_VI + 7230: 44 5f 48 44 41 53 a1 0b 70 0c aa 17 f3 21 56 49 D_HDAS..p....!VI + 7240: 44 53 14 07 5f 50 53 31 00 a3 14 07 5f 50 53 32 DS.._PS1...._PS2 + 7250: 00 a3 14 4b 08 5f 50 53 33 00 a0 43 08 49 53 4f ...K._PS3..C.ISO + 7260: 50 a0 4c 07 93 5c 2f 05 5f 53 42 5f 50 43 49 30 P.L..\/._SB_PCI0 + 7270: 50 45 47 5f 56 49 44 5f 4f 4d 50 52 0a 03 5c 53 PEG_VID_OMPR..\S + 7280: 57 54 54 0a 00 5c 56 48 59 42 0a 08 0a 00 70 0a WTT..\VHYB....p. + 7290: 0a 60 70 0a 32 61 a2 11 61 5b 22 60 a0 09 5c 4c .`p.2a..a["`..\L + 72a0: 43 48 4b 0a 00 a5 76 61 5c 56 48 59 42 0a 02 0a CHK...va\VHYB... + 72b0: 00 5b 22 0a 64 5c 56 48 59 42 0a 00 0a 00 70 01 .[".d\VHYB....p. + 72c0: 44 47 4f 53 70 0a 02 5c 2f 05 5f 53 42 5f 50 43 DGOSp..\/._SB_PC + 72d0: 49 30 50 45 47 5f 56 49 44 5f 4f 4d 50 52 14 09 I0PEG_VID_OMPR.. + 72e0: 5f 53 54 41 00 a4 0a 0f 14 4a 05 5f 44 53 4d 04 _STA.....J._DSM. + 72f0: a0 24 5c 43 4d 50 42 68 11 13 0a 10 f8 d8 86 a4 .$\CMPBh........ + 7300: da 0b 1b 47 a7 2b 60 42 a6 b5 be e0 a4 4e 56 4f ...G.+`B.....NVO + 7310: 50 68 69 6a 6b a0 24 5c 43 4d 50 42 68 11 13 0a Phijk.$\CMPBh... + 7320: 10 01 2d 13 a3 da 8c ba 49 a5 2e bc 9d 46 df 6b ..-.....I....F.k + 7330: 81 a4 4e 56 50 53 68 69 6a 6b a4 11 07 0a 04 01 ..NVPShijk...... + 7340: 00 00 80 08 5f 49 52 43 0a 00 5b 80 41 54 52 50 ...._IRC..[.ATRP + 7350: 00 5c 41 54 52 42 0c 00 00 01 00 5b 81 14 41 54 .\ATRB.....[..AT + 7360: 52 50 10 49 44 58 30 80 00 40 49 44 58 31 80 00 RP.IDX0..@IDX1.. + 7370: 40 14 4d 05 5f 52 4f 4d 0a a0 17 92 95 68 0b 00 @.M._ROM.....h.. + 7380: 80 a4 47 45 54 42 74 68 0b 00 80 00 69 49 44 58 ..GETBth....iIDX + 7390: 31 a0 32 94 72 68 69 00 0b 00 80 74 0b 00 80 68 1.2.rhi....t...h + 73a0: 60 74 69 60 61 70 47 45 54 42 68 60 49 44 58 30 `ti`apGETBh`IDX0 + 73b0: 63 70 47 45 54 42 0a 00 61 49 44 58 31 64 73 63 cpGETB..aIDX1dsc + 73c0: 64 65 a4 65 a4 47 45 54 42 68 69 49 44 58 30 14 de.e.GETBhiIDX0. + 73d0: 1e 47 45 54 42 0b 77 68 0a 08 60 77 69 0a 08 61 .GETB.wh..`wi..a + 73e0: 5b 13 6a 60 61 54 42 46 33 a4 54 42 46 33 14 30 [.j`aTBF3.TBF3.0 + 73f0: 56 53 57 54 00 a0 0f 5c 57 56 49 53 70 5c 56 45 VSWT...\WVISp\VE + 7400: 56 54 0a 07 60 a1 0a 70 5c 56 45 56 54 0a 05 60 VT..`..p\VEVT..` + 7410: 7b 0a ff 60 61 a0 09 61 41 53 57 54 61 0a 01 14 {..`a..aASWTa... + 7420: 44 05 56 4c 4f 43 01 a0 4c 04 93 68 5c 2f 03 5f D.VLOC..L..h\/._ + 7430: 53 42 5f 4c 49 44 5f 5f 4c 49 44 5c 56 53 4c 44 SB_LID__LID\VSLD + 7440: 68 a0 32 93 7b 56 50 57 52 0a 03 00 0a 00 a0 0b h.2.{VPWR....... + 7450: 68 70 5c 56 45 56 54 0a 01 60 a1 0a 70 5c 56 45 hp\VEVT..`..p\VE + 7460: 56 54 0a 02 60 7b 0a 0f 60 61 a0 09 61 41 53 57 VT..`{..`a..aASW + 7470: 54 61 0a 00 14 47 07 5f 44 4f 53 01 a0 3a 93 68 Ta...G._DOS..:.h + 7480: 0a 02 70 0a 14 60 a2 30 60 76 60 5b 23 4d 44 47 ..p..`.0`v`[#MDG + 7490: 53 ff ff a0 19 93 0a 00 4d 53 57 54 70 0a 01 4d S.......MSWTp..M + 74a0: 53 57 54 70 0a 00 60 70 68 56 44 45 45 5b 27 4d SWTp..`phVDEE['M + 74b0: 44 47 53 5b 22 0a c8 a1 34 5b 23 4d 44 47 53 ff DGS["...4[#MDGS. + 74c0: ff a0 0f 93 56 44 45 45 0a 02 70 0a 00 4d 53 57 ....VDEE..p..MSW + 74d0: 54 a0 0c 94 68 0a 02 70 0a 01 56 44 45 45 a1 07 T...h..p..VDEE.. + 74e0: 70 68 56 44 45 45 5b 27 4d 44 47 53 14 22 5f 44 phVDEE['MDGS."_D + 74f0: 4f 44 00 a4 12 1a 08 0b 00 01 0b 14 01 0b 11 01 OD.............. + 7500: 0b 15 01 0b 12 01 0b 16 01 0b 13 01 0b 10 01 14 ................ + 7510: 4f 12 41 53 57 54 02 a0 14 93 0a 01 56 44 45 45 O.ASWT......VDEE + 7520: 7b 0a 01 69 61 5c 56 53 44 53 68 61 a1 42 11 70 {..ia\VSDSha.B.p + 7530: 0a 14 60 a2 44 0f 60 76 60 5b 23 4d 44 47 53 ff ..`.D.`v`[#MDGS. + 7540: ff a0 4c 0d 93 0a 00 4d 53 57 54 70 0a 00 60 a0 ..L....MSWTp..`. + 7550: 0d 7b 0a 01 69 00 70 0a 01 56 55 50 43 a1 08 70 .{..i.p..VUPC..p + 7560: 0a 00 56 55 50 43 a0 0d 7b 0a 01 68 00 70 0a 01 ..VUPC..{..h.p.. + 7570: 56 51 44 4c a1 08 70 0a 00 56 51 44 4c a0 0d 7b VQDL..p..VQDL..{ + 7580: 0a 02 68 00 70 0a 01 56 51 44 43 a1 08 70 0a 00 ..h.p..VQDC..p.. + 7590: 56 51 44 43 a0 0d 7b 0a 04 68 00 70 0a 01 56 51 VQDC..{..h.p..VQ + 75a0: 44 30 a1 08 70 0a 00 56 51 44 30 a0 0d 7b 0a 08 D0..p..VQD0..{.. + 75b0: 68 00 70 0a 01 56 51 44 31 a1 08 70 0a 00 56 51 h.p..VQD1..p..VQ + 75c0: 44 31 a0 0d 7b 0a 10 68 00 70 0a 01 56 51 44 32 D1..{..h.p..VQD2 + 75d0: a1 08 70 0a 00 56 51 44 32 a0 0d 7b 0a 20 68 00 ..p..VQD2..{. h. + 75e0: 70 0a 01 56 51 44 33 a1 08 70 0a 00 56 51 44 33 p..VQD3..p..VQD3 + 75f0: a0 0d 7b 0a 40 68 00 70 0a 01 56 51 44 34 a1 08 ..{.@h.p..VQD4.. + 7600: 70 0a 00 56 51 44 34 a0 0d 7b 0a 80 68 00 70 0a p..VQD4..{..h.p. + 7610: 01 56 51 44 35 a1 08 70 0a 00 56 51 44 35 5b 27 .VQD5..p..VQD5[' + 7620: 4d 44 47 53 5b 22 0a c8 a0 0d 7b 0a 02 69 00 86 MDGS["....{..i.. + 7630: 56 49 44 5f 0a 81 a1 08 86 56 49 44 5f 0a 80 14 VID_.....VID_... + 7640: 35 56 44 53 57 01 a0 2e 93 56 50 57 52 0a 00 a0 5VDSW....VPWR... + 7650: 0b 68 70 5c 56 45 56 54 0a 03 60 a1 0a 70 5c 56 .hp\VEVT..`..p\V + 7660: 45 56 54 0a 04 60 7b 0a 0f 60 61 a0 09 61 41 53 EVT..`{..`a..aAS + 7670: 57 54 61 0a 00 5b 82 48 09 4c 43 44 30 14 0a 5f WTa..[.H.LCD0.._ + 7680: 41 44 52 00 a4 0b 10 01 14 1c 5f 44 43 53 00 5c ADR......._DCS.\ + 7690: 56 55 50 53 0a 00 a0 09 5c 56 43 44 4c a4 0a 1f VUPS....\VCDL... + 76a0: a1 04 a4 0a 1d 14 0b 5f 44 47 53 00 a4 56 51 44 ......._DGS..VQD + 76b0: 4c 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 44 4c L.0_DSS.{h..VSDL + 76c0: a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 0c 00 .!{h........{h.. + 76d0: 00 00 40 00 44 53 57 54 0a 02 a1 07 44 53 57 54 ..@.DSWT....DSWT + 76e0: 0a 01 14 2c 5f 44 44 43 01 a0 08 49 53 4f 50 a4 ...,_DDC...ISOP. + 76f0: 0a 00 a0 0b 93 68 0a 01 a4 5c 56 45 44 49 a1 0d .....h...\VEDI.. + 7700: a0 0b 93 68 0a 02 a4 5c 56 45 44 49 a4 0a 00 5b ...h...\VEDI...[ + 7710: 82 43 08 43 52 54 30 14 0a 5f 41 44 52 00 a4 0b .C.CRT0.._ADR... + 7720: 00 01 14 34 5f 44 43 53 00 5c 56 55 50 53 0a 01 ...4_DCS.\VUPS.. + 7730: a0 15 5c 56 43 53 53 a0 09 5c 56 43 44 43 a4 0a ..\VCSS..\VCDC.. + 7740: 1f a1 04 a4 0a 1d a1 10 a0 09 5c 56 43 44 43 a4 ..........\VCDC. + 7750: 0a 0f a1 04 a4 0a 0d 14 0b 5f 44 47 53 00 a4 56 ........._DGS..V + 7760: 51 44 43 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 QDC.0_DSS.{h..VS + 7770: 44 43 a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 DC.!{h........{h + 7780: 0c 00 00 00 40 00 44 53 57 54 0a 02 a1 07 44 53 ....@.DSWT....DS + 7790: 57 54 0a 01 5b 82 4b 06 44 56 49 30 14 0a 5f 41 WT..[.K.DVI0.._A + 77a0: 44 52 00 a4 0b 11 01 14 1c 5f 44 43 53 00 5c 56 DR......._DCS.\V + 77b0: 55 50 53 0a 00 a0 09 5c 56 43 44 44 a4 0a 1f a1 UPS....\VCDD.... + 77c0: 04 a4 0a 1d 14 0b 5f 44 47 53 00 a4 56 51 44 31 ......_DGS..VQD1 + 77d0: 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 44 31 a0 .0_DSS.{h..VSD1. + 77e0: 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 0c 00 00 !{h........{h... + 77f0: 00 40 00 44 53 57 54 0a 02 a1 07 44 53 57 54 0a .@.DSWT....DSWT. + 7800: 01 5b 82 4b 06 44 50 30 5f 14 0a 5f 41 44 52 00 .[.K.DP0_.._ADR. + 7810: a4 0b 14 01 14 1c 5f 44 43 53 00 5c 56 55 50 53 ......_DCS.\VUPS + 7820: 0a 00 a0 09 5c 56 43 44 54 a4 0a 1f a1 04 a4 0a ....\VCDT....... + 7830: 1d 14 0b 5f 44 47 53 00 a4 56 51 44 30 14 30 5f ..._DGS..VQD0.0_ + 7840: 44 53 53 01 7b 68 0a 01 56 53 44 30 a0 21 7b 68 DSS.{h..VSD0.!{h + 7850: 0c 00 00 00 80 00 a0 0f 7b 68 0c 00 00 00 40 00 ........{h....@. + 7860: 44 53 57 54 0a 02 a1 07 44 53 57 54 0a 01 5b 82 DSWT....DSWT..[. + 7870: 4b 06 44 56 49 31 14 0a 5f 41 44 52 00 a4 0b 12 K.DVI1.._ADR.... + 7880: 01 14 1c 5f 44 43 53 00 5c 56 55 50 53 0a 00 a0 ..._DCS.\VUPS... + 7890: 09 5c 56 43 44 44 a4 0a 1f a1 04 a4 0a 1d 14 0b .\VCDD.......... + 78a0: 5f 44 47 53 00 a4 56 51 44 33 14 30 5f 44 53 53 _DGS..VQD3.0_DSS + 78b0: 01 7b 68 0a 01 56 53 44 33 a0 21 7b 68 0c 00 00 .{h..VSD3.!{h... + 78c0: 00 80 00 a0 0f 7b 68 0c 00 00 00 40 00 44 53 57 .....{h....@.DSW + 78d0: 54 0a 02 a1 07 44 53 57 54 0a 01 5b 82 4b 06 44 T....DSWT..[.K.D + 78e0: 50 31 5f 14 0a 5f 41 44 52 00 a4 0b 15 01 14 1c P1_.._ADR....... + 78f0: 5f 44 43 53 00 5c 56 55 50 53 0a 00 a0 09 5c 56 _DCS.\VUPS....\V + 7900: 43 44 54 a4 0a 1f a1 04 a4 0a 1d 14 0b 5f 44 47 CDT.........._DG + 7910: 53 00 a4 56 51 44 32 14 30 5f 44 53 53 01 7b 68 S..VQD2.0_DSS.{h + 7920: 0a 01 56 53 44 32 a0 21 7b 68 0c 00 00 00 80 00 ..VSD2.!{h...... + 7930: a0 0f 7b 68 0c 00 00 00 40 00 44 53 57 54 0a 02 ..{h....@.DSWT.. + 7940: a1 07 44 53 57 54 0a 01 5b 82 4b 06 44 56 49 32 ..DSWT..[.K.DVI2 + 7950: 14 0a 5f 41 44 52 00 a4 0b 13 01 14 1c 5f 44 43 .._ADR......._DC + 7960: 53 00 5c 56 55 50 53 0a 00 a0 09 5c 56 43 44 44 S.\VUPS....\VCDD + 7970: a4 0a 1f a1 04 a4 0a 1d 14 0b 5f 44 47 53 00 a4 .........._DGS.. + 7980: 56 51 44 35 14 30 5f 44 53 53 01 7b 68 0a 01 56 VQD5.0_DSS.{h..V + 7990: 53 44 35 a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b SD5.!{h........{ + 79a0: 68 0c 00 00 00 40 00 44 53 57 54 0a 02 a1 07 44 h....@.DSWT....D + 79b0: 53 57 54 0a 01 5b 82 4b 06 44 50 32 5f 14 0a 5f SWT..[.K.DP2_.._ + 79c0: 41 44 52 00 a4 0b 16 01 14 1c 5f 44 43 53 00 5c ADR......._DCS.\ + 79d0: 56 55 50 53 0a 00 a0 09 5c 56 43 44 54 a4 0a 1f VUPS....\VCDT... + 79e0: a1 04 a4 0a 1d 14 0b 5f 44 47 53 00 a4 56 51 44 ......._DGS..VQD + 79f0: 34 14 30 5f 44 53 53 01 7b 68 0a 01 56 53 44 34 4.0_DSS.{h..VSD4 + 7a00: a0 21 7b 68 0c 00 00 00 80 00 a0 0f 7b 68 0c 00 .!{h........{h.. + 7a10: 00 00 40 00 44 53 57 54 0a 02 a1 07 44 53 57 54 ..@.DSWT....DSWT + 7a20: 0a 01 14 3f 44 53 57 54 01 a0 09 56 53 44 4c 70 ...?DSWT...VSDLp + 7a30: 0a 01 60 a1 05 70 0a 00 60 a0 0a 56 53 44 43 7d ..`..p..`..VSDC} + 7a40: 0a 02 60 60 a0 0a 56 53 44 30 7d 0a 08 60 60 a0 ..``..VSD0}..``. + 7a50: 0f 60 a0 0c 56 55 50 43 5c 56 53 44 53 60 68 a1 .`..VUPC\VSDS`h. + 7a60: 02 a3 5b 80 50 45 47 43 02 0a 00 0b 00 01 5b 81 ..[.PEGC......[. + 7a70: 18 50 45 47 43 03 00 40 76 47 4d 47 50 01 48 50 .PEGC..@vGMGP.HP + 7a80: 47 50 01 50 4d 47 50 01 5b 82 29 49 47 42 45 08 GP.PMGP.[.)IGBE. + 7a90: 5f 41 44 52 0c 00 00 19 00 08 5f 53 33 44 0a 03 _ADR......_S3D.. + 7aa0: 08 52 49 44 5f 0a 00 08 5f 50 52 57 12 06 02 0a .RID_..._PRW.... + 7ab0: 0d 0a 04 5b 82 48 13 45 58 50 31 08 5f 41 44 52 ...[.H.EXP1._ADR + 7ac0: 0c 00 00 1c 00 08 52 49 44 5f 0a 00 5b 80 50 45 ......RID_..[.PE + 7ad0: 43 53 02 0a 00 0b 00 01 5b 81 43 04 50 45 43 53 CS......[.C.PECS + 7ae0: 03 00 40 2d 00 03 50 44 43 5f 01 00 02 50 44 53 ..@-..PDC_...PDS + 7af0: 5f 01 00 01 00 38 50 53 5f 5f 01 50 50 5f 5f 01 _....8PS__.PP__. + 7b00: 00 46 3c 00 06 48 50 43 45 01 50 4d 43 45 01 00 .F<..HPCE.PMCE.. + 7b10: 18 00 06 48 50 43 53 01 50 4d 43 53 01 14 0f 5f ...HPCS.PMCS..._ + 7b20: 49 4e 49 00 70 50 44 53 5f 50 44 53 46 08 4c 50 INI.pPDS_PDSF.LP + 7b30: 52 54 12 43 05 04 12 13 04 0b ff ff 0a 00 5c 2e RT.C..........\. + 7b40: 5f 53 42 5f 4c 4e 4b 41 0a 00 12 13 04 0b ff ff _SB_LNKA........ + 7b50: 0a 01 5c 2e 5f 53 42 5f 4c 4e 4b 42 0a 00 12 13 ..\._SB_LNKB.... + 7b60: 04 0b ff ff 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 43 ......\._SB_LNKC + 7b70: 0a 00 12 13 04 0b ff ff 0a 03 5c 2e 5f 53 42 5f ..........\._SB_ + 7b80: 4c 4e 4b 44 0a 00 08 41 50 52 54 12 32 04 12 0b LNKD...APRT.2... + 7b90: 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ff ff ................ + 7ba0: 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 0a 00 ................ + 7bb0: 0a 12 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 14 19 ................ + 7bc0: 5f 50 52 54 00 a0 0b 5c 47 50 49 43 a4 41 50 52 _PRT...\GPIC.APR + 7bd0: 54 a1 06 a4 4c 50 52 54 08 50 44 53 46 0a 00 5b T...LPRT.PDSF..[ + 7be0: 82 0c 53 4c 4f 54 08 5f 41 44 52 0a 00 5b 82 46 ..SLOT._ADR..[.F + 7bf0: 0f 45 58 50 32 08 5f 41 44 52 0c 01 00 1c 00 08 .EXP2._ADR...... + 7c00: 52 49 44 5f 0a 00 5b 80 50 45 43 53 02 0a 00 0b RID_..[.PECS.... + 7c10: 00 01 5b 81 26 50 45 43 53 03 00 40 31 50 53 5f ..[.&PECS..@1PS_ + 7c20: 5f 01 50 50 5f 5f 01 00 46 3c 00 07 50 4d 43 45 _.PP__..F<..PMCE + 7c30: 01 00 18 00 07 50 4d 43 53 01 08 4c 50 52 54 12 .....PMCS..LPRT. + 7c40: 43 05 04 12 13 04 0b ff ff 0a 00 5c 2e 5f 53 42 C..........\._SB + 7c50: 5f 4c 4e 4b 42 0a 00 12 13 04 0b ff ff 0a 01 5c _LNKB..........\ + 7c60: 2e 5f 53 42 5f 4c 4e 4b 43 0a 00 12 13 04 0b ff ._SB_LNKC....... + 7c70: ff 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 44 0a 00 12 ...\._SB_LNKD... + 7c80: 13 04 0b ff ff 0a 03 5c 2e 5f 53 42 5f 4c 4e 4b .......\._SB_LNK + 7c90: 41 0a 00 08 41 50 52 54 12 32 04 12 0b 04 0b ff A...APRT.2...... + 7ca0: ff 0a 00 0a 00 0a 11 12 0b 04 0b ff ff 0a 01 0a ................ + 7cb0: 00 0a 12 12 0b 04 0b ff ff 0a 02 0a 00 0a 13 12 ................ + 7cc0: 0b 04 0b ff ff 0a 03 0a 00 0a 10 14 19 5f 50 52 ............._PR + 7cd0: 54 00 a0 0b 5c 47 50 49 43 a4 41 50 52 54 a1 06 T...\GPIC.APRT.. + 7ce0: a4 4c 50 52 54 5b 82 4e 14 45 58 50 33 08 5f 41 .LPRT[.N.EXP3._A + 7cf0: 44 52 0c 02 00 1c 00 08 52 49 44 5f 0a 00 5b 80 DR......RID_..[. + 7d00: 50 45 43 53 02 0a 00 0b 00 01 5b 81 43 04 50 45 PECS......[.C.PE + 7d10: 43 53 03 00 40 2d 00 03 50 44 43 5f 01 00 02 50 CS..@-..PDC_...P + 7d20: 44 53 5f 01 00 01 00 38 50 53 5f 5f 01 50 50 5f DS_....8PS__.PP_ + 7d30: 5f 01 00 46 3c 00 06 48 50 43 45 01 50 4d 43 45 _..F<..HPCE.PMCE + 7d40: 01 00 18 00 06 48 50 43 53 01 50 4d 43 53 01 14 .....HPCS.PMCS.. + 7d50: 0f 5f 49 4e 49 00 70 50 44 53 5f 50 44 53 46 08 ._INI.pPDS_PDSF. + 7d60: 5f 50 52 57 12 06 02 0a 09 0a 04 08 4c 50 52 54 _PRW........LPRT + 7d70: 12 43 05 04 12 13 04 0b ff ff 0a 00 5c 2e 5f 53 .C..........\._S + 7d80: 42 5f 4c 4e 4b 43 0a 00 12 13 04 0b ff ff 0a 01 B_LNKC.......... + 7d90: 5c 2e 5f 53 42 5f 4c 4e 4b 44 0a 00 12 13 04 0b \._SB_LNKD...... + 7da0: ff ff 0a 02 5c 2e 5f 53 42 5f 4c 4e 4b 41 0a 00 ....\._SB_LNKA.. + 7db0: 12 13 04 0b ff ff 0a 03 5c 2e 5f 53 42 5f 4c 4e ........\._SB_LN + 7dc0: 4b 42 0a 00 08 41 50 52 54 12 32 04 12 0b 04 0b KB...APRT.2..... + 7dd0: ff ff 0a 00 0a 00 0a 12 12 0b 04 0b ff ff 0a 01 ................ + 7de0: 0a 00 0a 13 12 0b 04 0b ff ff 0a 02 0a 00 0a 10 ................ + 7df0: 12 0b 04 0b ff ff 0a 03 0a 00 0a 11 14 19 5f 50 .............._P + 7e00: 52 54 00 a0 0b 5c 47 50 49 43 a4 41 50 52 54 a1 RT...\GPIC.APRT. + 7e10: 06 a4 4c 50 52 54 08 50 44 53 46 0a 00 5b 82 16 ..LPRT.PDSF..[.. + 7e20: 53 4c 4f 54 08 5f 41 44 52 0a 00 14 09 5f 52 4d SLOT._ADR...._RM + 7e30: 56 00 a4 0a 01 5b 82 1d 53 41 54 31 08 5f 41 44 V....[..SAT1._AD + 7e40: 52 0c 02 00 1f 00 08 5f 53 33 44 0a 03 08 52 49 R......_S3D...RI + 7e50: 44 5f 0a 00 5b 82 1d 53 41 54 32 08 5f 41 44 52 D_..[..SAT2._ADR + 7e60: 0c 05 00 1f 00 08 5f 53 33 44 0a 03 08 52 49 44 ......_S3D...RID + 7e70: 5f 0a 00 5b 82 1d 53 4d 42 55 08 5f 41 44 52 0c _..[..SMBU._ADR. + 7e80: 03 00 1f 00 08 5f 53 33 44 0a 03 08 52 49 44 5f ....._S3D...RID_ + 7e90: 0a 00 5b 82 40 69 58 48 43 49 08 5f 41 44 52 0c ..[.@iXHCI._ADR. + 7ea0: 00 00 14 00 08 5f 53 33 44 0a 03 08 52 49 44 5f ....._S3D...RID_ + 7eb0: 0a 00 5b 80 58 48 43 53 02 0a 00 0b 00 01 5b 81 ..[.XHCS......[. + 7ec0: 1d 58 48 43 53 03 00 40 68 50 52 32 5f 20 50 52 .XHCS..@hPR2_ PR + 7ed0: 32 4d 20 50 52 33 5f 20 50 52 33 4d 20 08 5f 50 2M PR3_ PR3M ._P + 7ee0: 52 30 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 R0...\/._SB_PCI0 + 7ef0: 4c 50 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 LPC_EC__PUBS._PR + 7f00: 31 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 1...\/._SB_PCI0L + 7f10: 50 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 32 PC_EC__PUBS._PR2 + 7f20: 12 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 ...\/._SB_PCI0LP + 7f30: 43 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 57 12 C_EC__PUBS._PRW. + 7f40: 1d 03 0a 0d 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 ......\/._SB_PCI + 7f50: 30 4c 50 43 5f 45 43 5f 5f 50 55 42 53 14 24 43 0LPC_EC__PUBS.$C + 7f60: 55 49 44 09 a0 1a 93 68 11 13 0a 10 a9 12 95 7c UID....h.......| + 7f70: 05 17 b4 4c af 7d 50 6a 24 23 ab 71 a4 0a 01 a4 ...L.}Pj$#.q.... + 7f80: 0a 00 14 48 05 50 4f 53 43 0b 8a 6a 0a 00 43 44 ...H.POSC..j..CD + 7f90: 57 31 a0 10 92 93 68 01 7d 43 44 57 31 0a 08 43 W1....h.}CDW1..C + 7fa0: 44 57 31 a0 14 93 5c 58 48 43 4d 0a 00 7d 43 44 DW1...\XHCM..}CD + 7fb0: 57 31 0a 02 43 44 57 31 a0 20 90 92 7b 43 44 57 W1..CDW1. ..{CDW + 7fc0: 31 0a 01 00 91 93 5c 58 48 43 4d 0a 02 93 5c 58 1.....\XHCM...\X + 7fd0: 48 43 4d 0a 03 53 58 48 43 a4 6a 14 49 08 53 58 HCM..SXHC.j.I.SX + 7fe0: 48 43 00 70 0a 00 60 7b 50 52 33 5f 0c f0 ff ff HC.p..`{PR3_.... + 7ff0: ff 60 7d 60 5c 58 48 50 4d 60 a0 1b 93 5c 2f 03 .`}`\XHPM`...\/. + 8000: 5f 53 42 5f 47 44 43 4b 47 47 49 44 0a 05 7b 60 _SB_GDCKGGID..{` + 8010: 0c fb ff ff ff 60 7b 60 50 52 33 4d 50 52 33 5f .....`{`PR3MPR3_ + 8020: 70 0a 00 60 7b 50 52 32 5f 0c f0 ff ff ff 60 7d p..`{PR2_.....`} + 8030: 60 5c 58 48 50 4d 60 a0 1b 93 5c 2f 03 5f 53 42 `\XHPM`...\/._SB + 8040: 5f 47 44 43 4b 47 47 49 44 0a 05 7b 60 0c fb ff _GDCKGGID..{`... + 8050: ff ff 60 7b 60 50 52 32 4d 50 52 32 5f 70 0a 01 ..`{`PR2MPR2_p.. + 8060: 5c 55 53 42 52 5b 82 4d 4b 55 52 54 48 08 5f 41 \USBR[.MKURTH._A + 8070: 44 52 0a 00 5b 82 49 08 48 53 50 30 08 5f 41 44 DR..[.I.HSP0._AD + 8080: 52 0a 01 14 3b 5f 55 50 43 08 08 55 50 43 50 12 R...;_UPC..UPCP. + 8090: 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 30 ...........\UPC0 + 80a0: 55 50 43 50 a0 15 92 7b 50 52 32 5f 0a 01 00 70 UPCP...{PR2_...p + 80b0: 0a 00 88 55 50 43 50 0a 00 00 a4 55 50 43 50 14 ...UPCP....UPCP. + 80c0: 3f 5f 50 4c 44 08 08 50 4c 44 50 11 03 0a 10 70 ?_PLD..PLDP....p + 80d0: 5c 50 4c 44 30 50 4c 44 50 8d 50 4c 44 50 0a 40 \PLD0PLDP.PLDP.@ + 80e0: 56 49 53 5f a0 15 92 7b 50 52 32 5f 0a 01 00 7b VIS_...{PR2_...{ + 80f0: 56 49 53 5f 0a 00 56 49 53 5f a4 50 4c 44 50 5b VIS_..VIS_.PLDP[ + 8100: 82 49 08 48 53 50 31 08 5f 41 44 52 0a 02 14 3b .I.HSP1._ADR...; + 8110: 5f 55 50 43 08 08 55 50 43 50 12 0a 04 0a 00 0a _UPC..UPCP...... + 8120: 00 0a 00 0a 00 9d 5c 55 50 43 31 55 50 43 50 a0 ......\UPC1UPCP. + 8130: 15 92 7b 50 52 32 5f 0a 02 00 70 0a 00 88 55 50 ..{PR2_...p...UP + 8140: 43 50 0a 00 00 a4 55 50 43 50 14 3f 5f 50 4c 44 CP....UPCP.?_PLD + 8150: 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 4c 44 31 ..PLDP....p\PLD1 + 8160: 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 53 5f a0 PLDP.PLDP.@VIS_. + 8170: 15 92 7b 50 52 32 5f 0a 02 00 7b 56 49 53 5f 0a ..{PR2_...{VIS_. + 8180: 00 56 49 53 5f a4 50 4c 44 50 5b 82 49 08 48 53 .VIS_.PLDP[.I.HS + 8190: 50 32 08 5f 41 44 52 0a 03 14 3b 5f 55 50 43 08 P2._ADR...;_UPC. + 81a0: 08 55 50 43 50 12 0a 04 0a 00 0a 00 0a 00 0a 00 .UPCP........... + 81b0: 9d 5c 55 50 43 32 55 50 43 50 a0 15 92 7b 50 52 .\UPC2UPCP...{PR + 81c0: 32 5f 0a 04 00 70 0a 00 88 55 50 43 50 0a 00 00 2_...p...UPCP... + 81d0: a4 55 50 43 50 14 3f 5f 50 4c 44 08 08 50 4c 44 .UPCP.?_PLD..PLD + 81e0: 50 11 03 0a 10 70 5c 50 4c 44 32 50 4c 44 50 8d P....p\PLD2PLDP. + 81f0: 50 4c 44 50 0a 40 56 49 53 5f a0 15 92 7b 50 52 PLDP.@VIS_...{PR + 8200: 32 5f 0a 04 00 7b 56 49 53 5f 0a 00 56 49 53 5f 2_...{VIS_..VIS_ + 8210: a4 50 4c 44 50 5b 82 49 08 48 53 50 33 08 5f 41 .PLDP[.I.HSP3._A + 8220: 44 52 0a 04 14 3b 5f 55 50 43 08 08 55 50 43 50 DR...;_UPC..UPCP + 8230: 12 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 ............\UPC + 8240: 33 55 50 43 50 a0 15 92 7b 50 52 32 5f 0a 08 00 3UPCP...{PR2_... + 8250: 70 0a 00 88 55 50 43 50 0a 00 00 a4 55 50 43 50 p...UPCP....UPCP + 8260: 14 3f 5f 50 4c 44 08 08 50 4c 44 50 11 03 0a 10 .?_PLD..PLDP.... + 8270: 70 5c 50 4c 44 33 50 4c 44 50 8d 50 4c 44 50 0a p\PLD3PLDP.PLDP. + 8280: 40 56 49 53 5f a0 15 92 7b 50 52 32 5f 0a 08 00 @VIS_...{PR2_... + 8290: 7b 56 49 53 5f 0a 00 56 49 53 5f a4 50 4c 44 50 {VIS_..VIS_.PLDP + 82a0: 5b 82 4f 09 53 53 50 30 08 5f 41 44 52 0a 05 14 [.O.SSP0._ADR... + 82b0: 46 04 5f 55 50 43 08 08 55 50 43 50 12 0a 04 0a F._UPC..UPCP.... + 82c0: 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 30 55 50 43 ........\UPC0UPC + 82d0: 50 a0 1f 91 92 7b 50 52 32 5f 0a 01 00 92 7b 50 P....{PR2_....{P + 82e0: 52 33 5f 0a 01 00 70 0a 00 88 55 50 43 50 0a 00 R3_...p...UPCP.. + 82f0: 00 a4 55 50 43 50 14 4a 04 5f 50 4c 44 08 08 50 ..UPCP.J._PLD..P + 8300: 4c 44 50 11 03 0a 10 70 5c 50 4c 44 30 50 4c 44 LDP....p\PLD0PLD + 8310: 50 8d 50 4c 44 50 0a 40 56 49 53 5f a0 1f 91 92 P.PLDP.@VIS_.... + 8320: 7b 50 52 32 5f 0a 01 00 92 7b 50 52 33 5f 0a 01 {PR2_....{PR3_.. + 8330: 00 7b 56 49 53 5f 0a 00 56 49 53 5f a4 50 4c 44 .{VIS_..VIS_.PLD + 8340: 50 5b 82 4f 09 53 53 50 31 08 5f 41 44 52 0a 06 P[.O.SSP1._ADR.. + 8350: 14 46 04 5f 55 50 43 08 08 55 50 43 50 12 0a 04 .F._UPC..UPCP... + 8360: 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 31 55 50 .........\UPC1UP + 8370: 43 50 a0 1f 91 92 7b 50 52 32 5f 0a 02 00 92 7b CP....{PR2_....{ + 8380: 50 52 33 5f 0a 02 00 70 0a 00 88 55 50 43 50 0a PR3_...p...UPCP. + 8390: 00 00 a4 55 50 43 50 14 4a 04 5f 50 4c 44 08 08 ...UPCP.J._PLD.. + 83a0: 50 4c 44 50 11 03 0a 10 70 5c 50 4c 44 31 50 4c PLDP....p\PLD1PL + 83b0: 44 50 8d 50 4c 44 50 0a 40 56 49 53 5f a0 1f 91 DP.PLDP.@VIS_... + 83c0: 92 7b 50 52 32 5f 0a 02 00 92 7b 50 52 33 5f 0a .{PR2_....{PR3_. + 83d0: 02 00 7b 56 49 53 5f 0a 00 56 49 53 5f a4 50 4c ..{VIS_..VIS_.PL + 83e0: 44 50 5b 82 4f 09 53 53 50 32 08 5f 41 44 52 0a DP[.O.SSP2._ADR. + 83f0: 07 14 46 04 5f 55 50 43 08 08 55 50 43 50 12 0a ..F._UPC..UPCP.. + 8400: 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 32 55 ..........\UPC2U + 8410: 50 43 50 a0 1f 91 92 7b 50 52 32 5f 0a 04 00 92 PCP....{PR2_.... + 8420: 7b 50 52 33 5f 0a 04 00 70 0a 00 88 55 50 43 50 {PR3_...p...UPCP + 8430: 0a 00 00 a4 55 50 43 50 14 4a 04 5f 50 4c 44 08 ....UPCP.J._PLD. + 8440: 08 50 4c 44 50 11 03 0a 10 70 5c 50 4c 44 32 50 .PLDP....p\PLD2P + 8450: 4c 44 50 8d 50 4c 44 50 0a 40 56 49 53 5f a0 1f LDP.PLDP.@VIS_.. + 8460: 91 92 7b 50 52 32 5f 0a 04 00 92 7b 50 52 33 5f ..{PR2_....{PR3_ + 8470: 0a 04 00 7b 56 49 53 5f 0a 00 56 49 53 5f a4 50 ...{VIS_..VIS_.P + 8480: 4c 44 50 5b 82 4f 09 53 53 50 33 08 5f 41 44 52 LDP[.O.SSP3._ADR + 8490: 0a 08 14 46 04 5f 55 50 43 08 08 55 50 43 50 12 ...F._UPC..UPCP. + 84a0: 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 33 ...........\UPC3 + 84b0: 55 50 43 50 a0 1f 91 92 7b 50 52 32 5f 0a 08 00 UPCP....{PR2_... + 84c0: 92 7b 50 52 33 5f 0a 08 00 70 0a 00 88 55 50 43 .{PR3_...p...UPC + 84d0: 50 0a 00 00 a4 55 50 43 50 14 4a 04 5f 50 4c 44 P....UPCP.J._PLD + 84e0: 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 4c 44 33 ..PLDP....p\PLD3 + 84f0: 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 53 5f a0 PLDP.PLDP.@VIS_. + 8500: 1f 91 92 7b 50 52 32 5f 0a 08 00 92 7b 50 52 33 ...{PR2_....{PR3 + 8510: 5f 0a 08 00 7b 56 49 53 5f 0a 00 56 49 53 5f a4 _...{VIS_..VIS_. + 8520: 50 4c 44 50 5b 82 41 4d 45 48 43 31 08 5f 41 44 PLDP[.AMEHC1._AD + 8530: 52 0c 00 00 1d 00 08 5f 53 33 44 0a 03 08 52 49 R......_S3D...RI + 8540: 44 5f 0a 00 5b 80 45 48 43 53 02 0a 00 0b 00 01 D_..[.EHCS...... + 8550: 5b 81 15 45 48 43 53 03 00 40 31 50 57 4b 49 01 [..EHCS..@1PWKI. + 8560: 50 57 55 43 08 00 07 08 5f 50 52 30 12 19 01 5c PWUC...._PR0...\ + 8570: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 8580: 5f 5f 50 55 42 53 08 5f 50 52 31 12 19 01 5c 2f __PUBS._PR1...\/ + 8590: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 85a0: 5f 50 55 42 53 08 5f 50 52 32 12 19 01 5c 2f 05 _PUBS._PR2...\/. + 85b0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 85c0: 50 55 42 53 14 14 5f 49 4e 49 00 70 0a 01 50 57 PUBS.._INI.p..PW + 85d0: 4b 49 70 0a 23 50 57 55 43 08 5f 50 52 57 12 1d KIp.#PWUC._PRW.. + 85e0: 03 0a 0d 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 30 .....\/._SB_PCI0 + 85f0: 4c 50 43 5f 45 43 5f 5f 50 55 42 53 5b 82 49 3f LPC_EC__PUBS[.I? + 8600: 55 52 54 48 08 5f 41 44 52 0a 00 5b 82 4a 3e 55 URTH._ADR..[.J>U + 8610: 52 4d 48 08 5f 41 44 52 0a 01 14 0c 5f 55 50 43 RMH._ADR...._UPC + 8620: 08 a4 5c 55 50 43 49 14 0c 5f 50 4c 44 08 a4 5c ..\UPCI.._PLD..\ + 8630: 50 4c 44 49 5b 82 4f 0b 50 52 54 30 08 5f 41 44 PLDI[.O.PRT0._AD + 8640: 52 0a 01 14 46 05 5f 55 50 43 08 08 55 50 43 50 R...F._UPC..UPCP + 8650: 12 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 43 ............\UPC + 8660: 30 55 50 43 50 a0 09 93 5c 58 48 43 4d 0a 00 a1 0UPCP...\XHCM... + 8670: 25 a0 23 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 58 %.#{\/._SB_PCI0X + 8680: 48 43 49 50 52 32 5f 0a 01 00 70 0a 00 88 55 50 HCIPR2_...p...UP + 8690: 43 50 0a 00 00 a4 55 50 43 50 14 4a 05 5f 50 4c CP....UPCP.J._PL + 86a0: 44 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 4c 44 D..PLDP....p\PLD + 86b0: 30 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 53 5f 0PLDP.PLDP.@VIS_ + 86c0: a0 09 93 5c 58 48 43 4d 0a 00 a1 2a a0 23 7b 5c ...\XHCM...*.#{\ + 86d0: 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 52 /._SB_PCI0XHCIPR + 86e0: 32 5f 0a 01 00 7b 56 49 53 5f 0a 00 56 49 53 5f 2_...{VIS_..VIS_ + 86f0: a4 50 4c 44 50 5b 82 4f 0b 50 52 54 31 08 5f 41 .PLDP[.O.PRT1._A + 8700: 44 52 0a 02 14 46 05 5f 55 50 43 08 08 55 50 43 DR...F._UPC..UPC + 8710: 50 12 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 50 P............\UP + 8720: 43 31 55 50 43 50 a0 09 93 5c 58 48 43 4d 0a 00 C1UPCP...\XHCM.. + 8730: a1 25 a0 23 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 .%.#{\/._SB_PCI0 + 8740: 58 48 43 49 50 52 32 5f 0a 02 00 70 0a 00 88 55 XHCIPR2_...p...U + 8750: 50 43 50 0a 00 00 a4 55 50 43 50 14 4a 05 5f 50 PCP....UPCP.J._P + 8760: 4c 44 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 4c LD..PLDP....p\PL + 8770: 44 31 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 53 D1PLDP.PLDP.@VIS + 8780: 5f a0 09 93 5c 58 48 43 4d 0a 00 a1 25 a0 23 7b _...\XHCM...%.#{ + 8790: 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 \/._SB_PCI0XHCIP + 87a0: 52 32 5f 0a 02 00 7b 56 49 53 5f 0a 00 56 49 53 R2_...{VIS_..VIS + 87b0: 5f a4 50 4c 44 50 5b 82 4e 0d 50 52 54 32 08 5f _.PLDP[.N.PRT2._ + 87c0: 41 44 52 0a 03 14 46 05 5f 55 50 43 08 08 55 50 ADR...F._UPC..UP + 87d0: 43 50 12 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 CP............\U + 87e0: 50 43 32 55 50 43 50 a0 09 93 5c 58 48 43 4d 0a PC2UPCP...\XHCM. + 87f0: 00 a1 25 a0 23 7b 5c 2f 04 5f 53 42 5f 50 43 49 ..%.#{\/._SB_PCI + 8800: 30 58 48 43 49 50 52 32 5f 0a 04 00 70 0a 00 88 0XHCIPR2_...p... + 8810: 55 50 43 50 0a 00 00 a4 55 50 43 50 14 49 07 5f UPCP....UPCP.I._ + 8820: 50 4c 44 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 PLD..PLDP....p\P + 8830: 4c 44 32 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 LD2PLDP.PLDP.@VI + 8840: 53 5f a0 09 93 5c 58 48 43 4d 0a 00 a1 25 a0 23 S_...\XHCM...%.# + 8850: 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 {\/._SB_PCI0XHCI + 8860: 50 52 32 5f 0a 04 00 7b 56 49 53 5f 0a 00 56 49 PR2_...{VIS_..VI + 8870: 53 5f a0 1e 93 5c 2f 03 5f 53 42 5f 47 44 43 4b S_...\/._SB_GDCK + 8880: 47 47 49 44 0a 05 7b 56 49 53 5f 0a 00 56 49 53 GGID..{VIS_..VIS + 8890: 5f a4 50 4c 44 50 5b 82 4f 0b 50 52 54 33 08 5f _.PLDP[.O.PRT3._ + 88a0: 41 44 52 0a 04 14 46 05 5f 55 50 43 08 08 55 50 ADR...F._UPC..UP + 88b0: 43 50 12 0a 04 0a 00 0a 00 0a 00 0a 00 9d 5c 55 CP............\U + 88c0: 50 43 33 55 50 43 50 a0 09 93 5c 58 48 43 4d 0a PC3UPCP...\XHCM. + 88d0: 00 a1 25 a0 23 7b 5c 2f 04 5f 53 42 5f 50 43 49 ..%.#{\/._SB_PCI + 88e0: 30 58 48 43 49 50 52 32 5f 0a 08 00 70 0a 00 88 0XHCIPR2_...p... + 88f0: 55 50 43 50 0a 00 00 a4 55 50 43 50 14 4a 05 5f UPCP....UPCP.J._ + 8900: 50 4c 44 08 08 50 4c 44 50 11 03 0a 10 70 5c 50 PLD..PLDP....p\P + 8910: 4c 44 33 50 4c 44 50 8d 50 4c 44 50 0a 40 56 49 LD3PLDP.PLDP.@VI + 8920: 53 5f a0 09 93 5c 58 48 43 4d 0a 00 a1 25 a0 23 S_...\XHCM...%.# + 8930: 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 {\/._SB_PCI0XHCI + 8940: 50 52 32 5f 0a 08 00 7b 56 49 53 5f 0a 00 56 49 PR2_...{VIS_..VI + 8950: 53 5f a4 50 4c 44 50 5b 82 26 50 52 54 34 08 5f S_.PLDP[.&PRT4._ + 8960: 41 44 52 0a 05 14 0c 5f 55 50 43 08 a4 5c 55 50 ADR...._UPC..\UP + 8970: 43 34 14 0c 5f 50 4c 44 08 a4 5c 50 4c 44 34 5b C4.._PLD..\PLD4[ + 8980: 82 26 50 52 54 35 08 5f 41 44 52 0a 06 14 0c 5f .&PRT5._ADR...._ + 8990: 55 50 43 08 a4 5c 55 50 43 35 14 0c 5f 50 4c 44 UPC..\UPC5.._PLD + 89a0: 08 a4 5c 50 4c 44 35 5b 82 26 50 52 54 36 08 5f ..\PLD5[.&PRT6._ + 89b0: 41 44 52 0a 07 14 0c 5f 55 50 43 08 a4 5c 55 50 ADR...._UPC..\UP + 89c0: 43 36 14 0c 5f 50 4c 44 08 a4 5c 50 4c 44 36 5b C6.._PLD..\PLD6[ + 89d0: 82 26 50 52 54 37 08 5f 41 44 52 0a 08 14 0c 5f .&PRT7._ADR...._ + 89e0: 55 50 43 08 a4 5c 55 50 43 37 14 0c 5f 50 4c 44 UPC..\UPC7.._PLD + 89f0: 08 a4 5c 50 4c 44 37 5b 82 4e 1f 45 48 43 32 08 ..\PLD7[.N.EHC2. + 8a00: 5f 41 44 52 0c 00 00 1a 00 08 5f 53 33 44 0a 03 _ADR......_S3D.. + 8a10: 08 52 49 44 5f 0a 00 5b 80 45 48 43 53 02 0a 00 .RID_..[.EHCS... + 8a20: 0b 00 01 5b 81 15 45 48 43 53 03 00 40 31 50 57 ...[..EHCS..@1PW + 8a30: 4b 49 01 50 57 55 43 06 00 09 08 5f 50 52 30 12 KI.PWUC...._PR0. + 8a40: 19 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 8a50: 5f 45 43 5f 5f 50 55 42 53 08 5f 50 52 31 12 19 _EC__PUBS._PR1.. + 8a60: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 8a70: 45 43 5f 5f 50 55 42 53 08 5f 50 52 32 12 19 01 EC__PUBS._PR2... + 8a80: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 8a90: 43 5f 5f 50 55 42 53 14 14 5f 49 4e 49 00 70 0a C__PUBS.._INI.p. + 8aa0: 01 50 57 4b 49 70 0a 13 50 57 55 43 08 5f 50 52 .PWKIp..PWUC._PR + 8ab0: 57 12 1d 03 0a 0d 0a 03 5c 2f 05 5f 53 42 5f 50 W.......\/._SB_P + 8ac0: 43 49 30 4c 50 43 5f 45 43 5f 5f 50 55 42 53 5b CI0LPC_EC__PUBS[ + 8ad0: 82 46 12 55 52 54 48 08 5f 41 44 52 0a 00 5b 82 .F.URTH._ADR..[. + 8ae0: 47 11 55 52 4d 48 08 5f 41 44 52 0a 01 14 0c 5f G.URMH._ADR...._ + 8af0: 55 50 43 08 a4 5c 55 50 43 49 14 0c 5f 50 4c 44 UPC..\UPCI.._PLD + 8b00: 08 a4 5c 50 4c 44 49 5b 82 26 50 52 54 38 08 5f ..\PLDI[.&PRT8._ + 8b10: 41 44 52 0a 01 14 0c 5f 55 50 43 08 a4 5c 55 50 ADR...._UPC..\UP + 8b20: 43 49 14 0c 5f 50 4c 44 08 a4 5c 50 4c 44 49 5b CI.._PLD..\PLDI[ + 8b30: 82 26 50 52 54 39 08 5f 41 44 52 0a 02 14 0c 5f .&PRT9._ADR...._ + 8b40: 55 50 43 08 a4 5c 55 50 43 39 14 0c 5f 50 4c 44 UPC..\UPC9.._PLD + 8b50: 08 a4 5c 50 4c 44 39 5b 82 26 50 52 54 41 08 5f ..\PLD9[.&PRTA._ + 8b60: 41 44 52 0a 03 14 0c 5f 55 50 43 08 a4 5c 55 50 ADR...._UPC..\UP + 8b70: 43 49 14 0c 5f 50 4c 44 08 a4 5c 50 4c 44 49 5b CI.._PLD..\PLDI[ + 8b80: 82 26 50 52 54 42 08 5f 41 44 52 0a 04 14 0c 5f .&PRTB._ADR...._ + 8b90: 55 50 43 08 a4 5c 55 50 43 49 14 0c 5f 50 4c 44 UPC..\UPCI.._PLD + 8ba0: 08 a4 5c 50 4c 44 49 5b 82 26 50 52 54 43 08 5f ..\PLDI[.&PRTC._ + 8bb0: 41 44 52 0a 05 14 0c 5f 55 50 43 08 a4 5c 55 50 ADR...._UPC..\UP + 8bc0: 43 49 14 0c 5f 50 4c 44 08 a4 5c 50 4c 44 49 5b CI.._PLD..\PLDI[ + 8bd0: 82 26 50 52 54 44 08 5f 41 44 52 0a 06 14 0c 5f .&PRTD._ADR...._ + 8be0: 55 50 43 08 a4 5c 55 50 43 49 14 0c 5f 50 4c 44 UPC..\UPCI.._PLD + 8bf0: 08 a4 5c 50 4c 44 49 5b 82 31 48 44 45 46 08 5f ..\PLDI[.1HDEF._ + 8c00: 41 44 52 0c 00 00 1b 00 08 5f 53 33 44 0a 03 08 ADR......_S3D... + 8c10: 52 49 44 5f 0a 00 08 5f 50 52 57 12 06 02 0a 0d RID_..._PRW..... + 8c20: 0a 04 14 07 5f 50 53 57 01 a3 10 47 66 5c 2f 04 ...._PSW...Gf\/. + 8c30: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 8c40: 08 42 44 45 56 0a ff 08 42 53 54 53 0a 00 08 42 .BDEV...BSTS...B + 8c50: 48 4b 45 0a 00 14 22 5f 51 32 43 00 a0 1b 93 42 HKE..."_Q2C....B + 8c60: 53 54 53 0a 00 70 42 47 49 44 0a 00 42 44 45 56 STS..pBGID..BDEV + 8c70: 4e 42 52 45 42 44 45 56 14 19 5f 51 32 44 00 70 NBREBDEV.._Q2D.p + 8c80: 42 47 49 44 0a 00 42 44 45 56 4e 42 49 4e 42 44 BGID..BDEVNBINBD + 8c90: 45 56 14 44 08 5f 51 33 38 00 70 42 47 49 44 0a EV.D._Q38.pBGID. + 8ca0: 00 60 a0 4f 05 93 60 0a 0f 42 44 49 53 5c 42 48 .`.O..`..BDIS\BH + 8cb0: 44 50 0a 01 0a 00 4e 42 45 4a 42 44 45 56 70 60 DP....NBEJBDEVp` + 8cc0: 42 44 45 56 a0 3d 93 5c 42 49 44 45 0a 03 70 0a BDEV.=.\BIDE..p. + 8cd0: 00 5c 2f 05 5f 53 42 5f 50 43 49 30 53 41 54 31 .\/._SB_PCI0SAT1 + 8ce0: 50 52 49 4d 47 54 4d 45 70 0a 00 5c 2f 05 5f 53 PRIMGTMEp..\/._S + 8cf0: 42 5f 50 43 49 30 53 41 54 31 53 43 4e 44 47 54 B_PCI0SAT1SCNDGT + 8d00: 4d 45 a1 14 a0 05 48 50 42 55 a1 0c 70 60 42 44 ME....HPBU..p`BD + 8d10: 45 56 4e 42 49 4e 60 08 4f 44 45 4a 0a 00 14 4c EVNBIN`.ODEJ...L + 8d20: 05 5f 51 34 34 00 a0 44 05 5c 2f 04 5f 53 42 5f ._Q44..D.\/._SB_ + 8d30: 50 43 49 30 4c 50 43 5f 43 53 4f 4e 70 0a 01 4f PCI0LPC_CSONp..O + 8d40: 44 45 4a 70 42 47 49 44 0a 00 42 44 45 56 4e 42 DEJpBGID..BDEVNB + 8d50: 49 4e 42 44 45 56 70 0a 00 4f 44 45 4a 5c 2f 06 INBDEVp..ODEJ\/. + 8d60: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 8d70: 48 4b 45 59 4d 48 4b 51 0b 06 30 14 4a 04 4e 42 HKEYMHKQ..0.J.NB + 8d80: 52 45 01 a0 42 04 95 68 0a 0c a0 23 93 5c 42 49 RE..B..h...#.\BI + 8d90: 44 45 0a 03 86 5c 2f 05 5f 53 42 5f 50 43 49 30 DE...\/._SB_PCI0 + 8da0: 53 41 54 31 53 43 4e 44 4d 53 54 52 0a 03 a1 17 SAT1SCNDMSTR.... + 8db0: 86 5c 2f 04 5f 53 42 5f 50 43 49 30 53 41 54 31 .\/._SB_PCI0SAT1 + 8dc0: 50 52 54 31 0a 03 14 41 06 4e 42 45 4a 01 a0 4c PRT1...A.NBEJ..L + 8dd0: 04 93 42 53 54 53 0a 00 a0 42 04 95 68 0a 0c a0 ..BSTS...B..h... + 8de0: 23 93 5c 42 49 44 45 0a 03 86 5c 2f 05 5f 53 42 #.\BIDE...\/._SB + 8df0: 5f 50 43 49 30 53 41 54 31 53 43 4e 44 4d 53 54 _PCI0SAT1SCNDMST + 8e00: 52 0a 01 a1 17 86 5c 2f 04 5f 53 42 5f 50 43 49 R.....\/._SB_PCI + 8e10: 30 53 41 54 31 50 52 54 31 0a 01 42 45 45 50 0a 0SAT1PRT1..BEEP. + 8e20: 00 70 0a 00 42 53 54 53 14 4d 05 4e 42 49 4e 01 .p..BSTS.M.NBIN. + 8e30: a0 48 04 95 68 0a 0c 42 45 4e 5f 0a 01 a0 23 93 .H..h..BEN_...#. + 8e40: 5c 42 49 44 45 0a 03 86 5c 2f 05 5f 53 42 5f 50 \BIDE...\/._SB_P + 8e50: 43 49 30 53 41 54 31 53 43 4e 44 4d 53 54 52 0a CI0SAT1SCNDMSTR. + 8e60: 01 a1 17 86 5c 2f 04 5f 53 42 5f 50 43 49 30 53 ....\/._SB_PCI0S + 8e70: 41 54 31 50 52 54 31 0a 01 42 45 45 50 0a 00 70 AT1PRT1..BEEP..p + 8e80: 0a 00 42 53 54 53 14 4c 04 42 53 43 4e 00 a0 44 ..BSTS.L.BSCN..D + 8e90: 04 92 48 50 42 55 70 42 47 49 44 0a 00 60 70 60 ..HPBUpBGID..`p` + 8ea0: 42 44 45 56 a0 21 95 60 0a 0c a0 0b 93 60 0a 06 BDEV.!.`.....`.. + 8eb0: 42 45 4e 5f 0a 02 a1 07 42 45 4e 5f 0a 01 4c 45 BEN_....BEN_..LE + 8ec0: 44 5f 0a 04 0a 80 42 45 45 50 0a 00 70 0a 00 42 D_....BEEP..p..B + 8ed0: 53 54 53 14 43 05 42 45 4a 30 01 a0 42 04 68 42 STS.C.BEJ0..B.hB + 8ee0: 44 49 53 5c 42 48 44 50 0a 01 0a 00 70 0a 01 42 DIS\BHDP....p..B + 8ef0: 53 54 53 a0 2a 42 48 4b 45 70 0a 00 42 48 4b 45 STS.*BHKEp..BHKE + 8f00: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 8f10: 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 03 30 a1 08 C__HKEYMHKQ..0.. + 8f20: 70 0a 00 42 53 54 53 14 1d 42 45 4a 33 01 a0 0d p..BSTS..BEJ3... + 8f30: 68 42 44 49 53 70 0a 01 42 53 54 53 a1 08 70 0a hBDISp..BSTS..p. + 8f40: 00 42 53 54 53 14 32 42 50 54 53 01 70 0a 01 48 .BSTS.2BPTS.p..H + 8f50: 44 42 4d a0 17 92 93 42 53 54 53 0a 00 70 0a 0f DBM....BSTS..p.. + 8f60: 42 44 45 56 70 0a 00 42 53 54 53 70 0a 00 42 48 BDEVp..BSTSp..BH + 8f70: 4b 45 42 55 57 4b 0a 00 14 41 08 42 57 41 4b 01 KEBUWK...A.BWAK. + 8f80: 42 55 57 4b 0a 00 70 42 47 49 44 0a 00 60 a0 42 BUWK..pBGID..`.B + 8f90: 05 93 42 53 54 53 0a 00 a0 1b 92 93 60 42 44 45 ..BSTS......`BDE + 8fa0: 56 4e 42 45 4a 42 44 45 56 70 60 42 44 45 56 4e VNBEJBDEVp`BDEVN + 8fb0: 42 49 4e 60 a1 2c a0 2a 91 5c 4c 46 44 43 92 93 BIN`.,.*.\LFDC.. + 8fc0: 42 44 45 56 0a 0d a0 1a 92 93 60 0a 0f a0 13 48 BDEV......`....H + 8fd0: 50 42 55 a0 06 92 94 68 0a 02 a1 06 4e 42 52 45 PBU....h....NBRE + 8fe0: 60 a0 0f 95 42 44 45 56 0a 0c 5c 55 42 49 53 0a `...BDEV..\UBIS. + 8ff0: 00 a1 08 5c 55 42 49 53 0a 01 14 49 05 42 44 49 ...\UBIS...I.BDI + 9000: 53 00 a0 41 05 92 5c 2f 04 5f 53 42 5f 50 43 49 S..A..\/._SB_PCI + 9010: 30 4c 50 43 5f 43 53 4f 4e a0 1c 92 5c 2f 04 5f 0LPC_CSON...\/._ + 9020: 53 42 5f 50 43 49 30 4c 50 43 5f 47 4c 49 53 5c SB_PCI0LPC_GLIS\ + 9030: 55 42 49 53 0a 01 70 0a 01 5c 2f 04 5f 53 42 5f UBIS..p..\/._SB_ + 9040: 50 43 49 30 4c 50 43 5f 43 53 4f 4e 70 0a 0f 5c PCI0LPC_CSONp..\ + 9050: 49 44 45 54 14 4f 04 42 50 4f 4e 01 a0 47 04 5c IDET.O.BPON..G.\ + 9060: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43 53 /._SB_PCI0LPC_CS + 9070: 4f 4e 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 ONp..\/._SB_PCI0 + 9080: 4c 50 43 5f 43 53 4f 4e a0 1b 5c 2f 04 5f 53 42 LPC_CSON..\/._SB + 9090: 5f 50 43 49 30 4c 50 43 5f 47 4c 49 53 5c 55 42 _PCI0LPC_GLIS\UB + 90a0: 49 53 0a 00 14 4e 04 42 45 4e 5f 01 a0 46 04 5c IS...N.BEN_..F.\ + 90b0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 43 53 /._SB_PCI0LPC_CS + 90c0: 4f 4e 42 50 4f 4e 68 a0 24 90 68 93 4f 44 45 4a ONBPONh.$.h.ODEJ + 90d0: 0a 01 70 0a 09 5c 2f 05 5f 53 42 5f 50 43 49 30 ..p..\/._SB_PCI0 + 90e0: 4c 50 43 5f 45 43 5f 5f 48 41 4e 54 a0 06 68 49 LPC_EC__HANT..hI + 90f0: 52 44 59 14 40 06 42 53 54 41 01 70 5c 2f 03 5f RDY.@.BSTA.p\/._ + 9100: 53 42 5f 47 44 43 4b 47 47 49 44 60 a0 18 93 60 SB_GDCKGGID`...` + 9110: 0a 00 a0 12 44 4f 43 44 a0 0c 93 0a 00 5c 44 45 ....DOCD.....\DE + 9120: 53 53 a4 0a 01 a1 2b a0 17 5c 2f 04 5f 53 42 5f SS....+..\/._SB_ + 9130: 50 43 49 30 4c 50 43 5f 43 53 4f 4e a4 0a 00 42 PCI0LPC_CSON...B + 9140: 49 4e 49 a0 0d 93 68 0a 01 a4 95 42 44 45 56 0a INI...h....BDEV. + 9150: 0c a4 0a 00 14 44 06 42 55 57 4b 01 a0 3f 5c 48 .....D.BUWK..?\H + 9160: 38 44 52 a0 1c 68 70 0a 01 5c 2f 05 5f 53 42 5f 8DR..hp..\/._SB_ + 9170: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 57 42 55 PCI0LPC_EC__HWBU + 9180: a1 1b 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 ..p..\/._SB_PCI0 + 9190: 4c 50 43 5f 45 43 5f 5f 48 57 42 55 a1 1c a0 0d LPC_EC__HWBU.... + 91a0: 68 5c 4d 42 45 43 0a 32 0a ff 0a 80 a1 0c 5c 4d h\MBEC.2......\M + 91b0: 42 45 43 0a 32 0a 7f 0a 00 14 1a 42 49 4e 49 00 BEC.2......BINI. + 91c0: a0 13 93 42 44 45 56 0a ff 70 42 47 49 44 0a 00 ...BDEV..pBGID.. + 91d0: 42 44 45 56 14 4a 08 42 47 49 44 01 a0 06 68 70 BDEV.J.BGID...hp + 91e0: 0a ff 60 a1 49 06 a0 12 5c 48 38 44 52 70 48 50 ..`.I...\H8DRpHP + 91f0: 42 55 61 70 48 42 49 44 62 a1 18 70 52 42 45 43 BUapHBIDb..pRBEC + 9200: 0a 47 62 7b 62 0a 01 61 7b 62 0a 04 62 7a 62 0a .Gb{b..a{b..bzb. + 9210: 02 62 a0 06 62 70 0a 0f 60 a1 2d a0 09 48 44 55 .b..bp..`.-..HDU + 9220: 42 70 0a 0f 60 a1 21 a0 19 91 93 5c 49 44 45 54 Bp..`.!....\IDET + 9230: 0a 03 93 5c 49 44 45 54 0a 06 70 5c 49 44 45 54 ...\IDET..p\IDET + 9240: 60 a1 05 70 0a 07 60 a0 05 93 60 0a 0f a0 0f 90 `..p..`...`..... + 9250: 5c 48 44 55 42 95 60 0a 0c 70 0a 0f 60 a4 60 14 \HDUB.`..p..`.`. + 9260: 32 49 52 44 59 00 70 0b f4 01 60 70 0a 3c 61 70 2IRDY.p...`p..GGID + 9330: 0a 07 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 9340: 5f 45 43 5f 5f 44 41 54 54 0a 01 0a 00 5c 2f 05 _EC__DATT....\/. + 9350: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9360: 44 41 54 54 0a 00 0a 01 a1 37 5c 2f 05 5f 53 42 DATT.....7\/._SB + 9370: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 41 54 _PCI0LPC_EC__DAT + 9380: 54 0a 01 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 T....\/._SB_PCI0 + 9390: 4c 50 43 5f 45 43 5f 5f 44 41 54 54 0a 00 0a 00 LPC_EC__DATT.... + 93a0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + 93b0: 43 5f 5f 44 44 57 4b 0a 00 70 0a 01 5c 2f 04 5f C__DDWK..p..\/._ + 93c0: 53 42 5f 50 43 49 30 4c 50 43 5f 44 53 43 49 14 SB_PCI0LPC_DSCI. + 93d0: 2f 5f 44 43 4b 01 70 0a 00 60 a0 22 93 47 47 49 /_DCK.p..`.".GGI + 93e0: 44 0a 05 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c D..p\/._SB_PCI0L + 93f0: 50 43 5f 45 43 5f 5f 53 44 43 4b 68 60 a4 60 08 PC_EC__SDCKh`.`. + 9400: 55 44 4f 50 0a 00 14 27 5f 45 4a 30 01 a0 20 93 UDOP...'_EJ0.. . + 9410: 47 47 49 44 0a 05 5c 2f 05 5f 53 42 5f 50 43 49 GGID..\/._SB_PCI + 9420: 30 4c 50 43 5f 45 43 5f 5f 53 45 4a 30 68 14 27 0LPC_EC__SEJ0h.' + 9430: 5f 45 4a 33 01 a0 20 93 47 47 49 44 0a 05 5c 2f _EJ3.. .GGID..\/ + 9440: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 9450: 5f 53 45 4a 33 68 14 27 5f 45 4a 34 01 a0 20 93 _SEJ3h.'_EJ4.. . + 9460: 47 47 49 44 0a 05 5c 2f 05 5f 53 42 5f 50 43 49 GGID..\/._SB_PCI + 9470: 30 4c 50 43 5f 45 43 5f 5f 53 45 4a 34 68 14 26 0LPC_EC__SEJ4h.& + 9480: 50 45 4a 33 00 a0 1f 93 47 47 49 44 0a 05 5c 2f PEJ3....GGID..\/ + 9490: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 94a0: 5f 50 53 45 33 14 2e 5f 42 44 4e 00 70 0a 00 60 _PSE3.._BDN.p..` + 94b0: a0 21 93 47 47 49 44 0a 05 70 5c 2f 05 5f 53 42 .!.GGID..p\/._SB + 94c0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 53 4c 42 _PCI0LPC_EC__SLB + 94d0: 4e 60 a4 60 14 2e 5f 55 49 44 00 70 0a 00 60 a0 N`.`.._UID.p..`. + 94e0: 21 93 47 47 49 44 0a 05 70 5c 2f 05 5f 53 42 5f !.GGID..p\/._SB_ + 94f0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 53 4c 55 44 PCI0LPC_EC__SLUD + 9500: 60 a4 60 14 1e 47 50 54 53 01 5c 2f 05 5f 53 42 `.`..GPTS.\/._SB + 9510: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 53 50 54 _PCI0LPC_EC__SPT + 9520: 53 68 14 37 47 57 41 4b 01 5c 2f 05 5f 53 42 5f Sh.7GWAK.\/._SB_ + 9530: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 53 57 41 4b PCI0LPC_EC__SWAK + 9540: 68 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f h\/._SB_PCI0LPC_ + 9550: 45 43 5f 5f 44 44 57 4b 0a 00 14 26 47 47 50 45 EC__DDWK...&GGPE + 9560: 00 a0 1f 93 47 47 49 44 0a 05 5c 2f 05 5f 53 42 ....GGID..\/._SB + 9570: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 53 47 50 _PCI0LPC_EC__SGP + 9580: 45 08 47 5f 49 44 0c ff ff ff ff 14 4e 05 47 47 E.G_ID......N.GG + 9590: 49 44 00 70 5c 2f 04 5f 53 42 5f 50 43 49 30 4c ID.p\/._SB_PCI0L + 95a0: 50 43 5f 44 4f 49 30 60 70 5c 2f 04 5f 53 42 5f PC_DOI0`p\/._SB_ + 95b0: 50 43 49 30 4c 50 43 5f 44 4f 49 31 61 70 5c 2f PCI0LPC_DOI1ap\/ + 95c0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 44 4f 49 ._SB_PCI0LPC_DOI + 95d0: 32 62 7d 60 79 61 0a 01 00 60 7d 60 79 62 0a 02 2b}`ya...`}`yb.. + 95e0: 00 60 70 60 47 5f 49 44 a4 60 10 43 5e 5c 2f 04 .`p`G_ID.`.C^\/. + 95f0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9600: 14 4b 08 5f 51 35 30 00 70 5c 2f 03 5f 53 42 5f .K._Q50.p\/._SB_ + 9610: 47 44 43 4b 47 47 49 44 60 a0 42 07 92 93 60 0a GDCKGGID`.B...`. + 9620: 07 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 9630: 45 43 5f 5f 4c 45 44 5f 0a 08 0a 80 5c 2f 05 5f EC__LED_....\/._ + 9640: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c SB_PCI0LPC_EC__L + 9650: 45 44 5f 0a 08 0a c0 a0 27 93 60 0a 05 5c 2f 05 ED_.....'.`..\/. + 9660: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9670: 53 50 45 4a 47 55 53 42 0a 00 5b 22 0b 2c 01 86 SPEJGUSB..[".,.. + 9680: 5c 2e 5f 53 42 5f 47 44 43 4b 0a 03 14 4d 28 5f \._SB_GDCK...M(_ + 9690: 51 34 35 00 70 0c ff ff ff ff 5c 2f 03 5f 53 42 Q45.p.....\/._SB + 96a0: 5f 47 44 43 4b 47 5f 49 44 70 0c ff ff ff ff 5c _GDCKG_IDp.....\ + 96b0: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 96c0: 5f 5f 53 4c 49 44 70 5c 2f 03 5f 53 42 5f 47 44 __SLIDp\/._SB_GD + 96d0: 43 4b 47 47 49 44 60 a0 33 93 60 0a 07 5c 2f 05 CKGGID`.3.`..\/. + 96e0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 96f0: 4c 45 44 5f 0a 08 0a 00 47 55 53 42 0a 00 86 5c LED_....GUSB...\ + 9700: 2e 5f 53 42 5f 47 44 43 4b 0a 03 a0 4e 0d 93 60 ._SB_GDCK...N..` + 9710: 0a 05 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 9720: 5f 45 43 5f 5f 4c 45 44 5f 0a 08 0a 80 41 53 53 _EC__LED_....ASS + 9730: 49 0a 00 a0 42 04 7b 5c 2f 04 5f 53 42 5f 50 43 I...B.{\/._SB_PC + 9740: 49 30 58 48 43 49 50 52 32 5f 0a 04 00 7b 5c 2f I0XHCIPR2_...{\/ + 9750: 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 52 32 ._SB_PCI0XHCIPR2 + 9760: 5f 0a fb 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 _..\/._SB_PCI0XH + 9770: 43 49 50 52 32 5f a0 42 04 7b 5c 2f 04 5f 53 42 CIPR2_.B.{\/._SB + 9780: 5f 50 43 49 30 58 48 43 49 50 52 33 5f 0a 04 00 _PCI0XHCIPR3_... + 9790: 7b 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 {\/._SB_PCI0XHCI + 97a0: 50 52 33 5f 0a fb 5c 2f 04 5f 53 42 5f 50 43 49 PR3_..\/._SB_PCI + 97b0: 30 58 48 43 49 50 52 33 5f 5b 22 0a 64 a0 0c 5c 0XHCIPR3_[".d..\ + 97c0: 48 38 44 52 70 53 4c 49 53 61 a1 0c 7b 5c 52 42 H8DRpSLISa..{\RB + 97d0: 45 43 0a 02 0a 01 61 a0 12 93 61 0a 01 86 5c 2e EC....a...a...\. + 97e0: 5f 53 42 5f 47 44 43 4b 0a 00 a1 4f 12 a0 4e 0f _SB_GDCK...O..N. + 97f0: 44 4f 43 44 5b 22 0a 64 a0 15 5c 2f 04 5f 53 42 DOCD[".d..\/._SB + 9800: 5f 50 43 49 30 4c 50 43 5f 45 50 57 47 a3 a1 0b _PCI0LPC_EPWG... + 9810: a0 09 48 50 41 43 5f 51 32 37 41 53 53 49 0a 02 ..HPAC_Q27ASSI.. + 9820: 5b 22 0a 64 a0 49 0a 90 92 93 5c 2f 03 5f 53 42 [".d.I....\/._SB + 9830: 5f 47 44 43 4b 58 48 4f 53 0a 00 92 93 5c 58 48 _GDCKXHOS....\XH + 9840: 43 4d 0a 00 a0 44 04 80 7b 5c 2f 04 5f 53 42 5f CM...D..{\/._SB_ + 9850: 50 43 49 30 58 48 43 49 50 52 32 5f 0a 04 00 00 PCI0XHCIPR2_.... + 9860: 7d 5c 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 }\/._SB_PCI0XHCI + 9870: 50 52 32 5f 0a 04 5c 2f 04 5f 53 42 5f 50 43 49 PR2_..\/._SB_PCI + 9880: 30 58 48 43 49 50 52 32 5f a0 44 04 80 7b 5c 2f 0XHCIPR2_.D..{\/ + 9890: 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 52 33 ._SB_PCI0XHCIPR3 + 98a0: 5f 0a 04 00 00 7d 5c 2f 04 5f 53 42 5f 50 43 49 _....}\/._SB_PCI + 98b0: 30 58 48 43 49 50 52 33 5f 0a 04 5c 2f 04 5f 53 0XHCIPR3_..\/._S + 98c0: 42 5f 50 43 49 30 58 48 43 49 50 52 33 5f 5c 2f B_PCI0XHCIPR3_\/ + 98d0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 98e0: 5f 48 4b 45 59 4d 48 4b 51 0b 10 40 a1 2d 5b 22 _HKEYMHKQ..@.-[" + 98f0: 0a 64 a0 09 48 50 41 43 5f 51 32 36 5c 2f 06 5f .d..HPAC_Q26\/._ + 9900: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + 9910: 4b 45 59 4d 48 4b 51 0b 11 40 14 40 0a 47 55 53 KEYMHKQ..@.@.GUS + 9920: 42 01 a0 4c 08 5c 48 38 44 52 70 68 53 4c 49 53 B..L.\H8DRphSLIS + 9930: a0 4e 07 93 68 0a 00 5c 2f 05 5f 53 42 5f 50 43 .N..h..\/._SB_PC + 9940: 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 08 I0LPC_EC__LED_.. + 9950: 0a 00 a0 27 93 5c 58 48 43 4d 0a 00 86 5c 2f 06 ...'.\XHCM...\/. + 9960: 5f 53 42 5f 50 43 49 30 45 48 43 31 55 52 54 48 _SB_PCI0EHC1URTH + 9970: 55 52 4d 48 50 52 54 32 0a 03 a1 34 a0 32 7b 5c URMHPRT2...4.2{\ + 9980: 2f 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 52 /._SB_PCI0XHCIPR + 9990: 32 5f 0a 04 00 86 5c 2f 05 5f 53 42 5f 50 43 49 2_....\/._SB_PCI + 99a0: 30 58 48 43 49 55 52 54 48 48 53 50 32 0a 03 a1 0XHCIURTHHSP2... + 99b0: 0b 5c 4d 42 45 43 0a 02 0a fe 68 14 46 19 44 41 .\MBEC....h.F.DA + 99c0: 54 54 02 70 0a 00 60 a0 42 08 93 68 0a 00 a0 28 TT.p..`.B..h...( + 99d0: 93 69 0a 01 a0 11 5c 48 38 44 52 7d 48 41 4d 36 .i....\H8DR}HAM6 + 99e0: 0a 80 48 41 4d 36 a1 0c 5c 4d 42 45 43 0a 16 0a ..HAM6..\MBEC... + 99f0: ff 0a 80 70 0a 01 60 a0 24 93 69 0a 00 a0 11 5c ...p..`.$.i....\ + 9a00: 48 38 44 52 7b 48 41 4d 36 0a 7f 48 41 4d 36 a1 H8DR{HAM6..HAM6. + 9a10: 0c 5c 4d 42 45 43 0a 16 0a 7f 0a 00 a0 2d 93 69 .\MBEC.......-.i + 9a20: 0a 02 a0 14 5c 48 38 44 52 a0 0d 7b 48 41 4d 36 ....\H8DR..{HAM6 + 9a30: 0a 80 00 70 0a 01 60 a1 12 a0 10 7b 5c 52 42 45 ...p..`....{\RBE + 9a40: 43 0a 16 0a 80 00 70 0a 01 60 a0 42 08 93 68 0a C.....p..`.B..h. + 9a50: 01 a0 28 93 69 0a 01 a0 11 5c 48 38 44 52 7d 48 ..(.i....\H8DR}H + 9a60: 41 4d 41 0a 01 48 41 4d 41 a1 0c 5c 4d 42 45 43 AMA..HAMA..\MBEC + 9a70: 0a 1a 0a ff 0a 01 70 0a 01 60 a0 24 93 69 0a 00 ......p..`.$.i.. + 9a80: a0 11 5c 48 38 44 52 7b 48 41 4d 41 0a fe 48 41 ..\H8DR{HAMA..HA + 9a90: 4d 41 a1 0c 5c 4d 42 45 43 0a 1a 0a fe 0a 00 a0 MA..\MBEC....... + 9aa0: 2d 93 69 0a 02 a0 14 5c 48 38 44 52 a0 0d 7b 48 -.i....\H8DR..{H + 9ab0: 41 4d 41 0a 01 00 70 0a 01 60 a1 12 a0 10 7b 5c AMA...p..`....{\ + 9ac0: 52 42 45 43 0a 1a 0a 01 00 70 0a 01 60 a0 42 08 RBEC.....p..`.B. + 9ad0: 93 68 0a 02 a0 28 93 69 0a 01 a0 11 5c 48 38 44 .h...(.i....\H8D + 9ae0: 52 7d 48 41 4d 42 0a 01 48 41 4d 42 a1 0c 5c 4d R}HAMB..HAMB..\M + 9af0: 42 45 43 0a 1b 0a ff 0a 01 70 0a 01 60 a0 24 93 BEC......p..`.$. + 9b00: 69 0a 00 a0 11 5c 48 38 44 52 7b 48 41 4d 42 0a i....\H8DR{HAMB. + 9b10: fe 48 41 4d 42 a1 0c 5c 4d 42 45 43 0a 1b 0a fe .HAMB..\MBEC.... + 9b20: 0a 00 a0 2d 93 69 0a 02 a0 14 5c 48 38 44 52 a0 ...-.i....\H8DR. + 9b30: 0d 7b 48 41 4d 42 0a 01 00 70 0a 01 60 a1 12 a0 .{HAMB...p..`... + 9b40: 10 7b 5c 52 42 45 43 0a 1b 0a 01 00 70 0a 01 60 .{\RBEC.....p..` + 9b50: a4 60 14 4b 07 44 44 57 4b 01 70 0a 00 60 a0 23 .`.K.DDWK.p..`.# + 9b60: 93 68 0a 01 a0 0c 5c 48 38 44 52 70 01 48 57 44 .h....\H8DRp.HWD + 9b70: 4b a1 0c 5c 4d 42 45 43 0a 32 0a ff 0a 08 70 0a K..\MBEC.2....p. + 9b80: 01 60 a0 1f 93 68 0a 00 a0 0c 5c 48 38 44 52 70 .`...h....\H8DRp + 9b90: 00 48 57 44 4b a1 0c 5c 4d 42 45 43 0a 32 0a f7 .HWDK..\MBEC.2.. + 9ba0: 0a 00 a0 29 93 68 0a 02 a0 10 5c 48 38 44 52 a0 ...).h....\H8DR. + 9bb0: 09 48 57 44 4b 70 0a 01 60 a1 12 a0 10 7b 5c 52 .HWDKp..`....{\R + 9bc0: 42 45 43 0a 32 0a 08 00 70 0a 01 60 a4 60 10 4c BEC.2...p..`.`.L + 9bd0: 08 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 9be0: 45 43 5f 5f 48 4b 45 59 14 42 07 47 44 4b 53 00 EC__HKEY.B.GDKS. + 9bf0: 70 0a 00 60 5b 22 0b f4 01 a0 4f 05 93 5c 2f 05 p..`["....O..\/. + 9c00: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9c10: 44 4f 43 44 0a 01 a0 23 44 4f 43 44 70 5c 2f 05 DOCD...#DOCDp\/. + 9c20: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9c30: 41 43 53 42 60 79 60 0a 01 60 7d 60 0a 01 60 70 ACSB`y`..`}`..`p + 9c40: 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47 49 44 61 \/._SB_GDCKGGIDa + 9c50: 79 61 0a 08 61 7d 60 61 60 a4 60 10 4c 5a 5c 2f ya..a}`a`.`.LZ\/ + 9c60: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 9c70: 5f 08 53 4c 49 44 0c ff ff ff ff 08 53 49 44 42 _.SLID......SIDB + 9c80: 0c ff ff ff ff 08 53 46 4c 47 0a 00 08 53 55 43 ......SFLG...SUC + 9c90: 54 0a 00 08 53 48 4b 45 0a 00 14 24 53 4c 42 4e T...SHKE...$SLBN + 9ca0: 00 70 0a 00 60 a0 19 93 5c 2f 03 5f 53 42 5f 47 .p..`...\/._SB_G + 9cb0: 44 43 4b 47 47 49 44 0a 05 a4 0c 30 ae 00 02 14 DCKGGID....0.... + 9cc0: 09 53 4c 55 44 00 a4 0a 00 14 3f 53 53 54 41 00 .SLUD.....?SSTA. + 9cd0: 53 55 44 4b 53 55 44 54 a0 0c 93 47 53 49 44 0a SUDKSUDT...GSID. + 9ce0: 05 70 0a 0f 60 a1 13 a0 0b 92 5c 57 39 38 46 70 .p..`.....\W98Fp + 9cf0: 0a 00 60 a1 05 70 0a 0c 60 a0 0d 5c 57 39 38 46 ..`..p..`..\W98F + 9d00: 70 48 49 44 53 60 60 a4 60 14 2b 53 49 4e 49 00 pHIDS``.`.+SINI. + 9d10: a0 14 93 47 53 49 44 0a 05 7d 53 46 4c 47 0b 00 ...GSID..}SFLG.. + 9d20: 04 53 46 4c 47 a1 0f 7b 53 46 4c 47 80 0b 00 04 .SFLG..{SFLG.... + 9d30: 00 53 46 4c 47 14 4c 07 53 50 54 53 01 a0 44 07 .SFLG.L.SPTS..D. + 9d40: 90 92 95 68 0a 01 92 94 68 0a 04 70 0a 00 53 48 ...h....h..p..SH + 9d50: 4b 45 70 0a 00 53 49 44 42 a0 1d 7b 53 46 4c 47 KEp..SIDB..{SFLG + 9d60: 0a 02 00 70 0a 00 53 4c 49 44 7b 53 46 4c 47 80 ...p..SLID{SFLG. + 9d70: 0a 02 00 53 46 4c 47 a0 2e 93 47 53 49 44 0a 05 ...SFLG...GSID.. + 9d80: a0 1e 93 68 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 ...h..\/._SB_PCI + 9d90: 30 4c 50 43 5f 45 43 5f 5f 44 44 57 4b 0a 01 70 0LPC_EC__DDWK..p + 9da0: 0a 05 53 49 44 42 7d 53 46 4c 47 0b 00 01 53 46 ..SIDB}SFLG...SF + 9db0: 4c 47 14 46 0b 53 57 41 4b 01 70 0c ff ff ff ff LG.F.SWAK.p..... + 9dc0: 53 4c 49 44 a0 44 0a 90 92 95 68 0a 01 92 94 68 SLID.D....h....h + 9dd0: 0a 04 a0 45 04 93 53 49 44 42 0a 05 a0 18 93 47 ...E..SIDB.....G + 9de0: 53 49 44 0a 05 4c 45 44 5f 0a 03 0a 80 79 68 0a SID..LED_....yh. + 9df0: 08 53 48 4b 45 a1 22 47 55 53 42 0a 00 86 5c 2e .SHKE."GUSB...\. + 9e00: 5f 53 42 5f 47 44 43 4b 0a 00 7b 53 46 4c 47 80 _SB_GDCK..{SFLG. + 9e10: 0b 00 04 00 53 46 4c 47 a1 1b a0 16 93 47 53 49 ....SFLG.....GSI + 9e20: 44 0a 05 41 53 53 49 0a 00 5b 22 0a 64 57 53 44 D..ASSI..[".dWSD + 9e30: 4b a1 02 a3 7b 53 46 4c 47 80 0b 00 01 00 53 46 K...{SFLG.....SF + 9e40: 4c 47 7b 53 46 4c 47 80 0a 02 00 53 46 4c 47 7b LG{SFLG....SFLG{ + 9e50: 53 46 4c 47 80 0a 10 00 53 46 4c 47 7b 53 46 4c SFLG....SFLG{SFL + 9e60: 47 80 0a 20 00 53 46 4c 47 14 11 53 47 50 45 00 G.. .SFLG..SGPE. + 9e70: 7d 53 46 4c 47 0a 08 53 46 4c 47 14 4e 0c 53 44 }SFLG..SFLG.N.SD + 9e80: 43 4b 01 a0 43 0c 5c 48 38 44 52 a0 2d 68 42 53 CK..C.\H8DR.-hBS + 9e90: 43 4e 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 CN\/._SB_PCI0LPC + 9ea0: 5f 45 43 5f 5f 44 41 54 54 0a 01 0a 01 7d 53 46 _EC__DATT....}SF + 9eb0: 4c 47 0b 00 04 53 46 4c 47 a1 4d 08 7d 53 46 4c LG...SFLG.M.}SFL + 9ec0: 47 0a 02 53 46 4c 47 47 55 53 42 0a 00 70 0a 01 G..SFLGGUSB..p.. + 9ed0: 48 42 31 49 a0 43 04 5c 57 4e 54 46 70 0a 00 5c HB1I.C.\WNTFp..\ + 9ee0: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 9ef0: 5f 5f 42 41 54 31 42 31 53 54 70 0a 00 5c 2f 06 __BAT1B1STp..\/. + 9f00: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 9f10: 42 41 54 31 58 42 31 53 42 45 4a 30 0a 01 5c 2f BAT1XB1SBEJ0..\/ + 9f20: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 9f30: 5f 44 41 54 54 0a 01 0a 00 7b 53 46 4c 47 80 0b _DATT....{SFLG.. + 9f40: 00 04 00 53 46 4c 47 a4 0a 01 14 2f 53 45 4a 30 ...SFLG..../SEJ0 + 9f50: 01 70 0a 00 53 4c 49 44 a0 08 68 41 53 53 49 0a .p..SLID..hASSI. + 9f60: 01 4c 45 44 5f 0a 03 0a 00 53 55 44 49 7b 53 46 .LED_....SUDI{SF + 9f70: 4c 47 80 0a 02 00 53 46 4c 47 14 1f 53 45 4a 33 LG....SFLG..SEJ3 + 9f80: 01 7d 53 46 4c 47 0a 10 53 46 4c 47 a0 0d 93 5c .}SFLG..SFLG...\ + 9f90: 53 50 53 5f 0a 03 50 53 45 33 14 11 53 45 4a 34 SPS_..PSE3..SEJ4 + 9fa0: 01 7d 53 46 4c 47 0a 20 53 46 4c 47 14 18 50 53 .}SFLG. SFLG..PS + 9fb0: 45 33 00 a0 11 7b 53 46 4c 47 0a 10 00 4c 45 44 E3...{SFLG...LED + 9fc0: 5f 0a 03 0a 00 08 53 48 44 45 0a 00 14 44 04 57 _.....SHDE...D.W + 9fd0: 53 44 4b 00 a0 2d 7b 53 46 4c 47 7d 0a 10 0a 20 SDK..-{SFLG}... + 9fe0: 00 00 53 44 43 4b 0a 01 a0 19 5c 57 39 38 46 7d ..SDCK....\W98F} + 9ff0: 53 46 4c 47 0b 00 02 53 46 4c 47 70 0a 05 53 48 SFLG...SFLGp..SH + a000: 44 45 a1 0e 86 5c 2e 5f 53 42 5f 47 44 43 4b 0a DE...\._SB_GDCK. + a010: 00 14 40 06 48 49 44 53 01 70 68 60 a0 43 05 7b ..@.HIDS.ph`.C.{ + a020: 53 46 4c 47 0b 00 02 00 a0 37 93 68 0a 0f a0 0a SFLG.....7.h.... + a030: 5c 57 39 38 46 70 0a 0c 60 76 53 48 44 45 a0 21 \W98Fp..`vSHDE.! + a040: 92 53 48 44 45 7b 53 46 4c 47 80 0b 00 02 00 53 .SHDE{SFLG.....S + a050: 46 4c 47 86 5c 2e 5f 53 42 5f 47 44 43 4b 0a 00 FLG.\._SB_GDCK.. + a060: a1 0f 7b 53 46 4c 47 80 0b 00 02 00 53 46 4c 47 ..{SFLG.....SFLG + a070: a4 60 14 44 08 53 55 44 4b 00 a0 4c 07 7b 53 46 .`.D.SUDK..L.{SF + a080: 4c 47 0a 08 00 a0 41 07 92 7b 53 46 4c 47 0b 00 LG....A..{SFLG.. + a090: 01 00 7d 53 48 4b 45 0b 04 20 53 48 4b 45 a0 28 ..}SHKE.. SHKE.( + a0a0: 93 5c 55 4f 50 54 0a 00 5c 2f 06 5f 53 42 5f 50 .\UOPT..\/._SB_P + a0b0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + a0c0: 48 4b 51 53 48 4b 45 a0 13 5c 57 39 38 46 86 5c HKQSHKE..\W98F.\ + a0d0: 2e 5f 53 42 5f 47 44 43 4b 0a 01 a1 0e 86 5c 2e ._SB_GDCK.....\. + a0e0: 5f 53 42 5f 47 44 43 4b 0a 03 7b 53 46 4c 47 80 _SB_GDCK..{SFLG. + a0f0: 0a 08 00 53 46 4c 47 14 1d 53 55 44 49 00 a0 0d ...SFLG..SUDI... + a100: 5c 57 4e 54 46 70 0a 01 53 55 43 54 a1 08 70 0a \WNTFp..SUCT..p. + a110: 05 53 55 43 54 14 43 05 53 55 44 54 00 a0 4b 04 .SUCT.C.SUDT..K. + a120: 7b 53 48 4b 45 0b 04 20 00 a0 3f 93 47 53 49 44 {SHKE.. ..?.GSID + a130: 0a 00 a0 36 92 76 53 55 43 54 70 0a 00 53 48 4b ...6.vSUCTp..SHK + a140: 45 a0 27 93 5c 55 4f 50 54 0a 00 5c 2f 06 5f 53 E.'.\UOPT..\/._S + a150: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + a160: 45 59 4d 48 4b 51 0b 03 40 14 42 05 47 53 49 44 EYMHKQ..@.B.GSID + a170: 00 a0 45 04 93 53 4c 49 44 0c ff ff ff ff 70 0c ..E..SLID.....p. + a180: ff ff ff ff 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 ....\/._SB_GDCKG + a190: 5f 49 44 a0 1a 93 5c 2f 03 5f 53 42 5f 47 44 43 _ID...\/._SB_GDC + a1a0: 4b 47 47 49 44 0a 05 70 0a 05 53 4c 49 44 a1 08 KGGID..p..SLID.. + a1b0: 70 0a 00 53 4c 49 44 a4 53 4c 49 44 14 4b 04 53 p..SLID.SLID.K.S + a1c0: 50 45 4a 00 4c 45 44 5f 0a 03 0a 00 5b 22 0a c8 PEJ.LED_....[".. + a1d0: 4c 45 44 5f 0a 08 0a 80 5b 22 0a c8 4c 45 44 5f LED_....["..LED_ + a1e0: 0a 08 0a 00 5b 22 0a c8 4c 45 44 5f 0a 08 0a 80 ....["..LED_.... + a1f0: 5b 22 0a c8 4c 45 44 5f 0a 08 0a 00 5b 22 0a c8 ["..LED_....[".. + a200: 4c 45 44 5f 0a 08 0a 80 10 40 05 5c 2f 04 5f 53 LED_.....@.\/._S + a210: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 14 0d B_PCI0LPC_EC__.. + a220: 5f 51 34 33 00 5c 55 43 4d 53 0a 18 14 2c 53 41 _Q43.\UCMS...,SA + a230: 55 4d 01 a0 06 94 68 0a 03 a3 a1 1e a0 0c 5c 48 UM....h.......\H + a240: 38 44 52 70 68 48 41 55 4d a1 0f 5c 4d 42 45 43 8DRphHAUM..\MBEC + a250: 0a 03 0a 9f 79 68 0a 05 00 10 42 05 5c 2f 05 5f ....yh....B.\/._ + a260: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + a270: 4b 45 59 14 10 47 53 4d 53 01 a4 5c 41 55 44 43 KEY..GSMS..\AUDC + a280: 0a 00 0a 00 14 13 53 53 4d 53 01 a4 5c 41 55 44 ......SSMS..\AUD + a290: 43 0a 01 7b 68 0a 01 00 14 13 53 48 44 41 01 a4 C..{h.....SHDA.. + a2a0: 5c 41 55 44 43 0a 02 7b 68 0a 01 00 10 4c 36 5c \AUDC..{h....L6\ + a2b0: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + a2c0: 5f 5f 08 42 52 54 57 12 26 12 0a 64 0a 64 0a 0a __.BRTW.&..d.d.. + a2d0: 0a 0f 0a 14 0a 19 0a 1e 0a 23 0a 28 0a 2d 0a 32 .........#.(.-.2 + a2e0: 0a 37 0a 3c 0a 41 0a 46 0a 50 0a 5a 0a 64 08 42 .7.<.A.F.P.Z.d.B + a2f0: 52 54 42 12 42 09 03 12 30 16 0a 14 0a 04 0a 04 RTB.B...0....... + a300: 0a 08 0a 0c 0a 13 0a 19 0a 20 0a 27 0a 30 0a 39 ......... .'.0.9 + a310: 0a 43 0a 4e 0a 5c 0a 71 0a 8b 0a b4 0a ff 0b 45 .C.N.\.q.......E + a320: 01 0b 45 01 0a 04 0a 04 12 2e 16 0a 1e 0a 03 0a ..E............. + a330: 03 0a 06 0a 09 0a 0c 0a 0f 0a 13 0a 17 0a 1c 0a ................ + a340: 21 0a 28 0a 32 0a 41 0a 58 0a 7d 0a b9 0a ff 0a !.(.2.A.X.}..... + a350: d2 0a d2 0a 03 0a 03 12 2e 16 0a 00 0a 04 0a 04 ................ + a360: 0a 07 0a 09 0a 0c 0a 10 0a 15 0a 1c 0a 25 0a 32 .............%.2 + a370: 0a 40 0a 50 0a 64 0a 82 0a a5 0a cd 0a ff 0a dc .@.P.d.......... + a380: 0a dc 0a 04 0a 04 14 4a 0e 5f 51 31 34 00 a0 3d .......J._Q14..= + a390: 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + a3a0: 43 5f 5f 48 4b 45 59 4d 48 4b 4b 0b 00 80 5c 2f C__HKEYMHKK...\/ + a3b0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + a3c0: 5f 48 4b 45 59 4d 48 4b 51 0b 10 10 a0 3f 5c 4e _HKEYMHKQ....?\N + a3d0: 42 43 46 a0 1c 5c 56 49 47 44 86 5c 2f 04 5f 53 BCF..\VIGD.\/._S + a3e0: 42 5f 50 43 49 30 56 49 44 5f 4c 43 44 30 0a 86 B_PCI0VID_LCD0.. + a3f0: a1 1b 86 5c 2f 05 5f 53 42 5f 50 43 49 30 50 45 ...\/._SB_PCI0PE + a400: 47 5f 56 49 44 5f 4c 43 44 30 0a 86 a1 44 06 70 G_VID_LCD0...D.p + a410: 5c 42 52 4c 56 60 a0 0f 92 93 60 0a 0f 75 60 70 \BRLV`....`..u`p + a420: 60 5c 42 52 4c 56 a0 24 5c 56 49 47 44 5c 55 43 `\BRLV.$\VIGD\UC + a430: 4d 53 0a 16 5c 2f 05 5f 53 42 5f 50 43 49 30 4c MS..\/._SB_PCI0L + a440: 50 43 5f 45 43 5f 5f 42 52 4e 53 a1 07 5c 56 42 PC_EC__BRNS..\VB + a450: 52 43 60 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 RC`\/._SB_PCI0LP + a460: 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 50 C_EC__HKEYMHKQ.P + a470: 60 14 4a 0e 5f 51 31 35 00 a0 3f 5c 2f 06 5f 53 `.J._Q15..?\/._S + a480: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + a490: 45 59 4d 48 4b 4b 0c 00 00 01 00 5c 2f 06 5f 53 EYMHKK.....\/._S + a4a0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b B_PCI0LPC_EC__HK + a4b0: 45 59 4d 48 4b 51 0b 11 10 a0 3f 5c 4e 42 43 46 EYMHKQ....?\NBCF + a4c0: a0 1c 5c 56 49 47 44 86 5c 2f 04 5f 53 42 5f 50 ..\VIGD.\/._SB_P + a4d0: 43 49 30 56 49 44 5f 4c 43 44 30 0a 87 a1 1b 86 CI0VID_LCD0..... + a4e0: 5c 2f 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 \/._SB_PCI0PEG_V + a4f0: 49 44 5f 4c 43 44 30 0a 87 a1 40 06 70 5c 42 52 ID_LCD0...@.p\BR + a500: 4c 56 60 a0 0b 60 76 60 70 60 5c 42 52 4c 56 a0 LV`..`v`p`\BRLV. + a510: 24 5c 56 49 47 44 5c 55 43 4d 53 0a 16 5c 2f 05 $\VIGD\UCMS..\/. + a520: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + a530: 42 52 4e 53 a1 07 5c 56 42 52 43 60 5c 2f 06 5f BRNS..\VBRC`\/._ + a540: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + a550: 4b 45 59 4d 48 4b 51 0b 50 60 a4 00 14 4c 0b 42 KEYMHKQ.P`...L.B + a560: 52 4e 53 00 72 5c 42 52 4c 56 0a 02 60 70 5c 42 RNS.r\BRLV..`p\B + a570: 52 54 4e 63 a0 4b 09 5c 2f 04 5f 53 42 5f 50 43 RTNc.K.\/._SB_PC + a580: 49 30 56 49 44 5f 44 52 44 59 a0 23 93 0a 00 60 I0VID_DRDY.#...` + a590: 70 83 88 83 88 42 52 54 42 63 00 0a 14 00 61 70 p....BRTBc....ap + a5a0: 83 88 83 88 42 52 54 42 63 00 0a 12 00 62 a1 1f ....BRTBc....b.. + a5b0: 70 83 88 83 88 42 52 54 42 63 00 0a 15 00 61 70 p....BRTBc....ap + a5c0: 83 88 83 88 42 52 54 42 63 00 0a 13 00 62 7d 61 ....BRTBc....b}a + a5d0: 79 62 0a 09 00 62 5c 2f 04 5f 53 42 5f 50 43 49 yb...b\/._SB_PCI + a5e0: 30 56 49 44 5f 41 49 4e 54 0a 03 62 70 83 88 83 0VID_AINT..bp... + a5f0: 88 42 52 54 42 63 00 60 00 62 5c 2f 04 5f 53 42 .BRTBc.`.b\/._SB + a600: 5f 50 43 49 30 56 49 44 5f 41 49 4e 54 0a 01 62 _PCI0VID_AINT..b + a610: a1 08 5c 55 43 4d 53 0a 12 10 44 06 5c 2f 04 5f ..\UCMS...D.\/._ + a620: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 14 SB_PCI0LPC_EC__. + a630: 4e 04 5f 51 31 39 00 a0 3f 5c 2f 06 5f 53 42 5f N._Q19..?\/._SB_ + a640: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + a650: 4d 48 4b 4b 0c 00 00 80 00 5c 2f 06 5f 53 42 5f MHKK.....\/._SB_ + a660: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + a670: 4d 48 4b 51 0b 18 10 5c 55 43 4d 53 0a 03 10 44 MHKQ...\UCMS...D + a680: 06 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + a690: 45 43 5f 5f 14 4e 04 5f 51 36 33 00 a0 3f 5c 2f EC__.N._Q63..?\/ + a6a0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + a6b0: 5f 48 4b 45 59 4d 48 4b 4b 0c 00 00 08 00 5c 2f _HKEYMHKK.....\/ + a6c0: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + a6d0: 5f 48 4b 45 59 4d 48 4b 51 0b 14 10 5c 55 43 4d _HKEYMHKQ...\UCM + a6e0: 53 0a 0b 10 42 0b 5c 2f 04 5f 53 42 5f 50 43 49 S...B.\/._SB_PCI + a6f0: 30 4c 50 43 5f 45 43 5f 5f 14 0a 5f 51 37 30 00 0LPC_EC__.._Q70. + a700: 46 4e 53 54 14 0a 5f 51 37 32 00 46 4e 53 54 14 FNST.._Q72.FNST. + a710: 0a 5f 51 37 33 00 46 4e 53 54 14 4b 07 46 4e 53 ._Q73.FNST.K.FNS + a720: 54 00 a0 12 5c 48 38 44 52 70 48 46 4e 53 60 70 T...\H8DRpHFNS`p + a730: 48 46 4e 45 61 a1 17 7b 5c 52 42 45 43 0a 0e 0a HFNEa..{\RBEC... + a740: 03 60 7b 5c 52 42 45 43 0a 00 0a 08 61 a0 48 04 .`{\RBEC....a.H. + a750: 61 a0 0c 93 60 0a 00 5c 55 43 4d 53 0a 11 a0 0c a...`..\UCMS.... + a760: 93 60 0a 01 5c 55 43 4d 53 0a 0f a0 0c 93 60 0a .`..\UCMS.....`. + a770: 02 5c 55 43 4d 53 0a 10 5c 2f 06 5f 53 42 5f 50 .\UCMS..\/._SB_P + a780: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + a790: 48 4b 51 0b 05 60 10 3d 5c 2f 05 5f 53 42 5f 50 HKQ..`.=\/._SB_P + a7a0: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 14 CI0LPC_EC__HKEY. + a7b0: 10 47 48 53 4c 01 a4 5c 46 4e 53 43 0a 00 0a 00 .GHSL..\FNSC.... + a7c0: 14 13 53 48 53 4c 01 a4 5c 46 4e 53 43 0a 01 7b ..SHSL..\FNSC..{ + a7d0: 68 0a 01 00 10 47 30 5c 2f 05 5f 53 42 5f 50 43 h....G0\/._SB_PC + a7e0: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 08 57 I0LPC_EC__HKEY.W + a7f0: 47 46 4c 0a 00 14 09 57 53 49 46 00 a4 0a 00 14 GFL....WSIF..... + a800: 1e 57 4c 53 57 00 a4 5c 2f 05 5f 53 42 5f 50 43 .WLSW..\/._SB_PC + a810: 49 30 4c 50 43 5f 45 43 5f 5f 47 53 54 53 14 37 I0LPC_EC__GSTS.7 + a820: 47 57 41 4e 00 70 0a 00 60 a0 0e 7b 57 47 46 4c GWAN.p..`..{WGFL + a830: 0a 01 00 7d 60 0a 01 60 a0 0b 7b 57 47 46 4c 0a ...}`..`..{WGFL. + a840: 08 00 a4 60 a0 0a 57 50 57 53 7d 60 0a 02 60 7d ...`..WPWS}`..`} + a850: 60 0a 04 60 a4 60 14 1b 53 57 41 4e 01 a0 0c 7b `..`.`..SWAN...{ + a860: 68 0a 02 00 57 50 57 43 0a 01 a1 07 57 50 57 43 h...WPWC....WPWC + a870: 0a 00 14 37 47 42 44 43 00 70 0a 00 60 a0 0e 7b ...7GBDC.p..`..{ + a880: 57 47 46 4c 0a 10 00 7d 60 0a 01 60 a0 0b 7b 57 WGFL...}`..`..{W + a890: 47 46 4c 0a 80 00 a4 60 a0 0a 42 50 57 53 7d 60 GFL....`..BPWS}` + a8a0: 0a 02 60 7d 60 0a 04 60 a4 60 14 1b 53 42 44 43 ..`}`..`.`..SBDC + a8b0: 01 a0 0c 7b 68 0a 02 00 42 50 57 43 0a 01 a1 07 ...{h...BPWC.... + a8c0: 42 50 57 43 0a 00 14 3b 57 50 57 53 00 a0 1f 5c BPWC...;WPWS...\ + a8d0: 48 38 44 52 70 5c 2f 05 5f 53 42 5f 50 43 49 30 H8DRp\/._SB_PCI0 + a8e0: 4c 50 43 5f 45 43 5f 5f 44 43 57 57 60 a1 12 70 LPC_EC__DCWW`..p + a8f0: 7a 7b 5c 52 42 45 43 0a 3a 0a 40 00 0a 06 00 60 z{\RBEC.:.@....` + a900: a4 60 14 42 09 57 50 57 43 01 a0 4e 04 90 68 90 .`.B.WPWC..N..h. + a910: 7b 57 47 46 4c 0a 01 00 92 7b 57 47 46 4c 0a 08 {WGFL....{WGFL.. + a920: 00 a0 1f 5c 48 38 44 52 70 01 5c 2f 05 5f 53 42 ...\H8DRp.\/._SB + a930: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 43 57 _PCI0LPC_EC__DCW + a940: 57 a1 0c 5c 4d 42 45 43 0a 3a 0a ff 0a 40 7d 57 W..\MBEC.:...@}W + a950: 47 46 4c 0a 02 57 47 46 4c a1 3b a0 1f 5c 48 38 GFL..WGFL.;..\H8 + a960: 44 52 70 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c DRp.\/._SB_PCI0L + a970: 50 43 5f 45 43 5f 5f 44 43 57 57 a1 0c 5c 4d 42 PC_EC__DCWW..\MB + a980: 45 43 0a 3a 0a bf 0a 00 7b 57 47 46 4c 80 0a 02 EC.:....{WGFL... + a990: 00 57 47 46 4c 14 3b 42 50 57 53 00 a0 1f 5c 48 .WGFL.;BPWS...\H + a9a0: 38 44 52 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 8DRp\/._SB_PCI0L + a9b0: 50 43 5f 45 43 5f 5f 44 43 42 44 60 a1 12 70 7a PC_EC__DCBD`..pz + a9c0: 7b 5c 52 42 45 43 0a 3a 0a 10 00 0a 04 00 60 a4 {\RBEC.:......`. + a9d0: 60 14 42 09 42 50 57 43 01 a0 4e 04 90 68 90 7b `.B.BPWC..N..h.{ + a9e0: 57 47 46 4c 0a 10 00 92 7b 57 47 46 4c 0a 80 00 WGFL....{WGFL... + a9f0: a0 1f 5c 48 38 44 52 70 01 5c 2f 05 5f 53 42 5f ..\H8DRp.\/._SB_ + aa00: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 44 43 42 44 PCI0LPC_EC__DCBD + aa10: a1 0c 5c 4d 42 45 43 0a 3a 0a ff 0a 10 7d 57 47 ..\MBEC.:....}WG + aa20: 46 4c 0a 20 57 47 46 4c a1 3b a0 1f 5c 48 38 44 FL. WGFL.;..\H8D + aa30: 52 70 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 Rp.\/._SB_PCI0LP + aa40: 43 5f 45 43 5f 5f 44 43 42 44 a1 0c 5c 4d 42 45 C_EC__DCBD..\MBE + aa50: 43 0a 3a 0a ef 0a 00 7b 57 47 46 4c 80 0a 20 00 C.:....{WGFL.. . + aa60: 57 47 46 4c 14 3b 57 47 49 4e 00 70 0a 00 57 47 WGFL.;WGIN.p..WG + aa70: 46 4c 70 5c 57 47 53 56 0a 01 57 47 46 4c a0 10 FLp\WGSV..WGFL.. + aa80: 57 50 57 53 7d 57 47 46 4c 0a 02 57 47 46 4c a0 WPWS}WGFL..WGFL. + aa90: 10 42 50 57 53 7d 57 47 46 4c 0a 20 57 47 46 4c .BPWS}WGFL. WGFL + aaa0: 14 14 57 47 50 53 01 a0 0d 92 95 68 0a 04 5c 42 ..WGPS.....h..\B + aab0: 4c 54 48 0a 05 14 26 57 47 57 4b 01 a0 0f 7b 57 LTH...&WGWK...{W + aac0: 47 46 4c 0a 20 00 42 50 57 43 0a 01 a0 0f 7b 57 GFL. .BPWC....{W + aad0: 47 46 4c 0a 02 00 57 50 57 43 0a 01 10 39 5c 2f GFL...WPWC...9\/ + aae0: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + aaf0: 5f 14 24 5f 51 34 31 00 5c 2f 06 5f 53 42 5f 50 _.$_Q41.\/._SB_P + ab00: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + ab10: 48 4b 51 0b 00 70 5b 82 85 1f 02 57 4d 49 31 08 HKQ..p[....WMI1. + ab20: 5f 48 49 44 0c 41 d0 0c 14 08 5f 55 49 44 0a 01 _HID.A...._UID.. + ab30: 08 5f 57 44 47 11 48 0b 0a b4 0e 23 f5 51 77 96 ._WDG.H....#.Qw. + ab40: cd 46 a1 cf c0 b2 3e e3 4d b7 41 30 50 05 64 9a .F....>.M.A0P.d. + ab50: 47 98 f5 33 33 4e a7 07 8e 25 1e bb c3 a1 41 31 G..33N...%....A1 + ab60: 01 06 ef 54 4b 6a ed a5 33 4d 94 55 b0 d9 b4 8d ...TKj..3M.U.... + ab70: f4 b3 41 32 01 06 b6 eb f1 74 7a 92 7d 4c 95 df ..A2.....tz.}L.. + ab80: 69 8e 21 e8 0e b5 41 33 01 06 ff 04 ef 7e 28 43 i.!...A3.....~(C + ab90: 7c 44 b5 bb d4 49 92 5d 53 8d 41 34 01 06 9e 15 |D...I.]S.A4.... + aba0: db 8a 32 1e 5c 45 bc 93 30 8a 7e d9 82 46 41 35 ..2.\E..0.~..FA5 + abb0: 01 01 fd d9 51 26 1c 91 69 4b b9 4e d0 de d5 96 ....Q&..iK.N.... + abc0: 3b d7 41 36 01 06 1a 65 64 73 2f 13 e7 4f ad aa ;.A6...eds/..O.. + abd0: 40 c6 c7 ee 2e 3b 41 37 01 06 21 12 90 05 66 d5 @....;A7..!...f. + abe0: d1 11 b2 f0 00 a0 c9 06 29 10 42 41 01 00 08 52 ........).BA...R + abf0: 45 54 4e 12 4a 04 05 0d 53 75 63 63 65 73 73 00 ETN.J...Success. + ac00: 0d 4e 6f 74 20 53 75 70 70 6f 72 74 65 64 00 0d .Not Supported.. + ac10: 49 6e 76 61 6c 69 64 20 50 61 72 61 6d 65 74 65 Invalid Paramete + ac20: 72 00 0d 41 63 63 65 73 73 20 44 65 6e 69 65 64 r..Access Denied + ac30: 00 0d 53 79 73 74 65 6d 20 42 75 73 79 00 08 49 ..System Busy..I + ac40: 54 45 4d 12 43 7c 51 12 0f 02 0a 0e 0d 57 61 6b TEM.C|Q......Wak + ac50: 65 4f 6e 4c 41 4e 00 12 1a 02 0a 00 0d 45 74 68 eOnLAN.......Eth + ac60: 65 72 6e 65 74 4c 41 4e 4f 70 74 69 6f 6e 52 4f ernetLANOptionRO + ac70: 4d 00 12 14 02 0a 00 0d 55 53 42 42 49 4f 53 53 M.......USBBIOSS + ac80: 75 70 70 6f 72 74 00 12 11 02 0a 00 0d 41 6c 77 upport.......Alw + ac90: 61 79 73 4f 6e 55 53 42 00 12 10 02 0a 01 0d 54 aysOnUSB.......T + aca0: 72 61 63 6b 50 6f 69 6e 74 00 12 0e 02 0a 01 0d rackPoint....... + acb0: 54 6f 75 63 68 50 61 64 00 12 0f 02 0a 00 0d 46 TouchPad.......F + acc0: 6e 4b 65 79 4c 6f 63 6b 00 12 15 02 0a 04 0d 54 nKeyLock.......T + acd0: 68 69 6e 6b 50 61 64 4e 75 6d 4c 6f 63 6b 00 12 hinkPadNumLock.. + ace0: 14 02 0a 0c 0d 50 6f 77 65 72 4f 6e 4e 75 6d 4c .....PowerOnNumL + acf0: 6f 63 6b 00 12 17 02 0a 05 0d 42 6f 6f 74 44 69 ock.......BootDi + ad00: 73 70 6c 61 79 44 65 76 69 63 65 00 12 0f 02 0a splayDevice..... + ad10: 00 0d 53 70 65 65 64 53 74 65 70 00 12 21 02 0a ..SpeedStep..!.. + ad20: 09 0d 41 64 61 70 74 69 76 65 54 68 65 72 6d 61 ..AdaptiveTherma + ad30: 6c 4d 61 6e 61 67 65 6d 65 6e 74 41 43 00 12 26 lManagementAC..& + ad40: 02 0a 09 0d 41 64 61 70 74 69 76 65 54 68 65 72 ....AdaptiveTher + ad50: 6d 61 6c 4d 61 6e 61 67 65 6d 65 6e 74 42 61 74 malManagementBat + ad60: 74 65 72 79 00 12 10 02 0a 06 0d 43 44 52 4f 4d tery.......CDROM + ad70: 53 70 65 65 64 00 12 18 02 0a 01 0d 43 50 55 50 Speed.......CPUP + ad80: 6f 77 65 72 4d 61 6e 61 67 65 6d 65 6e 74 00 12 owerManagement.. + ad90: 16 02 0a 00 0d 50 6f 77 65 72 43 6f 6e 74 72 6f .....PowerContro + ada0: 6c 42 65 65 70 00 12 15 02 0a 00 0d 4c 6f 77 42 lBeep.......LowB + adb0: 61 74 74 65 72 79 41 6c 61 72 6d 00 12 12 02 0a atteryAlarm..... + adc0: 00 0d 50 61 73 73 77 6f 72 64 42 65 65 70 00 12 ..PasswordBeep.. + add0: 12 02 0a 00 0d 4b 65 79 62 6f 61 72 64 42 65 65 .....KeyboardBee + ade0: 70 00 12 18 02 0a 00 0d 45 78 74 65 6e 64 65 64 p.......Extended + adf0: 4d 65 6d 6f 72 79 54 65 73 74 00 12 18 02 0a 07 MemoryTest...... + ae00: 0d 53 41 54 41 43 6f 6e 74 72 6f 6c 6c 65 72 4d .SATAControllerM + ae10: 6f 64 65 00 12 19 02 0a 00 0d 43 6f 72 65 4d 75 ode.......CoreMu + ae20: 6c 74 69 50 72 6f 63 65 73 73 69 6e 67 00 12 1e ltiProcessing... + ae30: 02 0a 00 0d 56 69 72 74 75 61 6c 69 7a 61 74 69 ....Virtualizati + ae40: 6f 6e 54 65 63 68 6e 6f 6c 6f 67 79 00 12 15 02 onTechnology.... + ae50: 0a 00 0d 4c 6f 63 6b 42 49 4f 53 53 65 74 74 69 ...LockBIOSSetti + ae60: 6e 67 00 12 1b 02 0a 0b 0d 4d 69 6e 69 6d 75 6d ng.......Minimum + ae70: 50 61 73 73 77 6f 72 64 4c 65 6e 67 74 68 00 12 PasswordLength.. + ae80: 22 02 0a 00 0d 42 49 4f 53 50 61 73 73 77 6f 72 "....BIOSPasswor + ae90: 64 41 74 55 6e 61 74 74 65 6e 64 65 64 42 6f 6f dAtUnattendedBoo + aea0: 74 00 12 29 02 0a 00 0d 46 69 6e 67 65 72 70 72 t..)....Fingerpr + aeb0: 69 6e 74 50 72 65 64 65 73 6b 74 6f 70 41 75 74 intPredesktopAut + aec0: 68 65 6e 74 69 63 61 74 69 6f 6e 00 12 1f 02 0a hentication..... + aed0: 08 0d 46 69 6e 67 65 72 70 72 69 6e 74 52 65 61 ..FingerprintRea + aee0: 64 65 72 50 72 69 6f 72 69 74 79 00 12 1d 02 0a derPriority..... + aef0: 03 0d 46 69 6e 67 65 72 70 72 69 6e 74 53 65 63 ..FingerprintSec + af00: 75 72 69 74 79 4d 6f 64 65 00 12 12 02 0a 02 0d urityMode....... + af10: 53 65 63 75 72 69 74 79 43 68 69 70 00 12 1a 02 SecurityChip.... + af20: 0a 00 0d 42 49 4f 53 55 70 64 61 74 65 42 79 45 ...BIOSUpdateByE + af30: 6e 64 55 73 65 72 73 00 12 1d 02 0a 00 0d 44 61 ndUsers.......Da + af40: 74 61 45 78 65 63 75 74 69 6f 6e 50 72 65 76 65 taExecutionPreve + af50: 6e 74 69 6f 6e 00 12 17 02 0a 00 0d 45 74 68 65 ntion.......Ethe + af60: 72 6e 65 74 4c 41 4e 41 63 63 65 73 73 00 12 17 rnetLANAccess... + af70: 02 0a 00 0d 57 69 72 65 6c 65 73 73 4c 41 4e 41 ....WirelessLANA + af80: 63 63 65 73 73 00 12 17 02 0a 00 0d 57 69 72 65 ccess.......Wire + af90: 6c 65 73 73 57 41 4e 41 63 63 65 73 73 00 12 15 lessWANAccess... + afa0: 02 0a 00 0d 42 6c 75 65 74 6f 6f 74 68 41 63 63 ....BluetoothAcc + afb0: 65 73 73 00 12 17 02 0a 00 0d 57 69 72 65 6c 65 ess.......Wirele + afc0: 73 73 55 53 42 41 63 63 65 73 73 00 12 11 02 0a ssUSBAccess..... + afd0: 00 0d 4d 6f 64 65 6d 41 63 63 65 73 73 00 12 13 ..ModemAccess... + afe0: 02 0a 00 0d 55 53 42 50 6f 72 74 41 63 63 65 73 ....USBPortAcces + aff0: 73 00 12 14 02 0a 00 0d 49 45 45 45 31 33 39 34 s.......IEEE1394 + b000: 41 63 63 65 73 73 00 12 17 02 0a 00 0d 45 78 70 Access.......Exp + b010: 72 65 73 73 43 61 72 64 41 63 63 65 73 73 00 12 ressCardAccess.. + b020: 1a 02 0a 00 0d 50 43 49 45 78 70 72 65 73 73 53 .....PCIExpressS + b030: 6c 6f 74 41 63 63 65 73 73 00 12 14 02 0a 00 0d lotAccess....... + b040: 55 6c 74 72 61 62 61 79 41 63 63 65 73 73 00 12 UltrabayAccess.. + b050: 1a 02 0a 00 0d 4d 65 6d 6f 72 79 43 61 72 64 53 .....MemoryCardS + b060: 6c 6f 74 41 63 63 65 73 73 00 12 19 02 0a 00 0d lotAccess....... + b070: 53 6d 61 72 74 43 61 72 64 53 6c 6f 74 41 63 63 SmartCardSlotAcc + b080: 65 73 73 00 12 1c 02 0a 00 0d 49 6e 74 65 67 72 ess.......Integr + b090: 61 74 65 64 43 61 6d 65 72 61 41 63 63 65 73 73 atedCameraAccess + b0a0: 00 12 16 02 0a 00 0d 4d 69 63 72 6f 70 68 6f 6e .......Microphon + b0b0: 65 41 63 63 65 73 73 00 12 0e 02 0a 0a 0d 42 6f eAccess.......Bo + b0c0: 6f 74 4d 6f 64 65 00 12 17 02 0a 00 0d 53 74 61 otMode.......Sta + b0d0: 72 74 75 70 4f 70 74 69 6f 6e 4b 65 79 73 00 12 rtupOptionKeys.. + b0e0: 1d 02 0a 00 0d 42 6f 6f 74 44 65 76 69 63 65 4c .....BootDeviceL + b0f0: 69 73 74 46 31 32 4f 70 74 69 6f 6e 00 12 0f 02 istF12Option.... + b100: 0a 64 0d 42 6f 6f 74 4f 72 64 65 72 00 12 11 02 .d.BootOrder.... + b110: 0a 00 0d 57 69 4d 41 58 41 63 63 65 73 73 00 12 ...WiMAXAccess.. + b120: 14 02 0a 0d 0d 47 72 61 70 68 69 63 73 44 65 76 .....GraphicsDev + b130: 69 63 65 00 12 10 02 0a 00 0d 54 58 54 46 65 61 ice.......TXTFea + b140: 74 75 72 65 00 12 10 02 0a 00 0d 56 54 64 46 65 ture.......VTdFe + b150: 61 74 75 72 65 00 12 10 02 0a 0f 0d 41 4d 54 43 ature.......AMTC + b160: 6f 6e 74 72 6f 6c 00 12 27 02 0a 00 0d 46 69 6e ontrol..'....Fin + b170: 67 65 72 70 72 69 6e 74 50 61 73 73 77 6f 72 64 gerprintPassword + b180: 41 75 74 68 65 6e 74 69 63 61 74 69 6f 6e 00 12 Authentication.. + b190: 1d 02 0a 00 0d 46 69 6e 67 65 72 70 72 69 6e 74 .....Fingerprint + b1a0: 52 65 61 64 65 72 41 63 63 65 73 73 00 12 26 02 ReaderAccess..&. + b1b0: 0a 00 0d 4f 73 44 65 74 65 63 74 69 6f 6e 46 6f ...OsDetectionFo + b1c0: 72 53 77 69 74 63 68 61 62 6c 65 47 72 61 70 68 rSwitchableGraph + b1d0: 69 63 73 00 12 20 02 0a 0f 0d 43 6f 6d 70 75 74 ics.. ....Comput + b1e0: 72 61 63 65 4d 6f 64 75 6c 65 41 63 74 69 76 61 raceModuleActiva + b1f0: 74 69 6f 6e 00 12 1f 02 0a 01 0d 50 43 49 45 78 tion.......PCIEx + b200: 70 72 65 73 73 50 6f 77 65 72 4d 61 6e 61 67 65 pressPowerManage + b210: 6d 65 6e 74 00 12 19 02 0a 0f 0d 41 54 70 4d 6f ment.......ATpMo + b220: 64 75 6c 65 41 63 74 69 76 61 74 69 6f 6e 00 12 duleActivation.. + b230: 15 02 0a 00 0d 65 53 41 54 41 50 6f 72 74 41 63 .....eSATAPortAc + b240: 63 65 73 73 00 12 1d 02 0a 00 0d 48 61 72 64 77 cess.......Hardw + b250: 61 72 65 50 61 73 73 77 6f 72 64 4d 61 6e 61 67 arePasswordManag + b260: 65 72 00 12 1e 02 0a 00 0d 48 79 70 65 72 54 68 er.......HyperTh + b270: 72 65 61 64 69 6e 67 54 65 63 68 6e 6f 6c 6f 67 readingTechnolog + b280: 79 00 12 13 02 0a 00 0d 46 6e 43 74 72 6c 4b 65 y.......FnCtrlKe + b290: 79 53 77 61 70 00 12 1a 02 0a 00 0d 42 49 4f 53 ySwap.......BIOS + b2a0: 50 61 73 73 77 6f 72 64 41 74 52 65 62 6f 6f 74 PasswordAtReboot + b2b0: 00 12 12 02 0a 00 0d 4f 6e 42 79 41 63 41 74 74 .......OnByAcAtt + b2c0: 61 63 68 00 12 11 02 0a 64 0d 4e 65 74 77 6f 72 ach.....d.Networ + b2d0: 6b 42 6f 6f 74 00 12 13 02 0a 00 0d 42 6f 6f 74 kBoot.......Boot + b2e0: 4f 72 64 65 72 4c 6f 63 6b 00 12 0f 02 0a 10 0d OrderLock....... + b2f0: 55 53 42 33 30 4d 6f 64 65 00 12 16 02 0a 11 0d USB30Mode....... + b300: 45 78 70 72 65 73 73 43 61 72 64 53 70 65 65 64 ExpressCardSpeed + b310: 00 12 1a 02 0a 00 0d 52 61 70 69 64 53 74 61 72 .......RapidStar + b320: 74 54 65 63 68 6e 6f 6c 6f 67 79 00 12 1a 02 0a tTechnology..... + b330: 12 0d 4b 65 79 62 6f 61 72 64 49 6c 6c 75 6d 69 ..KeyboardIllumi + b340: 6e 61 74 69 6f 6e 00 12 16 02 0a 00 0d 49 50 76 nation.......IPv + b350: 34 4e 65 74 77 6f 72 6b 53 74 61 63 6b 00 12 16 4NetworkStack... + b360: 02 0a 00 0d 49 50 76 36 4e 65 74 77 6f 72 6b 53 ....IPv6NetworkS + b370: 74 61 63 6b 00 12 19 02 0a 13 0d 55 65 66 69 50 tack.......UefiP + b380: 78 65 42 6f 6f 74 50 72 69 6f 72 69 74 79 00 12 xeBootPriority.. + b390: 25 02 0a 00 0d 50 68 79 73 69 63 61 6c 50 72 65 %....PhysicalPre + b3a0: 73 65 6e 63 65 46 6f 72 54 70 6d 50 72 6f 76 69 senceForTpmProvi + b3b0: 73 69 6f 6e 00 12 21 02 0a 00 0d 50 68 79 73 69 sion..!....Physi + b3c0: 63 61 6c 50 72 65 73 65 6e 63 65 46 6f 72 54 70 calPresenceForTp + b3d0: 6d 43 6c 65 61 72 00 12 1e 02 0a 00 0d 53 65 63 mClear.......Sec + b3e0: 75 72 65 52 6f 6c 6c 42 61 63 6b 50 72 65 76 65 ureRollBackPreve + b3f0: 6e 74 69 6f 6e 00 12 10 02 0a 00 0d 53 65 63 75 ntion.......Secu + b400: 72 65 42 6f 6f 74 00 08 56 53 45 4c 12 42 26 14 reBoot..VSEL.B&. + b410: 12 13 02 0d 44 69 73 61 62 6c 65 00 0d 45 6e 61 ....Disable..Ena + b420: 62 6c 65 00 12 16 02 0d 44 69 73 61 62 6c 65 00 ble.....Disable. + b430: 0d 41 75 74 6f 6d 61 74 69 63 00 12 1d 03 0d 41 .Automatic.....A + b440: 63 74 69 76 65 00 0d 49 6e 61 63 74 69 76 65 00 ctive..Inactive. + b450: 0d 44 69 73 61 62 6c 65 00 12 10 02 0d 4e 6f 72 .Disable.....Nor + b460: 6d 61 6c 00 0d 48 69 67 68 00 12 1d 02 0d 49 6e mal..High.....In + b470: 64 65 70 65 6e 64 65 6e 74 00 0d 53 79 6e 63 68 dependent..Synch + b480: 72 6f 6e 69 7a 65 64 00 12 35 05 0d 4c 43 44 00 ronized..5..LCD. + b490: 0d 56 47 41 00 0d 44 69 67 69 74 61 6c 00 0d 44 .VGA..Digital..D + b4a0: 69 67 69 74 61 6c 31 6f 6e 44 6f 63 6b 00 0d 44 igital1onDock..D + b4b0: 69 67 69 74 61 6c 32 6f 6e 44 6f 63 6b 00 12 18 igital2onDock... + b4c0: 03 0d 48 69 67 68 00 0d 4e 6f 72 6d 61 6c 00 0d ..High..Normal.. + b4d0: 53 69 6c 65 6e 74 00 12 17 02 0d 43 6f 6d 70 61 Silent.....Compa + b4e0: 74 69 62 69 6c 69 74 79 00 0d 41 48 43 49 00 12 tibility..AHCI.. + b4f0: 1a 02 0d 45 78 74 65 72 6e 61 6c 00 0d 49 6e 74 ...External..Int + b500: 65 72 6e 61 6c 4f 6e 6c 79 00 12 21 02 0d 4d 61 ernalOnly..!..Ma + b510: 78 69 6d 69 7a 65 50 65 72 66 6f 72 6d 61 6e 63 ximizePerformanc + b520: 65 00 0d 42 61 6c 61 6e 63 65 64 00 12 16 02 0d e..Balanced..... + b530: 51 75 69 63 6b 00 0d 44 69 61 67 6e 6f 73 74 69 Quick..Diagnosti + b540: 63 73 00 12 29 0a 0d 44 69 73 61 62 6c 65 00 0d cs..)..Disable.. + b550: 34 00 0d 35 00 0d 36 00 0d 37 00 0d 38 00 0d 39 4..5..6..7..8..9 + b560: 00 0d 31 30 00 0d 31 31 00 0d 31 32 00 12 11 03 ..10..11..12.... + b570: 0d 41 75 74 6f 00 0d 4f 6e 00 0d 4f 66 66 00 12 .Auto..On..Off.. + b580: 2d 03 0d 49 6e 74 65 67 72 61 74 65 64 47 66 78 -..IntegratedGfx + b590: 00 0d 44 69 73 63 72 65 74 65 47 66 78 00 0d 53 ..DiscreteGfx..S + b5a0: 77 69 74 63 68 61 62 6c 65 47 66 78 00 12 29 04 witchableGfx..). + b5b0: 0d 44 69 73 61 62 6c 65 00 0d 41 43 4f 6e 6c 79 .Disable..ACOnly + b5c0: 00 0d 41 43 61 6e 64 42 61 74 74 65 72 79 00 0d ..ACandBattery.. + b5d0: 45 6e 61 62 6c 65 00 12 1c 03 0d 44 69 73 61 62 Enable.....Disab + b5e0: 6c 65 00 0d 45 6e 61 62 6c 65 00 0d 44 69 73 61 le..Enable..Disa + b5f0: 62 6c 65 00 12 1e 03 0d 44 69 73 61 62 6c 65 00 ble.....Disable. + b600: 0d 45 6e 61 62 6c 65 00 0d 41 75 74 6f 6d 61 74 .Enable..Automat + b610: 69 63 00 12 1a 02 0d 47 65 6e 65 72 61 74 69 6f ic.....Generatio + b620: 6e 31 00 0d 41 75 74 6f 6d 61 74 69 63 00 12 27 n1..Automatic..' + b630: 03 0d 54 68 69 6e 6b 4c 69 67 68 74 4f 6e 6c 79 ..ThinkLightOnly + b640: 00 0d 42 61 63 6b 6c 69 67 68 74 4f 6e 6c 79 00 ..BacklightOnly. + b650: 0d 42 6f 74 68 00 12 18 02 0d 49 50 76 34 46 69 .Both.....IPv4Fi + b660: 72 73 74 00 0d 49 50 76 36 46 69 72 73 74 00 08 rst..IPv6First.. + b670: 56 4c 53 54 12 48 07 0f 0d 48 44 44 30 00 0d 48 VLST.H...HDD0..H + b680: 44 44 31 00 0d 48 44 44 32 00 0d 48 44 44 33 00 DD1..HDD2..HDD3. + b690: 0d 48 44 44 34 00 0d 50 43 49 4c 41 4e 00 0d 41 .HDD4..PCILAN..A + b6a0: 54 41 50 49 43 44 30 00 0d 41 54 41 50 49 43 44 TAPICD0..ATAPICD + b6b0: 31 00 0d 41 54 41 50 49 43 44 32 00 0d 55 53 42 1..ATAPICD2..USB + b6c0: 46 44 44 00 0d 55 53 42 43 44 00 0d 55 53 42 48 FDD..USBCD..USBH + b6d0: 44 44 00 0d 4f 74 68 65 72 48 44 44 00 0d 4f 74 DD..OtherHDD..Ot + b6e0: 68 65 72 43 44 00 0d 4e 4f 44 45 56 00 08 50 45 herCD..NODEV..PE + b6f0: 4e 43 12 13 02 0d 61 73 63 69 69 00 0d 73 63 61 NC....ascii..sca + b700: 6e 63 6f 64 65 00 08 50 4b 42 44 12 0e 03 0d 75 ncode..PKBD....u + b710: 73 00 0d 66 72 00 0d 67 72 00 08 50 54 59 50 12 s..fr..gr..PTYP. + b720: 36 08 0d 70 61 70 00 0d 70 6f 70 00 0d 75 68 64 6..pap..pop..uhd + b730: 70 31 00 0d 6d 68 64 70 31 00 0d 75 68 64 70 32 p1..mhdp1..uhdp2 + b740: 00 0d 6d 68 64 70 32 00 0d 75 68 64 70 33 00 0d ..mhdp2..uhdp3.. + b750: 6d 68 64 70 33 00 5b 01 4d 57 4d 49 07 08 50 43 mhdp3.[.MWMI..PC + b760: 46 47 11 03 0a 18 08 49 42 55 46 11 04 0b 00 01 FG.....IBUF..... + b770: 08 49 4c 45 4e 0a 00 08 50 53 54 52 11 03 0a 81 .ILEN...PSTR.... + b780: 14 4d 22 57 51 41 30 01 5b 23 4d 57 4d 49 ff ff .M"WQA0.[#MWMI.. + b790: a0 16 92 93 5c 57 4d 49 53 0a 00 68 0a 00 5b 27 ....\WMIS..h..[' + b7a0: 4d 57 4d 49 a4 0d 00 70 83 88 49 54 45 4d 5c 57 MWMI...p..ITEM\W + b7b0: 49 54 4d 00 60 70 83 88 60 0a 00 00 61 70 83 88 ITM.`p..`...ap.. + b7c0: 60 0a 01 00 62 a0 21 95 61 0a 64 73 62 0d 2c 00 `...b.!.a.dsb.,. + b7d0: 66 70 83 88 56 53 45 4c 61 00 63 73 66 83 88 63 fp..VSELa.csf..c + b7e0: 5c 57 53 45 4c 00 67 a1 4e 1b 70 87 56 4c 53 54 \WSEL.g.N.p.VLST + b7f0: 63 a0 1e 92 94 5c 57 4c 53 30 63 73 62 0d 2c 00 c....\WLS0csb.,. + b800: 67 73 67 83 88 56 4c 53 54 5c 57 4c 53 30 00 62 gsg..VLST\WLS0.b + b810: a0 1e 92 94 5c 57 4c 53 31 63 73 62 0d 3a 00 67 ....\WLS1csb.:.g + b820: 73 67 83 88 56 4c 53 54 5c 57 4c 53 31 00 62 a0 sg..VLST\WLS1.b. + b830: 1e 92 94 5c 57 4c 53 32 63 73 62 0d 3a 00 67 73 ...\WLS2csb.:.gs + b840: 67 83 88 56 4c 53 54 5c 57 4c 53 32 00 62 a0 1e g..VLST\WLS2.b.. + b850: 92 94 5c 57 4c 53 33 63 73 62 0d 3a 00 67 73 67 ..\WLS3csb.:.gsg + b860: 83 88 56 4c 53 54 5c 57 4c 53 33 00 62 a0 1e 92 ..VLST\WLS3.b... + b870: 94 5c 57 4c 53 34 63 73 62 0d 3a 00 67 73 67 83 .\WLS4csb.:.gsg. + b880: 88 56 4c 53 54 5c 57 4c 53 34 00 62 a0 1e 92 94 .VLST\WLS4.b.... + b890: 5c 57 4c 53 35 63 73 62 0d 3a 00 67 73 67 83 88 \WLS5csb.:.gsg.. + b8a0: 56 4c 53 54 5c 57 4c 53 35 00 62 a0 1e 92 94 5c VLST\WLS5.b....\ + b8b0: 57 4c 53 36 63 73 62 0d 3a 00 67 73 67 83 88 56 WLS6csb.:.gsg..V + b8c0: 4c 53 54 5c 57 4c 53 36 00 62 a0 1e 92 94 5c 57 LST\WLS6.b....\W + b8d0: 4c 53 37 63 73 62 0d 3a 00 67 73 67 83 88 56 4c LS7csb.:.gsg..VL + b8e0: 53 54 5c 57 4c 53 37 00 62 a0 1e 92 94 5c 57 4c ST\WLS7.b....\WL + b8f0: 53 38 63 73 62 0d 3a 00 67 73 67 83 88 56 4c 53 S8csb.:.gsg..VLS + b900: 54 5c 57 4c 53 38 00 62 a0 1e 92 94 5c 57 4c 53 T\WLS8.b....\WLS + b910: 39 63 73 62 0d 3a 00 67 73 67 83 88 56 4c 53 54 9csb.:.gsg..VLST + b920: 5c 57 4c 53 39 00 62 a0 1e 92 94 5c 57 4c 53 41 \WLS9.b....\WLSA + b930: 63 73 62 0d 3a 00 67 73 67 83 88 56 4c 53 54 5c csb.:.gsg..VLST\ + b940: 57 4c 53 41 00 62 a0 1e 92 94 5c 57 4c 53 42 63 WLSA.b....\WLSBc + b950: 73 62 0d 3a 00 67 73 67 83 88 56 4c 53 54 5c 57 sb.:.gsg..VLST\W + b960: 4c 53 42 00 62 a0 1e 92 94 5c 57 4c 53 43 63 73 LSB.b....\WLSCcs + b970: 62 0d 3a 00 67 73 67 83 88 56 4c 53 54 5c 57 4c b.:.gsg..VLST\WL + b980: 53 43 00 62 a0 1e 92 94 5c 57 4c 53 44 63 73 62 SC.b....\WLSDcsb + b990: 0d 3a 00 67 73 67 83 88 56 4c 53 54 5c 57 4c 53 .:.gsg..VLST\WLS + b9a0: 44 00 62 70 62 67 5b 27 4d 57 4d 49 a4 67 14 47 D.bpbg['MWMI.g.G + b9b0: 05 57 4d 41 31 03 5b 23 4d 57 4d 49 ff ff a0 0a .WMA1.[#MWMI.... + b9c0: 93 87 6a 0a 00 70 0a 02 60 a1 2d 70 43 41 52 47 ..j..p..`.-pCARG + b9d0: 6a 60 a0 24 93 60 0a 00 70 57 53 45 54 49 54 45 j`.$.`..pWSETITE + b9e0: 4d 56 53 45 4c 60 a0 10 93 60 0a 00 70 5c 57 4d MVSEL`...`..p\WM + b9f0: 49 53 0a 01 0a 00 60 5b 27 4d 57 4d 49 a4 83 88 IS....`['MWMI... + ba00: 52 45 54 4e 60 00 14 42 05 57 4d 41 32 03 5b 23 RETN`..B.WMA2.[# + ba10: 4d 57 4d 49 ff ff 70 43 41 52 47 6a 60 a0 2c 93 MWMI..pCARGj`.,. + ba20: 60 0a 00 a0 15 92 93 49 4c 45 4e 0a 00 70 43 50 `......ILEN..pCP + ba30: 41 53 49 42 55 46 0a 00 60 a0 10 93 60 0a 00 70 ASIBUF..`...`..p + ba40: 5c 57 4d 49 53 0a 02 0a 00 60 5b 27 4d 57 4d 49 \WMIS....`['MWMI + ba50: a4 83 88 52 45 54 4e 60 00 14 42 05 57 4d 41 33 ...RETN`..B.WMA3 + ba60: 03 5b 23 4d 57 4d 49 ff ff 70 43 41 52 47 6a 60 .[#MWMI..pCARGj` + ba70: a0 2c 93 60 0a 00 a0 15 92 93 49 4c 45 4e 0a 00 .,.`......ILEN.. + ba80: 70 43 50 41 53 49 42 55 46 0a 00 60 a0 10 93 60 pCPASIBUF..`...` + ba90: 0a 00 70 5c 57 4d 49 53 0a 03 0a 00 60 5b 27 4d ..p\WMIS....`['M + baa0: 57 4d 49 a4 83 88 52 45 54 4e 60 00 14 42 05 57 WMI...RETN`..B.W + bab0: 4d 41 34 03 5b 23 4d 57 4d 49 ff ff 70 43 41 52 MA4.[#MWMI..pCAR + bac0: 47 6a 60 a0 2c 93 60 0a 00 a0 15 92 93 49 4c 45 Gj`.,.`......ILE + bad0: 4e 0a 00 70 43 50 41 53 49 42 55 46 0a 00 60 a0 N..pCPASIBUF..`. + bae0: 10 93 60 0a 00 70 5c 57 4d 49 53 0a 04 0a 00 60 ..`..p\WMIS....` + baf0: 5b 27 4d 57 4d 49 a4 83 88 52 45 54 4e 60 00 14 ['MWMI...RETN`.. + bb00: 49 07 57 51 41 35 01 5b 23 4d 57 4d 49 ff ff 70 I.WQA5.[#MWMI..p + bb10: 5c 57 4d 49 53 0a 05 0a 00 60 70 5c 57 53 50 4d \WMIS....`p\WSPM + bb20: 88 50 43 46 47 0a 00 00 70 5c 57 53 50 53 88 50 .PCFG...p\WSPS.P + bb30: 43 46 47 0a 04 00 70 5c 57 53 4d 4e 88 50 43 46 CFG...p\WSMN.PCF + bb40: 47 0a 08 00 70 5c 57 53 4d 58 88 50 43 46 47 0a G...p\WSMX.PCFG. + bb50: 0c 00 70 5c 57 53 45 4e 88 50 43 46 47 0a 10 00 ..p\WSEN.PCFG... + bb60: 70 5c 57 53 4b 42 88 50 43 46 47 0a 14 00 5b 27 p\WSKB.PCFG...[' + bb70: 4d 57 4d 49 a4 50 43 46 47 14 4d 05 57 4d 41 36 MWMI.PCFG.M.WMA6 + bb80: 03 5b 23 4d 57 4d 49 ff ff a0 0a 93 87 6a 0a 00 .[#MWMI......j.. + bb90: 70 0a 02 60 a1 33 70 43 41 52 47 6a 60 a0 2a 93 p..`.3pCARGj`.*. + bba0: 60 0a 00 a0 13 92 93 49 4c 45 4e 0a 00 70 53 50 `......ILEN..pSP + bbb0: 41 53 49 42 55 46 60 a0 10 93 60 0a 00 70 5c 57 ASIBUF`...`..p\W + bbc0: 4d 49 53 0a 06 0a 00 60 5b 27 4d 57 4d 49 a4 83 MIS....`['MWMI.. + bbd0: 88 52 45 54 4e 60 00 14 4c 0b 57 4d 41 37 03 a0 .RETN`..L.WMA7.. + bbe0: 09 93 87 6a 0a 00 a4 0d 00 70 43 41 52 47 6a 60 ...j.....pCARGj` + bbf0: a0 41 0a 93 60 0a 00 70 47 49 54 4d 49 42 55 46 .A..`..pGITMIBUF + bc00: 49 54 45 4d 61 a0 07 93 61 ff a4 0d 00 70 83 88 ITEMa...a....p.. + bc10: 49 54 45 4d 61 00 60 70 83 88 60 0a 00 00 61 a0 ITEMa.`p..`...a. + bc20: 3f 95 61 0a 64 70 83 88 56 53 45 4c 61 00 63 70 ?.a.dp..VSELa.cp + bc30: 83 88 63 0a 00 00 62 70 87 63 64 70 0a 01 65 a2 ..c...bp.cdp..e. + bc40: 1f 95 65 64 70 83 88 63 65 00 66 a0 11 92 93 87 ..edp..ce.f..... + bc50: 66 0a 00 73 62 0d 2c 00 67 73 67 66 62 75 65 a1 f..sb.,.gsgfbue. + bc60: 32 70 83 88 56 4c 53 54 0a 00 00 62 70 87 56 4c 2p..VLST...bp.VL + bc70: 53 54 64 70 0a 01 65 a2 1a 95 65 64 70 83 88 56 STdp..e...edp..V + bc80: 4c 53 54 65 00 66 73 62 0d 2c 00 67 73 67 66 62 LSTe.fsb.,.gsgfb + bc90: 75 65 a4 62 14 40 07 43 41 52 47 01 70 87 68 60 ue.b.@.CARG.p.h` + bca0: a0 16 93 60 0a 00 70 0a 00 49 42 55 46 70 0a 00 ...`..p..IBUFp.. + bcb0: 49 4c 45 4e a4 0a 00 a0 0a 92 93 8e 68 0a 02 a4 ILEN........h... + bcc0: 0a 02 a0 09 92 95 60 0a ff a4 0a 02 70 68 49 42 ......`.....phIB + bcd0: 55 46 76 60 70 83 88 49 42 55 46 60 00 61 a0 1a UFv`p..IBUF`.a.. + bce0: 91 93 61 0a 3b 93 61 0a 2a 70 0a 00 88 49 42 55 ..a.;.a.*p...IBU + bcf0: 46 60 00 70 60 49 4c 45 4e a1 08 70 87 68 49 4c F`.p`ILEN..p.hIL + bd00: 45 4e a4 0a 00 14 41 07 53 43 4d 50 03 70 87 68 EN....A.SCMP.p.h + bd10: 60 a0 08 93 60 0a 00 a4 0a 00 75 60 08 53 54 52 `...`.....u`.STR + bd20: 31 11 02 60 70 68 53 54 52 31 76 60 70 0a 00 61 1..`phSTR1v`p..a + bd30: 70 6a 62 a2 22 95 61 60 70 83 88 53 54 52 31 61 pjb.".a`p..STR1a + bd40: 00 63 70 83 88 69 62 00 64 a0 08 92 93 63 64 a4 .cp..ib.d....cd. + bd50: 0a 00 75 61 75 62 70 83 88 69 62 00 64 a0 08 93 ..uaubp..ib.d... + bd60: 64 0a 00 a4 0a 01 a0 0d 91 93 64 0a 2c 93 64 0a d.........d.,.d. + bd70: 3a a4 0a 01 a4 0a 00 14 2f 47 49 54 4d 02 70 0a :......./GITM.p. + bd80: 00 60 70 87 69 61 a2 1e 95 60 61 70 83 88 83 88 .`p.ia...`ap.... + bd90: 69 60 00 0a 01 00 63 a0 0b 53 43 4d 50 63 68 0a i`....c..SCMPch. + bda0: 00 a4 60 75 60 a4 ff 14 29 47 53 45 4c 03 70 0a ..`u`...)GSEL.p. + bdb0: 00 60 70 87 68 61 a2 18 95 60 61 70 83 88 68 60 .`p.ha...`ap..h` + bdc0: 00 62 a0 0a 53 43 4d 50 62 69 6a a4 60 75 60 a4 .b..SCMPbij.`u`. + bdd0: ff 14 10 53 4c 45 4e 02 70 83 88 68 69 00 60 a4 ...SLEN.p..hi.`. + bde0: 87 60 14 16 43 4c 52 50 00 70 0a 00 5c 57 50 41 .`..CLRP.p..\WPA + bdf0: 53 70 0a 00 5c 57 50 4e 57 14 4c 04 47 50 41 53 Sp..\WPNW.L.GPAS + be00: 02 70 69 60 70 0a 00 61 a2 31 92 94 61 0a 80 70 .pi`p..a.1..a..p + be10: 83 88 68 60 00 62 a0 16 91 93 62 0a 2c 93 62 0a ..h`.b....b.,.b. + be20: 00 70 0a 00 88 50 53 54 52 61 00 a4 61 70 62 88 .p...PSTRa..apb. + be30: 50 53 54 52 61 00 75 60 75 61 70 0a 00 88 50 53 PSTRa.u`uap...PS + be40: 54 52 61 00 a4 ff 14 43 09 43 50 41 53 02 43 4c TRa....C.CPAS.CL + be50: 52 50 70 69 60 70 47 50 41 53 68 60 61 a0 07 93 RPpi`pGPASh`a... + be60: 61 ff a4 0a 02 a0 08 93 61 0a 00 a4 0a 02 70 50 a.......a.....pP + be70: 53 54 52 5c 57 50 41 53 72 60 61 60 75 60 70 47 STR\WPASr`a`u`pG + be80: 53 45 4c 50 45 4e 43 68 60 66 a0 07 93 66 ff a4 SELPENCh`f...f.. + be90: 0a 02 70 66 5c 57 45 4e 43 a0 3d 93 66 0a 00 72 ..pf\WENC.=.f..r + bea0: 60 53 4c 45 4e 50 45 4e 43 0a 00 60 a0 0d 92 93 `SLENPENC..`.... + beb0: 83 88 68 60 00 0a 2c a4 0a 02 75 60 70 47 53 45 ..h`..,...u`pGSE + bec0: 4c 50 4b 42 44 68 60 66 a0 07 93 66 ff a4 0a 02 LPKBDh`f...f.... + bed0: 70 66 5c 57 4b 42 44 a4 0a 00 14 4e 0f 53 50 41 pf\WKBD....N.SPA + bee0: 53 01 43 4c 52 50 70 47 53 45 4c 50 54 59 50 68 S.CLRPpGSELPTYPh + bef0: 0a 00 66 a0 07 93 66 ff a4 0a 02 70 66 5c 57 50 ..f...f....pf\WP + bf00: 54 59 70 53 4c 45 4e 50 54 59 50 66 60 a0 0d 92 TYpSLENPTYPf`... + bf10: 93 83 88 68 60 00 0a 2c a4 0a 02 75 60 70 47 50 ...h`..,...u`pGP + bf20: 41 53 68 60 61 a0 0c 91 93 61 ff 93 61 0a 00 a4 ASh`a....a..a... + bf30: 0a 02 70 50 53 54 52 5c 57 50 41 53 72 60 61 60 ..pPSTR\WPASr`a` + bf40: a0 0d 92 93 83 88 68 60 00 0a 2c a4 0a 02 75 60 ......h`..,...u` + bf50: 70 47 50 41 53 68 60 61 a0 07 93 61 ff a4 0a 02 pGPASh`a...a.... + bf60: a0 0c 93 61 0a 00 70 0a 00 50 53 54 52 70 50 53 ...a..p..PSTRpPS + bf70: 54 52 5c 57 50 4e 57 72 60 61 60 75 60 70 47 53 TR\WPNWr`a`u`pGS + bf80: 45 4c 50 45 4e 43 68 60 66 a0 07 93 66 ff a4 0a ELPENCh`f...f... + bf90: 02 70 66 5c 57 45 4e 43 a0 3d 93 66 0a 00 72 60 .pf\WENC.=.f..r` + bfa0: 53 4c 45 4e 50 45 4e 43 0a 00 60 a0 0d 92 93 83 SLENPENC..`..... + bfb0: 88 68 60 00 0a 2c a4 0a 02 75 60 70 47 53 45 4c .h`..,...u`pGSEL + bfc0: 50 4b 42 44 68 60 66 a0 07 93 66 ff a4 0a 02 70 PKBDh`f...f....p + bfd0: 66 5c 57 4b 42 44 a4 0a 00 14 4b 48 57 53 45 54 f\WKBD....KHWSET + bfe0: 02 70 49 4c 45 4e 60 75 60 70 47 49 54 4d 49 42 .pILEN`u`pGITMIB + bff0: 55 46 68 61 a0 07 93 61 ff a4 0a 02 70 61 5c 57 UFha...a....pa\W + c000: 49 54 4d 70 83 88 68 61 00 63 70 83 88 63 0a 01 ITMp..ha.cp..c.. + c010: 00 64 70 87 64 62 75 62 70 83 88 63 0a 00 00 64 .dp.dbubp..c...d + c020: a0 3a 95 64 0a 64 70 83 88 69 64 00 65 70 47 53 .:.d.dp..id.epGS + c030: 45 4c 65 49 42 55 46 62 66 a0 07 93 66 ff a4 0a ELeIBUFbf...f... + c040: 02 70 66 5c 57 53 45 4c 72 62 53 4c 45 4e 65 66 .pf\WSELrbSLENef + c050: 62 70 83 88 49 42 55 46 62 00 64 a1 46 3e 70 0a bp..IBUFb.d.F>p. + c060: 3f 5c 57 4c 53 30 70 0a 3f 5c 57 4c 53 31 70 0a ?\WLS0p.?\WLS1p. + c070: 3f 5c 57 4c 53 32 70 0a 3f 5c 57 4c 53 33 70 0a ?\WLS2p.?\WLS3p. + c080: 3f 5c 57 4c 53 34 70 0a 3f 5c 57 4c 53 35 70 0a ?\WLS4p.?\WLS5p. + c090: 3f 5c 57 4c 53 36 70 0a 3f 5c 57 4c 53 37 70 0a ?\WLS6p.?\WLS7p. + c0a0: 3f 5c 57 4c 53 38 70 0a 3f 5c 57 4c 53 39 70 0a ?\WLS8p.?\WLS9p. + c0b0: 3f 5c 57 4c 53 41 70 0a 3f 5c 57 4c 53 42 70 0a ?\WLSAp.?\WLSBp. + c0c0: 3f 5c 57 4c 53 43 70 0a 3f 5c 57 4c 53 44 70 47 ?\WLSCp.?\WLSDpG + c0d0: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c0e0: 66 ff a4 0a 02 70 66 5c 57 4c 53 30 72 62 53 4c f....pf\WLS0rbSL + c0f0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c100: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c110: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c120: 66 ff a4 0a 02 70 66 5c 57 4c 53 31 72 62 53 4c f....pf\WLS1rbSL + c130: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c140: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c150: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c160: 66 ff a4 0a 02 70 66 5c 57 4c 53 32 72 62 53 4c f....pf\WLS2rbSL + c170: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c180: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c190: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c1a0: 66 ff a4 0a 02 70 66 5c 57 4c 53 33 72 62 53 4c f....pf\WLS3rbSL + c1b0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c1c0: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c1d0: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c1e0: 66 ff a4 0a 02 70 66 5c 57 4c 53 34 72 62 53 4c f....pf\WLS4rbSL + c1f0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c200: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c210: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c220: 66 ff a4 0a 02 70 66 5c 57 4c 53 35 72 62 53 4c f....pf\WLS5rbSL + c230: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c240: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c250: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c260: 66 ff a4 0a 02 70 66 5c 57 4c 53 36 72 62 53 4c f....pf\WLS6rbSL + c270: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c280: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c290: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c2a0: 66 ff a4 0a 02 70 66 5c 57 4c 53 37 72 62 53 4c f....pf\WLS7rbSL + c2b0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c2c0: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c2d0: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c2e0: 66 ff a4 0a 02 70 66 5c 57 4c 53 38 72 62 53 4c f....pf\WLS8rbSL + c2f0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c300: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c310: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c320: 66 ff a4 0a 02 70 66 5c 57 4c 53 39 72 62 53 4c f....pf\WLS9rbSL + c330: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c340: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c350: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c360: 66 ff a4 0a 02 70 66 5c 57 4c 53 41 72 62 53 4c f....pf\WLSArbSL + c370: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c380: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c390: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c3a0: 66 ff a4 0a 02 70 66 5c 57 4c 53 42 72 62 53 4c f....pf\WLSBrbSL + c3b0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c3c0: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c3d0: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c3e0: 66 ff a4 0a 02 70 66 5c 57 4c 53 43 72 62 53 4c f....pf\WLSCrbSL + c3f0: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c400: 00 64 a0 3f 90 95 62 60 93 64 0a 3a 75 62 70 47 .d.?..b`.d.:ubpG + c410: 53 45 4c 56 4c 53 54 49 42 55 46 62 66 a0 07 93 SELVLSTIBUFbf... + c420: 66 ff a4 0a 02 70 66 5c 57 4c 53 44 72 62 53 4c f....pf\WLSDrbSL + c430: 45 4e 56 4c 53 54 66 62 70 83 88 49 42 55 46 62 ENVLSTfbp..IBUFb + c440: 00 64 a0 1f 90 93 64 0a 2c 95 62 60 75 62 70 43 .d....d.,.b`ubpC + c450: 50 41 53 49 42 55 46 62 60 a0 08 92 93 60 0a 00 PASIBUFb`....`.. + c460: a4 60 a4 0a 00 08 57 51 42 41 11 42 8a 0b 9d 08 .`....WQBA.B.... + c470: 46 4f 4d 42 01 00 00 00 8d 08 00 00 f2 36 00 00 FOMB.........6.. + c480: 44 53 00 01 1a 7d da 54 a8 c9 9a 00 01 06 18 42 DS...}.T.......B + c490: 10 13 10 0a 0d 21 02 0b 83 50 4c 18 14 a0 45 41 .....!...PL...EA + c4a0: c8 05 14 95 02 21 c3 02 14 0b 70 2e 40 ba 00 e5 .....!....p.@... + c4b0: 28 72 0c 22 02 f7 ef 0f 31 0e 88 14 40 48 26 84 (r."....1...@H&. + c4c0: 44 00 53 21 70 84 a0 5f 01 08 1d a2 c9 a0 00 a7 D.S!p.._........ + c4d0: 08 82 b4 65 01 ba 05 f8 16 a0 1d 42 68 15 0a 30 ...e.......Bh..0 + c4e0: 29 c0 27 98 2c 0a 90 0d 26 db 70 64 18 4c e4 18 ).'.,...&.pd.L.. + c4f0: 50 62 c6 80 d2 39 05 d9 04 16 74 a1 28 9a 46 94 Pb...9....t.(.F. + c500: 04 07 75 0c 11 82 97 2b 40 f2 04 a4 79 5e b2 3e ..u....+@...y^.> + c510: 08 0d 81 8d 80 47 91 00 c2 62 2c 53 e2 61 50 1e .....G...b,S.aP. + c520: 40 24 67 a8 28 60 7b 9d 88 86 75 9c 4c 12 1c 6a @$g.(`{...u.L..j + c530: 94 96 28 c0 fc c8 34 91 63 6b 7a c4 82 64 d2 86 ..(...4.ckz..d.. + c540: 82 1a ba a7 75 52 9e 68 c4 83 32 4c 02 8f 82 a1 ....uR.h..2L.... + c550: 71 82 b2 20 e4 60 a0 28 c0 93 f0 1c 8b 17 20 7c q.. .`.(...... | + c560: c6 e4 28 10 23 81 8f 04 1e cd 31 63 81 c2 05 3c ..(.#.....1c...< + c570: 9f 63 88 1c f7 50 63 1c 45 e4 04 ef 00 51 8c 56 .c...Pc.E....Q.V + c580: d0 bc 85 18 2c 9a c1 7a 06 27 83 4e f0 ff 3f 02 ....,..z.'.N..?. + c590: 2e 03 42 1e 05 58 1d 94 a6 61 82 ee 05 bc 1a 1a ..B..X...a...... + c5a0: 13 a0 11 43 ca 04 38 bb 2f 68 46 6d 09 30 27 40 ...C..8./hFm.0'@ + c5b0: 9b 00 6f 08 42 39 cf 28 c7 72 8a 51 1e 06 62 be ..o.B9.(.r.Q..b. + c5c0: 0c 04 8d 12 23 e6 b9 c4 35 6c 84 18 21 4f 21 50 ....#...5l..!O!P + c5d0: dc f6 07 41 06 8d 1b bd 4f 0b 67 75 02 47 ff a4 ...A....O.gu.G.. + c5e0: 60 02 4f f9 c0 9e 0d 4e e0 58 a3 c6 38 95 04 8e `.O....N.X..8... + c5f0: fd 80 90 06 10 45 82 47 9d 16 7c 2e f0 d0 0e da .....E.G..|..... + c600: 73 3c 81 20 87 70 04 4f 0c 0f 04 1e 03 bb 29 f8 s<. .p.O......). + c610: 08 e0 13 02 de 35 a0 ae 06 0f 06 6c d0 e1 30 e3 .....5.....l..0. + c620: f5 f0 c3 9d c0 49 3e 60 f0 c3 86 07 87 9b e7 c9 .....I>`........ + c630: 1c 59 a9 02 cc 1e 0e 74 90 f0 69 83 9d 01 30 f2 .Y.....t..i...0. + c640: 07 81 1a 99 a1 3d ee 97 0e 43 3e 27 1c 16 13 7b .....=...C>'...{ + c650: ea a0 e3 01 ff 65 e4 39 c3 d3 f7 7c 4d 30 ec c0 .....e.9...|M0.. + c660: d1 03 31 f4 c3 c6 61 9c 86 ef 1f 3e 2f c0 38 05 ..1...a....>/.8. + c670: 78 e4 fe ff 1f 52 7c 9a e0 47 0b 9f 26 d8 f5 e0 x....R|..G..&... + c680: 34 9e 03 3c 9c b3 f2 61 02 6c f7 13 36 a2 77 0b 4..<...a.l..6.w. + c690: 8f 06 7b 0a 00 df f9 05 9c 77 0d 36 58 18 e7 17 ..{......w.6X... + c6a0: e0 71 42 f0 10 f8 41 c2 43 e0 03 78 fe 38 43 2b .qB...A.C..x.8C+ + c6b0: 9d 17 72 60 f0 ce 39 30 46 c1 f3 3c 36 4c a0 20 ..r`..90F..<6L. + c6c0: af 01 85 7a 16 50 18 9f 6a 80 d7 ff ff 54 03 5c ...z.P..j....T.\ + c6d0: 0e 07 b8 93 03 dc 7b 01 bb 38 3c d7 c0 15 7d ae ......{..8<...}. + c6e0: 81 7a 6f 29 6e 8c ba c6 04 79 14 78 a4 89 f2 3c .zo)n....y.x...< + c6f0: f3 2e 13 e1 d9 c6 d7 1a 4f 21 8e af 35 46 7c 99 ........O!..5F|. + c700: 78 b7 31 ee c1 3d d6 3c e4 18 e4 68 22 bc 18 04 x.1..=.<...h"... + c710: 7c bc f1 b1 06 bc 62 5e 28 b2 70 ac 01 34 fe ff |.....b^(.p..4.. + c720: 8f 35 c0 0d eb 01 05 7c 47 06 76 43 81 77 42 01 .5.....|G.vC.wB. + c730: fc 24 7e 01 e8 c8 e1 b4 20 b2 f1 06 f0 29 80 aa .$~..... ....).. + c740: 01 d2 34 61 13 4c 4f 2e 78 1f 09 9c 9b 44 c9 87 ..4a.LO.x....D.. + c750: 45 e1 9c f5 20 42 41 0c e8 20 c7 09 f4 19 c5 07 E... BA.. ...... + c760: 91 13 7d 22 f4 a0 3c 8c 77 14 76 02 f1 61 c2 63 ..}"..<.w.v..a.c + c770: f7 31 81 ff 63 3c 1b a3 5b 0d 86 fe ff e7 14 0e .1..c<..[....... + c780: e6 83 08 27 a8 eb 26 01 32 7d 47 05 50 00 f9 5e ...'..&.2}G.P..^ + c790: e0 73 c0 b3 01 1b c3 a3 80 d1 8c ce c3 4f 16 15 .s...........O.. + c7a0: 77 b2 14 c4 93 75 94 c9 a2 67 e2 7b 85 67 f4 a6 w....u...g.{.g.. + c7b0: e5 39 7a c2 be 87 c0 3a 0c 84 7c 30 f0 34 0c e7 .9z....:..|0.4.. + c7c0: c9 72 38 4f 96 8f c5 d7 10 f0 09 9c 2d c8 e1 31 .r8O........-..1 + c7d0: b1 46 45 af 42 1e 1e bf 1c 78 3e cf 08 47 f9 24 .FE.B....x>..G.$ + c7e0: 81 c3 78 26 f1 10 7d 2b 82 35 91 93 f6 6d e1 64 ..x&..}+.5...m.d + c7f0: 83 be 9e 61 6e 45 b0 ff ff b7 22 38 17 34 98 99 ...anE...."8.4.. + c800: ee 55 a8 58 f7 2a 40 ec b0 5e 7b 7c b0 82 7b af .U.X.*@..^{|..{. + c810: 82 7b a9 7a 56 38 c6 f0 0f 53 31 4e e9 b5 d3 40 .{.zV8...S1N...@ + c820: 61 a2 c4 7b af f2 18 df ab d8 15 2a 4c ac 97 2b a..{.......*L..+ + c830: a3 be 4e 84 0b 14 24 d2 ab 55 94 c8 f1 0d f9 5e ..N...$..U.....^ + c840: 05 5e 39 f7 2a 90 fd ff ef 55 80 79 b4 f7 2a 30 .^9.*....U.y..*0 + c850: 5e 1b d8 0d 09 16 d0 8b 15 60 28 f3 c5 8a e6 bd ^........`(..... + c860: 58 21 fe ff e7 12 a6 e7 62 45 e6 09 ff 66 05 70 X!......bE...f.p + c870: fa ff 7f b3 02 8c dd 8b 30 47 2b 78 29 6f 56 34 ........0G+x)oV4 + c880: ce 32 14 70 41 14 c6 37 2b c0 d1 75 05 37 64 b8 .2.pA..7+..u.7d. + c890: 60 51 82 f9 10 e2 e9 1c f1 43 c2 4b c0 63 8e 07 `Q.......C.K.c.. + c8a0: fc 40 e0 cb 15 98 fe ff 04 3e f9 9e e5 db d4 7b .@.......>.....{ + c8b0: 2f 3f 60 bd 57 f9 f0 1b eb 9d e1 e5 ca 23 89 72 /?`.W........#.r + c8c0: 12 a1 7c b7 7a af 32 4a c4 17 62 9f 82 0d 6d 94 ..|.z.2J..b...m. + c8d0: a7 8a e8 c6 7b b9 02 af a4 cb 15 40 93 e1 bf 5c ....{......@...\ + c8e0: 81 ef e6 80 bd 26 c1 f9 ff 5f 93 f8 f5 0a f0 93 .....&..._...... + c8f0: fd 7a 45 73 5f af 50 a2 20 a4 08 48 33 05 cf fd .zEs_.P. ..H3... + c900: 0a e0 c4 ff ff 7e 05 58 0e 77 bf 02 7a b7 23 f0 .....~.X.w..z.#. + c910: a2 bc 1d 61 af 58 f8 8c 57 2c 1a 66 25 8a b7 26 ...a.X..W,.f%..& + c920: 0a e3 2b 16 30 f9 ff 5f b1 80 d9 41 14 37 6a b8 ..+.0.._...A.7j. + c930: 17 27 df 7a 3c df 88 be c3 60 4e 58 30 6e 58 f0 .'.z<....`NX0nX. + c940: 87 f4 30 ec 93 c4 3b 96 8f 56 06 79 03 7e b2 7a ..0...;..V.y.~.z + c950: b0 8a 62 84 80 c7 f3 2e ec a3 d5 9b 96 51 62 c7 ..b..........Qb. + c960: f2 85 ea 59 cb d7 2c 43 c4 7d 20 f6 0d 0b b0 fd ...Y..,C.} ..... + c970: ff bf 61 01 8e 2e 0e fc e0 80 bd 61 01 3e 67 0a ..a........a.>g. + c980: 9e 1b 16 b0 f9 ff df b0 00 fe ff ff 6f 58 c0 e1 ............oX.. + c990: 76 85 bd 65 61 6f 2f 64 15 34 d4 4a 14 fc 7b 65 v..eao/d.4.J..{e + c9a0: 18 7a c3 02 1c 8d db a3 06 c7 d9 e0 49 02 73 ae .z..........I.s. + c9b0: c6 cd e6 e0 02 47 e8 1d 54 73 67 97 14 18 b7 2c .....G..Tsg...., + c9c0: b8 97 aa 87 86 28 07 f1 2a fc 60 f5 28 75 64 8f .....(..*.`.(ud. + c9d0: 57 4f c3 3e 66 f9 96 65 a8 08 6f 59 ec 0c 11 2f WO.>f..e..oY.../ + c9e0: 56 94 10 ef 15 a1 7d e7 32 f8 a3 b1 51 83 be 1c V.....}.2...Q... + c9f0: bf 65 c1 fb ff df b2 e0 8b fc ab e8 44 e0 5b 16 .e..........D.[. + ca00: c0 8f 60 10 72 32 70 f4 79 01 3f 80 87 11 0f 89 ..`.r2p.y.?..... + ca10: 05 18 38 bd 2f f9 4c c1 0f 18 3e 53 b0 eb 41 f4 ..8./.L...>S..A. + ca20: c7 00 9f 4b 30 83 03 ff b5 e2 d0 3d 8a d7 07 13 ...K0......=.... + ca30: 78 70 fc ff 3f 38 b8 77 86 23 f2 1d c6 83 03 db xp..?8.w.#...... + ca40: 41 00 38 0c 0e 1f 6a 70 e8 f1 18 38 a4 cf 63 ec A.8...jp...8..c. + ca50: c2 f0 90 e3 a1 81 0d d0 43 03 96 93 78 0a 39 34 ........C...x.94 + ca60: 30 4b 18 1a 50 8a 37 34 fa ff 1f 1a 1f 92 0f 0b 0K..P.74........ + ca70: 31 9f 72 22 bc 2f f8 04 c5 d0 5f 53 7c bb f0 4d 1.r"./...._S|..M + ca80: 10 37 3e 70 5d 3a 3d 3e e0 73 e4 f2 f8 70 47 27 .7>p]:=>.s...pG' + ca90: 8f 0f 86 cb ab 0c 39 9a f8 68 c5 86 07 b6 9b 9e ......9..h...... + caa0: 87 07 7c ae 9b 60 bc 42 f2 6b 09 8c 13 14 fe ba ..|..`.B.k...... + cab0: 09 de ff ff 75 13 78 8e 82 6b bd 64 d3 20 af 1c ....u.x..k.d. .. + cac0: c5 7a 11 50 18 9f d9 00 47 63 7d 66 03 cb bd 80 .z.P....Gc}f.... + cad0: dd d8 e0 9e d6 60 df 1d 1e ce 1e d3 1e d5 1e d0 .....`.......... + cae0: 7c c4 8e f1 96 16 24 4e 84 d7 81 a7 35 5f 32 e2 |.....$N....5_2. + caf0: 05 7a 5a 33 46 9c 97 36 23 be 52 84 78 58 f3 c9 .zZ3F..6#.R.xX.. + cb00: cd 78 0f 13 e1 c2 bc b0 3d ad 81 e3 ff 7f 5a 83 .x......=.....Z. + cb10: 23 e7 8a 0d d0 e4 a2 8f 3b a4 80 e5 da c0 6e 29 #.......;.....n) + cb20: f0 2e d8 c0 f9 ff 7f 44 01 5f 96 0b 36 cd 71 c1 .......D._..6.q. + cb30: 46 71 58 0d 90 e6 09 ff 7a 0d fe 49 f8 7a 0d d8 FqX.....z..I.z.. + cb40: be c5 e2 ae d7 c0 ea ff 7f bd 06 96 82 47 4a ef .............GJ. + cb50: d4 e0 ba 69 e3 41 df b4 61 0a be 45 d1 28 e4 8a ...i.A..a..E.(.. + cb60: b6 10 0a e3 5b 14 e0 08 fb 2d 0a 2c 17 a7 b7 28 ....[....-.,...( + cb70: fc 0c 3c 68 df 75 18 a6 ef d0 f0 4f 4d cf 4d 0f ..H.p......^.. + cb90: d4 6b 94 2f 30 c7 10 31 ca cb b4 21 e2 f9 d4 e4 .k./0..1...!.... + cba0: b3 42 dc 10 0f d1 46 88 fa 3c ed 09 bd 46 81 57 .B....F..<...F.W + cbb0: d0 35 0a a0 c9 fd 08 77 8d 02 cb bd 81 9d 87 f8 .5.....w........ + cbc0: 95 c8 d7 06 18 f7 28 38 ff ff 7b 14 60 23 cc 3d ......(8..{.`#.= + cbd0: 8a 06 b9 47 a1 4e 26 be d4 79 a2 e0 08 7f 91 42 ...G.N&..y.....B + cbe0: c5 26 51 e8 c3 10 2a e6 61 84 82 18 d0 19 4e 14 .&Q...*.a.....N. + cbf0: 68 15 27 0a 72 8b f1 a4 1e a3 00 5f cb f4 50 79 h.'.r......_..Py + cc00: e4 a1 52 10 0f d5 71 86 8a 9e a4 e7 8f f9 ff 1f ..R...q......... + cc10: 1c b0 07 29 80 17 0a 6d fa d4 68 d4 aa 41 99 1a ...)...m..h..A.. + cc20: 65 1a d4 ea 53 a9 31 63 e7 50 4b 3b 4b 50 31 8b e...S.1c.PK;KP1. + cc30: d1 68 1c 05 84 ca fe 9b 0b c4 21 9f 3a 02 74 b0 .h........!.:.t. + cc40: 17 95 80 2c 6b 6d 02 71 7c 13 10 8d 80 48 cb 63 ...,km.q|....H.c + cc50: 42 40 ce 0d 22 20 ab 58 93 80 ac f9 01 23 70 eb B@.." .X.....#p. + cc60: d4 01 c4 52 82 d0 44 0b 17 a8 e3 81 68 30 84 46 ...R..D.....h0.F + cc70: 40 0e 46 21 20 cb f8 74 0b dc 02 ac 00 31 f9 20 @.F! ..t.....1. + cc80: 54 b0 17 50 a6 1e 44 40 56 ba 56 01 59 37 88 80 T..P..D@V.V.Y7.. + cc90: fe ff 2f 83 32 03 ce 32 ba 01 62 0a 1f 0a 02 b1 ../.2..2..b..... + cca0: 26 3d a0 4c 20 88 ae 1c c4 0f 10 93 06 22 20 c7 &=.L ........" . + ccb0: 39 98 08 dc 71 14 01 52 47 c3 a5 20 54 fc f3 44 9...q..RG.. T..D + ccc0: 20 16 64 09 8c 82 d0 08 9a 40 98 3c 4f 20 2c d4 .d......@..x....Q + d1f0: b8 80 e7 73 0c 91 e3 1e 6a 8c a3 88 7c 38 0c ed ...s....j...|8.. + d200: 74 e3 1c d8 e9 14 04 2e 90 60 3d cf 59 20 ff ff t........`=.Y .. + d210: 18 07 c1 f0 8e 01 23 03 42 1e 05 58 1d 96 26 91 ......#.B..X..&. + d220: c0 ee 05 68 bc 04 48 e1 20 a5 0c 42 30 8d 09 b0 ...h..H. ..B0... + d230: 75 68 90 37 01 d6 ae 02 42 89 74 02 71 42 44 89 uh.7....B.t.qBD. + d240: 18 d4 40 51 6a 43 15 4c 67 c3 13 66 dc 10 31 0c ..@QjC.Lg..f..1. + d250: 14 b7 fd 41 90 61 e3 c6 ef 41 9d d6 d9 1d d3 ab ...A.a...A...... + d260: 82 09 3c e9 37 84 a7 83 a3 38 da a8 31 9a 23 65 ..<.7....8..1.#e + d270: ab d6 b9 c2 91 e0 51 e7 05 9f 0c 3c b4 c3 f6 60 ......Q....<...` + d280: cf d2 43 38 82 67 86 47 02 8f 81 dd 15 7c 08 f0 ..C8.g.G.....|.. + d290: 19 01 ef 1a 50 97 83 47 03 36 e9 70 98 f1 7a ee ....P..G.6.p..z. + d2a0: 9e ba cf 18 fc bc e1 c1 e1 46 7a 32 47 56 aa 00 .........Fz2GV.. + d2b0: b3 d7 00 1d 25 7c e0 60 77 81 a7 00 13 58 fe 20 ....%|.`w....X. + d2c0: 50 23 33 b4 c7 fb de 61 c8 27 85 c3 62 62 0f 1e P#3....a.'..bb.. + d2d0: 74 3c e0 bf 8f 3c 69 78 fa 9e af 09 06 86 90 95 t<.....y./.o.& + d320: 88 f6 10 03 c6 19 e1 ce 1b 70 4e 31 c0 03 ea 10 .........pN1.... + d330: 30 87 09 0f 81 0f e0 19 e4 1c 7d cc 39 33 dc 71 0.........}.93.q + d340: 07 6c c3 e0 91 2d 80 b0 38 4f 02 05 7c 1b 50 18 .l...-..8O..|.P. + d350: 1f 6e c0 fb ff 3f dc 00 d7 f3 01 ee f8 00 f7 62 .n...?.........b + d360: c1 0e 0f 8f 37 c0 60 48 8f 34 6f 35 31 5e 6d 42 ....7.`H.4o51^mB + d370: 44 78 a8 79 b7 31 52 bc c7 1b 76 8d 39 8b 07 90 Dx.y.1R...v.9... + d380: 28 c5 a1 e9 62 13 23 ca 9b 8d 61 df 74 0c 14 2a (...b.#...a.t..* + d390: 52 84 30 2f 16 21 1e 6f c0 2c e9 a5 a2 cf 81 8f R.0/.!.o.,...... + d3a0: 37 80 97 ff ff f1 06 f0 30 0c 1f 53 c0 76 73 60 7.......0..S.vs` + d3b0: f7 14 f8 e7 14 c0 91 90 47 80 0e 1e 16 01 22 1b ........G.....". + d3c0: cf 00 9f 89 a8 40 2a cd 14 2c e3 14 ac 4e 88 5c .....@*..,...N.\ + d3d0: 06 85 44 40 68 64 86 f3 21 d1 60 06 f1 f9 c0 67 ..D@hd..!.`....g + d3e0: 0a 9f 9c f8 ff ff e4 04 9e 83 c9 43 05 2c 44 9f ...........C.,D. + d3f0: 16 38 9c cf 2c 1c ce 47 12 7e 80 e4 47 25 70 09 .8..,..G.~..G%p. + d400: 3c 34 80 02 c8 f7 03 9f 03 9e 11 d8 1c 1e 09 7c <4.............| + d410: 20 60 f0 3c da a8 e8 d1 c6 c3 e3 47 06 cf e7 81 `.<.......G.... + d420: e0 28 1f 09 70 18 ef 17 1e a2 4f 39 b0 26 72 d4 .(..p.....O9.&r. + d430: 16 7d 22 10 e8 33 17 e6 94 03 9c 82 8f 1e 15 f5 .}"..3.......... + d440: 40 0a da 93 82 cf 0a 3e 7c c1 ff ff 1f be e0 cc @......>|....... + d450: eb 65 cd 07 8e 38 67 71 ba ef 16 f8 13 29 30 0b .e...8gq.....)0. + d460: 72 22 45 c1 f8 44 0a d8 bc 05 60 af 0b 4f 22 30 r"E..D....`..O"0 + d470: ce 11 cf 58 30 0f 55 a7 f8 52 f5 c6 10 e1 c9 ea ...X0.U..R...... + d480: 35 ea 01 cb 60 2f 02 86 79 c5 f2 e9 2a c4 03 96 5...`/..y...*... + d490: cf 5a d1 42 84 8c 12 ec 15 eb 55 c6 47 2a 83 07 .Z.B......U.G*.. + d4a0: 0c 1b 2d 52 84 47 2c fc ff ff 88 05 1e 09 07 52 ..-R.G,........R + d4b0: 80 2a 03 c7 1d 48 81 fd 69 02 7f bd f0 78 b0 ff .*...H..i....x.. + d4c0: ff 73 00 f8 0e 31 c0 60 c0 30 0e 31 c0 43 f0 c9 .s...1.`.0.1.C.. + d4d0: 0c f4 c7 1d f8 e3 e0 19 9f 1c 26 50 98 13 29 0a ..........&P..). + d4e0: c6 27 52 c0 d9 ff ff 70 05 86 e3 0d f8 6f 33 3e .'R....p.....o3> + d4f0: 84 fa 7c e3 0b a9 21 5e 6c de d4 5e 09 5e df d9 ..|...!^l..^.^.. + d500: b5 e6 f5 dd a7 82 27 d1 08 21 a3 bc e4 18 24 c4 ......'..!....$. + d510: eb a8 01 83 05 89 78 0a 4f 3b 8f 37 e0 15 75 20 ......x.O;.7..u + d520: 05 e8 f1 ff 3f 90 02 83 7b 0a ec 73 0a e0 29 f9 ....?...{..s..). + d530: 89 94 a6 3e 91 a2 15 01 69 aa 60 21 98 fe 44 4a ...>....i.`!..DJ + d540: 0f 06 ce 4d a2 e4 43 a3 70 ce 7a 20 a1 20 06 74 ...M..C.p.z . .t + d550: 90 43 05 fa ac e2 03 c9 81 3c 22 7a 58 3e 54 fa .C.......<"zX>T. + d560: ae e2 73 88 8f 14 1e bf 0f 0b fc 3f e3 e3 28 03 ..s........?..(. + d570: af e6 bc 82 02 f3 69 14 a3 eb 3e 01 92 ff ff fc ......i...>..... + d580: b8 be c3 28 c8 d1 79 f8 c9 a2 e2 4e 96 82 78 b2 ...(..y....N..x. + d590: 8e 32 59 f4 4c 7c bb f0 8c de bb 7c 83 65 37 59 .2Y.L|.....|.e7Y + d5a0: 78 97 81 90 8f 06 be c9 c2 1d 8b 2f 23 e0 bb c9 x........../#... + d5b0: 02 5e 47 e3 b3 05 3b 85 f8 ba 06 4b a1 4d 9f 1a .^G...;....K.M.. + d5c0: 8d 5a fd ff 1b 94 a9 51 a6 41 ad 3e 95 1a 33 76 .Z.....Q.A.>..3v + d5d0: a1 b0 b8 0b 06 95 b4 2c 8d cb 81 40 68 80 5b a9 .......,...@h.[. + d5e0: 40 1c fa 0b a4 53 02 f9 6a 09 c8 62 57 25 10 cb @....S..j..bW%.. + d5f0: 54 01 d1 c8 dd c2 20 02 72 bc 4f 8d 40 1d 49 07 T..... .r.O.@.I. + d600: 10 13 e4 63 ac f4 25 20 10 cb a6 15 a0 e5 3a 01 ...c..% ......:. + d610: 62 61 41 68 c0 5f b5 86 e0 b4 20 02 72 32 2d 40 baAh._.... .r2-@ + d620: 2c 27 88 80 fc ff 07 10 41 0d 5c 2f 05 5f 53 42 ,'......A.\/._SB + d630: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + d640: 59 5b 01 42 46 57 4d 07 14 10 4d 48 43 46 01 70 Y[.BFWM...MHCF.p + d650: 5c 42 46 57 43 68 60 a4 60 14 4f 05 4d 48 50 46 \BFWCh`.`.O.MHPF + d660: 01 08 52 45 54 42 11 03 0a 25 5b 23 42 46 57 4d ..RETB...%[#BFWM + d670: ff ff a0 3b 92 94 87 68 0a 25 70 68 5c 42 46 57 ...;...h.%ph\BFW + d680: 42 a0 22 5c 42 46 57 50 5c 2f 05 5f 53 42 5f 50 B."\BFWP\/._SB_P + d690: 43 49 30 4c 50 43 5f 45 43 5f 5f 43 48 4b 53 5c CI0LPC_EC__CHKS\ + d6a0: 42 46 57 4c 70 5c 42 46 57 42 52 45 54 42 5b 27 BFWLp\BFWBRETB[' + d6b0: 42 46 57 4d a4 52 45 54 42 14 32 4d 48 49 46 01 BFWM.RETB.2MHIF. + d6c0: 08 52 45 54 42 11 03 0a 0a 5b 23 42 46 57 4d ff .RETB....[#BFWM. + d6d0: ff 5c 42 46 57 47 68 70 5c 42 46 57 42 52 45 54 .\BFWGhp\BFWBRET + d6e0: 42 5b 27 42 46 57 4d a4 52 45 54 42 14 0c 4d 48 B['BFWM.RETB..MH + d6f0: 44 4d 01 5c 42 44 4d 43 68 10 4a 0c 5c 2f 05 5f DM.\BDMCh.J.\/._ + d700: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + d710: 4b 45 59 14 10 50 53 53 47 01 a4 5c 50 53 49 46 KEY..PSSG..\PSIF + d720: 0a 00 0a 00 14 0f 50 53 53 53 01 a4 5c 50 53 49 ......PSSS..\PSI + d730: 46 0a 01 68 14 0f 50 53 42 53 01 a4 5c 50 53 49 F..h..PSBS..\PSI + d740: 46 0a 02 68 14 0f 42 49 43 47 01 a4 5c 50 53 49 F..h..BICG..\PSI + d750: 46 0a 03 68 14 0f 42 49 43 53 01 a4 5c 50 53 49 F..h..BICS..\PSI + d760: 46 0a 04 68 14 0f 42 43 54 47 01 a4 5c 50 53 49 F..h..BCTG..\PSI + d770: 46 0a 05 68 14 0f 42 43 43 53 01 a4 5c 50 53 49 F..h..BCCS..\PSI + d780: 46 0a 06 68 14 0f 42 43 53 47 01 a4 5c 50 53 49 F..h..BCSG..\PSI + d790: 46 0a 07 68 14 0f 42 43 53 53 01 a4 5c 50 53 49 F..h..BCSS..\PSI + d7a0: 46 0a 08 68 14 0f 42 44 53 47 01 a4 5c 50 53 49 F..h..BDSG..\PSI + d7b0: 46 0a 09 68 14 0f 42 44 53 53 01 a4 5c 50 53 49 F..h..BDSS..\PSI + d7c0: 46 0a 0a 68 10 4a 0a 5c 2f 05 5f 53 42 5f 50 43 F..h.J.\/._SB_PC + d7d0: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 14 10 I0LPC_EC__HKEY.. + d7e0: 47 49 4c 4e 00 a4 7d 0a 02 5c 49 4c 4e 46 00 14 GILN..}..\ILNF.. + d7f0: 3d 53 49 4c 4e 01 a0 17 93 0a 01 68 70 0a 01 5c =SILN......hp..\ + d800: 49 4c 4e 46 70 0a 00 42 42 4c 53 a4 0a 00 a1 1e ILNFp..BBLS..... + d810: a0 17 93 0a 02 68 70 0a 00 5c 49 4c 4e 46 70 0a .....hp..\ILNFp. + d820: 01 42 42 4c 53 a4 0a 00 a1 04 a4 0a 01 14 41 04 .BBLS.........A. + d830: 47 4c 53 49 00 a0 22 5c 48 38 44 52 a4 72 0a 02 GLSI.."\H8DR.r.. + d840: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + d850: 43 5f 5f 48 50 4c 44 00 a1 16 a0 0f 7b 5c 52 42 C__HPLD.....{\RB + d860: 45 43 0a 46 0a 04 00 a4 0a 03 a1 04 a4 0a 02 10 EC.F............ + d870: 4a 05 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 J.\/._SB_PCI0LPC + d880: 5f 45 43 5f 5f 48 4b 45 59 14 10 47 44 4c 4e 00 _EC__HKEY..GDLN. + d890: a4 7d 0a 02 5c 50 4c 55 58 00 14 2f 53 44 4c 4e .}..\PLUX../SDLN + d8a0: 01 a0 10 93 0a 01 68 70 0a 01 5c 50 4c 55 58 a4 ......hp..\PLUX. + d8b0: 0a 00 a1 17 a0 10 93 0a 02 68 70 0a 00 5c 50 4c .........hp..\PL + d8c0: 55 58 a4 0a 00 a1 04 a4 0a 01 08 5c 56 48 43 43 UX.........\VHCC + d8d0: 0a 00 10 2a 5c 2f 04 5f 53 42 5f 50 43 49 30 50 ...*\/._SB_PCI0P + d8e0: 45 47 5f 56 49 44 5f 14 15 49 53 4f 50 00 a4 90 EG_VID_..ISOP... + d8f0: 56 44 53 50 90 56 49 47 44 56 44 53 43 10 2e 5c VDSP.VIGDVDSC..\ + d900: 2e 5f 53 42 5f 50 43 49 30 08 4f 54 4d 5f 0d 4f ._SB_PCI0.OTM_.O + d910: 54 4d 41 43 50 49 20 32 30 30 39 2d 4e 6f 76 2d TMACPI 2009-Nov- + d920: 31 32 20 31 38 3a 31 38 3a 35 31 00 10 46 12 5c 12 18:18:51..F.\ + d930: 2f 04 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 49 /._SB_PCI0PEG_VI + d940: 44 5f 14 40 11 47 4f 42 54 01 08 4f 50 56 4b 11 D_.@.GOBT..OPVK. + d950: 4a 0e 0a e6 e4 b8 4f 51 50 72 8a c2 4b 56 e6 00 J.....OQPr..KV.. + d960: 00 00 01 00 31 34 38 35 39 37 34 35 36 39 38 35 ....148597456985 + d970: 47 65 6e 75 69 6e 65 20 4e 56 49 44 49 41 20 43 Genuine NVIDIA C + d980: 65 72 74 69 66 69 65 64 20 4f 70 74 69 6d 75 73 ertified Optimus + d990: 20 52 65 61 64 79 20 4d 6f 74 68 65 72 62 6f 61 Ready Motherboa + d9a0: 72 64 20 66 6f 72 20 36 38 38 33 32 35 6e 6f 7a rd for 688325noz + d9b0: 6f 6d 69 32 31 44 35 20 20 20 20 20 2d 20 40 4a omi21D5 - @J + d9c0: 20 24 55 27 5c 22 54 20 29 5f 47 42 20 50 2f 41 $U'\"T )_GB P/A + d9d0: 4f 5c 37 22 3d 46 37 39 4b 37 2b 5f 3f 4b 48 5c O\7"=F79K7+_?KH\ + d9e0: 5f 46 58 48 5f 44 57 32 26 4a 46 50 52 25 24 2f _FXH_DW2&JFPR%$/ + d9f0: 46 24 20 2d 20 43 6f 70 79 72 69 67 68 74 20 32 F$ - Copyright 2 + da00: 30 31 30 20 4e 56 49 44 49 41 20 43 6f 72 70 6f 010 NVIDIA Corpo + da10: 72 61 74 69 6f 6e 20 41 6c 6c 20 52 69 67 68 74 ration All Right + da20: 73 20 52 65 73 65 72 76 65 64 2d 31 34 38 35 39 s Reserved-14859 + da30: 37 34 35 36 39 38 35 28 52 29 8b 68 0a 02 55 53 7456985(R).h..US + da40: 52 47 a0 0e 93 55 53 52 47 0b 4b 56 a4 4f 50 56 RG...USRG.KV.OPV + da50: 4b a4 00 10 48 25 5c 2f 04 5f 53 42 5f 50 43 49 K...H%\/._SB_PCI + da60: 30 50 45 47 5f 56 49 44 5f 08 4f 4d 50 52 0a 02 0PEG_VID_.OMPR.. + da70: 08 48 44 41 53 0a 00 14 44 23 4e 56 4f 50 04 08 .HDAS...D#NVOP.. + da80: 5f 54 5f 30 00 70 0d 2d 2d 2d 2d 2d 2d 2d 20 4e _T_0.p.------- N + da90: 56 20 4f 50 54 49 4d 55 53 20 44 53 4d 20 2d 2d V OPTIMUS DSM -- + daa0: 2d 2d 2d 2d 2d 2d 00 5b 31 a0 0d 92 93 69 0b 00 ------.[1....i.. + dab0: 01 a4 0c 01 00 00 80 70 99 6a 00 5f 54 5f 30 a0 .......p.j._T_0. + dac0: 41 07 93 5f 54 5f 30 0a 00 70 11 07 0a 04 00 00 A.._T_0..p...... + dad0: 00 00 60 78 0a 00 0a 08 62 61 79 0a 01 62 62 7d ..`x....bay..bb} + dae0: 83 88 60 61 00 62 88 60 61 00 78 0a 1a 0a 08 62 ..`a.b.`a.x....b + daf0: 61 79 0a 01 62 62 7d 83 88 60 61 00 62 88 60 61 ay..bb}..`a.b.`a + db00: 00 78 0a 1b 0a 08 62 61 79 0a 01 62 62 7d 83 88 .x....bay..bb}.. + db10: 60 61 00 62 88 60 61 00 78 0a 10 0a 08 62 61 79 `a.b.`a.x....bay + db20: 0a 01 62 62 7d 83 88 60 61 00 62 88 60 61 00 a4 ..bb}..`a.b.`a.. + db30: 60 a1 44 17 a0 4c 0a 93 5f 54 5f 30 0a 1a 5b 13 `.D..L.._T_0..[. + db40: 6b 0a 18 0a 02 4f 50 43 45 5b 13 6b 0a 00 0a 01 k....OPCE[.k.... + db50: 46 4c 43 48 a0 10 99 46 4c 43 48 00 70 4f 50 43 FLCH...FLCH.pOPC + db60: 45 4f 4d 50 52 70 11 07 0a 04 00 00 00 00 60 5b EOMPRp........`[ + db70: 13 60 0a 00 0a 01 4f 50 45 4e 5b 13 60 0a 03 0a .`....OPEN[.`... + db80: 02 43 47 43 53 5b 13 60 0a 06 0a 01 53 48 50 43 .CGCS[.`....SHPC + db90: 5b 13 60 0a 18 0a 03 44 47 50 43 5b 13 60 0a 1b [.`....DGPC[.`.. + dba0: 0a 02 48 44 41 43 70 01 4f 50 45 4e 70 01 53 48 ..HDACp.OPENp.SH + dbb0: 50 43 70 01 44 47 50 43 a0 1f 5c 2f 05 5f 53 42 PCp.DGPC..\/._SB + dbc0: 5f 50 43 49 30 50 45 47 5f 56 49 44 5f 5f 53 54 _PCI0PEG_VID__ST + dbd0: 41 70 0a 03 43 47 43 53 70 0a 02 48 44 41 43 a4 Ap..CGCSp..HDAC. + dbe0: 60 a1 44 0c a0 4d 09 93 5f 54 5f 30 0a 1b 5b 13 `.D..M.._T_0..[. + dbf0: 6b 0a 00 0a 01 48 44 41 55 5b 13 6b 0a 01 0a 01 k....HDAU[.k.... + dc00: 48 44 41 52 70 11 07 0a 04 00 00 00 00 60 5b 13 HDARp........`[. + dc10: 60 0a 02 0a 02 52 51 47 53 5b 13 60 0a 04 0a 01 `....RQGS[.`.... + dc20: 50 57 53 54 70 01 50 57 53 54 a0 3a 90 5c 2f 05 PWSTp.PWST.:.\/. + dc30: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + dc40: 44 4f 43 44 5c 2f 06 5f 53 42 5f 50 43 49 30 4c DOCD\/._SB_PCI0L + dc50: 50 43 5f 45 43 5f 5f 41 43 5f 5f 5f 50 53 52 70 PC_EC__AC___PSRp + dc60: 01 52 51 47 53 a1 07 70 00 52 51 47 53 a0 12 99 .RQGS..p.RQGS... + dc70: 48 44 41 52 00 70 99 48 44 41 55 00 48 44 41 53 HDAR.p.HDAU.HDAS + dc80: a4 60 a1 23 a0 21 93 5f 54 5f 30 0a 10 a4 5c 2f .`.#.!._T_0...\/ + dc90: 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 49 44 ._SB_PCI0PEG_VID + dca0: 5f 47 4f 42 54 6b a4 0c 02 00 00 80 10 37 5c 00 _GOBTk.......7\. + dcb0: 14 33 43 4d 50 42 02 70 87 68 61 a0 09 92 93 61 .3CMPB.p.ha....a + dcc0: 87 69 a4 0a 00 70 0a 00 60 a2 17 95 60 61 a0 10 .i...p..`...`a.. + dcd0: 92 93 83 88 68 60 00 83 88 69 60 00 a4 0a 00 75 ....h`...i`....u + dce0: 60 a4 0a 01 10 49 21 5c 2f 04 5f 53 42 5f 50 43 `....I!\/._SB_PC + dcf0: 49 30 50 45 47 5f 56 49 44 5f 08 43 50 50 43 0a I0PEG_VID_.CPPC. + dd00: 00 14 4c 1f 4e 56 50 53 04 08 5f 54 5f 31 00 08 ..L.NVPS.._T_1.. + dd10: 5f 54 5f 30 00 70 0d 2d 2d 2d 2d 2d 2d 2d 20 4e _T_0.p.------- N + dd20: 56 20 47 50 53 20 44 53 4d 20 2d 2d 2d 2d 2d 2d V GPS DSM ------ + dd30: 2d 2d 00 5b 31 70 99 6a 00 5f 54 5f 30 a0 46 05 --.[1p.j._T_0.F. + dd40: 93 5f 54 5f 30 0a 00 70 11 0b 0a 08 00 00 00 00 ._T_0..p........ + dd50: 00 00 00 00 60 70 11 0a 0a 07 00 20 21 22 23 2a ....`p..... !"#* + dd60: ff 63 70 00 64 70 83 88 63 64 00 65 a2 25 92 93 .cp.dp..cd.e.%.. + dd70: 65 0a ff 78 65 0a 08 62 61 79 0a 01 62 62 7d 83 e..xe..bay..bb}. + dd80: 88 60 61 00 62 88 60 61 00 75 64 70 83 88 63 64 .`a.b.`a.udp..cd + dd90: 00 65 a4 60 a1 40 16 a0 36 93 5f 54 5f 30 0a 20 .e.`.@..6._T_0. + dda0: 70 11 07 0a 04 00 00 00 00 60 5b 13 60 0a 18 0a p........`[.`... + ddb0: 01 43 55 49 54 5b 13 60 0a 1e 0a 01 50 53 45 52 .CUIT[.`....PSER + ddc0: 70 01 43 55 49 54 70 01 50 53 45 52 a4 60 a1 46 p.CUITp.PSER.`.F + ddd0: 12 a0 18 93 5f 54 5f 30 0a 21 a4 5c 2f 03 5f 50 ...._T_0.!.\/._P + dde0: 52 5f 43 50 55 30 5f 50 53 53 a1 4a 10 a0 2c 93 R_CPU0_PSS.J..,. + ddf0: 5f 54 5f 30 0a 22 5b 13 6b 0a 00 0a 08 50 50 43 _T_0."[.k....PPC + de00: 56 70 50 50 43 56 43 50 50 43 5c 50 4e 54 46 0a VpPPCVCPPC\PNTF. + de10: 80 a4 11 07 0a 04 00 00 00 00 a1 4a 0d a0 1e 93 ...........J.... + de20: 5f 54 5f 30 0a 23 70 11 07 0a 04 00 00 00 00 60 _T_0.#p........` + de30: 70 43 50 50 43 88 60 0a 00 00 a4 60 a1 48 0b a0 pCPPC.`....`.H.. + de40: 45 0b 93 5f 54 5f 30 0a 2a 70 11 27 0a 24 00 02 E.._T_0.*p.'.$.. + de50: 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 ................ + de60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + de70: 00 00 60 70 83 88 6b 0a 00 00 88 60 0a 00 00 5b ..`p..k....`...[ + de80: 13 6b 0a 00 0a 04 51 54 59 50 70 99 51 54 59 50 .k....QTYPp.QTYP + de90: 00 5f 54 5f 31 a0 2e 93 5f 54 5f 31 0a 00 70 5c ._T_1..._T_1..p\ + dea0: 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + deb0: 5f 5f 54 4d 50 30 61 70 7b 61 0a ff 00 88 60 0a __TMP0ap{a....`. + dec0: 0c 00 a4 60 a1 30 a0 1a 93 5f 54 5f 31 0a 01 70 ...`.0..._T_1..p + ded0: 0a 08 88 60 0a 0d 00 70 0a 03 88 60 0a 01 00 a4 ...`...p...`.... + dee0: 60 a1 13 a0 11 93 5f 54 5f 31 0a 02 70 00 88 60 `....._T_1..p..` + def0: 0a 01 00 a4 60 a4 11 07 0a 04 02 00 00 80 10 2c ....`.........., + df00: 5c 2f 06 5f 53 42 5f 50 43 49 30 45 48 43 32 55 \/._SB_PCI0EHC2U + df10: 52 54 48 55 52 4d 48 50 52 54 43 08 5f 45 4a 44 RTHURMHPRTC._EJD + df20: 0d 5c 5f 53 42 2e 47 44 43 4b 00 10 36 5c 2f 06 .\_SB.GDCK..6\/. + df30: 5f 53 42 5f 50 43 49 30 45 48 43 31 55 52 54 48 _SB_PCI0EHC1URTH + df40: 55 52 4d 48 50 52 54 35 08 5f 45 4a 44 0d 5c 5f URMHPRT5._EJD.\_ + df50: 53 42 2e 50 43 49 30 2e 45 58 50 33 2e 53 4c 4f SB.PCI0.EXP3.SLO + df60: 54 00 10 38 5c 2f 04 5f 53 42 5f 50 43 49 30 45 T..8\/._SB_PCI0E + df70: 58 50 33 53 4c 4f 54 08 5f 45 4a 44 0d 5c 5f 53 XP3SLOT._EJD.\_S + df80: 42 2e 50 43 49 30 2e 45 48 43 31 2e 55 52 54 48 B.PCI0.EHC1.URTH + df90: 2e 55 52 4d 48 2e 50 52 54 35 00 08 5c 5f 53 30 .URMH.PRT5..\_S0 + dfa0: 5f 12 0a 04 0a 00 0a 00 0a 00 0a 00 08 5c 5f 53 _............\_S + dfb0: 33 5f 12 0a 04 0a 05 0a 05 0a 00 0a 00 08 5c 5f 3_............\_ + dfc0: 53 34 5f 12 0a 04 0a 06 0a 06 0a 00 0a 00 08 5c S4_............\ + dfd0: 5f 53 35 5f 12 0a 04 0a 07 0a 07 0a 00 0a 00 14 _S5_............ + dfe0: 45 26 5c 5f 50 54 53 01 70 0a 01 60 a0 0c 93 68 E&\_PTS.p..`...h + dff0: 5c 53 50 53 5f 70 0a 00 60 a0 0f 91 93 68 0a 00 \SPS_p..`....h.. + e000: 92 95 68 0a 06 70 0a 00 60 a0 4b 23 60 70 68 5c ..h..p..`.K#`ph\ + e010: 53 50 53 5f 5c 2f 06 5f 53 42 5f 50 43 49 30 4c SPS_\/._SB_PCI0L + e020: 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 45 0a PC_EC__HKEYMHKE. + e030: 00 a0 1f 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 ...\/._SB_PCI0LP + e040: 43 5f 45 43 5f 5f 4b 42 4c 54 5c 55 43 4d 53 0a C_EC__KBLT\UCMS. + e050: 0d a0 47 05 93 68 0a 01 70 5c 2f 05 5f 53 42 5f ..G..h..p\/._SB_ + e060: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 46 4e 49 PCI0LPC_EC__HFNI + e070: 5c 46 4e 49 44 70 0a 00 5c 2f 05 5f 53 42 5f 50 \FNIDp..\/._SB_P + e080: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 46 4e 49 70 CI0LPC_EC__HFNIp + e090: 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + e0a0: 5f 45 43 5f 5f 48 46 53 50 a0 3a 93 68 0a 03 5c _EC__HFSP.:.h..\ + e0b0: 56 56 50 44 0a 03 5c 54 52 41 50 70 5c 2f 06 5f VVPD..\TRAPp\/._ + e0c0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 41 SB_PCI0LPC_EC__A + e0d0: 43 5f 5f 5f 50 53 52 5c 41 43 53 54 70 0a 00 5c C___PSR\ACSTp..\ + e0e0: 41 50 49 4e a0 46 04 93 68 0a 04 a0 0b 56 44 53 APIN.F..h....VDS + e0f0: 50 70 00 53 48 41 31 5c 2f 03 5f 53 42 5f 53 4c Pp.SHA1\/._SB_SL + e100: 50 42 5f 50 53 57 0a 00 5c 54 52 41 50 5c 2f 05 PB_PSW..\TRAP\/. + e110: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 54 50 4d 5f _SB_PCI0LPC_TPM_ + e120: 43 4d 4f 52 5c 41 57 4f 4e 0a 04 a0 28 93 68 0a CMOR\AWON...(.h. + e130: 05 5c 54 52 41 50 5c 2f 05 5f 53 42 5f 50 43 49 .\TRAP\/._SB_PCI + e140: 30 4c 50 43 5f 54 50 4d 5f 43 4d 4f 52 5c 41 57 0LPC_TPM_CMOR\AW + e150: 4f 4e 0a 05 5c 2f 05 5f 53 42 5f 50 43 49 30 4c ON..\/._SB_PCI0L + e160: 50 43 5f 45 43 5f 5f 42 50 54 53 68 a0 20 92 95 PC_EC__BPTSh. .. + e170: 68 0a 04 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 h..p..\/._SB_PCI + e180: 30 4c 50 43 5f 45 43 5f 5f 48 57 4c 42 a1 1b 70 0LPC_EC__HWLB..p + e190: 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + e1a0: 5f 45 43 5f 5f 48 57 4c 42 a0 4f 07 92 93 68 0a _EC__HWLB.O...h. + e1b0: 05 70 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c .p..\/._SB_PCI0L + e1c0: 50 43 5f 45 43 5f 5f 48 43 4d 55 5c 2f 03 5f 53 PC_EC__HCMU\/._S + e1d0: 42 5f 47 44 43 4b 47 50 54 53 68 70 5c 2f 04 5f B_GDCKGPTShp\/._ + e1e0: 53 42 5f 50 43 49 30 45 58 50 31 50 44 53 5f 5c SB_PCI0EXP1PDS_\ + e1f0: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 31 50 44 /._SB_PCI0EXP1PD + e200: 53 46 70 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 SFp\/._SB_PCI0EX + e210: 50 33 50 44 53 5f 5c 2f 04 5f 53 42 5f 50 43 49 P3PDS_\/._SB_PCI + e220: 30 45 58 50 33 50 44 53 46 5c 2f 06 5f 53 42 5f 0EXP3PDSF\/._SB_ + e230: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 PCI0LPC_EC__HKEY + e240: 57 47 50 53 68 08 57 41 4b 49 12 06 02 0a 00 0a WGPSh.WAKI...... + e250: 00 14 45 85 5c 5f 57 41 4b 01 a0 10 91 93 68 0a ..E.\_WAK.....h. + e260: 00 92 95 68 0a 05 a4 57 41 4b 49 70 0a 00 5c 53 ...h...WAKIp..\S + e270: 50 53 5f 70 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 PS_p..\/._SB_PCI + e280: 30 4c 50 43 5f 45 43 5f 5f 48 43 4d 55 5c 2f 05 0LPC_EC__HCMU\/. + e290: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e2a0: 45 56 4e 54 0a 01 5c 2f 06 5f 53 42 5f 50 43 49 EVNT..\/._SB_PCI + e2b0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 4b 0LPC_EC__HKEYMHK + e2c0: 45 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 E..\/._SB_PCI0LP + e2d0: 43 5f 45 43 5f 5f 46 4e 53 54 5c 55 43 4d 53 0a C_EC__FNST\UCMS. + e2e0: 0d 70 0a 00 5c 4c 49 44 42 a0 22 93 68 0a 01 70 .p..\LIDB.".h..p + e2f0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + e300: 43 5f 5f 48 46 4e 49 5c 46 4e 49 44 a0 4e 3b 93 C__HFNI\FNID.N;. + e310: 68 0a 03 5c 4e 56 53 53 0a 00 70 5c 2f 06 5f 53 h..\NVSS..p\/._S + e320: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 41 43 B_PCI0LPC_EC__AC + e330: 5f 5f 5f 50 53 52 5c 50 57 52 53 5c 2f 05 5f 53 ___PSR\PWRS\/._S + e340: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 B_PCI0LPC_EC__LE + e350: 44 5f 0a 08 0a 80 a0 0d 5c 4f 53 43 34 5c 50 4e D_......\OSC4\PN + e360: 54 46 0a 81 a0 3a 92 93 5c 41 43 53 54 5c 2f 06 TF...:..\ACST\/. + e370: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e380: 41 43 5f 5f 5f 50 53 52 5c 2f 05 5f 53 42 5f 50 AC___PSR\/._SB_P + e390: 43 49 30 4c 50 43 5f 45 43 5f 5f 41 54 4d 43 a0 CI0LPC_EC__ATMC. + e3a0: 44 0c 5c 53 43 52 4d 70 0a 07 5c 2f 05 5f 53 42 D.\SCRMp..\/._SB + e3b0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 46 53 _PCI0LPC_EC__HFS + e3c0: 50 a0 42 0a 5c 4d 54 41 55 70 0b e8 03 62 a2 20 P.B.\MTAUp...b. + e3d0: 90 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + e3e0: 45 43 5f 5f 50 49 42 53 62 5b 22 0a 01 76 62 a0 EC__PIBSb["..vb. + e3f0: 44 07 62 70 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 D.bp..\/._SB_PCI + e400: 30 4c 50 43 5f 45 43 5f 5f 50 4c 53 4c 70 5c 4d 0LPC_EC__PLSLp\M + e410: 54 41 55 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 TAU\/._SB_PCI0LP + e420: 43 5f 45 43 5f 5f 50 4c 54 55 70 5c 50 4c 31 4c C_EC__PLTUp\PL1L + e430: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + e440: 43 5f 5f 50 4c 4c 53 70 5c 50 4c 31 4d 5c 2f 05 C__PLLSp\PL1M\/. + e450: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e460: 50 4c 4d 53 a0 45 04 93 5c 49 53 57 4b 0a 01 a0 PLMS.E..\ISWK... + e470: 3a 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f :\/._SB_PCI0LPC_ + e480: 45 43 5f 5f 48 4b 45 59 44 48 4b 43 5c 2f 06 5f EC__HKEYDHKC\/._ + e490: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + e4a0: 4b 45 59 4d 48 4b 51 0b 70 60 a0 4d 07 5c 56 49 KEYMHKQ.p`.M.\VI + e4b0: 47 44 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 GD\/._SB_PCI0VID + e4c0: 5f 47 4c 49 53 5c 2f 03 5f 53 42 5f 4c 49 44 5f _GLIS\/._SB_LID_ + e4d0: 5f 4c 49 44 70 5c 2f 03 5f 53 42 5f 47 44 43 4b _LIDp\/._SB_GDCK + e4e0: 47 47 49 44 60 a0 1f 91 93 60 0a 00 93 60 0a 01 GGID`....`...`.. + e4f0: 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f 47 \/._SB_PCI0VID_G + e500: 44 43 53 0a 01 a1 16 5c 2f 04 5f 53 42 5f 50 43 DCS....\/._SB_PC + e510: 49 30 56 49 44 5f 47 44 43 53 0a 00 a0 0b 5c 57 I0VID_GDCS....\W + e520: 56 49 53 5c 56 42 54 44 a1 49 07 a0 46 07 5c 57 VIS\VBTD.I..F.\W + e530: 56 49 53 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 VIS\/._SB_PCI0VI + e540: 44 5f 47 4c 49 53 5c 2f 03 5f 53 42 5f 4c 49 44 D_GLIS\/._SB_LID + e550: 5f 5f 4c 49 44 70 5c 2f 03 5f 53 42 5f 47 44 43 __LIDp\/._SB_GDC + e560: 4b 47 47 49 44 60 a0 1f 91 93 60 0a 00 93 60 0a KGGID`....`...`. + e570: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f .\/._SB_PCI0VID_ + e580: 47 44 43 53 0a 01 a1 16 5c 2f 04 5f 53 42 5f 50 GDCS....\/._SB_P + e590: 43 49 30 56 49 44 5f 47 44 43 53 0a 00 5c 56 42 CI0VID_GDCS..\VB + e5a0: 54 44 5c 56 43 4d 53 0a 01 5c 2f 03 5f 53 42 5f TD\VCMS..\/._SB_ + e5b0: 4c 49 44 5f 5f 4c 49 44 5c 41 57 4f 4e 0a 00 a0 LID__LID\AWON... + e5c0: 1b 5c 43 4d 50 52 86 5c 2e 5f 53 42 5f 53 4c 50 .\CMPR.\._SB_SLP + e5d0: 42 0a 02 70 0a 00 5c 43 4d 50 52 a0 4f 0e 5c 55 B..p..\CMPR.O.\U + e5e0: 53 42 52 a0 47 0e 91 93 5c 58 48 43 4d 0a 02 93 SBR.G...\XHCM... + e5f0: 5c 58 48 43 4d 0a 03 70 0a 00 60 7b 5c 2f 04 5f \XHCM..p..`{\/._ + e600: 53 42 5f 50 43 49 30 58 48 43 49 50 52 33 5f 0c SB_PCI0XHCIPR3_. + e610: f0 ff ff ff 60 7d 60 5c 58 48 50 4d 60 a0 1b 93 ....`}`\XHPM`... + e620: 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47 49 44 0a \/._SB_GDCKGGID. + e630: 05 7b 60 0c fb ff ff ff 60 7b 60 5c 2f 04 5f 53 .{`.....`{`\/._S + e640: 42 5f 50 43 49 30 58 48 43 49 50 52 33 4d 5c 2f B_PCI0XHCIPR3M\/ + e650: 04 5f 53 42 5f 50 43 49 30 58 48 43 49 50 52 33 ._SB_PCI0XHCIPR3 + e660: 5f 70 0a 00 60 7b 5c 2f 04 5f 53 42 5f 50 43 49 _p..`{\/._SB_PCI + e670: 30 58 48 43 49 50 52 32 5f 0c f0 ff ff ff 60 7d 0XHCIPR2_.....`} + e680: 60 5c 58 48 50 4d 60 a0 1b 93 5c 2f 03 5f 53 42 `\XHPM`...\/._SB + e690: 5f 47 44 43 4b 47 47 49 44 0a 05 7b 60 0c fb ff _GDCKGGID..{`... + e6a0: ff ff 60 7b 60 5c 2f 04 5f 53 42 5f 50 43 49 30 ..`{`\/._SB_PCI0 + e6b0: 58 48 43 49 50 52 32 4d 5c 2f 04 5f 53 42 5f 50 XHCIPR2M\/._SB_P + e6c0: 43 49 30 58 48 43 49 50 52 32 5f a0 4a 1a 93 68 CI0XHCIPR2_.J..h + e6d0: 0a 04 5c 4e 56 53 53 0a 00 70 0a 00 5c 2f 05 5f ..\NVSS..p..\/._ + e6e0: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + e6f0: 53 50 41 70 5c 2f 06 5f 53 42 5f 50 43 49 30 4c SPAp\/._SB_PCI0L + e700: 50 43 5f 45 43 5f 5f 41 43 5f 5f 5f 50 53 52 5c PC_EC__AC___PSR\ + e710: 50 57 52 53 a0 0d 5c 4f 53 43 34 5c 50 4e 54 46 PWRS..\OSC4\PNTF + e720: 0a 81 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + e730: 5f 45 43 5f 5f 41 54 4d 43 a0 44 0c 5c 53 43 52 _EC__ATMC.D.\SCR + e740: 4d 70 0a 07 5c 2f 05 5f 53 42 5f 50 43 49 30 4c Mp..\/._SB_PCI0L + e750: 50 43 5f 45 43 5f 5f 48 46 53 50 a0 42 0a 5c 4d PC_EC__HFSP.B.\M + e760: 54 41 55 70 0b e8 03 62 a2 20 90 5c 2f 05 5f 53 TAUp...b. .\/._S + e770: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 49 B_PCI0LPC_EC__PI + e780: 42 53 62 5b 22 0a 01 76 62 a0 44 07 62 70 0a 01 BSb["..vb.D.bp.. + e790: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + e7a0: 43 5f 5f 50 4c 53 4c 70 5c 4d 54 41 55 5c 2f 05 C__PLSLp\MTAU\/. + e7b0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e7c0: 50 4c 54 55 70 5c 50 4c 31 4c 5c 2f 05 5f 53 42 PLTUp\PL1L\/._SB + e7d0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 4c _PCI0LPC_EC__PLL + e7e0: 53 70 5c 50 4c 31 4d 5c 2f 05 5f 53 42 5f 50 43 Sp\PL1M\/._SB_PC + e7f0: 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 4d 53 a0 31 I0LPC_EC__PLMS.1 + e800: 92 5c 4e 42 43 46 a0 1d 5c 56 49 47 44 5c 2f 05 .\NBCF..\VIGD\/. + e810: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e820: 42 52 4e 53 a1 0b 5c 56 42 52 43 5c 42 52 4c 56 BRNS..\VBRC\BRLV + e830: a0 45 04 93 5c 49 53 57 4b 0a 02 a0 3a 5c 2f 06 .E..\ISWK...:\/. + e840: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + e850: 48 4b 45 59 44 48 4b 43 5c 2f 06 5f 53 42 5f 50 HKEYDHKC\/._SB_P + e860: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + e870: 48 4b 51 0b 80 60 a0 43 06 7f 5c 2f 04 5f 53 42 HKQ..`.C..\/._SB + e880: 5f 50 43 49 30 45 58 50 31 50 44 53 5f 5c 2f 04 _PCI0EXP1PDS_\/. + e890: 5f 53 42 5f 50 43 49 30 45 58 50 31 50 44 53 46 _SB_PCI0EXP1PDSF + e8a0: 00 70 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 .p\/._SB_PCI0EXP + e8b0: 31 50 44 53 5f 5c 2f 04 5f 53 42 5f 50 43 49 30 1PDS_\/._SB_PCI0 + e8c0: 45 58 50 31 50 44 53 46 86 5c 2f 03 5f 53 42 5f EXP1PDSF.\/._SB_ + e8d0: 50 43 49 30 45 58 50 31 0a 00 a0 43 06 7f 5c 2f PCI0EXP1...C..\/ + e8e0: 04 5f 53 42 5f 50 43 49 30 45 58 50 33 50 44 53 ._SB_PCI0EXP3PDS + e8f0: 5f 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 33 _\/._SB_PCI0EXP3 + e900: 50 44 53 46 00 70 5c 2f 04 5f 53 42 5f 50 43 49 PDSF.p\/._SB_PCI + e910: 30 45 58 50 33 50 44 53 5f 5c 2f 04 5f 53 42 5f 0EXP3PDS_\/._SB_ + e920: 50 43 49 30 45 58 50 33 50 44 53 46 86 5c 2f 03 PCI0EXP3PDSF.\/. + e930: 5f 53 42 5f 50 43 49 30 45 58 50 33 0a 00 5c 2f _SB_PCI0EXP3..\/ + e940: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + e950: 5f 42 41 54 57 68 5c 2f 03 5f 53 42 5f 47 44 43 _BATWh\/._SB_GDC + e960: 4b 47 57 41 4b 68 5c 2f 05 5f 53 42 5f 50 43 49 KGWAKh\/._SB_PCI + e970: 30 4c 50 43 5f 45 43 5f 5f 42 57 41 4b 68 5c 2f 0LPC_EC__BWAKh\/ + e980: 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + e990: 5f 48 4b 45 59 57 47 57 4b 68 86 5c 2e 5f 54 5a _HKEYWGWKh.\._TZ + e9a0: 5f 54 48 4d 30 0a 80 5c 56 53 4c 44 5c 2f 03 5f _THM0..\VSLD\/._ + e9b0: 53 42 5f 4c 49 44 5f 5f 4c 49 44 a0 28 5c 56 49 SB_LID__LID.(\VI + e9c0: 47 44 5c 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 GD\/._SB_PCI0VID + e9d0: 5f 47 4c 49 53 5c 2f 03 5f 53 42 5f 4c 49 44 5f _GLIS\/._SB_LID_ + e9e0: 5f 4c 49 44 a1 2a a0 28 5c 57 56 49 53 5c 2f 04 _LID.*.(\WVIS\/. + e9f0: 5f 53 42 5f 50 43 49 30 56 49 44 5f 47 4c 49 53 _SB_PCI0VID_GLIS + ea00: 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 a0 \/._SB_LID__LID. + ea10: 39 95 68 0a 04 a0 33 7b 5c 52 52 42 46 0a 02 00 9.h...3{\RRBF... + ea20: 79 68 0a 08 60 70 7d 0b 13 20 60 00 60 5c 2f 06 yh..`p}.. `.`\/. + ea30: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + ea40: 48 4b 45 59 4d 48 4b 51 60 a0 41 05 93 68 0a 04 HKEYMHKQ`.A..h.. + ea50: 70 0a 00 60 70 5c 43 53 55 4d 0a 00 61 a0 14 92 p..`p\CSUM..a... + ea60: 93 61 5c 43 48 4b 43 70 0a 01 60 70 61 5c 43 48 .a\CHKCp..`pa\CH + ea70: 4b 43 70 5c 43 53 55 4d 0a 01 61 a0 14 92 93 61 KCp\CSUM..a....a + ea80: 5c 43 48 4b 45 70 0a 01 60 70 61 5c 43 48 4b 45 \CHKEp..`pa\CHKE + ea90: a0 0a 60 86 5c 5f 53 42 5f 0a 00 70 00 5c 52 52 ..`.\_SB_..p.\RR + eaa0: 42 46 a4 57 41 4b 49 10 47 21 5c 5f 53 49 5f 14 BF.WAKI.G!\_SI_. + eab0: 4f 20 5f 53 53 54 01 a0 3b 93 68 0a 00 5c 2f 05 O _SST..;.h..\/. + eac0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + ead0: 4c 45 44 5f 0a 00 0a 00 5c 2f 05 5f 53 42 5f 50 LED_....\/._SB_P + eae0: 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a CI0LPC_EC__LED_. + eaf0: 07 0a 00 a0 42 06 93 68 0a 01 a0 25 91 5c 53 50 ....B..h...%.\SP + eb00: 53 5f 5c 57 4e 54 46 5c 2f 05 5f 53 42 5f 50 43 S_\WNTF\/._SB_PC + eb10: 49 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 0a 05 I0LPC_EC__BEEP.. + eb20: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + eb30: 43 5f 5f 4c 45 44 5f 0a 00 0a 80 5c 2f 05 5f 53 C__LED_....\/._S + eb40: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 B_PCI0LPC_EC__LE + eb50: 44 5f 0a 07 0a 00 a0 3b 93 68 0a 02 5c 2f 05 5f D_.....;.h..\/._ + eb60: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c SB_PCI0LPC_EC__L + eb70: 45 44 5f 0a 00 0a c0 5c 2f 05 5f 53 42 5f 50 43 ED_....\/._SB_PC + eb80: 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 07 I0LPC_EC__LED_.. + eb90: 0a c0 a0 46 0d 93 68 0a 03 a0 22 94 5c 53 50 53 ...F..h...".\SPS + eba0: 5f 0a 03 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 _..\/._SB_PCI0LP + ebb0: 43 5f 45 43 5f 5f 42 45 45 50 0a 07 a1 4f 04 a0 C_EC__BEEP...O.. + ebc0: 31 93 5c 53 50 53 5f 0a 03 5c 2f 05 5f 53 42 5f 1.\SPS_..\/._SB_ + ebd0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 45 45 50 PCI0LPC_EC__BEEP + ebe0: 0a 03 5c 2f 03 5f 53 42 5f 47 44 43 4b 50 45 4a ..\/._SB_GDCKPEJ + ebf0: 33 a1 1a 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 3..\/._SB_PCI0LP + ec00: 43 5f 45 43 5f 5f 42 45 45 50 0a 04 a0 09 93 5c C_EC__BEEP.....\ + ec10: 53 50 53 5f 0a 03 a1 1c 5c 2f 05 5f 53 42 5f 50 SPS_....\/._SB_P + ec20: 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a CI0LPC_EC__LED_. + ec30: 00 0a 80 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 ...\/._SB_PCI0LP + ec40: 43 5f 45 43 5f 5f 4c 45 44 5f 0a 07 0a c0 5c 2f C_EC__LED_....\/ + ec50: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + ec60: 5f 4c 45 44 5f 0a 00 0a c0 a0 45 05 93 68 0a 04 _LED_.....E..h.. + ec70: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + ec80: 43 5f 5f 42 45 45 50 0a 03 5c 2f 05 5f 53 42 5f C__BEEP..\/._SB_ + ec90: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 4c 45 44 5f PCI0LPC_EC__LED_ + eca0: 0a 07 0a c0 5c 2f 05 5f 53 42 5f 50 43 49 30 4c ....\/._SB_PCI0L + ecb0: 50 43 5f 45 43 5f 5f 4c 45 44 5f 0a 00 0a c0 10 PC_EC__LED_..... + ecc0: 41 3e 5c 5f 47 50 45 14 48 09 5f 4c 31 44 00 70 A>\_GPE.H._L1D.p + ecd0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + ece0: 43 5f 5f 48 57 41 4b 60 70 60 5c 52 52 42 46 5b C__HWAK`p`\RRBF[ + ecf0: 22 0a 0a a0 06 7b 60 0a 02 00 a0 13 7b 60 0a 04 "....{`.....{`.. + ed00: 00 86 5c 2e 5f 53 42 5f 4c 49 44 5f 0a 02 a0 22 ..\._SB_LID_..." + ed10: 7b 60 0a 08 00 5c 2f 03 5f 53 42 5f 47 44 43 4b {`...\/._SB_GDCK + ed20: 47 47 50 45 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a GGPE.\._SB_SLPB. + ed30: 02 a0 13 7b 60 0a 10 00 86 5c 2e 5f 53 42 5f 53 ...{`....\._SB_S + ed40: 4c 50 42 0a 02 a0 06 7b 60 0a 40 00 a0 13 7b 60 LPB....{`.@...{` + ed50: 0a 80 00 86 5c 2e 5f 53 42 5f 53 4c 50 42 0a 02 ....\._SB_SLPB.. + ed60: 14 43 10 5f 4c 30 39 00 a0 43 05 5c 2f 04 5f 53 .C._L09..C.\/._S + ed70: 42 5f 50 43 49 30 45 58 50 31 50 53 5f 5f 70 0a B_PCI0EXP1PS__p. + ed80: 01 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 31 .\/._SB_PCI0EXP1 + ed90: 50 53 5f 5f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 PS__p..\/._SB_PC + eda0: 49 30 45 58 50 31 50 4d 43 53 86 5c 2f 03 5f 53 I0EXP1PMCS.\/._S + edb0: 42 5f 50 43 49 30 45 58 50 31 0a 02 a0 43 05 5c B_PCI0EXP1...C.\ + edc0: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 32 50 53 /._SB_PCI0EXP2PS + edd0: 5f 5f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 __p..\/._SB_PCI0 + ede0: 45 58 50 32 50 53 5f 5f 70 0a 01 5c 2f 04 5f 53 EXP2PS__p..\/._S + edf0: 42 5f 50 43 49 30 45 58 50 32 50 4d 43 53 86 5c B_PCI0EXP2PMCS.\ + ee00: 2f 03 5f 53 42 5f 50 43 49 30 45 58 50 32 0a 02 /._SB_PCI0EXP2.. + ee10: a0 43 05 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 .C.\/._SB_PCI0EX + ee20: 50 33 50 53 5f 5f 70 0a 01 5c 2f 04 5f 53 42 5f P3PS__p..\/._SB_ + ee30: 50 43 49 30 45 58 50 33 50 53 5f 5f 70 0a 01 5c PCI0EXP3PS__p..\ + ee40: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 33 50 4d /._SB_PCI0EXP3PM + ee50: 43 53 86 5c 2f 03 5f 53 42 5f 50 43 49 30 45 58 CS.\/._SB_PCI0EX + ee60: 50 33 0a 02 14 41 13 5f 4c 30 31 00 a0 44 09 5c P3...A._L01..D.\ + ee70: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 31 48 50 /._SB_PCI0EXP1HP + ee80: 43 53 5b 22 0a 64 70 0a 01 5c 2f 04 5f 53 42 5f CS[".dp..\/._SB_ + ee90: 50 43 49 30 45 58 50 31 48 50 43 53 a0 44 06 5c PCI0EXP1HPCS.D.\ + eea0: 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 31 50 44 /._SB_PCI0EXP1PD + eeb0: 43 5f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 C_p..\/._SB_PCI0 + eec0: 45 58 50 31 50 44 43 5f 70 5c 2f 04 5f 53 42 5f EXP1PDC_p\/._SB_ + eed0: 50 43 49 30 45 58 50 31 50 44 53 5f 5c 2f 04 5f PCI0EXP1PDS_\/._ + eee0: 53 42 5f 50 43 49 30 45 58 50 31 50 44 53 46 86 SB_PCI0EXP1PDSF. + eef0: 5c 2f 03 5f 53 42 5f 50 43 49 30 45 58 50 31 0a \/._SB_PCI0EXP1. + ef00: 00 a0 44 09 5c 2f 04 5f 53 42 5f 50 43 49 30 45 ..D.\/._SB_PCI0E + ef10: 58 50 33 48 50 43 53 5b 22 0a 64 70 0a 01 5c 2f XP3HPCS[".dp..\/ + ef20: 04 5f 53 42 5f 50 43 49 30 45 58 50 33 48 50 43 ._SB_PCI0EXP3HPC + ef30: 53 a0 44 06 5c 2f 04 5f 53 42 5f 50 43 49 30 45 S.D.\/._SB_PCI0E + ef40: 58 50 33 50 44 43 5f 70 0a 01 5c 2f 04 5f 53 42 XP3PDC_p..\/._SB + ef50: 5f 50 43 49 30 45 58 50 33 50 44 43 5f 70 5c 2f _PCI0EXP3PDC_p\/ + ef60: 04 5f 53 42 5f 50 43 49 30 45 58 50 33 50 44 53 ._SB_PCI0EXP3PDS + ef70: 5f 5c 2f 04 5f 53 42 5f 50 43 49 30 45 58 50 33 _\/._SB_PCI0EXP3 + ef80: 50 44 53 46 86 5c 2f 03 5f 53 42 5f 50 43 49 30 PDSF.\/._SB_PCI0 + ef90: 45 58 50 33 0a 00 14 4b 04 5f 4c 30 32 00 70 0a EXP3...K._L02.p. + efa0: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + efb0: 53 57 47 45 a0 2d 90 5c 43 57 55 45 7b 5c 53 57 SWGE.-.\CWUE{\SW + efc0: 47 50 0a 02 00 7b 5c 53 57 47 50 80 0a 02 00 5c GP...{\SWGP....\ + efd0: 53 57 47 50 a0 0d 5c 4f 53 43 34 5c 50 4e 54 46 SWGP..\OSC4\PNTF + efe0: 0a 81 14 47 04 5f 4c 30 36 00 a0 27 5c 2f 04 5f ...G._L06..'\/._ + eff0: 53 42 5f 50 43 49 30 56 49 44 5f 47 53 53 45 5c SB_PCI0VID_GSSE\ + f000: 2f 04 5f 53 42 5f 50 43 49 30 56 49 44 5f 47 53 /._SB_PCI0VID_GS + f010: 43 49 a1 17 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 CI..p..\/._SB_PC + f020: 49 30 4c 50 43 5f 53 43 49 53 14 46 07 5f 4c 31 I0LPC_SCIS.F._L1 + f030: 36 00 a0 45 04 5c 2f 05 5f 53 42 5f 50 43 49 30 6..E.\/._SB_PCI0 + f040: 50 45 47 5f 56 49 44 5f 49 53 4f 50 a0 2b 92 5c PEG_VID_ISOP.+.\ + f050: 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 58 48 /._SB_PCI0LPC_XH + f060: 50 44 86 5c 2f 04 5f 53 42 5f 50 43 49 30 50 45 PD.\/._SB_PCI0PE + f070: 47 5f 56 49 44 5f 0a 81 7f 5c 2f 04 5f 53 42 5f G_VID_...\/._SB_ + f080: 50 43 49 30 4c 50 43 5f 58 48 50 44 0a 01 5c 2f PCI0LPC_XHPD..\/ + f090: 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f 58 48 50 ._SB_PCI0LPC_XHP + f0a0: 44 10 4d 58 5c 2f 05 5f 53 42 5f 50 43 49 30 4c D.MX\/._SB_PCI0L + f0b0: 50 43 5f 45 43 5f 5f 48 4b 45 59 14 48 0c 4d 48 PC_EC__HKEY.H.MH + f0c0: 51 54 01 a0 4d 0b 90 5c 57 4e 54 46 5c 54 41 54 QT..M..\WNTF\TAT + f0d0: 43 a0 0e 93 68 0a 00 70 5c 54 41 54 43 60 a4 60 C...h..p\TATC`.` + f0e0: a1 40 0a a0 4b 04 93 68 0a 01 70 5c 54 44 46 41 .@..K..h..p\TDFA + f0f0: 60 72 60 79 5c 54 44 54 41 0a 04 00 60 72 60 79 `r`y\TDTA...`r`y + f100: 5c 54 44 46 44 0a 08 00 60 72 60 79 5c 54 44 54 \TDFD...`r`y\TDT + f110: 44 0a 0c 00 60 72 60 79 5c 54 4e 46 54 0a 10 00 D...`r`y\TNFT... + f120: 60 72 60 79 5c 54 4e 54 54 0a 14 00 60 a4 60 a1 `r`y\TNTT...`.`. + f130: 41 05 a0 32 93 68 0a 02 70 5c 54 43 46 41 60 72 A..2.h..p\TCFA`r + f140: 60 79 5c 54 43 54 41 0a 04 00 60 72 60 79 5c 54 `y\TCTA...`r`y\T + f150: 43 46 44 0a 08 00 60 72 60 79 5c 54 43 54 44 0a CFD...`r`y\TCTD. + f160: 0c 00 60 a4 60 a1 1b a0 05 93 68 0a 03 a1 13 a0 ..`.`.....h..... + f170: 0e 93 68 0a 04 70 5c 54 41 54 57 60 a4 60 a1 02 ..h..p\TATW`.`.. + f180: a3 a4 0a 00 14 46 25 4d 48 41 54 01 a0 4b 24 90 .....F%MHAT..K$. + f190: 5c 57 4e 54 46 5c 54 41 54 43 70 7b 68 0a ff 00 \WNTF\TATCp{h... + f1a0: 60 a0 0a 92 41 54 4d 56 60 a4 0a 00 70 7b 7a 68 `...ATMV`...p{zh + f1b0: 0a 08 00 0a ff 00 60 a0 0a 92 41 54 4d 56 60 a4 ......`...ATMV`. + f1c0: 0a 00 70 7b 68 0a 0f 00 5c 54 43 46 41 70 7b 7a ..p{h...\TCFAp{z + f1d0: 68 0a 04 00 0a 0f 00 5c 54 43 54 41 70 7b 7a 68 h......\TCTAp{zh + f1e0: 0a 08 00 0a 0f 00 5c 54 43 46 44 70 7b 7a 68 0a ......\TCFDp{zh. + f1f0: 0c 00 0a 0f 00 5c 54 43 54 44 41 54 4d 43 a0 4e .....\TCTDATMC.N + f200: 07 7b 5c 50 50 4d 46 0a 80 00 70 5c 46 54 50 53 .{\PPMF...p\FTPS + f210: 61 a0 30 7b 68 0c 00 00 01 00 00 a0 1c 5c 2e 5f a.0{h........\._ + f220: 50 52 5f 43 4c 56 4c 70 5c 43 54 44 50 5c 46 54 PR_CLVLp\CTDP\FT + f230: 50 53 75 5c 46 54 50 53 a1 09 70 0a 01 5c 46 54 PSu\FTPS..p..\FT + f240: 50 53 a1 22 a0 16 5c 2e 5f 50 52 5f 43 4c 56 4c PS."..\._PR_CLVL + f250: 70 5c 43 54 44 50 5c 46 54 50 53 a1 09 70 0a 00 p\CTDP\FTPS..p.. + f260: 5c 46 54 50 53 a0 17 7f 5c 46 54 50 53 61 00 a0 \FTPS...\FTPSa.. + f270: 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a 80 70 5c 53 .\OSPX\PNTF..p\S + f280: 43 52 4d 62 a0 2b 7b 68 0c 00 00 04 00 00 70 0a CRMb.+{h......p. + f290: 01 5c 53 43 52 4d 70 0a 07 5c 2f 05 5f 53 42 5f .\SCRMp..\/._SB_ + f2a0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 46 53 50 PCI0LPC_EC__HFSP + f2b0: a1 23 70 0a 00 5c 53 43 52 4d 70 0a 80 5c 2f 05 .#p..\SCRMp..\/. + f2c0: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + f2d0: 48 46 53 50 70 5c 45 54 41 55 63 a0 11 7b 68 0c HFSPp\ETAUc..{h. + f2e0: 00 00 02 00 00 70 0a 01 5c 45 54 41 55 a1 09 70 .....p..\ETAU..p + f2f0: 0a 00 5c 45 54 41 55 a0 4d 0d 5c 4d 54 41 55 a0 ..\ETAU.M.\MTAU. + f300: 45 0d 91 7f 5c 53 43 52 4d 62 00 7f 5c 45 54 41 E...\SCRMb..\ETA + f310: 55 63 00 70 0b e8 03 64 a2 25 5c 2f 05 5f 53 42 Uc.p...d.%\/._SB + f320: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 49 42 _PCI0LPC_EC__PIB + f330: 53 5b 22 0a 01 76 64 a0 06 92 64 a4 0a 00 70 0a S["..vd...d...p. + f340: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + f350: 45 43 5f 5f 50 4c 53 4c a0 26 7b 68 0c 00 00 06 EC__PLSL.&{h.... + f360: 00 00 70 5c 4d 54 41 55 5c 2f 05 5f 53 42 5f 50 ..p\MTAU\/._SB_P + f370: 43 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 54 55 a1 CI0LPC_EC__PLTU. + f380: 1b 70 0a 1c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c .p..\/._SB_PCI0L + f390: 50 43 5f 45 43 5f 5f 50 4c 54 55 70 5c 50 4c 31 PC_EC__PLTUp\PL1 + f3a0: 4c 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f L\/._SB_PCI0LPC_ + f3b0: 45 43 5f 5f 50 4c 4c 53 70 5c 50 4c 31 4d 5c 2f EC__PLLSp\PL1M\/ + f3c0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + f3d0: 5f 50 4c 4d 53 a4 0a 01 a4 0a 00 14 42 12 4d 48 _PLMS.......B.MH + f3e0: 47 54 01 a0 47 11 90 5c 57 4e 54 46 5c 54 41 54 GT..G..\WNTF\TAT + f3f0: 43 70 0c 00 00 00 01 60 a0 12 7b 5c 50 50 4d 46 Cp.....`..{\PPMF + f400: 0a 80 00 7d 60 0c 00 00 00 08 60 a0 0e 5c 53 43 ...}`.....`..\SC + f410: 52 4d 7d 60 0c 00 00 00 10 60 a0 0e 5c 45 54 41 RM}`.....`..\ETA + f420: 55 7d 60 0c 00 00 00 04 60 a0 14 95 5c 43 54 44 U}`.....`...\CTD + f430: 50 5c 46 54 50 53 7d 60 0c 00 00 00 02 60 72 60 P\FTPS}`.....`r` + f440: 79 5c 54 53 46 54 0a 10 00 60 72 60 79 5c 54 53 y\TSFT...`r`y\TS + f450: 54 54 0a 14 00 60 70 7b 68 0a ff 00 61 a0 0f 92 TT...`p{h...a... + f460: 41 54 4d 56 61 7d 60 0b ff ff 60 a4 60 70 7b 68 ATMVa}`...`.`p{h + f470: 0a 0f 00 61 a0 0d 93 61 0a 00 72 60 5c 54 49 46 ...a...a..r`\TIF + f480: 30 60 a1 26 a0 0d 93 61 0a 01 72 60 5c 54 49 46 0`.&...a..r`\TIF + f490: 31 60 a1 16 a0 0d 93 61 0a 02 72 60 5c 54 49 46 1`.....a..r`\TIF + f4a0: 32 60 a1 06 72 60 0a ff 60 70 7b 7a 68 0a 04 00 2`..r`..`p{zh... + f4b0: 0a 0f 00 61 a0 11 93 61 0a 00 72 60 79 5c 54 49 ...a...a..r`y\TI + f4c0: 54 30 0a 08 00 60 a1 32 a0 11 93 61 0a 01 72 60 T0...`.2...a..r` + f4d0: 79 5c 54 49 54 31 0a 08 00 60 a1 1e a0 11 93 61 y\TIT1...`.....a + f4e0: 0a 02 72 60 79 5c 54 49 54 32 0a 08 00 60 a1 0a ..r`y\TIT2...`.. + f4f0: 72 60 79 0a ff 0a 08 00 60 a4 60 a4 0a 00 14 4c r`y.....`.`....L + f500: 04 41 54 4d 56 01 70 7b 68 0a 0f 00 61 70 5c 54 .ATMV.p{h...ap\T + f510: 4e 46 54 60 a0 08 92 95 61 60 a4 0a 00 70 7b 7a NFT`....a`...p{z + f520: 68 0a 04 00 0a 0f 00 62 70 5c 54 4e 54 54 60 a0 h......bp\TNTT`. + f530: 08 92 95 62 60 a4 0a 00 a0 0f 5c 54 41 54 4c a0 ...b`.....\TATL. + f540: 08 7f 61 62 00 a4 0a 00 a4 0a 01 14 43 0e 4d 48 ..ab........C.MH + f550: 43 54 01 70 0a 00 60 a0 14 5c 53 50 45 4e 70 5c CT.p..`..\SPENp\ + f560: 4c 57 53 54 60 75 60 79 60 0a 08 60 70 0a 08 61 LWST`u`y`..`p..a + f570: 79 61 0a 08 61 a0 4d 04 93 68 0c ff ff ff ff 7d ya..a.M..h.....} + f580: 61 5c 54 50 43 52 61 a0 34 5c 53 50 45 4e 7d 60 a\TPCRa.4\SPEN}` + f590: 5c 50 50 43 52 60 a0 12 92 90 5c 50 50 4d 46 0c \PPCR`....\PPMF. + f5a0: 00 00 00 02 7d 61 0a 80 61 a0 12 92 90 5c 50 50 ....}a..a....\PP + f5b0: 4d 46 0c 00 00 00 08 7d 61 0a 40 61 a1 06 7d 61 MF.....}a.@a..}a + f5c0: 0a c0 61 a1 40 06 a0 35 90 5c 4f 53 50 58 5c 53 ..a.@..5.\OSPX\S + f5d0: 50 45 4e 7b 68 0c 00 00 ff 00 62 7a 62 0a 10 62 PEN{h.....bzb..b + f5e0: 7d 60 62 60 a0 17 7f 62 5c 50 50 43 52 00 70 62 }`b`...b\PPCR.pb + f5f0: 5c 50 50 43 41 5c 50 4e 54 46 0a 80 a0 27 5c 57 \PPCA\PNTF...'\W + f600: 56 49 53 7b 68 0a 1f 62 7d 61 62 61 a0 17 7f 62 VIS{h..b}aba...b + f610: 5c 54 50 43 52 00 70 62 5c 54 50 43 41 5c 50 4e \TPCR.pb\TPCA\PN + f620: 54 46 0a 82 79 60 0a 10 60 7d 60 61 60 a4 60 10 TF..y`..`}`a`.`. + f630: 42 15 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 B.\/._SB_PCI0LPC + f640: 5f 45 43 5f 5f 14 4c 13 41 54 4d 43 00 a0 44 13 _EC__.L.ATMC..D. + f650: 90 5c 57 4e 54 46 5c 54 41 54 43 a0 4f 06 48 50 .\WNTF\TATC.O.HP + f660: 41 43 70 5c 54 43 46 41 60 70 5c 54 43 54 41 61 ACp\TCFA`p\TCTAa + f670: 70 7d 79 61 0a 04 00 60 00 62 7f 62 41 54 4d 58 p}ya...`.b.bATMX + f680: 63 70 62 41 54 4d 58 a0 1f 93 5c 54 43 54 41 0a cpbATMX...\TCTA. + f690: 00 70 5c 54 43 52 30 5c 54 43 52 54 70 5c 54 50 .p\TCR0\TCRTp\TP + f6a0: 53 30 5c 54 50 53 56 a1 23 a0 1f 93 5c 54 43 54 S0\TPSV.#...\TCT + f6b0: 41 0a 01 70 5c 54 43 52 31 5c 54 43 52 54 70 5c A..p\TCR1\TCRTp\ + f6c0: 54 50 53 31 5c 54 50 53 56 a1 01 a1 4b 06 70 5c TPS1\TPSV...K.p\ + f6d0: 54 43 46 44 60 70 5c 54 43 54 44 61 70 7d 79 61 TCFD`p\TCTDap}ya + f6e0: 0a 04 00 60 00 62 7f 62 41 54 4d 58 63 70 62 41 ...`.b.bATMXcpbA + f6f0: 54 4d 58 a0 1f 93 5c 54 43 54 44 0a 00 70 5c 54 TMX...\TCTD..p\T + f700: 43 52 30 5c 54 43 52 54 70 5c 54 50 53 30 5c 54 CR0\TCRTp\TPS0\T + f710: 50 53 56 a1 23 a0 1f 93 5c 54 43 54 44 0a 01 70 PSV.#...\TCTD..p + f720: 5c 54 43 52 31 5c 54 43 52 54 70 5c 54 50 53 31 \TCR1\TCRTp\TPS1 + f730: 5c 54 50 53 56 a1 01 a0 3d 63 a0 3a 5c 2f 06 5f \TPSV...=c.:\/._ + f740: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 SB_PCI0LPC_EC__H + f750: 4b 45 59 44 48 4b 43 5c 2f 06 5f 53 42 5f 50 43 KEYDHKC\/._SB_PC + f760: 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d 48 I0LPC_EC__HKEYMH + f770: 4b 51 0b 30 60 86 5c 2e 5f 54 5a 5f 54 48 4d 30 KQ.0`.\._TZ_THM0 + f780: 0a 81 10 4b 14 5c 5f 54 5a 5f 5b 85 46 11 54 48 ...K.\_TZ_[.F.TH + f790: 4d 30 14 0c 5f 43 52 54 00 a4 5c 54 43 52 54 14 M0.._CRT..\TCRT. + f7a0: 42 10 5f 54 4d 50 00 a0 42 05 5c 48 38 44 52 70 B._TMP..B.\H8DRp + f7b0: 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 \/._SB_PCI0LPC_E + f7c0: 43 5f 5f 54 4d 50 30 60 70 5c 2f 05 5f 53 42 5f C__TMP0`p\/._SB_ + f7d0: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 54 53 4c 32 PCI0LPC_EC__TSL2 + f7e0: 61 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ap\/._SB_PCI0LPC + f7f0: 5f 45 43 5f 5f 54 53 4c 33 62 a1 24 70 5c 52 42 _EC__TSL3b.$p\RB + f800: 45 43 0a 78 60 70 7b 5c 52 42 45 43 0a 8a 0a 7f EC.x`p{\RBEC.... + f810: 00 61 70 7b 5c 52 42 45 43 0a 8b 0a 7f 00 62 a0 .ap{\RBEC.....b. + f820: 09 93 60 0a 80 70 0a 30 60 7d 79 5c 2f 04 5f 53 ..`..p.0`}y\/._S + f830: 42 5f 50 43 49 30 4c 50 43 5f 50 49 44 48 0a 02 B_PCI0LPC_PIDH.. + f840: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + f850: 50 49 44 4c 63 a0 0a 95 63 0a 04 7b 62 0a 00 62 PIDLc...c..{b..b + f860: a0 0e 62 5c 54 53 44 4c a4 43 32 4b 5f 0a 80 a0 ..b\TSDL.C2K_... + f870: 2c 92 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 ,.\/._SB_PCI0LPC + f880: 5f 45 43 5f 5f 48 4b 45 59 44 48 4b 43 a0 0e 61 _EC__HKEYDHKC..a + f890: 5c 54 53 44 4c a4 43 32 4b 5f 0a 80 a4 43 32 4b \TSDL.C2K_...C2K + f8a0: 5f 60 14 2b 43 32 4b 5f 01 72 77 68 0a 0a 00 0b _`.+C2K_.rwh.... + f8b0: ac 0a 60 a0 0c 92 94 60 0b ac 0a 70 0b b8 0b 60 ..`....`...p...` + f8c0: a0 0b 94 60 0b ac 0f 70 0b b8 0b 60 a4 60 10 41 ...`...p...`.`.A + f8d0: 0f 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + f8e0: 45 43 5f 5f 14 4b 0d 5f 51 34 30 00 86 5c 2e 5f EC__.K._Q40..\._ + f8f0: 54 5a 5f 54 48 4d 30 0a 80 a0 1f 5c 48 38 44 52 TZ_THM0....\H8DR + f900: 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f p\/._SB_PCI0LPC_ + f910: 45 43 5f 5f 54 53 4c 32 61 a1 0e 70 7b 5c 52 42 EC__TSL2a..p{\RB + f920: 45 43 0a 8a 0a 7f 00 61 a0 3d 5c 2f 06 5f 53 42 EC.....a.=\/._SB + f930: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 _PCI0LPC_EC__HKE + f940: 59 44 48 4b 43 a0 20 61 5c 2f 06 5f 53 42 5f 50 YDHKC. a\/._SB_P + f950: 43 49 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 4d CI0LPC_EC__HKEYM + f960: 48 4b 51 0b 22 60 a0 06 56 49 47 44 a3 a1 06 5c HKQ."`..VIGD...\ + f970: 56 54 48 52 a0 4b 04 7b 5c 50 50 4d 46 0a 01 00 VTHR.K.{\PPMF... + f980: a0 0d 5c 4f 53 50 58 5c 50 4e 54 46 0a 80 a1 31 ..\OSPX\PNTF...1 + f990: 70 7b 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 p{\/._SB_PCI0LPC + f9a0: 5f 45 43 5f 5f 54 53 4c 30 0a 77 00 62 a0 09 62 _EC__TSL0.w.b..b + f9b0: 5c 53 54 45 50 0a 09 a1 08 5c 53 54 45 50 0a 0a \STEP....\STEP.. + f9c0: 08 47 50 49 43 0a 00 14 0d 5f 50 49 43 01 70 68 .GPIC...._PIC.ph + f9d0: 5c 47 50 49 43 5b 80 53 4d 49 30 01 0a b2 0a 01 \GPIC[.SMI0..... + f9e0: 5b 81 0b 53 4d 49 30 01 41 50 4d 43 08 5b 81 28 [..SMI0.APMC.[.( + f9f0: 4d 4e 56 53 00 00 80 e0 07 43 4d 44 5f 08 45 52 MNVS.....CMD_.ER + fa00: 52 5f 20 50 41 52 30 20 50 41 52 31 20 50 41 52 R_ PAR0 PAR1 PAR + fa10: 32 20 50 41 52 33 20 5b 01 4d 53 4d 49 07 14 4d 2 PAR3 [.MSMI..M + fa20: 05 53 4d 49 5f 05 5b 23 4d 53 4d 49 ff ff 70 68 .SMI_.[#MSMI..ph + fa30: 43 4d 44 5f 70 0a 01 45 52 52 5f 70 69 50 41 52 CMD_p..ERR_piPAR + fa40: 30 70 6a 50 41 52 31 70 6b 50 41 52 32 70 6c 50 0pjPAR1pkPAR2plP + fa50: 41 52 33 70 0a f5 41 50 4d 43 a2 13 93 45 52 52 AR3p..APMC...ERR + fa60: 5f 0a 01 5b 22 0a 01 70 0a f5 41 50 4d 43 70 50 _..["..p..APMCpP + fa70: 41 52 30 60 5b 27 4d 53 4d 49 a4 60 14 14 52 50 AR0`['MSMI.`..RP + fa80: 43 49 01 a4 53 4d 49 5f 0a 00 0a 00 68 0a 00 0a CI..SMI_....h... + fa90: 00 14 12 57 50 43 49 02 53 4d 49 5f 0a 00 0a 01 ...WPCI.SMI_.... + faa0: 68 69 0a 00 14 11 4d 50 43 49 03 53 4d 49 5f 0a hi....MPCI.SMI_. + fab0: 00 0a 02 68 69 6a 14 14 52 42 45 43 01 a4 53 4d ...hij..RBEC..SM + fac0: 49 5f 0a 00 0a 03 68 0a 00 0a 00 14 12 57 42 45 I_....h......WBE + fad0: 43 02 53 4d 49 5f 0a 00 0a 04 68 69 0a 00 14 11 C.SMI_....hi.... + fae0: 4d 42 45 43 03 53 4d 49 5f 0a 00 0a 05 68 69 6a MBEC.SMI_....hij + faf0: 14 14 52 49 53 41 01 a4 53 4d 49 5f 0a 00 0a 06 ..RISA..SMI_.... + fb00: 68 0a 00 0a 00 14 12 57 49 53 41 02 53 4d 49 5f h......WISA.SMI_ + fb10: 0a 00 0a 07 68 69 0a 00 14 11 4d 49 53 41 03 53 ....hi....MISA.S + fb20: 4d 49 5f 0a 00 0a 08 68 69 6a 14 14 56 45 58 50 MI_....hij..VEXP + fb30: 00 53 4d 49 5f 0a 01 0a 00 0a 00 0a 00 0a 00 14 .SMI_........... + fb40: 13 56 55 50 53 01 53 4d 49 5f 0a 01 0a 01 68 0a .VUPS.SMI_....h. + fb50: 00 0a 00 14 12 56 53 44 53 02 53 4d 49 5f 0a 01 .....VSDS.SMI_.. + fb60: 0a 02 68 69 0a 00 14 14 56 44 44 43 00 53 4d 49 ..hi....VDDC.SMI + fb70: 5f 0a 01 0a 03 0a 00 0a 00 0a 00 14 13 56 56 50 _............VVP + fb80: 44 01 53 4d 49 5f 0a 01 0a 04 68 0a 00 0a 00 14 D.SMI_....h..... + fb90: 13 56 4e 52 53 01 53 4d 49 5f 0a 01 0a 05 68 0a .VNRS.SMI_....h. + fba0: 00 0a 00 14 15 47 4c 50 57 00 a4 53 4d 49 5f 0a .....GLPW..SMI_. + fbb0: 01 0a 06 0a 00 0a 00 0a 00 14 13 56 53 4c 44 01 ...........VSLD. + fbc0: 53 4d 49 5f 0a 01 0a 07 68 0a 00 0a 00 14 14 56 SMI_....h......V + fbd0: 45 56 54 01 a4 53 4d 49 5f 0a 01 0a 08 68 0a 00 EVT..SMI_....h.. + fbe0: 0a 00 14 15 56 54 48 52 00 a4 53 4d 49 5f 0a 01 ....VTHR..SMI_.. + fbf0: 0a 09 0a 00 0a 00 0a 00 14 13 56 42 52 43 01 53 ..........VBRC.S + fc00: 4d 49 5f 0a 01 0a 0a 68 0a 00 0a 00 14 15 56 42 MI_....h......VB + fc10: 52 47 00 a4 53 4d 49 5f 0a 01 0a 0e 0a 00 0a 00 RG..SMI_........ + fc20: 0a 00 14 13 56 43 4d 53 02 a4 53 4d 49 5f 0a 01 ....VCMS..SMI_.. + fc30: 0a 0b 68 69 0a 00 14 15 56 42 54 44 00 a4 53 4d ..hi....VBTD..SM + fc40: 49 5f 0a 01 0a 0f 0a 00 0a 00 0a 00 14 13 56 48 I_............VH + fc50: 59 42 02 a4 53 4d 49 5f 0a 01 0a 10 68 69 0a 00 YB..SMI_....hi.. + fc60: 14 13 56 44 59 4e 02 a4 53 4d 49 5f 0a 01 0a 11 ..VDYN..SMI_.... + fc70: 68 69 0a 00 14 14 55 43 4d 53 01 a4 53 4d 49 5f hi....UCMS..SMI_ + fc80: 0a 02 68 0a 00 0a 00 0a 00 14 13 42 48 44 50 02 ..h........BHDP. + fc90: a4 53 4d 49 5f 0a 03 0a 00 68 69 0a 00 14 13 53 .SMI_....hi....S + fca0: 54 45 50 01 53 4d 49 5f 0a 04 68 0a 00 0a 00 0a TEP.SMI_..h..... + fcb0: 00 14 14 54 52 41 50 00 53 4d 49 5f 0a 05 0a 00 ...TRAP.SMI_.... + fcc0: 0a 00 0a 00 0a 00 14 14 43 42 52 49 00 53 4d 49 ........CBRI.SMI + fcd0: 5f 0a 05 0a 01 0a 00 0a 00 0a 00 14 15 42 43 48 _............BCH + fce0: 4b 00 a4 53 4d 49 5f 0a 05 0a 04 0a 00 0a 00 0a K..SMI_......... + fcf0: 00 14 14 42 59 52 53 00 53 4d 49 5f 0a 05 0a 05 ...BYRS.SMI_.... + fd00: 0a 00 0a 00 0a 00 14 14 4c 43 48 4b 01 a4 53 4d ........LCHK..SM + fd10: 49 5f 0a 05 0a 06 68 0a 00 0a 00 14 13 41 53 53 I_....h......ASS + fd20: 49 01 53 4d 49 5f 0a 05 0a 07 68 0a 00 0a 00 14 I.SMI_....h..... + fd30: 15 44 45 53 53 00 a4 53 4d 49 5f 0a 05 0a 08 0a .DESS..SMI_..... + fd40: 00 0a 00 0a 00 14 14 42 4c 54 48 01 a4 53 4d 49 .......BLTH..SMI + fd50: 5f 0a 06 68 0a 00 0a 00 0a 00 14 13 50 52 53 4d _..h........PRSM + fd60: 02 a4 53 4d 49 5f 0a 07 0a 00 68 69 0a 00 14 13 ..SMI_....hi.... + fd70: 49 46 52 53 02 a4 53 4d 49 5f 0a 07 0a 01 68 69 IFRS..SMI_....hi + fd80: 0a 00 14 14 54 44 50 43 01 a4 53 4d 49 5f 0a 07 ....TDPC..SMI_.. + fd90: 0a 02 68 0a 00 0a 00 14 14 57 47 53 56 01 a4 53 ..h......WGSV..S + fda0: 4d 49 5f 0a 09 68 0a 00 0a 00 0a 00 14 42 05 53 MI_..h.......B.S + fdb0: 57 54 54 01 a0 4a 04 53 4d 49 5f 0a 0a 0a 02 68 WTT..J.SMI_....h + fdc0: 0a 00 0a 00 a0 3a 5c 2f 06 5f 53 42 5f 50 43 49 .....:\/._SB_PCI + fdd0: 30 4c 50 43 5f 45 43 5f 5f 48 4b 45 59 44 48 4b 0LPC_EC__HKEYDHK + fde0: 43 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f C\/._SB_PCI0LPC_ + fdf0: 45 43 5f 5f 48 4b 45 59 4d 48 4b 51 0b 30 60 14 EC__HKEYMHKQ.0`. + fe00: 15 54 53 44 4c 00 a4 53 4d 49 5f 0a 0a 0a 03 0a .TSDL..SMI_..... + fe10: 00 0a 00 0a 00 14 13 54 50 48 59 01 53 4d 49 5f .......TPHY.SMI_ + fe20: 0a 0c 68 0a 00 0a 00 0a 00 14 14 43 53 55 4d 01 ..h........CSUM. + fe30: a4 53 4d 49 5f 0a 0e 68 0a 00 0a 00 0a 00 14 14 .SMI_..h........ + fe40: 4e 56 53 53 01 a4 53 4d 49 5f 0a 0f 68 0a 00 0a NVSS..SMI_..h... + fe50: 00 0a 00 14 13 57 4d 49 53 02 a4 53 4d 49 5f 0a .....WMIS..SMI_. + fe60: 10 68 69 0a 00 0a 00 14 14 41 57 4f 4e 01 a4 53 .hi......AWON..S + fe70: 4d 49 5f 0a 12 68 0a 00 0a 00 0a 00 14 2f 50 4d MI_..h......./PM + fe80: 4f 4e 02 70 87 68 60 08 54 53 54 52 11 02 60 70 ON.p.h`.TSTR..`p + fe90: 68 54 53 54 52 70 54 53 54 52 5c 44 42 47 53 53 hTSTRpTSTR\DBGSS + fea0: 4d 49 5f 0a 11 69 0a 00 0a 00 0a 00 14 14 55 41 MI_..i........UA + feb0: 57 53 01 a4 53 4d 49 5f 0a 13 68 0a 00 0a 00 0a WS..SMI_..h..... + fec0: 00 14 14 42 46 57 43 01 a4 53 4d 49 5f 0a 14 0a ...BFWC..SMI_... + fed0: 00 68 0a 00 0a 00 14 15 42 46 57 50 00 a4 53 4d .h......BFWP..SM + fee0: 49 5f 0a 14 0a 01 0a 00 0a 00 0a 00 14 14 42 46 I_............BF + fef0: 57 4c 00 53 4d 49 5f 0a 14 0a 02 0a 00 0a 00 0a WL.SMI_......... + ff00: 00 14 13 42 46 57 47 01 53 4d 49 5f 0a 14 0a 03 ...BFWG.SMI_.... + ff10: 68 0a 00 0a 00 14 13 42 44 4d 43 01 53 4d 49 5f h......BDMC.SMI_ + ff20: 0a 14 0a 04 68 0a 00 0a 00 14 13 50 53 49 46 02 ....h......PSIF. + ff30: a4 53 4d 49 5f 0a 14 0a 05 68 69 0a 00 14 13 46 .SMI_....hi....F + ff40: 4e 53 43 02 a4 53 4d 49 5f 0a 14 0a 06 68 69 0a NSC..SMI_....hi. + ff50: 00 14 13 41 55 44 43 02 a4 53 4d 49 5f 0a 14 0a ...AUDC..SMI_... + ff60: 07 68 69 0a 00 14 13 53 59 42 43 02 a4 53 4d 49 .hi....SYBC..SMI + ff70: 5f 0a 14 0a 08 68 69 0a 00 14 13 4b 42 4c 53 02 _....hi....KBLS. + ff80: a4 53 4d 49 5f 0a 14 0a 09 68 69 0a 00 14 14 55 .SMI_....hi....U + ff90: 42 49 53 01 a4 53 4d 49 5f 0a 15 0a 00 68 0a 00 BIS..SMI_....h.. + ffa0: 0a 00 14 33 44 50 49 4f 02 a0 06 92 68 a4 0a 00 ...3DPIO....h... + ffb0: a0 08 94 68 0a f0 a4 0a 00 a0 10 94 68 0a b4 a0 ...h........h... + ffc0: 05 69 a4 0a 02 a1 04 a4 0a 01 a0 08 94 68 0a 78 .i...........h.x + ffd0: a4 0a 03 a4 0a 04 14 3d 44 55 44 4d 02 a0 06 92 .......=DUDM.... + ffe0: 69 a4 0a ff a0 08 94 68 0a 5a a4 0a 00 a0 08 94 i......h.Z...... + fff0: 68 0a 3c a4 0a 01 a0 08 94 68 0a 2d a4 0a 02 a0 h.<......h.-.... + 10000: 08 94 68 0a 1e a4 0a 03 a0 08 94 68 0a 14 a4 0a ..h........h.... + 10010: 04 a4 0a 05 14 28 44 4d 44 4d 02 a0 05 69 a4 0a .....(DMDM...i.. + 10020: 00 a0 06 92 68 a4 0a 00 a0 08 94 68 0a 96 a4 0a ....h......h.... + 10030: 01 a0 08 94 68 0a 78 a4 0a 02 a4 0a 03 14 41 05 ....h.x.......A. + 10040: 55 55 44 4d 02 a0 0a 92 7b 68 0a 04 00 a4 0a 00 UUDM....{h...... + 10050: a0 09 7b 69 0a 20 00 a4 0a 14 a0 09 7b 69 0a 10 ..{i. ......{i.. + 10060: 00 a4 0a 1e a0 09 7b 69 0a 08 00 a4 0a 2d a0 09 ......{i.....-.. + 10070: 7b 69 0a 04 00 a4 0a 3c a0 09 7b 69 0a 02 00 a4 {i.....<..{i.... + 10080: 0a 5a a0 09 7b 69 0a 01 00 a4 0a 78 a4 0a 00 14 .Z..{i.....x.... + 10090: 48 04 55 4d 44 4d 04 a0 0a 92 7b 68 0a 02 00 a4 H.UMDM....{h.... + 100a0: 0a 00 a0 08 7b 69 0a 04 00 a4 6b a0 14 7b 69 0a ....{i....k..{i. + 100b0: 02 00 a0 09 92 94 6b 0a 78 a4 0a b4 a1 03 a4 6b ......k.x......k + 100c0: a0 14 7b 6a 0a 04 00 a0 09 92 94 6b 0a b4 a4 0a ..{j.......k.... + 100d0: f0 a1 03 a4 6b a4 0a 00 14 4b 04 55 50 49 4f 04 ....k....K.UPIO. + 100e0: a0 16 92 7b 68 0a 02 00 a0 08 93 6a 0a 02 a4 0a ...{h......j.... + 100f0: f0 a1 05 a4 0b 84 03 a0 08 7b 69 0a 02 00 a4 6b .........{i....k + 10100: a0 14 7b 69 0a 01 00 a0 09 92 94 6b 0a 78 a4 0a ..{i.......k.x.. + 10110: b4 a1 03 a4 6b a0 08 93 6a 0a 02 a4 0a f0 a1 05 ....k...j....... + 10120: a4 0b 84 03 14 2d 46 44 4d 41 02 a0 0c 92 93 69 .....-FDMA.....i + 10130: 0a ff a4 7d 69 0a 40 00 a0 10 92 95 68 0a 03 a4 ...}i.@.....h... + 10140: 7d 74 68 0a 02 00 0a 20 00 a0 05 68 a4 0a 12 a4 }th.... ...h.... + 10150: 0a 00 14 1f 46 50 49 4f 01 a0 0c 92 95 68 0a 03 ....FPIO.....h.. + 10160: a4 7d 68 0a 08 00 a0 08 93 68 0a 01 a4 0a 01 a4 .}h......h...... + 10170: 0a 00 14 4a 05 53 43 4d 50 02 70 87 68 60 a0 08 ...J.SCMP.p.h`.. + 10180: 92 93 60 87 69 a4 01 75 60 08 53 54 52 31 11 02 ..`.i..u`.STR1.. + 10190: 60 08 53 54 52 32 11 02 60 70 68 53 54 52 31 70 `.STR2..`phSTR1p + 101a0: 69 53 54 52 32 70 00 61 a2 22 95 61 60 70 83 88 iSTR2p.a.".a`p.. + 101b0: 53 54 52 31 61 00 62 70 83 88 53 54 52 32 61 00 STR1a.bp..STR2a. + 101c0: 63 a0 07 92 93 62 63 a4 01 75 61 a4 00 08 53 50 c....bc..ua...SP + 101d0: 53 5f 0a 00 08 4f 53 49 46 0a 00 08 57 39 38 46 S_...OSIF...W98F + 101e0: 0a 00 08 57 4e 54 46 0a 00 08 57 58 50 46 0a 00 ...WNTF...WXPF.. + 101f0: 08 57 56 49 53 0a 00 08 57 49 4e 37 0a 00 08 57 .WVIS...WIN7...W + 10200: 53 50 56 0a 00 08 4c 4e 55 58 0a 00 08 48 38 44 SPV...LNUX...H8D + 10210: 52 0a 00 08 4d 45 4d 58 0a 00 08 41 43 53 54 0a R...MEMX...ACST. + 10220: 00 08 46 4d 42 4c 0a 01 08 46 44 54 50 0a 02 08 ..FMBL...FDTP... + 10230: 46 55 50 53 0a 03 08 46 4e 49 44 0a 00 08 52 52 FUPS...FNID...RR + 10240: 42 46 0a 00 08 4e 42 43 46 0a 00 08 41 50 49 4e BF...NBCF...APIN + 10250: 0a 00 .. + +FACS @ 0xdaf5a000 + 0000: 46 41 43 53 40 00 00 00 00 a2 00 00 00 00 00 00 FACS@........... + 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + +FACP @ 0xdafe5000 + 0000: 46 41 43 50 f4 00 00 00 04 50 4c 45 4e 4f 56 4f FACP.....PLENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 a0 f5 da 00 80 fe da 00 02 09 00 ................ + 0030: b2 00 00 00 f2 f1 00 f3 00 04 00 00 00 00 00 00 ................ + 0040: 04 04 00 00 00 00 00 00 50 04 00 00 08 04 00 00 ........P....... + 0050: 20 04 00 00 00 00 00 00 04 02 01 04 10 00 10 f4 ............... + 0060: 65 00 e9 03 00 00 00 00 01 03 0d 00 32 13 00 00 e...........2... + 0070: ad 46 00 00 01 08 00 00 f9 0c 00 00 00 00 00 00 .F.............. + 0080: 06 00 00 00 00 a0 f5 da 00 00 00 00 00 80 fe da ................ + 0090: 00 00 00 00 01 20 00 00 00 04 00 00 00 00 00 00 ..... .......... + 00a0: 01 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00 ................ + 00b0: 04 04 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ................ + 00c0: 00 00 00 00 01 08 00 00 50 04 00 00 00 00 00 00 ........P....... + 00d0: 01 20 00 00 08 04 00 00 00 00 00 00 01 80 00 00 . .............. + 00e0: 20 04 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ............... + 00f0: 00 00 00 00 .... + +SLIC @ 0xdaffd000 + 0000: 53 4c 49 43 76 01 00 00 01 c3 4c 45 4e 4f 56 4f SLICv.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 01 00 00 00 00 00 00 00 9c 00 00 00 06 02 00 00 ................ + 0030: 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 .$..RSA1........ + 0040: 69 16 4a 9f b1 4b 3a fb 80 20 aa af c4 f9 3e c1 i.J..K:.. ....>. + 0050: 80 49 ee 6a 65 26 72 1e cd bf 5f 2f 96 d6 c0 0a .I.je&r..._/.... + 0060: 92 f5 06 b5 00 b2 3b 29 02 e2 4c 8d c2 f2 bc 41 ......;)..L....A + 0070: 77 9c 70 f0 f3 1b 09 d2 63 5a dc a8 83 f8 5e c9 w.p.....cZ....^. + 0080: 15 95 f9 fa fd dc 05 b7 4d 67 7f 2d b3 84 33 20 ........Mg.-..3 + 0090: e1 d1 79 2a a7 6a 77 d1 b6 20 2a 76 42 c5 d5 e9 ..y*.jw.. *vB... + 00a0: b6 43 40 55 44 c3 c9 37 99 5f 41 97 70 f3 d1 f6 .C@UD..7._A.p... + 00b0: 07 ec 7b 1a 29 a1 c1 f1 91 fd 48 86 6e 3e ce cb ..{.).....H.n>.. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 4c 45 4e 4f ............LENO + 00d0: 56 4f 54 50 2d 47 32 20 20 20 57 49 4e 44 4f 57 VOTP-G2 WINDOW + 00e0: 53 20 01 00 02 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 71 c8 5a 3a 03 f6 43 06 26 ce ......q.Z:..C.&. + 0100: b3 7c 04 21 76 ba a3 79 1f 85 8c 96 94 0a 74 be .|.!v..y......t. + 0110: bb a4 b8 35 ca fb eb ca 42 2e af 9b 7f 62 ad c9 ...5....B....b.. + 0120: ab 2b 59 33 00 ca 3f 17 b4 5d f9 c9 36 38 bc 60 .+Y3..?..]..68.` + 0130: 5d c2 ca 84 4a 9b 79 5c ed ad ec b9 93 76 8b 03 ]...J.y\.....v.. + 0140: 4a 29 6d 09 29 8b ff c9 e4 aa 37 fa a4 42 57 b7 J)m.).....7..BW. + 0150: 88 2e e1 6e 88 4d dc ab 1a e1 4c 26 f7 87 09 24 ...n.M....L&...$ + 0160: 32 06 86 f6 5f 9b 9a 0b 3c 32 a0 eb e8 c6 4c f6 2..._...<2....L. + 0170: b2 8d c3 65 27 23 ...e'# + +TCPA @ 0xdaffc000 + 0000: 54 43 50 41 32 00 00 00 02 f6 50 54 4c 00 00 00 TCPA2.....PTL... + 0010: 4c 45 4e 4f 56 4f 00 00 00 00 04 06 4c 4e 56 4f LENOVO......LNVO + 0020: 01 00 00 00 00 00 00 00 01 00 00 d0 f6 da 00 00 ................ + 0030: 00 00 .. + +SSDT @ 0xdaffb000 + 0000: 53 53 44 54 49 02 00 00 01 1d 4c 45 4e 4f 56 4f SSDTI.....LENOVO + 0010: 54 50 2d 53 53 44 54 32 00 02 00 00 49 4e 54 4c TP-SSDT2....INTL + 0020: 09 11 06 20 10 0e 5c 00 14 0a 4b 4f 55 32 00 5b ... ..\...KOU2.[ + 0030: 21 0a 64 10 4f 0c 5c 2f 04 5f 53 42 5f 50 43 49 !.d.O.\/._SB_PCI + 0040: 30 56 49 44 5f 4c 43 44 30 14 26 5f 42 43 4c 00 0VID_LCD0.&_BCL. + 0050: 70 0a 01 5c 4e 42 43 46 a4 5c 2f 05 5f 53 42 5f p..\NBCF.\/._SB_ + 0060: 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 52 54 57 PCI0LPC_EC__BRTW + 0070: 14 48 05 5f 42 43 4d 01 70 89 5c 2f 05 5f 53 42 .H._BCM.p.\/._SB + 0080: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 52 54 _PCI0LPC_EC__BRT + 0090: 57 01 68 00 0a 00 0a 02 60 a0 2f 92 93 60 ff 74 W.h.....`./..`.t + 00a0: 60 0a 02 61 70 61 5c 42 52 4c 56 5c 2f 05 5f 53 `..apa\BRLV\/._S + 00b0: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 52 B_PCI0LPC_EC__BR + 00c0: 4e 53 5c 55 43 4d 53 0a 16 14 39 5f 42 51 43 00 NS\UCMS...9_BQC. + 00d0: 70 5c 42 52 4c 56 60 72 60 0a 02 61 a0 22 92 94 p\BRLV`r`..a.".. + 00e0: 61 0a 11 a4 83 88 5c 2f 05 5f 53 42 5f 50 43 49 a.....\/._SB_PCI + 00f0: 30 4c 50 43 5f 45 43 5f 5f 42 52 54 57 61 00 a1 0LPC_EC__BRTWa.. + 0100: 03 a4 00 10 45 14 5c 2f 05 5f 53 42 5f 50 43 49 ....E.\/._SB_PCI + 0110: 30 50 45 47 5f 56 49 44 5f 4c 43 44 30 14 2d 5f 0PEG_VID_LCD0.-_ + 0120: 42 43 4c 00 a0 0e 5c 57 56 49 53 70 0a 01 5c 4e BCL...\WVISp..\N + 0130: 42 43 46 a4 5c 2f 05 5f 53 42 5f 50 43 49 30 4c BCF.\/._SB_PCI0L + 0140: 50 43 5f 45 43 5f 5f 42 52 54 57 14 45 08 5f 42 PC_EC__BRTW.E._B + 0150: 43 4d 01 a0 3a 90 92 93 5c 57 49 4e 37 0a 00 5c CM..:...\WIN7..\ + 0160: 2f 05 5f 53 42 5f 50 43 49 30 50 45 47 5f 56 49 /._SB_PCI0PEG_VI + 0170: 44 5f 49 53 4f 50 5c 2f 05 5f 53 42 5f 50 43 49 D_ISOP\/._SB_PCI + 0180: 30 56 49 44 5f 4c 43 44 30 5f 42 43 4d 68 a1 42 0VID_LCD0_BCMh.B + 0190: 04 a0 3f 5c 4e 42 43 46 70 89 5c 2f 05 5f 53 42 ..?\NBCFp.\/._SB + 01a0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 52 54 _PCI0LPC_EC__BRT + 01b0: 57 01 68 00 0a 00 0a 02 60 a0 17 92 93 60 ff 74 W.h.....`....`.t + 01c0: 60 0a 02 61 5c 56 42 52 43 61 70 61 5c 42 52 4c `..a\VBRCapa\BRL + 01d0: 56 14 47 07 5f 42 51 43 00 a0 3a 90 92 93 5c 57 V.G._BQC..:...\W + 01e0: 49 4e 37 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 30 IN7..\/._SB_PCI0 + 01f0: 50 45 47 5f 56 49 44 5f 49 53 4f 50 a4 5c 2f 05 PEG_VID_ISOP.\/. + 0200: 5f 53 42 5f 50 43 49 30 56 49 44 5f 4c 43 44 30 _SB_PCI0VID_LCD0 + 0210: 5f 42 51 43 a1 34 70 5c 42 52 4c 56 60 72 60 0a _BQC.4p\BRLV`r`. + 0220: 02 61 a0 22 92 94 61 0a 11 a4 83 88 5c 2f 05 5f .a."..a.....\/._ + 0230: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 SB_PCI0LPC_EC__B + 0240: 52 54 57 61 00 a1 03 a4 00 RTWa..... + +SSDT @ 0xdaffa000 + 0000: 53 53 44 54 33 00 00 00 01 61 4c 45 4e 4f 56 4f SSDT3....aLENOVO + 0010: 54 50 2d 53 53 44 54 31 00 01 00 00 49 4e 54 4c TP-SSDT1....INTL + 0020: 09 11 06 20 10 0e 5c 00 14 0a 4b 4f 55 31 00 5b ... ..\...KOU1.[ + 0030: 21 0a 64 !.d + +SSDT @ 0xdaff9000 + 0000: 53 53 44 54 a8 07 00 00 01 7b 4c 45 4e 4f 56 4f SSDT.....{LENOVO + 0010: 53 61 74 61 41 68 63 69 00 10 00 00 49 4e 54 4c SataAhci....INTL + 0020: 09 11 06 20 10 43 78 5c 2f 03 5f 53 42 5f 50 43 ... .Cx\/._SB_PC + 0030: 49 30 53 41 54 31 5b 82 4a 13 50 52 54 30 08 44 I0SAT1[.J.PRT0.D + 0040: 49 50 30 0a 00 08 48 44 54 46 11 11 0a 0e 02 00 IP0...HDTF...... + 0050: 00 00 00 a0 ef 00 00 00 00 00 a0 f5 08 45 52 54 .............ERT + 0060: 46 11 18 0a 15 02 00 00 00 00 a0 ef 00 00 00 00 F............... + 0070: 00 a0 f5 5f 00 00 00 00 a0 ef 08 48 50 54 46 11 ..._.......HPTF. + 0080: 18 0a 15 02 00 00 00 00 a0 ef 00 00 00 00 00 a0 ................ + 0090: f5 10 03 00 00 00 a0 ef 08 48 58 54 46 11 1f 0a .........HXTF... + 00a0: 1c 02 00 00 00 00 a0 ef 00 00 00 00 00 a0 f5 5f ..............._ + 00b0: 00 00 00 00 a0 ef 10 03 00 00 00 a0 ef 08 44 44 ..............DD + 00c0: 54 46 11 11 0a 0e 00 00 00 00 00 a0 e3 00 00 00 TF.............. + 00d0: 00 00 a0 e3 8c 44 44 54 46 0a 01 44 54 41 54 8c .....DDTF..DTAT. + 00e0: 44 44 54 46 0a 08 44 54 46 54 08 44 47 54 46 11 DDTF..DTFT.DGTF. + 00f0: 18 0a 15 00 00 00 00 00 a0 e3 00 00 00 00 00 a0 ................ + 0100: e3 10 03 00 00 00 a0 ef 8c 44 47 54 46 0a 01 47 .........DGTF..G + 0110: 54 41 54 8c 44 47 54 46 0a 08 47 54 46 54 08 5f TAT.DGTF..GTFT._ + 0120: 41 44 52 0b ff ff 14 34 5f 53 44 44 01 70 0a 00 ADR....4_SDD.p.. + 0130: 44 49 50 30 a0 26 93 87 68 0b 00 02 8b 68 0a 9c DIP0.&..h....h.. + 0140: 4d 30 37 38 a0 16 90 5c 44 50 50 30 7b 4d 30 37 M078...\DPP0{M07 + 0150: 38 0a 08 00 70 0a 01 44 49 50 30 14 16 5f 47 54 8...p..DIP0.._GT + 0160: 46 00 a0 0a 44 49 50 30 a4 48 50 54 46 a4 48 44 F...DIP0.HPTF.HD + 0170: 54 46 5b 82 4a 27 50 52 54 31 08 44 49 50 30 0a TF[.J'PRT1.DIP0. + 0180: 00 08 48 44 54 46 11 11 0a 0e 02 00 00 00 00 a0 ..HDTF.......... + 0190: ef 00 00 00 00 00 a0 f5 08 45 52 54 46 11 18 0a .........ERTF... + 01a0: 15 02 00 00 00 00 a0 ef 00 00 00 00 00 a0 f5 5f ..............._ + 01b0: 00 00 00 00 a0 ef 08 48 50 54 46 11 18 0a 15 02 .......HPTF..... + 01c0: 00 00 00 00 a0 ef 00 00 00 00 00 a0 f5 10 03 00 ................ + 01d0: 00 00 a0 ef 08 48 58 54 46 11 1f 0a 1c 02 00 00 .....HXTF....... + 01e0: 00 00 a0 ef 00 00 00 00 00 a0 f5 5f 00 00 00 00 ..........._.... + 01f0: a0 ef 10 03 00 00 00 a0 ef 08 44 44 54 46 11 11 ..........DDTF.. + 0200: 0a 0e 00 00 00 00 00 a0 e3 00 00 00 00 00 a0 e3 ................ + 0210: 8c 44 44 54 46 0a 01 44 54 41 54 8c 44 44 54 46 .DDTF..DTAT.DDTF + 0220: 0a 08 44 54 46 54 08 44 47 54 46 11 18 0a 15 00 ..DTFT.DGTF..... + 0230: 00 00 00 00 a0 e3 00 00 00 00 00 a0 e3 10 03 00 ................ + 0240: 00 00 a0 ef 8c 44 47 54 46 0a 01 47 54 41 54 8c .....DGTF..GTAT. + 0250: 44 47 54 46 0a 08 47 54 46 54 14 1e 5f 45 4a 30 DGTF..GTFT.._EJ0 + 0260: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 0270: 45 43 5f 5f 42 45 4a 30 68 14 29 5f 53 54 41 00 EC__BEJ0h.)_STA. + 0280: a0 1d 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 ..\/._SB_PCI0LPC + 0290: 5f 45 43 5f 5f 42 53 54 41 0a 01 a4 0a 0f a1 04 _EC__BSTA....... + 02a0: a4 0a 00 08 5f 41 44 52 0c ff ff 01 00 14 4b 09 ...._ADR......K. + 02b0: 5f 53 44 44 01 70 0a 00 44 49 50 30 a0 4c 08 93 _SDD.p..DIP0.L.. + 02c0: 87 68 0b 00 02 8b 68 0a 9c 4d 30 37 38 8b 68 0a .h....h..M078.h. + 02d0: 00 4d 30 30 30 a0 38 7b 4d 30 30 30 0b 00 c0 00 .M000.8{M000.... + 02e0: a0 2d 92 7b 4d 30 30 30 0b 00 40 00 70 0a 03 5c .-.{M000..@.p..\ + 02f0: 49 44 45 54 70 0a 03 5c 2f 05 5f 53 42 5f 50 43 IDETp..\/._SB_PC + 0300: 49 30 4c 50 43 5f 45 43 5f 5f 42 44 45 56 a1 23 I0LPC_EC__BDEV.# + 0310: 70 0a 06 5c 49 44 45 54 70 0a 06 5c 2f 05 5f 53 p..\IDETp..\/._S + 0320: 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 44 B_PCI0LPC_EC__BD + 0330: 45 56 a0 16 90 5c 44 50 50 31 7b 4d 30 37 38 0a EV...\DPP1{M078. + 0340: 08 00 70 0a 01 44 49 50 30 14 44 0a 5f 47 54 46 ..p..DIP0.D._GTF + 0350: 00 70 5c 2f 03 5f 53 42 5f 47 44 43 4b 47 47 49 .p\/._SB_GDCKGGI + 0360: 44 61 a0 15 93 61 0a 00 a0 0a 44 49 50 30 a4 48 Da...a....DIP0.H + 0370: 50 54 46 a4 48 44 54 46 a1 45 07 70 5c 2f 05 5f PTF.HDTF.E.p\/._ + 0380: 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 42 SB_PCI0LPC_EC__B + 0390: 47 49 44 0a 00 60 a0 09 93 60 0a 07 70 0a 06 60 GID..`...`..p..` + 03a0: a0 15 93 60 0a 06 a0 0a 44 49 50 30 a4 48 50 54 ...`....DIP0.HPT + 03b0: 46 a4 48 44 54 46 a0 1e 44 49 50 30 70 5c 43 44 F.HDTF..DIP0p\CD + 03c0: 46 4c 47 54 46 54 70 5c 43 44 41 48 47 54 41 54 FLGTFTp\CDAHGTAT + 03d0: a4 44 47 54 46 70 5c 43 44 46 4c 44 54 46 54 70 .DGTFp\CDFLDTFTp + 03e0: 5c 43 44 41 48 44 54 41 54 a4 44 44 54 46 5b 82 \CDAHDTAT.DDTF[. + 03f0: 4c 13 50 52 54 32 08 44 49 50 30 0a 00 08 48 44 L.PRT2.DIP0...HD + 0400: 54 46 11 11 0a 0e 02 00 00 00 00 a0 ef 00 00 00 TF.............. + 0410: 00 00 a0 f5 08 45 52 54 46 11 18 0a 15 02 00 00 .....ERTF....... + 0420: 00 00 a0 ef 00 00 00 00 00 a0 f5 5f 00 00 00 00 ..........._.... + 0430: a0 ef 08 48 50 54 46 11 18 0a 15 02 00 00 00 00 ...HPTF......... + 0440: a0 ef 00 00 00 00 00 a0 f5 10 03 00 00 00 a0 ef ................ + 0450: 08 48 58 54 46 11 1f 0a 1c 02 00 00 00 00 a0 ef .HXTF........... + 0460: 00 00 00 00 00 a0 f5 5f 00 00 00 00 a0 ef 10 03 ......._........ + 0470: 00 00 00 a0 ef 08 44 44 54 46 11 11 0a 0e 00 00 ......DDTF...... + 0480: 00 00 00 a0 e3 00 00 00 00 00 a0 e3 8c 44 44 54 .............DDT + 0490: 46 0a 01 44 54 41 54 8c 44 44 54 46 0a 08 44 54 F..DTAT.DDTF..DT + 04a0: 46 54 08 44 47 54 46 11 18 0a 15 00 00 00 00 00 FT.DGTF......... + 04b0: a0 e3 00 00 00 00 00 a0 e3 10 03 00 00 00 a0 ef ................ + 04c0: 8c 44 47 54 46 0a 01 47 54 41 54 8c 44 47 54 46 .DGTF..GTAT.DGTF + 04d0: 0a 08 47 54 46 54 08 5f 41 44 52 0c ff ff 02 00 ..GTFT._ADR..... + 04e0: 14 34 5f 53 44 44 01 70 0a 00 44 49 50 30 a0 26 .4_SDD.p..DIP0.& + 04f0: 93 87 68 0b 00 02 8b 68 0a 9c 4d 30 37 38 a0 16 ..h....h..M078.. + 0500: 90 5c 44 50 50 32 7b 4d 30 37 38 0a 08 00 70 0a .\DPP2{M078...p. + 0510: 01 44 49 50 30 14 16 5f 47 54 46 00 a0 0a 44 49 .DIP0.._GTF...DI + 0520: 50 30 a4 48 50 54 46 a4 48 44 54 46 5b 82 4c 13 P0.HPTF.HDTF[.L. + 0530: 50 52 54 33 08 44 49 50 30 0a 00 08 48 44 54 46 PRT3.DIP0...HDTF + 0540: 11 11 0a 0e 02 00 00 00 00 a0 ef 00 00 00 00 00 ................ + 0550: a0 f5 08 45 52 54 46 11 18 0a 15 02 00 00 00 00 ...ERTF......... + 0560: a0 ef 00 00 00 00 00 a0 f5 5f 00 00 00 00 a0 ef ........._...... + 0570: 08 48 50 54 46 11 18 0a 15 02 00 00 00 00 a0 ef .HPTF........... + 0580: 00 00 00 00 00 a0 f5 10 03 00 00 00 a0 ef 08 48 ...............H + 0590: 58 54 46 11 1f 0a 1c 02 00 00 00 00 a0 ef 00 00 XTF............. + 05a0: 00 00 00 a0 f5 5f 00 00 00 00 a0 ef 10 03 00 00 ....._.......... + 05b0: 00 a0 ef 08 44 44 54 46 11 11 0a 0e 00 00 00 00 ....DDTF........ + 05c0: 00 a0 e3 00 00 00 00 00 a0 e3 8c 44 44 54 46 0a ...........DDTF. + 05d0: 01 44 54 41 54 8c 44 44 54 46 0a 08 44 54 46 54 .DTAT.DDTF..DTFT + 05e0: 08 44 47 54 46 11 18 0a 15 00 00 00 00 00 a0 e3 .DGTF........... + 05f0: 00 00 00 00 00 a0 e3 10 03 00 00 00 a0 ef 8c 44 ...............D + 0600: 47 54 46 0a 01 47 54 41 54 8c 44 47 54 46 0a 08 GTF..GTAT.DGTF.. + 0610: 47 54 46 54 08 5f 41 44 52 0c ff ff 03 00 14 34 GTFT._ADR......4 + 0620: 5f 53 44 44 01 70 0a 00 44 49 50 30 a0 26 93 87 _SDD.p..DIP0.&.. + 0630: 68 0b 00 02 8b 68 0a 9c 4d 30 37 38 a0 16 90 5c h....h..M078...\ + 0640: 44 50 50 33 7b 4d 30 37 38 0a 08 00 70 0a 01 44 DPP3{M078...p..D + 0650: 49 50 30 14 16 5f 47 54 46 00 a0 0a 44 49 50 30 IP0.._GTF...DIP0 + 0660: a4 48 50 54 46 a4 48 44 54 46 5b 82 4c 13 50 52 .HPTF.HDTF[.L.PR + 0670: 54 34 08 44 49 50 30 0a 00 08 48 44 54 46 11 11 T4.DIP0...HDTF.. + 0680: 0a 0e 02 00 00 00 00 a0 ef 00 00 00 00 00 a0 f5 ................ + 0690: 08 45 52 54 46 11 18 0a 15 02 00 00 00 00 a0 ef .ERTF........... + 06a0: 00 00 00 00 00 a0 f5 5f 00 00 00 00 a0 ef 08 48 ......._.......H + 06b0: 50 54 46 11 18 0a 15 02 00 00 00 00 a0 ef 00 00 PTF............. + 06c0: 00 00 00 a0 f5 10 03 00 00 00 a0 ef 08 48 58 54 .............HXT + 06d0: 46 11 1f 0a 1c 02 00 00 00 00 a0 ef 00 00 00 00 F............... + 06e0: 00 a0 f5 5f 00 00 00 00 a0 ef 10 03 00 00 00 a0 ..._............ + 06f0: ef 08 44 44 54 46 11 11 0a 0e 00 00 00 00 00 a0 ..DDTF.......... + 0700: e3 00 00 00 00 00 a0 e3 8c 44 44 54 46 0a 01 44 .........DDTF..D + 0710: 54 41 54 8c 44 44 54 46 0a 08 44 54 46 54 08 44 TAT.DDTF..DTFT.D + 0720: 47 54 46 11 18 0a 15 00 00 00 00 00 a0 e3 00 00 GTF............. + 0730: 00 00 00 a0 e3 10 03 00 00 00 a0 ef 8c 44 47 54 .............DGT + 0740: 46 0a 01 47 54 41 54 8c 44 47 54 46 0a 08 47 54 F..GTAT.DGTF..GT + 0750: 46 54 08 5f 41 44 52 0c ff ff 04 00 14 34 5f 53 FT._ADR......4_S + 0760: 44 44 01 70 0a 00 44 49 50 30 a0 26 93 87 68 0b DD.p..DIP0.&..h. + 0770: 00 02 8b 68 0a 9c 4d 30 37 38 a0 16 90 5c 44 50 ...h..M078...\DP + 0780: 50 34 7b 4d 30 37 38 0a 08 00 70 0a 01 44 49 50 P4{M078...p..DIP + 0790: 30 14 16 5f 47 54 46 00 a0 0a 44 49 50 30 a4 48 0.._GTF...DIP0.H + 07a0: 50 54 46 a4 48 44 54 46 PTF.HDTF + +HPET @ 0xdafe4000 + 0000: 48 50 45 54 38 00 00 00 01 ee 4c 45 4e 4f 56 4f HPET8.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 01 a3 86 80 00 00 00 00 00 00 d0 fe ................ + 0030: 00 00 00 00 00 80 00 00 ........ + +APIC @ 0xdafe3000 + 0000: 41 50 49 43 98 00 00 00 01 26 4c 45 4e 4f 56 4f APIC.....&LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 00 e0 fe 01 00 00 00 00 08 01 00 ................ + 0030: 01 00 00 00 00 08 02 01 01 00 00 00 00 08 03 02 ................ + 0040: 01 00 00 00 00 08 04 03 01 00 00 00 00 08 05 00 ................ + 0050: 00 00 00 00 00 08 06 00 00 00 00 00 00 08 07 00 ................ + 0060: 00 00 00 00 00 08 08 00 00 00 00 00 01 0c 02 00 ................ + 0070: 00 00 c0 fe 00 00 00 00 02 0a 00 00 02 00 00 00 ................ + 0080: 00 00 02 0a 00 09 09 00 00 00 0d 00 04 06 00 05 ................ + 0090: 00 01 04 06 01 05 00 01 ........ + +MCFG @ 0xdafe2000 + 0000: 4d 43 46 47 3c 00 00 00 01 bf 4c 45 4e 4f 56 4f MCFG<.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 ................ + 0030: 00 00 00 00 00 00 00 3f 00 00 00 00 .......?.... + +ECDT @ 0xdafe1000 + 0000: 45 43 44 54 52 00 00 00 01 a5 4c 45 4e 4f 56 4f ECDTR.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 01 08 00 00 66 00 00 00 00 00 00 00 ........f....... + 0030: 01 08 00 00 62 00 00 00 00 00 00 00 00 00 00 00 ....b........... + 0040: 11 5c 5f 53 42 2e 50 43 49 30 2e 4c 50 43 2e 45 .\_SB.PCI0.LPC.E + 0050: 43 00 C. + +FPDT @ 0xdafe0000 + 0000: 46 50 44 54 54 00 00 00 01 66 4c 45 4e 4f 56 4f FPDTT....fLENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 00 10 01 00 00 00 00 18 f5 eb d9 ................ + 0030: 00 00 00 00 00 30 10 01 00 00 00 00 18 d0 eb d9 .....0.......... + 0040: 00 00 00 00 01 30 10 01 00 00 00 00 18 80 e5 d9 .....0.......... + 0050: 00 00 00 00 .... + +ASF! @ 0xdafe7000 + 0000: 41 53 46 21 a5 00 00 00 20 3d 4c 45 4e 4f 56 4f ASF!.... =LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 00 10 00 ff ff 17 20 00 00 4a 66 ........... ..Jf + 0030: 00 00 00 00 01 00 2c 00 00 00 03 0c 00 00 00 00 ......,......... + 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0060: 02 00 18 00 04 04 00 00 00 88 00 03 01 88 00 02 ................ + 0070: 02 88 00 01 03 88 00 04 03 00 17 00 00 f8 00 00 ................ + 0080: 00 13 f0 01 00 00 00 00 00 00 00 00 00 00 00 84 ................ + 0090: 00 16 00 00 10 5c 68 88 c2 d2 dc a0 a2 a4 a6 c8 .....\h......... + 00a0: 00 00 00 00 00 ..... + +UEFI @ 0xdafdf000 + 0000: 55 45 46 49 3e 00 00 00 01 0a 4c 45 4e 4f 56 4f UEFI>.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 e8 63 95 d2 e1 cf 41 4d 8e 54 da 43 .....c....AM.T.C + 0030: 22 fe de 5c 36 00 00 90 f5 da 00 00 00 00 "..\6......... + +UEFI @ 0xdafde000 + 0000: 55 45 46 49 42 00 00 00 01 b6 50 54 4c 20 20 20 UEFIB.....PTL + 0010: 43 4f 4d 42 55 46 00 00 01 00 00 00 50 54 4c 20 COMBUF......PTL + 0020: 01 00 00 00 be 96 e8 15 df 0c e2 47 9b 97 a2 8a ...........G.... + 0030: 39 8b c7 65 36 00 02 00 00 00 a8 16 3f d8 00 00 9..e6.......?... + 0040: 00 00 .. + +POAT @ 0xdafdd000 + 0000: 50 4f 41 54 55 00 00 00 03 c4 4c 45 4e 4f 56 4f POATU.....LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0050: 00 00 00 00 00 ..... + +SSDT @ 0xdafdc000 + 0000: 53 53 44 54 37 0c 00 00 01 64 50 6d 52 65 66 00 SSDT7....dPmRef. + 0010: 43 70 75 30 49 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Ist..0..INTL + 0020: 09 11 06 20 10 42 c1 5c 2e 5f 50 52 5f 43 50 55 ... .B.\._PR_CPU + 0030: 30 14 42 2d 5f 50 50 43 00 70 00 60 70 5c 2f 05 0.B-_PPC.p.`p\/. + 0040: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 0050: 4c 50 4d 44 60 a0 44 0f 92 60 a0 4a 06 91 90 5c LPMD`.D..`.J...\ + 0060: 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 /._SB_PCI0LPC_EC + 0070: 5f 5f 41 43 5f 5f 5f 50 53 52 5c 54 43 46 41 90 __AC___PSR\TCFA. + 0080: 92 5c 2f 06 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 0090: 45 43 5f 5f 41 43 5f 5f 5f 50 53 52 5c 54 43 46 EC__AC___PSR\TCF + 00a0: 44 a0 23 7b 5c 2f 05 5f 53 42 5f 50 43 49 30 4c D.#{\/._SB_PCI0L + 00b0: 50 43 5f 45 43 5f 5f 54 53 4c 30 0a 76 00 70 5c PC_EC__TSL0.v.p\ + 00c0: 4c 57 53 54 60 a1 25 a0 23 7b 5c 2f 05 5f 53 42 LWST`.%.#{\/._SB + 00d0: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 54 53 4c _PCI0LPC_EC__TSL + 00e0: 30 0a 77 00 70 5c 4c 57 53 54 60 a0 4e 05 92 60 0.w.p\LWST`.N..` + 00f0: a0 0d 5c 41 50 4d 44 70 5c 41 50 53 54 60 a0 4b ..\APMDp\APST`.K + 0100: 04 92 60 a0 19 5c 2e 5f 50 52 5f 43 4c 56 4c a0 ..`..\._PR_CLVL. + 0110: 0d 5c 50 50 43 41 70 5c 50 50 43 41 60 a1 2c a0 .\PPCAp\PPCA`.,. + 0120: 2a 91 5c 50 50 43 41 5c 46 54 50 53 a0 14 92 94 *.\PPCA\FTPS.... + 0130: 5c 46 54 50 53 5c 50 50 43 41 70 5c 50 50 43 41 \FTPS\PPCAp\PPCA + 0140: 60 a1 08 70 5c 46 54 50 53 60 a0 43 16 91 90 5c `..p\FTPS`.C...\ + 0150: 47 46 50 4c 92 60 90 92 5c 47 46 50 4c 60 70 0b GFPL.`..\GFPL`p. + 0160: e8 03 61 a2 2a 5c 2f 05 5f 53 42 5f 50 43 49 30 ..a.*\/._SB_PCI0 + 0170: 4c 50 43 5f 45 43 5f 5f 50 49 42 53 5b 22 01 76 LPC_EC__PIBS[".v + 0180: 61 a0 0c 92 61 70 60 5c 50 50 43 52 a4 60 a0 49 a...ap`\PPCR.`.I + 0190: 07 60 a0 45 07 92 5c 47 46 50 4c 70 01 5c 47 46 .`.E..\GFPLp.\GF + 01a0: 50 4c 70 0a 04 5c 2f 05 5f 53 42 5f 50 43 49 30 PLp..\/._SB_PCI0 + 01b0: 4c 50 43 5f 45 43 5f 5f 50 4c 53 4c 70 01 5c 2f LPC_EC__PLSLp.\/ + 01c0: 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f ._SB_PCI0LPC_EC_ + 01d0: 5f 50 4c 54 55 70 0a 0d 5c 2f 05 5f 53 42 5f 50 _PLTUp..\/._SB_P + 01e0: 43 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 4c 53 70 CI0LPC_EC__PLLSp + 01f0: 00 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f .\/._SB_PCI0LPC_ + 0200: 45 43 5f 5f 50 4c 4d 53 a1 45 0a a0 42 0a 5c 47 EC__PLMS.E..B.\G + 0210: 46 50 4c 70 00 5c 47 46 50 4c 70 0a 04 5c 2f 05 FPLp.\GFPLp..\/. + 0220: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 0230: 50 4c 53 4c a0 23 5c 4d 54 41 55 70 5c 4d 54 41 PLSL.#\MTAUp\MTA + 0240: 55 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 50 43 5f U\/._SB_PCI0LPC_ + 0250: 45 43 5f 5f 50 4c 54 55 a1 1b 70 0a 1c 5c 2f 05 EC__PLTU..p..\/. + 0260: 5f 53 42 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f _SB_PCI0LPC_EC__ + 0270: 50 4c 54 55 70 5c 50 4c 31 4c 5c 2f 05 5f 53 42 PLTUp\PL1L\/._SB + 0280: 5f 50 43 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 4c _PCI0LPC_EC__PLL + 0290: 53 70 5c 50 4c 31 4d 5c 2f 05 5f 53 42 5f 50 43 Sp\PL1M\/._SB_PC + 02a0: 49 30 4c 50 43 5f 45 43 5f 5f 50 4c 4d 53 a0 4c I0LPC_EC__PLMS.L + 02b0: 04 5c 2e 5f 50 52 5f 43 4c 56 4c a0 21 93 60 00 .\._PR_CLVL.!.`. + 02c0: a0 13 95 5c 43 54 44 50 5c 46 54 50 53 70 5c 46 ...\CTDP\FTPSp\F + 02d0: 54 50 53 60 a1 08 70 5c 43 54 44 50 60 a1 1d a0 TPS`..p\CTDP`... + 02e0: 1b 92 95 5c 43 54 44 50 60 70 5c 43 54 44 50 60 ...\CTDP`p\CTDP` + 02f0: a0 0a 94 5c 4c 57 53 54 60 75 60 70 60 5c 50 50 ...\LWST`u`p`\PP + 0300: 43 52 a4 60 14 40 09 5f 50 43 54 00 a0 1b 5c 2e CR.`.@._PCT...\. + 0310: 5f 50 52 5f 43 4c 56 4c 70 5c 2e 5f 50 52 5f 43 _PR_CLVLp\._PR_C + 0320: 50 50 43 5c 43 54 44 50 a0 3e 90 7b 43 46 47 44 PPC\CTDP.>.{CFGD + 0330: 01 00 7b 50 44 43 30 01 00 a4 12 2c 02 11 14 0a ..{PDC0....,.... + 0340: 11 82 0c 00 7f 00 00 00 00 00 00 00 00 00 00 00 ................ + 0350: 79 00 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 00 y............... + 0360: 00 00 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 82 .....y...,...... + 0370: 0c 00 01 10 00 00 00 08 00 00 00 00 00 00 79 00 ..............y. + 0380: 11 14 0a 11 82 0c 00 01 08 00 00 b3 00 00 00 00 ................ + 0390: 00 00 00 79 00 14 19 58 50 53 53 00 a0 0d 7b 50 ...y...XPSS...{P + 03a0: 44 43 30 01 00 a4 4e 50 53 53 a4 53 50 53 53 08 DC0...NPSS.SPSS. + 03b0: 53 50 53 53 12 42 1f 0f 12 20 06 0c c5 09 00 00 SPSS.B... ...... + 03c0: 0c b8 88 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c ......n......... + 03d0: 83 00 00 00 0c 00 00 00 00 12 20 06 0c c4 09 00 .......... ..... + 03e0: 00 0c b8 88 00 00 0c 6e 00 00 00 0c 0a 00 00 00 .......n........ + 03f0: 0c 83 01 00 00 0c 01 00 00 00 12 20 06 0c 60 09 ........... ..`. + 0400: 00 00 0c c2 81 00 00 0c 6e 00 00 00 0c 0a 00 00 ........n....... + 0410: 00 0c 83 02 00 00 0c 02 00 00 00 12 20 06 0c fc ............ ... + 0420: 08 00 00 0c ee 7a 00 00 0c 6e 00 00 00 0c 0a 00 .....z...n...... + 0430: 00 00 0c 83 03 00 00 0c 03 00 00 00 12 20 06 0c ............. .. + 0440: 98 08 00 00 0c 3b 74 00 00 0c 6e 00 00 00 0c 0a .....;t...n..... + 0450: 00 00 00 0c 83 04 00 00 0c 04 00 00 00 12 20 06 .............. . + 0460: 0c 34 08 00 00 0c aa 6d 00 00 0c 6e 00 00 00 0c .4.....m...n.... + 0470: 0a 00 00 00 0c 83 05 00 00 0c 05 00 00 00 12 20 ............... + 0480: 06 0c d0 07 00 00 0c 3a 67 00 00 0c 6e 00 00 00 .......:g...n... + 0490: 0c 0a 00 00 00 0c 83 06 00 00 0c 06 00 00 00 12 ................ + 04a0: 20 06 0c 6c 07 00 00 0c f0 60 00 00 0c 6e 00 00 ..l.....`...n.. + 04b0: 00 0c 0a 00 00 00 0c 83 07 00 00 0c 07 00 00 00 ................ + 04c0: 12 20 06 0c 08 07 00 00 0c c1 5a 00 00 0c 6e 00 . ........Z...n. + 04d0: 00 00 0c 0a 00 00 00 0c 83 08 00 00 0c 08 00 00 ................ + 04e0: 00 12 20 06 0c a4 06 00 00 0c b3 54 00 00 0c 6e .. ........T...n + 04f0: 00 00 00 0c 0a 00 00 00 0c 83 09 00 00 0c 09 00 ................ + 0500: 00 00 12 20 06 0c 40 06 00 00 0c c4 4e 00 00 0c ... ..@.....N... + 0510: 6e 00 00 00 0c 0a 00 00 00 0c 83 0a 00 00 0c 0a n............... + 0520: 00 00 00 12 20 06 0c dc 05 00 00 0c f6 48 00 00 .... ........H.. + 0530: 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0b 00 00 0c .n.............. + 0540: 0b 00 00 00 12 20 06 0c 78 05 00 00 0c 4a 43 00 ..... ..x....JC. + 0550: 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0c 00 00 ..n............. + 0560: 0c 0c 00 00 00 12 20 06 0c 14 05 00 00 0c ba 3d ...... ........= + 0570: 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0d 00 ...n............ + 0580: 00 0c 0d 00 00 00 12 20 06 0c b0 04 00 00 0c 48 ....... .......H + 0590: 38 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0e 8...n........... + 05a0: 00 00 0c 0e 00 00 00 12 20 06 0c 00 00 00 80 0c ........ ....... + 05b0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 05c0: 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 ......... ...... + 05d0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 05e0: 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 .......... ..... + 05f0: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0600: 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 ........... .... + 0610: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0620: 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 ............ ... + 0630: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0640: 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c ............. .. + 0650: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0660: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 .............. . + 0670: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0680: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 ............... + 0690: 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 06a0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 ................ + 06b0: 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ............... + 06c0: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 06d0: 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 . .............. + 06e0: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 06f0: 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 .. ............. + 0700: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0710: 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c ... ............ + 0720: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0730: 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 .... ........... + 0740: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0750: 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 ..... .......... + 0760: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0770: 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 ...... ......... + 0780: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0790: 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 ....... ........ + 07a0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 07b0: 00 80 0c 00 00 00 80 08 5f 50 53 53 12 42 1f 0f ........_PSS.B.. + 07c0: 12 20 06 0c c5 09 00 00 0c b8 88 00 00 0c 0a 00 . .............. + 07d0: 00 00 0c 0a 00 00 00 0c 00 1f 00 00 0c 00 1f 00 ................ + 07e0: 00 12 20 06 0c c4 09 00 00 0c b8 88 00 00 0c 0a .. ............. + 07f0: 00 00 00 0c 0a 00 00 00 0c 00 19 00 00 0c 00 19 ................ + 0800: 00 00 12 20 06 0c 60 09 00 00 0c c2 81 00 00 0c ... ..`......... + 0810: 0a 00 00 00 0c 0a 00 00 00 0c 00 18 00 00 0c 00 ................ + 0820: 18 00 00 12 20 06 0c fc 08 00 00 0c ee 7a 00 00 .... ........z.. + 0830: 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 17 00 00 0c ................ + 0840: 00 17 00 00 12 20 06 0c 98 08 00 00 0c 3b 74 00 ..... .......;t. + 0850: 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 16 00 00 ................ + 0860: 0c 00 16 00 00 12 20 06 0c 34 08 00 00 0c aa 6d ...... ..4.....m + 0870: 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 15 00 ................ + 0880: 00 0c 00 15 00 00 12 20 06 0c d0 07 00 00 0c 3a ....... .......: + 0890: 67 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 14 g............... + 08a0: 00 00 0c 00 14 00 00 12 20 06 0c 6c 07 00 00 0c ........ ..l.... + 08b0: f0 60 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 .`.............. + 08c0: 13 00 00 0c 00 13 00 00 12 20 06 0c 08 07 00 00 ......... ...... + 08d0: 0c c1 5a 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c ..Z............. + 08e0: 00 12 00 00 0c 00 12 00 00 12 20 06 0c a4 06 00 .......... ..... + 08f0: 00 0c b3 54 00 00 0c 0a 00 00 00 0c 0a 00 00 00 ...T............ + 0900: 0c 00 11 00 00 0c 00 11 00 00 12 20 06 0c 40 06 ........... ..@. + 0910: 00 00 0c c4 4e 00 00 0c 0a 00 00 00 0c 0a 00 00 ....N........... + 0920: 00 0c 00 10 00 00 0c 00 10 00 00 12 20 06 0c dc ............ ... + 0930: 05 00 00 0c f6 48 00 00 0c 0a 00 00 00 0c 0a 00 .....H.......... + 0940: 00 00 0c 00 0f 00 00 0c 00 0f 00 00 12 20 06 0c ............. .. + 0950: 78 05 00 00 0c 4a 43 00 00 0c 0a 00 00 00 0c 0a x....JC......... + 0960: 00 00 00 0c 00 0e 00 00 0c 00 0e 00 00 12 20 06 .............. . + 0970: 0c 14 05 00 00 0c ba 3d 00 00 0c 0a 00 00 00 0c .......=........ + 0980: 0a 00 00 00 0c 00 0d 00 00 0c 00 0d 00 00 12 20 ............... + 0990: 06 0c b0 04 00 00 0c 48 38 00 00 0c 0a 00 00 00 .......H8....... + 09a0: 0c 0a 00 00 00 0c 00 0c 00 00 0c 00 0c 00 00 12 ................ + 09b0: 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ............... + 09c0: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 09d0: 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 . .............. + 09e0: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 09f0: 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 .. ............. + 0a00: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0a10: 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c ... ............ + 0a20: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0a30: 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 .... ........... + 0a40: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0a50: 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 ..... .......... + 0a60: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0a70: 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 ...... ......... + 0a80: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0a90: 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 ....... ........ + 0aa0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0ab0: 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c ........ ....... + 0ac0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0ad0: 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 ......... ...... + 0ae0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0af0: 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 .......... ..... + 0b00: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0b10: 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 ........... .... + 0b20: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0b30: 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 ............ ... + 0b40: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0b50: 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c ............. .. + 0b60: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0b70: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 .............. . + 0b80: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0b90: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 ............... + 0ba0: 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0bb0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 08 ................ + 0bc0: 50 53 44 46 00 14 4b 04 5f 50 53 44 00 a0 2e 92 PSDF..K._PSD.... + 0bd0: 50 53 44 46 70 54 43 4e 54 88 83 88 48 50 53 44 PSDFpTCNT...HPSD + 0be0: 00 00 0a 04 00 70 54 43 4e 54 88 83 88 53 50 53 .....pTCNT...SPS + 0bf0: 44 00 00 0a 04 00 70 ff 50 53 44 46 a0 0f 7b 50 D.....p.PSDF..{P + 0c00: 44 43 30 0b 00 08 00 a4 48 50 53 44 a4 53 50 53 DC0.....HPSD.SPS + 0c10: 44 08 48 50 53 44 12 0d 01 12 0a 05 0a 05 00 00 D.HPSD.......... + 0c20: 0a fe 0a 80 08 53 50 53 44 12 0d 01 12 0a 05 0a .....SPSD....... + 0c30: 05 00 00 0a fc 0a 80 ....... + +SSDT @ 0xdafdb000 + 0000: 53 53 44 54 7e 0a 00 00 01 c5 50 6d 52 65 66 00 SSDT~.....PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 09 11 06 20 10 46 0c 5c 00 08 53 53 44 54 12 43 ... .F.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 18 80 7f ...CPU0IST ..... + 0040: d5 0c 37 0c 00 00 0d 41 50 49 53 54 20 20 20 00 ..7....APIST . + 0050: 0c 98 ba e3 da 0c 03 03 00 00 0d 43 50 55 30 43 ...........CPU0C + 0060: 53 54 20 00 0c 18 a0 e3 da 0c 01 0a 00 00 0d 41 ST ............A + 0070: 50 43 53 54 20 20 20 00 0c 98 9d e3 da 0c 19 01 PCST ......... + 0080: 00 00 08 43 46 47 44 0c ff f6 66 00 08 5c 50 44 ...CFGD...f..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 50 44 43 32 0c 00 00 00 80 08 5c 50 ...\PDC2......\P + 00b0: 44 43 33 0c 00 00 00 80 08 5c 50 44 43 34 0c 00 DC3......\PDC4.. + 00c0: 00 00 80 08 5c 50 44 43 35 0c 00 00 00 80 08 5c ....\PDC5......\ + 00d0: 50 44 43 36 0c 00 00 00 80 08 5c 50 44 43 37 0c PDC6......\PDC7. + 00e0: 00 00 00 80 08 5c 53 44 54 4c 00 10 48 0a 5c 5f .....\SDTL..H.\_ + 00f0: 50 52 5f 5b 80 50 50 4d 54 00 0c 98 8f f5 da 0b PR_[.PPMT....... + 0100: 29 00 5b 81 40 09 50 50 4d 54 10 50 47 52 56 08 ).[.@.PPMT.PGRV. + 0110: 00 28 41 43 52 54 08 41 50 53 56 08 41 41 43 30 .(ACRT.APSV.AAC0 + 0120: 08 43 50 49 44 20 43 50 50 43 08 43 43 54 50 08 .CPID CPPC.CCTP. + 0130: 43 4c 56 4c 08 43 42 4d 49 08 50 4c 31 30 10 50 CLVL.CBMI.PL10.P + 0140: 4c 32 30 10 50 4c 57 30 08 43 54 43 30 08 54 41 L20.PLW0.CTC0.TA + 0150: 52 30 08 50 50 43 30 08 50 4c 31 31 10 50 4c 32 R0.PPC0.PL11.PL2 + 0160: 31 10 50 4c 57 31 08 43 54 43 31 08 54 41 52 31 1.PLW1.CTC1.TAR1 + 0170: 08 50 50 43 31 08 50 4c 31 32 10 50 4c 32 32 10 .PPC1.PL12.PL22. + 0180: 50 4c 57 32 08 43 54 43 32 08 54 41 52 32 08 50 PLW2.CTC2.TAR2.P + 0190: 50 43 32 08 10 4b 21 5c 2e 5f 50 52 5f 43 50 55 PC2..K!\._PR_CPU + 01a0: 30 08 48 49 30 5f 00 08 48 43 30 5f 00 14 14 5f 0.HI0_..HC0_..._ + 01b0: 50 44 43 01 70 43 50 44 43 68 60 47 43 41 50 60 PDC.pCPDCh`GCAP` + 01c0: a4 60 14 17 5f 4f 53 43 04 70 43 4f 53 43 68 69 .`.._OSC.pCOSChi + 01d0: 6a 6b 60 47 43 41 50 60 a4 60 14 48 06 43 50 44 jk`GCAP`.`.H.CPD + 01e0: 43 01 8a 68 00 52 45 56 53 8a 68 0a 04 53 49 5a C..h.REVS.h..SIZ + 01f0: 45 70 87 68 60 70 74 60 0a 08 00 61 5b 13 68 0a Ep.h`pt`...a[.h. + 0200: 40 77 61 0a 08 00 54 45 4d 50 08 53 54 53 30 11 @wa...TEMP.STS0. + 0210: 07 0a 04 00 00 00 00 73 53 54 53 30 54 45 4d 50 .......sSTS0TEMP + 0220: 62 a4 43 4f 53 43 11 13 0a 10 16 a6 77 40 0c 29 b.COSC......w@.) + 0230: be 47 9e bd d8 70 58 71 39 53 52 45 56 53 53 49 .G...pXq9SREVSSI + 0240: 5a 45 62 14 4d 0b 43 4f 53 43 04 8a 6b 00 53 54 ZEb.M.COSC..k.ST + 0250: 53 30 8a 6b 0a 04 43 41 50 30 8a 68 00 49 49 44 S0.k..CAP0.h.IID + 0260: 30 8a 68 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 0.h..IID1.h..IID + 0270: 32 8a 68 0a 0c 49 49 44 33 08 55 49 44 30 11 13 2.h..IID3.UID0.. + 0280: 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 71 ....w@.).G...pXq + 0290: 39 53 8a 55 49 44 30 00 45 49 44 30 8a 55 49 44 9S.UID0.EID0.UID + 02a0: 30 0a 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 0..EID1.UID0..EI + 02b0: 44 32 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 D2.UID0..EID3.2. + 02c0: 90 90 93 49 49 44 30 45 49 44 30 93 49 49 44 31 ...IID0EID0.IID1 + 02d0: 45 49 44 31 90 93 49 49 44 32 45 49 44 32 93 49 EID1..IID2EID2.I + 02e0: 49 44 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b ID3EID3p..STS0.k + 02f0: a0 0e 92 93 69 01 70 0a 0a 53 54 53 30 a4 6b a4 ....i.p..STS0.k. + 0300: 6b 14 4e 0a 47 43 41 50 01 8a 68 00 53 54 53 30 k.N.GCAP..h.STS0 + 0310: 8a 68 0a 04 43 41 50 30 a0 12 91 93 53 54 53 30 .h..CAP0....STS0 + 0320: 0a 06 93 53 54 53 30 0a 0a a4 00 a0 16 7b 53 54 ...STS0......{ST + 0330: 53 30 01 00 7b 43 41 50 30 0b ff 0b 43 41 50 30 S0..{CAP0...CAP0 + 0340: a4 00 7d 7b 50 44 43 30 0c ff ff ff 7f 00 43 41 ..}{PDC0......CA + 0350: 50 30 50 44 43 30 a0 47 05 7b 43 46 47 44 0a 3e P0PDC0.G.{CFGD.> + 0360: 00 a0 4c 04 90 90 7b 43 46 47 44 0b 00 04 00 7b ..L...{CFGD....{ + 0370: 50 44 43 30 0a 18 00 92 7b 53 44 54 4c 0a 02 00 PDC0....{SDTL... + 0380: 7d 53 44 54 4c 0a 02 53 44 54 4c 5b 80 43 53 54 }SDTL..SDTL[.CST + 0390: 30 00 83 88 53 53 44 54 0a 07 00 83 88 53 53 44 0...SSDT.....SSD + 03a0: 54 0a 08 00 5b 20 43 53 54 30 48 43 30 5f a4 00 T...[ CST0HC0_.. + 03b0: 10 4f 16 5c 2e 5f 50 52 5f 43 50 55 31 08 48 49 .O.\._PR_CPU1.HI + 03c0: 31 5f 00 08 48 43 31 5f 00 14 1f 5f 50 44 43 01 1_..HC1_..._PDC. + 03d0: 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 50 44 43 p\/._PR_CPU0CPDC + 03e0: 68 60 47 43 41 50 60 a4 60 14 22 5f 4f 53 43 04 h`GCAP`.`."_OSC. + 03f0: 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 4f 53 43 p\/._PR_CPU0COSC + 0400: 68 69 6a 6b 60 47 43 41 50 60 a4 60 14 4e 07 47 hijk`GCAP`.`.N.G + 0410: 43 41 50 01 8a 68 00 53 54 53 31 8a 68 0a 04 43 CAP..h.STS1.h..C + 0420: 41 50 31 a0 12 91 93 53 54 53 31 0a 06 93 53 54 AP1....STS1...ST + 0430: 53 31 0a 0a a4 00 a0 16 7b 53 54 53 31 01 00 7b S1......{STS1..{ + 0440: 43 41 50 31 0b ff 0b 43 41 50 31 a4 00 7d 7b 50 CAP1...CAP1..}{P + 0450: 44 43 31 0c ff ff ff 7f 00 43 41 50 31 50 44 43 DC1......CAP1PDC + 0460: 31 a0 10 93 7b 50 44 43 31 0a 09 00 0a 09 41 50 1...{PDC1.....AP + 0470: 50 54 a0 0d 7b 50 44 43 31 0a 18 00 41 50 43 54 PT..{PDC1...APCT + 0480: 70 50 44 43 31 50 44 43 30 a4 00 14 4a 04 41 50 pPDC1PDC0...J.AP + 0490: 43 54 00 a0 42 04 90 7b 43 46 47 44 0a 2e 00 92 CT..B..{CFGD.... + 04a0: 7b 53 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 {SDTL. .}SDTL. S + 04b0: 44 54 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 DTL[.CST1...SSDT + 04c0: 0a 0a 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 .....SSDT...[ CS + 04d0: 54 31 48 43 31 5f 14 49 04 41 50 50 54 00 a0 41 T1HC1_.I.APPT..A + 04e0: 04 90 7b 43 46 47 44 01 00 92 7b 53 44 54 4c 0a ..{CFGD...{SDTL. + 04f0: 10 00 7d 53 44 54 4c 0a 10 53 44 54 4c 5b 80 49 ..}SDTL..SDTL[.I + 0500: 53 54 31 00 83 88 53 53 44 54 0a 04 00 83 88 53 ST1...SSDT.....S + 0510: 53 44 54 0a 05 00 5b 20 49 53 54 31 48 49 31 5f SDT...[ IST1HI1_ + 0520: 10 44 0e 5c 2e 5f 50 52 5f 43 50 55 32 14 1f 5f .D.\._PR_CPU2.._ + 0530: 50 44 43 01 70 5c 2f 03 5f 50 52 5f 43 50 55 30 PDC.p\/._PR_CPU0 + 0540: 43 50 44 43 68 60 47 43 41 50 60 a4 60 14 22 5f CPDCh`GCAP`.`."_ + 0550: 4f 53 43 04 70 5c 2f 03 5f 50 52 5f 43 50 55 30 OSC.p\/._PR_CPU0 + 0560: 43 4f 53 43 68 69 6a 6b 60 47 43 41 50 60 a4 60 COSChijk`GCAP`.` + 0570: 14 44 09 47 43 41 50 01 8a 68 00 53 54 53 32 8a .D.GCAP..h.STS2. + 0580: 68 0a 04 43 41 50 32 a0 12 91 93 53 54 53 32 0a h..CAP2....STS2. + 0590: 06 93 53 54 53 32 0a 0a a4 00 a0 16 7b 53 54 53 ..STS2......{STS + 05a0: 32 01 00 7b 43 41 50 32 0b ff 0b 43 41 50 32 a4 2..{CAP2...CAP2. + 05b0: 00 7d 7b 50 44 43 32 0c ff ff ff 7f 00 43 41 50 .}{PDC2......CAP + 05c0: 32 50 44 43 32 a0 1b 93 7b 50 44 43 32 0a 09 00 2PDC2...{PDC2... + 05d0: 0a 09 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 50 ..\/._PR_CPU1APP + 05e0: 54 a0 18 7b 50 44 43 32 0a 18 00 5c 2f 03 5f 50 T..{PDC2...\/._P + 05f0: 52 5f 43 50 55 31 41 50 43 54 70 50 44 43 32 50 R_CPU1APCTpPDC2P + 0600: 44 43 30 a4 00 10 44 0e 5c 2e 5f 50 52 5f 43 50 DC0...D.\._PR_CP + 0610: 55 33 14 1f 5f 50 44 43 01 70 5c 2f 03 5f 50 52 U3.._PDC.p\/._PR + 0620: 5f 43 50 55 30 43 50 44 43 68 60 47 43 41 50 60 _CPU0CPDCh`GCAP` + 0630: a4 60 14 22 5f 4f 53 43 04 70 5c 2f 03 5f 50 52 .`."_OSC.p\/._PR + 0640: 5f 43 50 55 30 43 4f 53 43 68 69 6a 6b 60 47 43 _CPU0COSChijk`GC + 0650: 41 50 60 a4 60 14 44 09 47 43 41 50 01 8a 68 00 AP`.`.D.GCAP..h. + 0660: 53 54 53 33 8a 68 0a 04 43 41 50 33 a0 12 91 93 STS3.h..CAP3.... + 0670: 53 54 53 33 0a 06 93 53 54 53 33 0a 0a a4 00 a0 STS3...STS3..... + 0680: 16 7b 53 54 53 33 01 00 7b 43 41 50 33 0b ff 0b .{STS3..{CAP3... + 0690: 43 41 50 33 a4 00 7d 7b 50 44 43 33 0c ff ff ff CAP3..}{PDC3.... + 06a0: 7f 00 43 41 50 33 50 44 43 33 a0 1b 93 7b 50 44 ..CAP3PDC3...{PD + 06b0: 43 33 0a 09 00 0a 09 5c 2f 03 5f 50 52 5f 43 50 C3.....\/._PR_CP + 06c0: 55 31 41 50 50 54 a0 18 7b 50 44 43 33 0a 18 00 U1APPT..{PDC3... + 06d0: 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 43 54 70 \/._PR_CPU1APCTp + 06e0: 50 44 43 33 50 44 43 30 a4 00 10 44 0e 5c 2e 5f PDC3PDC0...D.\._ + 06f0: 50 52 5f 43 50 55 34 14 1f 5f 50 44 43 01 70 5c PR_CPU4.._PDC.p\ + 0700: 2f 03 5f 50 52 5f 43 50 55 30 43 50 44 43 68 60 /._PR_CPU0CPDCh` + 0710: 47 43 41 50 60 a4 60 14 22 5f 4f 53 43 04 70 5c GCAP`.`."_OSC.p\ + 0720: 2f 03 5f 50 52 5f 43 50 55 30 43 4f 53 43 68 69 /._PR_CPU0COSChi + 0730: 6a 6b 60 47 43 41 50 60 a4 60 14 44 09 47 43 41 jk`GCAP`.`.D.GCA + 0740: 50 01 8a 68 00 53 54 53 34 8a 68 0a 04 43 41 50 P..h.STS4.h..CAP + 0750: 34 a0 12 91 93 53 54 53 34 0a 06 93 53 54 53 34 4....STS4...STS4 + 0760: 0a 0a a4 00 a0 16 7b 53 54 53 34 01 00 7b 43 41 ......{STS4..{CA + 0770: 50 34 0b ff 0b 43 41 50 34 a4 00 7d 7b 50 44 43 P4...CAP4..}{PDC + 0780: 34 0c ff ff ff 7f 00 43 41 50 34 50 44 43 34 a0 4......CAP4PDC4. + 0790: 1b 93 7b 50 44 43 34 0a 09 00 0a 09 5c 2f 03 5f ..{PDC4.....\/._ + 07a0: 50 52 5f 43 50 55 31 41 50 50 54 a0 18 7b 50 44 PR_CPU1APPT..{PD + 07b0: 43 34 0a 18 00 5c 2f 03 5f 50 52 5f 43 50 55 31 C4...\/._PR_CPU1 + 07c0: 41 50 43 54 70 50 44 43 34 50 44 43 30 a4 00 10 APCTpPDC4PDC0... + 07d0: 44 0e 5c 2e 5f 50 52 5f 43 50 55 35 14 1f 5f 50 D.\._PR_CPU5.._P + 07e0: 44 43 01 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 DC.p\/._PR_CPU0C + 07f0: 50 44 43 68 60 47 43 41 50 60 a4 60 14 22 5f 4f PDCh`GCAP`.`."_O + 0800: 53 43 04 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 SC.p\/._PR_CPU0C + 0810: 4f 53 43 68 69 6a 6b 60 47 43 41 50 60 a4 60 14 OSChijk`GCAP`.`. + 0820: 44 09 47 43 41 50 01 8a 68 00 53 54 53 35 8a 68 D.GCAP..h.STS5.h + 0830: 0a 04 43 41 50 35 a0 12 91 93 53 54 53 35 0a 06 ..CAP5....STS5.. + 0840: 93 53 54 53 35 0a 0a a4 00 a0 16 7b 53 54 53 35 .STS5......{STS5 + 0850: 01 00 7b 43 41 50 35 0b ff 0b 43 41 50 35 a4 00 ..{CAP5...CAP5.. + 0860: 7d 7b 50 44 43 35 0c ff ff ff 7f 00 43 41 50 35 }{PDC5......CAP5 + 0870: 50 44 43 35 a0 1b 93 7b 50 44 43 35 0a 09 00 0a PDC5...{PDC5.... + 0880: 09 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 50 54 .\/._PR_CPU1APPT + 0890: a0 18 7b 50 44 43 35 0a 18 00 5c 2f 03 5f 50 52 ..{PDC5...\/._PR + 08a0: 5f 43 50 55 31 41 50 43 54 70 50 44 43 35 50 44 _CPU1APCTpPDC5PD + 08b0: 43 30 a4 00 10 44 0e 5c 2e 5f 50 52 5f 43 50 55 C0...D.\._PR_CPU + 08c0: 36 14 1f 5f 50 44 43 01 70 5c 2f 03 5f 50 52 5f 6.._PDC.p\/._PR_ + 08d0: 43 50 55 30 43 50 44 43 68 60 47 43 41 50 60 a4 CPU0CPDCh`GCAP`. + 08e0: 60 14 22 5f 4f 53 43 04 70 5c 2f 03 5f 50 52 5f `."_OSC.p\/._PR_ + 08f0: 43 50 55 30 43 4f 53 43 68 69 6a 6b 60 47 43 41 CPU0COSChijk`GCA + 0900: 50 60 a4 60 14 44 09 47 43 41 50 01 8a 68 00 53 P`.`.D.GCAP..h.S + 0910: 54 53 36 8a 68 0a 04 43 41 50 36 a0 12 91 93 53 TS6.h..CAP6....S + 0920: 54 53 36 0a 06 93 53 54 53 36 0a 0a a4 00 a0 16 TS6...STS6...... + 0930: 7b 53 54 53 36 01 00 7b 43 41 50 36 0b ff 0b 43 {STS6..{CAP6...C + 0940: 41 50 36 a4 00 7d 7b 50 44 43 36 0c ff ff ff 7f AP6..}{PDC6..... + 0950: 00 43 41 50 36 50 44 43 36 a0 1b 93 7b 50 44 43 .CAP6PDC6...{PDC + 0960: 36 0a 09 00 0a 09 5c 2f 03 5f 50 52 5f 43 50 55 6.....\/._PR_CPU + 0970: 31 41 50 50 54 a0 18 7b 50 44 43 36 0a 18 00 5c 1APPT..{PDC6...\ + 0980: 2f 03 5f 50 52 5f 43 50 55 31 41 50 43 54 70 50 /._PR_CPU1APCTpP + 0990: 44 43 36 50 44 43 30 a4 00 10 44 0e 5c 2e 5f 50 DC6PDC0...D.\._P + 09a0: 52 5f 43 50 55 37 14 1f 5f 50 44 43 01 70 5c 2f R_CPU7.._PDC.p\/ + 09b0: 03 5f 50 52 5f 43 50 55 30 43 50 44 43 68 60 47 ._PR_CPU0CPDCh`G + 09c0: 43 41 50 60 a4 60 14 22 5f 4f 53 43 04 70 5c 2f CAP`.`."_OSC.p\/ + 09d0: 03 5f 50 52 5f 43 50 55 30 43 4f 53 43 68 69 6a ._PR_CPU0COSChij + 09e0: 6b 60 47 43 41 50 60 a4 60 14 44 09 47 43 41 50 k`GCAP`.`.D.GCAP + 09f0: 01 8a 68 00 53 54 53 37 8a 68 0a 04 43 41 50 37 ..h.STS7.h..CAP7 + 0a00: a0 12 91 93 53 54 53 37 0a 06 93 53 54 53 37 0a ....STS7...STS7. + 0a10: 0a a4 00 a0 16 7b 53 54 53 37 01 00 7b 43 41 50 .....{STS7..{CAP + 0a20: 37 0b ff 0b 43 41 50 37 a4 00 7d 7b 50 44 43 37 7...CAP7..}{PDC7 + 0a30: 0c ff ff ff 7f 00 43 41 50 37 50 44 43 37 a0 1b ......CAP7PDC7.. + 0a40: 93 7b 50 44 43 37 0a 09 00 0a 09 5c 2f 03 5f 50 .{PDC7.....\/._P + 0a50: 52 5f 43 50 55 31 41 50 50 54 a0 18 7b 50 44 43 R_CPU1APPT..{PDC + 0a60: 37 0a 18 00 5c 2f 03 5f 50 52 5f 43 50 55 31 41 7...\/._PR_CPU1A + 0a70: 50 43 54 70 50 44 43 37 50 44 43 30 a4 00 PCTpPDC7PDC0.. + +DMAR @ 0xdafda000 + 0000: 44 4d 41 52 b8 00 00 00 01 e3 49 4e 54 45 4c 20 DMAR......INTEL + 0010: 53 4e 42 20 00 00 00 00 01 00 00 00 49 4e 54 4c SNB ........INTL + 0020: 01 00 00 00 23 01 00 00 00 00 00 00 00 00 00 00 ....#........... + 0030: 00 00 18 00 00 00 00 00 00 00 d9 fe 00 00 00 00 ................ + 0040: 01 08 00 00 00 00 02 00 00 00 20 00 01 00 00 00 .......... ..... + 0050: 00 10 d9 fe 00 00 00 00 03 08 00 00 02 f0 1f 00 ................ + 0060: 04 08 00 00 00 f0 0f 00 01 00 30 00 00 00 00 00 ..........0..... + 0070: 00 00 2f da 00 00 00 00 ff 6f 30 da 00 00 00 00 ../......o0..... + 0080: 01 08 00 00 00 00 1d 00 01 08 00 00 00 00 1a 00 ................ + 0090: 01 08 00 00 00 00 14 00 01 00 20 00 00 00 00 00 .......... ..... + 00a0: 00 00 80 db 00 00 00 00 ff ff 9f df 00 00 00 00 ................ + 00b0: 01 08 00 00 00 00 02 00 ........ + +UEFI @ 0xdafd9000 + 0000: 55 45 46 49 a6 02 00 00 01 94 4c 45 4e 4f 56 4f UEFI......LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 97 b1 9f 0d fc ce 91 4e ac b1 25 35 ...........N..%5 + 0030: d9 e5 a8 44 36 00 1f 00 00 00 42 00 00 00 43 00 ...D6.....B...C. + 0040: 00 00 44 00 00 00 45 00 00 00 46 00 00 00 47 00 ..D...E...F...G. + 0050: 00 00 48 00 00 00 49 00 00 00 4a 00 00 00 4b 00 ..H...I...J...K. + 0060: 00 00 4d 00 00 00 51 00 00 00 f2 00 00 00 f1 00 ..M...Q......... + 0070: 00 00 52 00 00 00 e9 00 00 00 01 00 00 00 02 00 ..R............. + 0080: 00 00 ab 00 00 00 03 00 00 00 20 00 00 00 04 00 .......... ..... + 0090: 00 00 05 00 00 00 06 00 00 00 c1 00 00 00 07 00 ................ + 00a0: 00 00 08 00 00 00 09 00 00 00 0a 00 00 00 0b 00 ................ + 00b0: 00 00 0c 00 00 00 83 0c fa 0e d7 03 b9 44 9c 8d .............D.. + 00c0: 6f 32 e6 3e c0 98 78 98 e4 93 55 ad fd 46 b6 16 o2.>..x...U..F.. + 00d0: 6c 4e 69 9a 6b 9e e9 79 fb c0 21 28 21 4c 9a bb lNi.k..y..!(!L.. + 00e0: 9e 7e b2 ca 15 f4 39 12 2f ce 28 7d f2 43 b5 15 .~....9./.(}.C.. + 00f0: 5e 60 9f 10 06 0c b8 6e 83 9e 86 8a 60 4a 83 a9 ^`.....n....`J.. + 0100: d4 41 e9 6a 27 05 62 40 78 f8 bd 63 de 44 af 27 .A.j'.b@x..c.D.' + 0110: f8 27 fd 67 89 06 c5 c0 04 ae 4c 4b 82 44 a3 53 .'.g......LK.D.S + 0120: c1 38 2b 4a 08 48 ed 36 ec ca ae c7 d9 4e b5 e1 .8+J.H.6.....N.. + 0130: e3 4e 15 cb 8f 04 4a df a9 58 ef fb c8 4d a3 9f .N....J..X...M.. + 0140: 8d b6 be 0f 83 70 1d b2 04 dc 15 5d 50 4d a2 d8 .....p.....]PM.. + 0150: 5d 1b 4f 82 ac 11 8f 0a 9e ca 15 f8 29 4a a7 16 ].O.........)J.. + 0160: eb ae 45 ca 63 6e 63 db 4b cc a3 ad 42 48 ba 0c ..E.cnc.K...BH.. + 0170: 50 58 ad 17 d3 d8 e2 36 f7 1b fc f4 39 4c 9e 9b PX.....6....9L.. + 0180: ce a8 35 39 c3 1a 9c 9c c7 c4 09 9f 51 41 99 c4 ..59........QA.. + 0190: 53 a0 0a 4a 94 96 00 a8 63 ef 86 95 fb 42 84 ab S..J....c....B.. + 01a0: ea 59 0b f1 41 aa 58 dc af d8 22 6e f8 42 99 66 .Y..A.X..."n.B.f + 01b0: 36 ff 78 8c 9c af cf 73 d7 68 b2 fb dd 47 ac d1 6.x....s.h...G.. + 01c0: 21 8e f9 19 a5 2c 5e 1d 9c 62 bd f6 52 4f 8a 5f !....,^..b..RO._ + 01d0: 93 96 e7 28 9b ec c1 50 59 3f ba 9c 76 4e b2 aa ...(...PY?..vN.. + 01e0: 83 4f da 5e 07 c9 65 00 9b 59 30 86 71 4b b4 9c .O.^..e..Y0.qK.. + 01f0: 0b 12 af 56 07 80 66 73 5e 52 29 84 65 4b b1 77 ...V..fs^R).eK.w + 0200: 3b 79 04 dd bf 85 7f ee 45 d0 be 98 eb 4f bd 30 ;y......E....O.0 + 0210: d6 76 37 7d ce f8 a9 0b 09 b4 66 d2 03 4e be 37 .v7}......f..N.7 + 0220: ad bd bc 85 63 fd 25 51 b0 6d bb 88 8e 41 a4 bc ....c.%Q.m...A.. + 0230: ef c4 17 4d 69 bc 38 b4 91 da 47 8b 0a 4d ad 56 ...Mi.8...G..M.V + 0240: c7 28 a9 4c 7f 58 9c 7c 96 6e 42 8e 65 48 9d 6c .(.L.X.|.nB.eH.l + 0250: 4f 80 05 2f 2c 0e c9 27 0d b0 dc cc 13 44 90 78 O../,..'.....D.x + 0260: 14 88 a0 0c b6 fe ec 9a 91 b8 9c 93 4b 47 a9 18 ............KG.. + 0270: 29 9f b2 65 93 6c 8a 8c 3c 24 d0 bb a9 4a be 17 )..e.l..<$...J.. + 0280: cf 9b 58 31 30 ec 05 9e e1 ee 9a 07 17 4d 8f 46 ..X10........M.F + 0290: cf 81 12 60 db 26 c7 76 9f 9b fa 28 2b 45 97 1f ...`.&.v...(+E.. + 02a0: c1 20 ed 9f 5e 99 . ..^. + +XSDT @ 0xdaffe170 + 0000: 58 53 44 54 bc 00 00 00 01 3a 4c 45 4e 4f 56 4f XSDT.....:LENOVO + 0010: 54 50 2d 47 32 20 20 20 10 11 00 00 50 54 4c 20 TP-G2 ....PTL + 0020: 02 00 00 00 00 50 fe da 00 00 00 00 00 d0 ff da .....P.......... + 0030: 00 00 00 00 00 c0 ff da 00 00 00 00 00 b0 ff da ................ + 0040: 00 00 00 00 00 a0 ff da 00 00 00 00 00 90 ff da ................ + 0050: 00 00 00 00 00 40 fe da 00 00 00 00 00 30 fe da .....@.......0.. + 0060: 00 00 00 00 00 20 fe da 00 00 00 00 00 10 fe da ..... .......... + 0070: 00 00 00 00 00 00 fe da 00 00 00 00 00 70 fe da .............p.. + 0080: 00 00 00 00 00 f0 fd da 00 00 00 00 00 e0 fd da ................ + 0090: 00 00 00 00 00 d0 fd da 00 00 00 00 00 c0 fd da ................ + 00a0: 00 00 00 00 00 b0 fd da 00 00 00 00 00 a0 fd da ................ + 00b0: 00 00 00 00 00 90 fd da 00 00 00 00 ............ + +RSD PTR @ 0xf0120 + 0000: 52 53 44 20 50 54 52 20 7f 4c 45 4e 4f 56 4f 02 RSD PTR .LENOVO. + 0010: d4 e0 ff da 24 00 00 00 70 e1 ff da 00 00 00 00 ....$...p....... + 0020: b2 00 00 00 .... + diff -Nru fwts-14.02.00/fwts-test/wmi-0001/acpidump-0002.log fwts-14.03.00/fwts-test/wmi-0001/acpidump-0002.log --- fwts-14.02.00/fwts-test/wmi-0001/acpidump-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/acpidump-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,4898 @@ +APIC @ 0x00000000 + 0000: 41 50 49 43 cc 00 00 00 02 d3 5f 41 53 55 53 5f APIC......_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 4d 53 46 54 Notebook. ".MSFT + 0020: 13 00 01 00 00 00 e0 fe 01 00 00 00 00 08 01 00 ................ + 0030: 01 00 00 00 00 08 02 02 01 00 00 00 00 08 03 04 ................ + 0040: 01 00 00 00 00 08 04 06 01 00 00 00 00 08 05 01 ................ + 0050: 01 00 00 00 00 08 06 03 01 00 00 00 00 08 07 05 ................ + 0060: 01 00 00 00 00 08 08 07 01 00 00 00 00 08 09 08 ................ + 0070: 00 00 00 00 00 08 0a 09 00 00 00 00 00 08 0b 0a ................ + 0080: 00 00 00 00 00 08 0c 0b 00 00 00 00 00 08 0d 0c ................ + 0090: 00 00 00 00 00 08 0e 0d 00 00 00 00 00 08 0f 0e ................ + 00a0: 00 00 00 00 00 08 10 0f 00 00 00 00 01 0c 02 00 ................ + 00b0: 00 00 c0 fe 00 00 00 00 02 0a 00 00 02 00 00 00 ................ + 00c0: 00 00 02 0a 00 09 09 00 00 00 0d 00 ............ + +ASF! @ 0x00000000 + 0000: 41 53 46 21 a0 00 00 00 20 3e 49 4e 54 45 4c 20 ASF!.... >INTEL + 0010: 20 48 43 47 00 00 00 00 01 00 00 00 54 46 53 4d HCG........TFSM + 0020: 40 42 0f 00 00 00 10 00 ff ff 01 00 00 00 01 57 @B.............W + 0030: 00 00 00 00 01 00 2c 00 00 00 03 0c 89 04 01 01 ......,......... + 0040: 05 6f 00 68 08 88 17 00 89 04 04 04 07 6f 00 68 .o.h.........o.h + 0050: 20 88 03 00 89 05 01 01 19 6f 00 68 20 88 22 00 ........o.h .". + 0060: 02 00 18 00 04 04 00 00 00 88 00 03 01 88 00 02 ................ + 0070: 02 88 00 01 03 88 00 04 03 00 17 00 20 f8 00 00 ............ ... + 0080: 00 13 f0 00 00 00 01 57 00 00 00 00 01 00 00 84 .......W........ + 0090: 00 11 00 00 0b 5c 68 88 c2 d2 dc a0 a2 a4 a6 c8 .....\h......... + +DBGP @ 0x00000000 + 0000: 44 42 47 50 34 00 00 00 01 8e 5f 41 53 55 53 5f DBGP4....._ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 4d 53 46 54 Notebook. ".MSFT + 0020: 13 00 01 00 00 00 00 00 01 08 00 00 40 02 00 00 ............@... + 0030: 00 00 00 00 .... + +ECDT @ 0x00000000 + 0000: 45 43 44 54 c1 00 00 00 01 ce 5f 41 53 55 53 5f ECDT......_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 41 4d 49 2e Notebook. ".AMI. + 0020: 03 00 00 00 01 08 00 00 66 00 00 00 00 00 00 00 ........f....... + 0030: 01 08 00 00 62 00 00 00 00 00 00 00 00 00 00 00 ....b........... + 0040: 1b 5c 5f 53 42 2e 50 43 49 30 2e 53 42 52 47 2e .\_SB.PCI0.SBRG. + 0050: 45 43 30 00 00 00 00 00 00 00 00 00 00 00 00 00 EC0............. + 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0090: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 00c0: 00 . + +DSDT @ 0x00000000 + 0000: 44 53 44 54 bd 0d 01 00 01 04 5f 41 53 55 53 5f DSDT......_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 00 00 00 00 49 4e 54 4c Notebook....INTL + 0020: 12 11 09 20 08 53 53 31 5f 0a 01 08 53 53 32 5f ... .SS1_...SS2_ + 0030: 0a 00 08 53 53 33 5f 0a 01 08 53 53 34 5f 0a 01 ...SS3_...SS4_.. + 0040: 08 49 4f 53 54 0b 00 44 08 54 4f 50 4d 0c ff ff .IOST..D.TOPM... + 0050: ff bf 08 52 4f 4d 53 0c 00 00 e0 ff 08 4d 47 31 ...ROMS......MG1 + 0060: 42 0c 00 00 00 00 08 4d 47 31 4c 0c 00 00 00 00 B......MG1L..... + 0070: 08 4d 47 32 42 0c 00 00 00 c0 08 4d 47 32 4c 0c .MG2B......MG2L. + 0080: 00 c0 50 24 08 4d 43 48 42 0c 00 00 d1 fe 08 4d ..P$.MCHB......M + 0090: 43 48 4c 0b 00 40 08 45 47 50 42 0c 00 90 d1 fe CHL..@.EGPB..... + 00a0: 08 45 47 50 4c 0b 00 10 08 44 4d 49 42 0c 00 80 .EGPL....DMIB... + 00b0: d1 fe 08 44 4d 49 4c 0b 00 10 08 49 46 50 42 0c ...DMIL....IFPB. + 00c0: 00 40 d1 fe 08 49 46 50 4c 0b 00 10 08 50 45 42 .@...IFPL....PEB + 00d0: 53 0c 00 00 00 e0 08 50 45 4c 4e 0c 00 00 00 04 S......PELN..... + 00e0: 08 54 54 54 42 0c 00 00 d2 fe 08 54 54 54 4c 0c .TTTB......TTTL. + 00f0: 00 00 02 00 08 53 4d 42 53 0b a0 ef 08 53 4d 42 .....SMBS....SMB + 0100: 4c 0a 10 08 50 42 4c 4b 0b 10 04 08 50 4d 42 53 L...PBLK....PMBS + 0110: 0b 00 04 08 50 4d 4c 4e 0a 80 08 4c 56 4c 32 0b ....PMLN...LVL2. + 0120: 14 04 08 4c 56 4c 33 0b 15 04 08 4c 56 4c 34 0b ...LVL3....LVL4. + 0130: 16 04 08 53 4d 49 50 0a b2 08 47 50 42 53 0b 00 ...SMIP...GPBS.. + 0140: 05 08 47 50 4c 4e 0a 80 08 41 50 43 42 0c 00 00 ..GPLN...APCB... + 0150: c0 fe 08 41 50 43 4c 0b 00 10 08 50 4d 33 30 0b ...APCL....PM30. + 0160: 30 04 08 53 52 43 42 0c 00 c0 d1 fe 08 53 52 43 0..SRCB......SRC + 0170: 4c 0b 00 40 08 53 55 53 57 0a ff 08 48 50 54 42 L..@.SUSW...HPTB + 0180: 0c 00 00 d0 fe 08 48 50 54 43 0c 04 f4 d1 fe 08 ......HPTC...... + 0190: 41 43 50 48 0a de 08 41 53 53 42 0a 00 08 41 4f ACPH...ASSB...AO + 01a0: 54 42 0a 00 08 41 41 58 42 0a 00 08 50 45 48 50 TB...AAXB...PEHP + 01b0: 0a 00 08 53 48 50 43 0a 01 08 50 45 50 4d 0a 00 ...SHPC...PEPM.. + 01c0: 08 50 45 45 52 0a 00 08 50 45 43 53 0a 00 08 49 .PEER...PECS...I + 01d0: 54 4b 45 0a 00 08 44 53 53 50 0a 00 08 46 48 50 TKE...DSSP...FHP + 01e0: 50 0a 01 08 46 4d 42 4c 0a 01 08 46 44 54 50 0a P...FMBL...FDTP. + 01f0: 02 08 46 55 50 53 0a 03 08 42 53 48 5f 0a 00 08 ..FUPS...BSH_... + 0200: 42 45 4c 5f 0a 01 08 42 45 48 5f 0a 02 08 42 52 BEL_...BEH_...BR + 0210: 48 5f 0a 03 08 42 54 46 5f 0a 04 08 42 48 43 5f H_...BTF_...BHC_ + 0220: 0a 05 08 42 59 42 5f 0a 06 08 42 50 48 5f 0a 07 ...BYB_...BPH_.. + 0230: 08 42 53 48 53 0a 08 08 42 45 4c 53 0a 09 08 42 .BSHS...BELS...B + 0240: 52 48 53 0a 0a 08 42 54 46 53 0a 0b 08 42 45 48 RHS...BTFS...BEH + 0250: 53 0a 0c 08 42 50 48 53 0a 0d 08 42 54 4c 5f 0a S...BPHS...BTL_. + 0260: 10 08 42 53 52 5f 0a 14 08 42 53 43 5f 0a 1b 08 ..BSR_...BSC_... + 0270: 42 43 43 5f 0a 1c 08 42 4f 46 5f 0a 20 08 42 45 BCC_...BOF_. .BE + 0280: 46 5f 0a 21 08 42 4c 4c 45 0a 22 08 42 4c 4c 43 F_.!.BLLE.".BLLC + 0290: 0a 23 08 42 4c 43 41 0a 24 08 42 4c 4c 53 0a 25 .#.BLCA.$.BLLS.% + 02a0: 08 42 4c 4c 50 0a 26 08 42 4c 4c 44 0a 27 08 42 .BLLP.&.BLLD.'.B + 02b0: 48 42 45 0a 30 08 42 48 42 43 0a 31 08 42 48 42 HBE.0.BHBC.1.BHB + 02c0: 4e 0a 32 08 42 48 42 4d 0a 33 08 54 52 54 50 0a N.2.BHBM.3.TRTP. + 02d0: 01 08 57 44 54 45 0a 01 08 54 52 54 44 0a 02 08 ..WDTE...TRTD... + 02e0: 54 52 54 49 0a 03 08 47 43 44 44 0a 01 08 44 53 TRTI...GCDD...DS + 02f0: 54 41 0a 0a 08 44 53 4c 4f 0a 0c 08 44 53 4c 43 TA...DSLO...DSLC + 0300: 0a 0e 08 50 49 54 53 0a 10 08 53 42 43 53 0a 12 ...PITS...SBCS.. + 0310: 08 53 41 4c 53 0a 13 08 4c 53 53 53 0a 2a 08 53 .SALS...LSSS.*.S + 0320: 4f 4f 54 0a 35 08 50 44 42 52 0a 4d 08 4d 42 45 OOT.5.PDBR.M.MBE + 0330: 43 0a 00 08 4d 42 4c 46 0a 0a 5b 80 47 4e 56 53 C...MBLF..[.GNVS + 0340: 00 0c 18 be 79 bf 0b a8 01 5b 81 4a 3b 47 4e 56 ....y....[.J;GNV + 0350: 53 10 4f 53 59 53 10 53 4d 49 46 08 50 52 4d 30 S.OSYS.SMIF.PRM0 + 0360: 08 50 52 4d 31 08 53 43 49 46 08 50 52 4d 32 08 .PRM1.SCIF.PRM2. + 0370: 50 52 4d 33 08 4c 43 4b 46 08 50 52 4d 34 08 50 PRM3.LCKF.PRM4.P + 0380: 52 4d 35 08 50 38 30 44 20 4c 49 44 53 08 50 57 RM5.P80D LIDS.PW + 0390: 52 53 08 44 42 47 53 08 54 48 4f 46 08 41 43 54 RS.DBGS.THOF.ACT + 03a0: 31 08 41 43 54 54 08 50 53 56 54 08 54 43 31 56 1.ACTT.PSVT.TC1V + 03b0: 08 54 43 32 56 08 54 53 50 56 08 43 52 54 54 08 .TC2V.TSPV.CRTT. + 03c0: 44 54 53 45 08 44 54 53 31 08 44 54 53 32 08 44 DTSE.DTS1.DTS2.D + 03d0: 54 53 46 08 00 38 52 45 56 4e 08 00 10 41 50 49 TSF..8REVN...API + 03e0: 43 08 54 43 4e 54 08 50 43 50 30 08 50 43 50 31 C.TCNT.PCP0.PCP1 + 03f0: 08 50 50 43 4d 08 50 50 4d 46 20 43 36 37 4c 08 .PPCM.PPMF C67L. + 0400: 4e 41 54 50 08 43 4d 41 50 08 43 4d 42 50 08 4c NATP.CMAP.CMBP.L + 0410: 50 54 50 08 46 44 43 50 08 43 4d 43 50 08 43 49 PTP.FDCP.CMCP.CI + 0420: 52 50 08 53 4d 53 43 08 57 33 38 31 08 53 4d 43 RP.SMSC.W381.SMC + 0430: 31 08 49 47 44 53 08 54 4c 53 54 08 43 41 44 4c 1.IGDS.TLST.CADL + 0440: 08 50 41 44 4c 08 43 53 54 45 10 4e 53 54 45 10 .PADL.CSTE.NSTE. + 0450: 53 53 54 45 10 4e 44 49 44 08 44 49 44 31 20 44 SSTE.NDID.DID1 D + 0460: 49 44 32 20 44 49 44 33 20 44 49 44 34 20 44 49 ID2 DID3 DID4 DI + 0470: 44 35 20 4b 53 56 30 20 4b 53 56 31 08 00 38 42 D5 KSV0 KSV1..8B + 0480: 4c 43 53 08 42 52 54 4c 08 41 4c 53 45 08 41 4c LCS.BRTL.ALSE.AL + 0490: 41 46 08 4c 4c 4f 57 08 4c 48 49 48 08 00 08 45 AF.LLOW.LHIH...E + 04a0: 4d 41 45 08 45 4d 41 50 10 45 4d 41 4c 10 00 08 MAE.EMAP.EMAL... + 04b0: 4d 45 46 45 08 44 53 54 53 08 00 10 54 50 4d 50 MEFE.DSTS...TPMP + 04c0: 08 54 50 4d 45 08 4d 4f 52 44 08 54 43 47 50 08 .TPME.MORD.TCGP. + 04d0: 50 50 52 50 20 50 50 52 51 08 4c 50 50 52 08 47 PPRP PPRQ.LPPR.G + 04e0: 54 46 30 38 47 54 46 32 38 49 44 45 4d 08 47 54 TF08GTF28IDEM.GT + 04f0: 46 31 38 42 49 44 5f 08 00 48 08 41 53 4c 42 20 F18BID_..H.ASLB + 0500: 49 42 54 54 08 49 50 41 54 08 49 54 56 46 08 49 IBTT.IPAT.ITVF.I + 0510: 54 56 4d 08 49 50 53 43 08 49 42 4c 43 08 49 42 TVM.IPSC.IBLC.IB + 0520: 49 41 08 49 53 53 43 08 49 34 30 39 08 49 35 30 IA.ISSC.I409.I50 + 0530: 39 08 49 36 30 39 08 49 37 30 39 08 49 50 43 46 9.I609.I709.IPCF + 0540: 08 49 44 4d 53 08 49 46 31 45 08 48 56 43 4f 08 .IDMS.IF1E.HVCO. + 0550: 4e 58 44 31 20 4e 58 44 32 20 4e 58 44 33 20 4e NXD1 NXD2 NXD3 N + 0560: 58 44 34 20 4e 58 44 35 20 4e 58 44 36 20 4e 58 XD4 NXD5 NXD6 NX + 0570: 44 37 20 4e 58 44 38 20 47 53 4d 49 08 50 41 56 D7 NXD8 GSMI.PAV + 0580: 50 08 00 08 4f 53 43 43 08 4e 45 58 50 08 53 42 P...OSCC.NEXP.SB + 0590: 56 31 08 53 42 56 32 08 00 30 44 53 45 4e 08 45 V1.SBV2..0DSEN.E + 05a0: 43 4f 4e 08 47 50 49 43 08 43 54 59 50 08 4c 30 CON.GPIC.CTYP.L0 + 05b0: 31 43 08 56 46 4e 30 08 56 46 4e 31 08 56 46 4e 1C.VFN0.VFN1.VFN + 05c0: 32 08 56 46 4e 33 08 56 46 4e 34 08 00 48 05 4e 2.VFN3.VFN4..H.N + 05d0: 56 47 41 20 4e 56 48 41 20 41 4d 44 41 20 44 49 VGA NVHA AMDA DI + 05e0: 44 36 20 44 49 44 37 20 44 49 44 38 20 45 42 41 D6 DID7 DID8 EBA + 05f0: 53 20 43 50 53 50 20 45 45 43 50 20 45 56 43 50 S CPSP EECP EVCP + 0600: 20 58 42 41 53 20 4f 42 53 31 20 4f 42 53 32 20 XBAS OBS1 OBS2 + 0610: 4f 42 53 33 20 4f 42 53 34 20 4f 42 53 35 20 4f OBS3 OBS4 OBS5 O + 0620: 42 53 36 20 4f 42 53 37 20 4f 42 53 38 20 00 48 BS6 OBS7 OBS8 .H + 0630: 05 41 54 4d 43 08 50 54 4d 43 08 41 54 52 41 08 .ATMC.PTMC.ATRA. + 0640: 50 54 52 41 08 50 4e 48 4d 20 54 42 41 42 20 54 PTRA.PNHM TBAB T + 0650: 42 41 48 20 52 54 49 50 08 54 53 4f 44 08 41 54 BAH RTIP.TSOD.AT + 0660: 50 43 08 50 54 50 43 08 50 46 4c 56 08 42 52 45 PC.PTPC.PFLV.BRE + 0670: 56 08 53 47 4d 44 08 53 47 46 4c 08 50 57 4f 4b V.SGMD.SGFL.PWOK + 0680: 08 48 4c 52 53 08 44 53 45 4c 08 45 53 45 4c 08 .HLRS.DSEL.ESEL. + 0690: 50 53 45 4c 08 50 57 45 4e 08 50 52 53 54 08 4d PSEL.PWEN.PRST.M + 06a0: 58 44 31 20 4d 58 44 32 20 4d 58 44 33 20 4d 58 XD1 MXD2 MXD3 MX + 06b0: 44 34 20 4d 58 44 35 20 4d 58 44 36 20 4d 58 44 D4 MXD5 MXD6 MXD + 06c0: 37 20 4d 58 44 38 20 47 42 41 53 10 00 28 41 4c 7 MXD8 GBAS..(AL + 06d0: 46 50 08 49 4d 4f 4e 08 50 44 54 53 08 50 4b 47 FP.IMON.PDTS.PKG + 06e0: 41 08 50 41 4d 54 08 41 43 30 46 08 41 43 31 46 A.PAMT.AC0F.AC1F + 06f0: 08 44 54 53 33 08 44 54 53 34 08 52 53 56 32 08 .DTS3.DTS4.RSV2. + 0700: 52 53 56 33 08 10 86 68 06 5c 5f 53 42 5f 08 50 RSV3...h.\_SB_.P + 0710: 52 30 30 12 43 24 24 12 0f 04 0c ff ff 01 00 0a R00.C$$......... + 0720: 00 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 01 00 0a .LNKA........... + 0730: 01 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 01 00 0a .LNKB........... + 0740: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 01 00 0a .LNKC........... + 0750: 03 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 06 00 0a .LNKD........... + 0760: 00 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 06 00 0a .LNKD........... + 0770: 01 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 06 00 0a .LNKA........... + 0780: 02 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 06 00 0a .LNKB........... + 0790: 03 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 04 00 0a .LNKC........... + 07a0: 00 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 04 00 0a .LNKA........... + 07b0: 01 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 04 00 0a .LNKB........... + 07c0: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 04 00 0a .LNKC........... + 07d0: 03 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1f 00 0a .LNKD........... + 07e0: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1f 00 0a .LNKC........... + 07f0: 03 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1b 00 0a .LNKA........... + 0800: 00 4c 4e 4b 47 0a 00 12 0f 04 0c ff ff 18 00 0a .LNKG........... + 0810: 00 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 19 00 0a .LNKE........... + 0820: 00 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 16 00 0a .LNKE........... + 0830: 00 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 16 00 0a .LNKA........... + 0840: 01 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 16 00 0a .LNKD........... + 0850: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 16 00 0a .LNKC........... + 0860: 03 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 1f 00 0a .LNKB........... + 0870: 00 4c 4e 4b 46 0a 00 12 0f 04 0c ff ff 1f 00 0a .LNKF........... + 0880: 01 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1d 00 0a .LNKD........... + 0890: 00 4c 4e 4b 48 0a 00 12 0f 04 0c ff ff 1d 00 0a .LNKH........... + 08a0: 01 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1d 00 0a .LNKD........... + 08b0: 02 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1d 00 0a .LNKA........... + 08c0: 03 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1a 00 0a .LNKC........... + 08d0: 00 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1a 00 0a .LNKA........... + 08e0: 01 4c 4e 4b 46 0a 00 12 0f 04 0c ff ff 1a 00 0a .LNKF........... + 08f0: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1a 00 0a .LNKC........... + 0900: 03 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1c 00 0a .LNKD........... + 0910: 00 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1c 00 0a .LNKA........... + 0920: 01 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 1c 00 0a .LNKB........... + 0930: 02 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1c 00 0a .LNKC........... + 0940: 03 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 02 00 0a .LNKD........... + 0950: 00 4c 4e 4b 41 0a 00 08 41 52 30 30 12 4b 1f 24 .LNKA...AR00.K.$ + 0960: 12 0d 04 0c ff ff 01 00 0a 00 0a 00 0a 10 12 0d ................ + 0970: 04 0c ff ff 01 00 0a 01 0a 00 0a 11 12 0d 04 0c ................ + 0980: ff ff 01 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff ................ + 0990: 01 00 0a 03 0a 00 0a 13 12 0d 04 0c ff ff 06 00 ................ + 09a0: 0a 00 0a 00 0a 13 12 0d 04 0c ff ff 06 00 0a 01 ................ + 09b0: 0a 00 0a 10 12 0d 04 0c ff ff 06 00 0a 02 0a 00 ................ + 09c0: 0a 11 12 0d 04 0c ff ff 06 00 0a 03 0a 00 0a 12 ................ + 09d0: 12 0d 04 0c ff ff 04 00 0a 00 0a 00 0a 10 12 0d ................ + 09e0: 04 0c ff ff 04 00 0a 01 0a 00 0a 11 12 0d 04 0c ................ + 09f0: ff ff 04 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff ................ + 0a00: 04 00 0a 03 0a 00 0a 13 12 0d 04 0c ff ff 1f 00 ................ + 0a10: 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 1f 00 0a 03 ................ + 0a20: 0a 00 0a 10 12 0d 04 0c ff ff 1b 00 0a 00 0a 00 ................ + 0a30: 0a 16 12 0d 04 0c ff ff 18 00 0a 00 0a 00 0a 14 ................ + 0a40: 12 0d 04 0c ff ff 19 00 0a 00 0a 00 0a 14 12 0d ................ + 0a50: 04 0c ff ff 16 00 0a 00 0a 00 0a 10 12 0d 04 0c ................ + 0a60: ff ff 16 00 0a 01 0a 00 0a 13 12 0d 04 0c ff ff ................ + 0a70: 16 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 16 00 ................ + 0a80: 0a 03 0a 00 0a 11 12 0d 04 0c ff ff 1f 00 0a 00 ................ + 0a90: 0a 00 0a 15 12 0d 04 0c ff ff 1f 00 0a 01 0a 00 ................ + 0aa0: 0a 13 12 0d 04 0c ff ff 1d 00 0a 00 0a 00 0a 17 ................ + 0ab0: 12 0d 04 0c ff ff 1d 00 0a 01 0a 00 0a 13 12 0d ................ + 0ac0: 04 0c ff ff 1d 00 0a 02 0a 00 0a 10 12 0d 04 0c ................ + 0ad0: ff ff 1d 00 0a 03 0a 00 0a 12 12 0d 04 0c ff ff ................ + 0ae0: 1a 00 0a 00 0a 00 0a 10 12 0d 04 0c ff ff 1a 00 ................ + 0af0: 0a 01 0a 00 0a 15 12 0d 04 0c ff ff 1a 00 0a 02 ................ + 0b00: 0a 00 0a 12 12 0d 04 0c ff ff 1a 00 0a 03 0a 00 ................ + 0b10: 0a 13 12 0d 04 0c ff ff 1c 00 0a 00 0a 00 0a 10 ................ + 0b20: 12 0d 04 0c ff ff 1c 00 0a 01 0a 00 0a 11 12 0d ................ + 0b30: 04 0c ff ff 1c 00 0a 02 0a 00 0a 12 12 0d 04 0c ................ + 0b40: ff ff 1c 00 0a 03 0a 00 0a 13 12 0d 04 0c ff ff ................ + 0b50: 02 00 0a 00 0a 00 0a 10 08 50 52 30 32 12 3a 04 .........PR02.:. + 0b60: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 41 0a 00 12 0d ........LNKA.... + 0b70: 04 0b ff ff 0a 01 4c 4e 4b 42 0a 00 12 0d 04 0b ......LNKB...... + 0b80: ff ff 0a 02 4c 4e 4b 43 0a 00 12 0d 04 0b ff ff ....LNKC........ + 0b90: 0a 03 4c 4e 4b 44 0a 00 08 41 52 30 32 12 32 04 ..LNKD...AR02.2. + 0ba0: 12 0b 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ................ + 0bb0: ff ff 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 ................ + 0bc0: 0a 00 0a 12 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 ................ + 0bd0: 08 50 52 30 41 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR0A.:......... + 0be0: 4c 4e 4b 42 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKB..........LN + 0bf0: 4b 43 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 44 KC..........LNKD + 0c00: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 41 0a 00 ..........LNKA.. + 0c10: 08 41 52 30 41 12 32 04 12 0b 04 0b ff ff 0a 00 .AR0A.2......... + 0c20: 0a 00 0a 11 12 0b 04 0b ff ff 0a 01 0a 00 0a 12 ................ + 0c30: 12 0b 04 0b ff ff 0a 02 0a 00 0a 13 12 0b 04 0b ................ + 0c40: ff ff 0a 03 0a 00 0a 10 08 50 52 30 42 12 3a 04 .........PR0B.:. + 0c50: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 43 0a 00 12 0d ........LNKC.... + 0c60: 04 0b ff ff 0a 01 4c 4e 4b 44 0a 00 12 0d 04 0b ......LNKD...... + 0c70: ff ff 0a 02 4c 4e 4b 41 0a 00 12 0d 04 0b ff ff ....LNKA........ + 0c80: 0a 03 4c 4e 4b 42 0a 00 08 41 52 30 42 12 32 04 ..LNKB...AR0B.2. + 0c90: 12 0b 04 0b ff ff 0a 00 0a 00 0a 12 12 0b 04 0b ................ + 0ca0: ff ff 0a 01 0a 00 0a 13 12 0b 04 0b ff ff 0a 02 ................ + 0cb0: 0a 00 0a 10 12 0b 04 0b ff ff 0a 03 0a 00 0a 11 ................ + 0cc0: 08 50 52 30 43 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR0C.:......... + 0cd0: 4c 4e 4b 44 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKD..........LN + 0ce0: 4b 41 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 42 KA..........LNKB + 0cf0: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 43 0a 00 ..........LNKC.. + 0d00: 08 41 52 30 43 12 32 04 12 0b 04 0b ff ff 0a 00 .AR0C.2......... + 0d10: 0a 00 0a 13 12 0b 04 0b ff ff 0a 01 0a 00 0a 10 ................ + 0d20: 12 0b 04 0b ff ff 0a 02 0a 00 0a 11 12 0b 04 0b ................ + 0d30: ff ff 0a 03 0a 00 0a 12 08 50 52 30 34 12 3a 04 .........PR04.:. + 0d40: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 41 0a 00 12 0d ........LNKA.... + 0d50: 04 0b ff ff 0a 01 4c 4e 4b 42 0a 00 12 0d 04 0b ......LNKB...... + 0d60: ff ff 0a 02 4c 4e 4b 43 0a 00 12 0d 04 0b ff ff ....LNKC........ + 0d70: 0a 03 4c 4e 4b 44 0a 00 08 41 52 30 34 12 32 04 ..LNKD...AR04.2. + 0d80: 12 0b 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ................ + 0d90: ff ff 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 ................ + 0da0: 0a 00 0a 12 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 ................ + 0db0: 08 50 52 30 35 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR05.:......... + 0dc0: 4c 4e 4b 42 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKB..........LN + 0dd0: 4b 43 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 44 KC..........LNKD + 0de0: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 41 0a 00 ..........LNKA.. + 0df0: 08 41 52 30 35 12 32 04 12 0b 04 0b ff ff 0a 00 .AR05.2......... + 0e00: 0a 00 0a 11 12 0b 04 0b ff ff 0a 01 0a 00 0a 12 ................ + 0e10: 12 0b 04 0b ff ff 0a 02 0a 00 0a 13 12 0b 04 0b ................ + 0e20: ff ff 0a 03 0a 00 0a 10 08 50 52 30 36 12 3a 04 .........PR06.:. + 0e30: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 43 0a 00 12 0d ........LNKC.... + 0e40: 04 0b ff ff 0a 01 4c 4e 4b 44 0a 00 12 0d 04 0b ......LNKD...... + 0e50: ff ff 0a 02 4c 4e 4b 41 0a 00 12 0d 04 0b ff ff ....LNKA........ + 0e60: 0a 03 4c 4e 4b 42 0a 00 08 41 52 30 36 12 32 04 ..LNKB...AR06.2. + 0e70: 12 0b 04 0b ff ff 0a 00 0a 00 0a 12 12 0b 04 0b ................ + 0e80: ff ff 0a 01 0a 00 0a 13 12 0b 04 0b ff ff 0a 02 ................ + 0e90: 0a 00 0a 10 12 0b 04 0b ff ff 0a 03 0a 00 0a 11 ................ + 0ea0: 08 50 52 30 37 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR07.:......... + 0eb0: 4c 4e 4b 44 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKD..........LN + 0ec0: 4b 41 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 42 KA..........LNKB + 0ed0: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 43 0a 00 ..........LNKC.. + 0ee0: 08 41 52 30 37 12 32 04 12 0b 04 0b ff ff 0a 00 .AR07.2......... + 0ef0: 0a 00 0a 13 12 0b 04 0b ff ff 0a 01 0a 00 0a 10 ................ + 0f00: 12 0b 04 0b ff ff 0a 02 0a 00 0a 11 12 0b 04 0b ................ + 0f10: ff ff 0a 03 0a 00 0a 12 08 50 52 30 38 12 3a 04 .........PR08.:. + 0f20: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 41 0a 00 12 0d ........LNKA.... + 0f30: 04 0b ff ff 0a 01 4c 4e 4b 42 0a 00 12 0d 04 0b ......LNKB...... + 0f40: ff ff 0a 02 4c 4e 4b 43 0a 00 12 0d 04 0b ff ff ....LNKC........ + 0f50: 0a 03 4c 4e 4b 44 0a 00 08 41 52 30 38 12 32 04 ..LNKD...AR08.2. + 0f60: 12 0b 04 0b ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ................ + 0f70: ff ff 0a 01 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 ................ + 0f80: 0a 00 0a 12 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 ................ + 0f90: 08 50 52 30 39 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR09.:......... + 0fa0: 4c 4e 4b 42 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKB..........LN + 0fb0: 4b 43 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 44 KC..........LNKD + 0fc0: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 41 0a 00 ..........LNKA.. + 0fd0: 08 41 52 30 39 12 32 04 12 0b 04 0b ff ff 0a 00 .AR09.2......... + 0fe0: 0a 00 0a 11 12 0b 04 0b ff ff 0a 01 0a 00 0a 12 ................ + 0ff0: 12 0b 04 0b ff ff 0a 02 0a 00 0a 13 12 0b 04 0b ................ + 1000: ff ff 0a 03 0a 00 0a 10 08 50 52 30 45 12 3a 04 .........PR0E.:. + 1010: 12 0d 04 0b ff ff 0a 00 4c 4e 4b 43 0a 00 12 0d ........LNKC.... + 1020: 04 0b ff ff 0a 01 4c 4e 4b 44 0a 00 12 0d 04 0b ......LNKD...... + 1030: ff ff 0a 02 4c 4e 4b 41 0a 00 12 0d 04 0b ff ff ....LNKA........ + 1040: 0a 03 4c 4e 4b 42 0a 00 08 41 52 30 45 12 32 04 ..LNKB...AR0E.2. + 1050: 12 0b 04 0b ff ff 0a 00 0a 00 0a 12 12 0b 04 0b ................ + 1060: ff ff 0a 01 0a 00 0a 13 12 0b 04 0b ff ff 0a 02 ................ + 1070: 0a 00 0a 10 12 0b 04 0b ff ff 0a 03 0a 00 0a 11 ................ + 1080: 08 50 52 30 46 12 3a 04 12 0d 04 0b ff ff 0a 00 .PR0F.:......... + 1090: 4c 4e 4b 44 0a 00 12 0d 04 0b ff ff 0a 01 4c 4e LNKD..........LN + 10a0: 4b 41 0a 00 12 0d 04 0b ff ff 0a 02 4c 4e 4b 42 KA..........LNKB + 10b0: 0a 00 12 0d 04 0b ff ff 0a 03 4c 4e 4b 43 0a 00 ..........LNKC.. + 10c0: 08 41 52 30 46 12 32 04 12 0b 04 0b ff ff 0a 00 .AR0F.2......... + 10d0: 0a 00 0a 13 12 0b 04 0b ff ff 0a 01 0a 00 0a 10 ................ + 10e0: 12 0b 04 0b ff ff 0a 02 0a 00 0a 11 12 0b 04 0b ................ + 10f0: ff ff 0a 03 0a 00 0a 12 08 50 52 30 31 12 4b 13 .........PR01.K. + 1100: 14 12 0f 04 0c ff ff 03 00 0a 00 4c 4e 4b 44 0a ...........LNKD. + 1110: 00 12 0f 04 0c ff ff 03 00 0a 01 4c 4e 4b 43 0a ...........LNKC. + 1120: 00 12 0f 04 0c ff ff 03 00 0a 02 4c 4e 4b 46 0a ...........LNKF. + 1130: 00 12 0f 04 0c ff ff 03 00 0a 03 4c 4e 4b 47 0a ...........LNKG. + 1140: 00 12 0f 04 0c ff ff 02 00 0a 00 4c 4e 4b 43 0a ...........LNKC. + 1150: 00 12 0f 04 0c ff ff 02 00 0a 01 4c 4e 4b 44 0a ...........LNKD. + 1160: 00 12 0f 04 0c ff ff 02 00 0a 02 4c 4e 4b 42 0a ...........LNKB. + 1170: 00 12 0f 04 0c ff ff 02 00 0a 03 4c 4e 4b 41 0a ...........LNKA. + 1180: 00 12 0d 04 0b ff ff 0a 00 4c 4e 4b 46 0a 00 12 .........LNKF... + 1190: 0d 04 0b ff ff 0a 01 4c 4e 4b 47 0a 00 12 0d 04 .......LNKG..... + 11a0: 0b ff ff 0a 02 4c 4e 4b 48 0a 00 12 0d 04 0b ff .....LNKH....... + 11b0: ff 0a 03 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 01 ...LNKE......... + 11c0: 00 0a 00 4c 4e 4b 47 0a 00 12 0f 04 0c ff ff 01 ...LNKG......... + 11d0: 00 0a 01 4c 4e 4b 46 0a 00 12 0f 04 0c ff ff 01 ...LNKF......... + 11e0: 00 0a 02 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 01 ...LNKE......... + 11f0: 00 0a 03 4c 4e 4b 48 0a 00 12 0f 04 0c ff ff 05 ...LNKH......... + 1200: 00 0a 00 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 05 ...LNKC......... + 1210: 00 0a 01 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 05 ...LNKE......... + 1220: 00 0a 02 4c 4e 4b 47 0a 00 12 0f 04 0c ff ff 05 ...LNKG......... + 1230: 00 0a 03 4c 4e 4b 46 0a 00 08 41 52 30 31 12 43 ...LNKF...AR01.C + 1240: 11 14 12 0d 04 0c ff ff 03 00 0a 00 0a 00 0a 13 ................ + 1250: 12 0d 04 0c ff ff 03 00 0a 01 0a 00 0a 12 12 0d ................ + 1260: 04 0c ff ff 03 00 0a 02 0a 00 0a 15 12 0d 04 0c ................ + 1270: ff ff 03 00 0a 03 0a 00 0a 16 12 0d 04 0c ff ff ................ + 1280: 02 00 0a 00 0a 00 0a 12 12 0d 04 0c ff ff 02 00 ................ + 1290: 0a 01 0a 00 0a 13 12 0d 04 0c ff ff 02 00 0a 02 ................ + 12a0: 0a 00 0a 11 12 0d 04 0c ff ff 02 00 0a 03 0a 00 ................ + 12b0: 0a 10 12 0b 04 0b ff ff 0a 00 0a 00 0a 15 12 0b ................ + 12c0: 04 0b ff ff 0a 01 0a 00 0a 16 12 0b 04 0b ff ff ................ + 12d0: 0a 02 0a 00 0a 17 12 0b 04 0b ff ff 0a 03 0a 00 ................ + 12e0: 0a 14 12 0d 04 0c ff ff 01 00 0a 00 0a 00 0a 16 ................ + 12f0: 12 0d 04 0c ff ff 01 00 0a 01 0a 00 0a 15 12 0d ................ + 1300: 04 0c ff ff 01 00 0a 02 0a 00 0a 14 12 0d 04 0c ................ + 1310: ff ff 01 00 0a 03 0a 00 0a 17 12 0d 04 0c ff ff ................ + 1320: 05 00 0a 00 0a 00 0a 12 12 0d 04 0c ff ff 05 00 ................ + 1330: 0a 01 0a 00 0a 14 12 0d 04 0c ff ff 05 00 0a 02 ................ + 1340: 0a 00 0a 16 12 0d 04 0c ff ff 05 00 0a 03 0a 00 ................ + 1350: 0a 15 08 50 52 53 41 11 09 0a 06 23 f8 1c 18 79 ...PRSA....#...y + 1360: 00 08 50 52 53 42 11 09 0a 06 23 f8 14 18 79 00 ..PRSB....#...y. + 1370: 06 50 52 53 42 50 52 53 43 06 50 52 53 42 50 52 .PRSBPRSC.PRSBPR + 1380: 53 44 06 50 52 53 42 50 52 53 45 06 50 52 53 42 SD.PRSBPRSE.PRSB + 1390: 50 52 53 46 06 50 52 53 42 50 52 53 47 06 50 52 PRSF.PRSBPRSG.PR + 13a0: 53 42 50 52 53 48 5b 82 84 9e 05 50 43 49 30 08 SBPRSH[....PCI0. + 13b0: 5f 48 49 44 0c 41 d0 0a 08 08 5f 43 49 44 0c 41 _HID.A...._CID.A + 13c0: d0 0a 03 08 5f 41 44 52 0a 00 14 0a 5e 42 4e 30 ...._ADR....^BN0 + 13d0: 30 00 a4 0a 00 14 0b 5f 42 42 4e 00 a4 42 4e 30 0......_BBN..BN0 + 13e0: 30 08 5f 55 49 44 0a 00 14 16 5f 50 52 54 00 a0 0._UID...._PRT.. + 13f0: 0a 50 49 43 4d a4 41 52 30 30 a4 50 52 30 30 5b .PICM.AR00.PR00[ + 1400: 80 48 42 55 53 02 0a 00 0b 00 01 5b 81 4b 0d 48 .HBUS......[.K.H + 1410: 42 55 53 03 00 40 20 45 50 45 4e 01 00 0b 45 50 BUS..@ EPEN...EP + 1420: 42 52 14 00 20 4d 48 45 4e 01 00 0e 4d 48 42 52 BR.. MHEN...MHBR + 1430: 11 00 20 47 43 4c 4b 01 00 1f 44 30 45 4e 01 00 .. GCLK...D0EN.. + 1440: 4f 05 50 58 45 4e 01 50 58 53 5a 02 00 17 50 58 O.PXEN.PXSZ...PX + 1450: 42 52 06 00 20 44 49 45 4e 01 00 0b 44 49 42 52 BR.. DIEN...DIBR + 1460: 14 00 20 00 14 4d 45 42 52 0c 00 40 06 00 04 50 .. ..MEBR..@...P + 1470: 4d 30 48 02 00 02 50 4d 31 4c 02 00 02 50 4d 31 M0H...PM1L...PM1 + 1480: 48 02 00 02 50 4d 32 4c 02 00 02 50 4d 32 48 02 H...PM2L...PM2H. + 1490: 00 02 50 4d 33 4c 02 00 02 50 4d 33 48 02 00 02 ..PM3L...PM3H... + 14a0: 50 4d 34 4c 02 00 02 50 4d 34 48 02 00 02 50 4d PM4L...PM4H...PM + 14b0: 35 4c 02 00 02 50 4d 35 48 02 00 02 50 4d 36 4c 5L...PM5H...PM6L + 14c0: 02 00 02 50 4d 36 48 02 00 02 00 48 10 00 14 54 ...PM6H....H...T + 14d0: 55 55 44 13 00 49 07 00 14 54 4c 55 44 0c 00 40 UUD..I...TLUD..@ + 14e0: 04 00 07 48 54 53 45 01 5b 80 4d 43 48 54 00 0c ...HTSE.[.MCHT.. + 14f0: 00 00 d1 fe 0b 00 11 5b 81 06 4d 43 48 54 01 08 .......[..MCHT.. + 1500: 42 55 46 30 11 43 1f 0b ee 01 88 0d 00 02 0c 00 BUF0.C.......... + 1510: 00 00 00 00 ff 00 00 00 00 01 87 17 00 01 0c 03 ................ + 1520: 00 00 00 00 00 00 00 00 f7 0c 00 00 00 00 00 00 ................ + 1530: f8 0c 00 00 47 01 f8 0c f8 0c 01 08 87 17 00 01 ....G........... + 1540: 0c 03 00 00 00 00 00 0d 00 00 ff ff 00 00 00 00 ................ + 1550: 00 00 00 f3 00 00 87 17 00 00 0c 03 00 00 00 00 ................ + 1560: 00 00 0a 00 ff ff 0b 00 00 00 00 00 00 00 02 00 ................ + 1570: 87 17 00 00 0c 03 00 00 00 00 00 00 0c 00 ff 3f ...............? + 1580: 0c 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 .......@........ + 1590: 00 00 00 00 00 40 0c 00 ff 7f 0c 00 00 00 00 00 .....@.......... + 15a0: 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 80 .@.............. + 15b0: 0c 00 ff bf 0c 00 00 00 00 00 00 40 00 00 87 17 ...........@.... + 15c0: 00 00 0c 03 00 00 00 00 00 c0 0c 00 ff ff 0c 00 ................ + 15d0: 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 .....@.......... + 15e0: 00 00 00 00 0d 00 ff 3f 0d 00 00 00 00 00 00 40 .......?.......@ + 15f0: 00 00 87 17 00 00 0c 03 00 00 00 00 00 40 0d 00 .............@.. + 1600: ff 7f 0d 00 00 00 00 00 00 40 00 00 87 17 00 00 .........@...... + 1610: 0c 03 00 00 00 00 00 80 0d 00 ff bf 0d 00 00 00 ................ + 1620: 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 ...@............ + 1630: 00 c0 0d 00 ff ff 0d 00 00 00 00 00 00 40 00 00 .............@.. + 1640: 87 17 00 00 0c 03 00 00 00 00 00 00 0e 00 ff 3f ...............? + 1650: 0e 00 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 .......@........ + 1660: 00 00 00 00 00 40 0e 00 ff 7f 0e 00 00 00 00 00 .....@.......... + 1670: 00 40 00 00 87 17 00 00 0c 03 00 00 00 00 00 80 .@.............. + 1680: 0e 00 ff bf 0e 00 00 00 00 00 00 40 00 00 87 17 ...........@.... + 1690: 00 00 0c 03 00 00 00 00 00 c0 0e 00 ff ff 0e 00 ................ + 16a0: 00 00 00 00 00 40 00 00 87 17 00 00 0c 03 00 00 .....@.......... + 16b0: 00 00 00 00 0f 00 ff ff 0f 00 00 00 00 00 00 00 ................ + 16c0: 01 00 87 17 00 00 0c 03 00 00 00 00 00 00 00 00 ................ + 16d0: ff ff af fe 00 00 00 00 00 00 b0 fe 87 17 00 00 ................ + 16e0: 0c 03 00 00 00 00 00 00 d4 fe ff 4f d4 fe 00 00 ...........O.... + 16f0: 00 00 00 50 00 00 79 00 14 47 31 5f 43 52 53 08 ...P..y..G1_CRS. + 1700: 8b 42 55 46 30 0a 0a 50 42 4d 58 70 74 7a 5c 50 .BUF0..PBMXptz\P + 1710: 45 4c 4e 0a 14 00 0a 02 00 50 42 4d 58 8b 42 55 ELN......PBMX.BU + 1720: 46 30 0a 0e 50 42 4c 4e 70 74 7a 5c 50 45 4c 4e F0..PBLNptz\PELN + 1730: 0a 14 00 0a 01 00 50 42 4c 4e a0 16 50 4d 31 4c ......PBLN..PM1L + 1740: 8a 42 55 46 30 0a 7c 43 30 4c 4e 70 00 43 30 4c .BUF0.|C0LNp.C0L + 1750: 4e a0 1a 93 50 4d 31 4c 0a 01 8d 42 55 46 30 0b N...PM1L...BUF0. + 1760: 58 03 43 30 52 57 70 00 43 30 52 57 a0 16 50 4d X.C0RWp.C0RW..PM + 1770: 31 48 8a 42 55 46 30 0a 96 43 34 4c 4e 70 00 43 1H.BUF0..C4LNp.C + 1780: 34 4c 4e a0 1a 93 50 4d 31 48 0a 01 8d 42 55 46 4LN...PM1H...BUF + 1790: 30 0b 28 04 43 34 52 57 70 00 43 34 52 57 a0 16 0.(.C4RWp.C4RW.. + 17a0: 50 4d 32 4c 8a 42 55 46 30 0a b0 43 38 4c 4e 70 PM2L.BUF0..C8LNp + 17b0: 00 43 38 4c 4e a0 1a 93 50 4d 32 4c 0a 01 8d 42 .C8LN...PM2L...B + 17c0: 55 46 30 0b f8 04 43 38 52 57 70 00 43 38 52 57 UF0...C8RWp.C8RW + 17d0: a0 16 50 4d 32 48 8a 42 55 46 30 0a ca 43 43 4c ..PM2H.BUF0..CCL + 17e0: 4e 70 00 43 43 4c 4e a0 1a 93 50 4d 32 48 0a 01 Np.CCLN...PM2H.. + 17f0: 8d 42 55 46 30 0b c8 05 43 43 52 57 70 00 43 43 .BUF0...CCRWp.CC + 1800: 52 57 a0 16 50 4d 33 4c 8a 42 55 46 30 0a e4 44 RW..PM3L.BUF0..D + 1810: 30 4c 4e 70 00 44 30 4c 4e a0 1a 93 50 4d 33 4c 0LNp.D0LN...PM3L + 1820: 0a 01 8d 42 55 46 30 0b 98 06 44 30 52 57 70 00 ...BUF0...D0RWp. + 1830: 44 30 52 57 a0 16 50 4d 33 48 8a 42 55 46 30 0a D0RW..PM3H.BUF0. + 1840: fe 44 34 4c 4e 70 00 44 34 4c 4e a0 1a 93 50 4d .D4LNp.D4LN...PM + 1850: 33 48 0a 01 8d 42 55 46 30 0b 68 07 44 34 52 57 3H...BUF0.h.D4RW + 1860: 70 00 44 34 52 57 a0 17 50 4d 34 4c 8a 42 55 46 p.D4RW..PM4L.BUF + 1870: 30 0b 18 01 44 38 4c 4e 70 00 44 38 4c 4e a0 1a 0...D8LNp.D8LN.. + 1880: 93 50 4d 34 4c 0a 01 8d 42 55 46 30 0b 38 08 44 .PM4L...BUF0.8.D + 1890: 38 52 57 70 00 44 38 52 57 a0 17 50 4d 34 48 8a 8RWp.D8RW..PM4H. + 18a0: 42 55 46 30 0b 32 01 44 43 4c 4e 70 00 44 43 4c BUF0.2.DCLNp.DCL + 18b0: 4e a0 1a 93 50 4d 34 48 0a 01 8d 42 55 46 30 0b N...PM4H...BUF0. + 18c0: 08 09 44 43 52 57 70 00 44 43 52 57 a0 17 50 4d ..DCRWp.DCRW..PM + 18d0: 35 4c 8a 42 55 46 30 0b 4c 01 45 30 4c 4e 70 00 5L.BUF0.L.E0LNp. + 18e0: 45 30 4c 4e a0 1a 93 50 4d 35 4c 0a 01 8d 42 55 E0LN...PM5L...BU + 18f0: 46 30 0b d8 09 45 30 52 57 70 00 45 30 52 57 a0 F0...E0RWp.E0RW. + 1900: 17 50 4d 35 48 8a 42 55 46 30 0b 66 01 45 34 4c .PM5H.BUF0.f.E4L + 1910: 4e 70 00 45 34 4c 4e a0 1a 93 50 4d 35 48 0a 01 Np.E4LN...PM5H.. + 1920: 8d 42 55 46 30 0b a8 0a 45 34 52 57 70 00 45 34 .BUF0...E4RWp.E4 + 1930: 52 57 a0 17 50 4d 36 4c 8a 42 55 46 30 0b 80 01 RW..PM6L.BUF0... + 1940: 45 38 4c 4e 70 00 45 38 4c 4e a0 1a 93 50 4d 36 E8LNp.E8LN...PM6 + 1950: 4c 0a 01 8d 42 55 46 30 0b 78 0b 45 38 52 57 70 L...BUF0.x.E8RWp + 1960: 00 45 38 52 57 a0 17 50 4d 36 48 8a 42 55 46 30 .E8RW..PM6H.BUF0 + 1970: 0b 9a 01 45 43 4c 4e 70 00 45 43 4c 4e a0 1a 93 ...ECLNp.ECLN... + 1980: 50 4d 36 48 0a 01 8d 42 55 46 30 0b 48 0c 45 43 PM6H...BUF0.H.EC + 1990: 52 57 70 00 45 43 52 57 a0 17 50 4d 30 48 8a 42 RWp.ECRW..PM0H.B + 19a0: 55 46 30 0b b4 01 46 30 4c 4e 70 00 46 30 4c 4e UF0...F0LNp.F0LN + 19b0: a0 1a 93 50 4d 30 48 0a 01 8d 42 55 46 30 0b 18 ...PM0H...BUF0.. + 19c0: 0d 46 30 52 57 70 00 46 30 52 57 8a 42 55 46 30 .F0RWp.F0RW.BUF0 + 19d0: 0b c2 01 4d 31 4d 4e 8a 42 55 46 30 0b c6 01 4d ...M1MN.BUF0...M + 19e0: 31 4d 58 8a 42 55 46 30 0b ce 01 4d 31 4c 4e 79 1MX.BUF0...M1LNy + 19f0: 54 4c 55 44 0a 14 4d 31 4d 4e 72 74 4d 31 4d 58 TLUD..M1MNrtM1MX + 1a00: 4d 31 4d 4e 00 0a 01 4d 31 4c 4e a4 42 55 46 30 M1MN...M1LN.BUF0 + 1a10: 08 47 55 49 44 11 13 0a 10 5b 4d db 33 f7 1f 1c .GUID....[M.3... + 1a20: 40 96 57 74 41 c0 3d d7 66 08 53 55 50 50 0a 00 @.WtA.=.f.SUPP.. + 1a30: 08 43 54 52 4c 0a 00 14 40 0b 5f 4f 53 43 0c 70 .CTRL...@._OSC.p + 1a40: 6b 60 8a 60 0a 00 43 44 57 31 8a 60 0a 04 43 44 k`.`..CDW1.`..CD + 1a50: 57 32 8a 60 0a 08 43 44 57 33 a0 4e 07 93 68 47 W2.`..CDW3.N..hG + 1a60: 55 49 44 70 43 44 57 32 53 55 50 50 70 43 44 57 UIDpCDW2SUPPpCDW + 1a70: 33 43 54 52 4c a0 27 80 7b 43 44 57 31 0a 01 00 3CTRL.'.{CDW1... + 1a80: 00 a0 0d 7b 43 54 52 4c 0a 01 00 4e 48 50 47 a0 ...{CTRL...NHPG. + 1a90: 0d 7b 43 54 52 4c 0a 04 00 4e 50 4d 45 a0 10 92 .{CTRL...NPME... + 1aa0: 93 69 01 7d 43 44 57 31 0a 08 43 44 57 31 a0 16 .i.}CDW1..CDW1.. + 1ab0: 92 93 43 44 57 33 43 54 52 4c 7d 43 44 57 31 0a ..CDW3CTRL}CDW1. + 1ac0: 10 43 44 57 31 70 43 54 52 4c 43 44 57 33 70 43 .CDW1pCTRLCDW3pC + 1ad0: 54 52 4c 4f 53 43 43 a4 60 a1 0e 7d 43 44 57 31 TRLOSCC.`..}CDW1 + 1ae0: 0a 04 43 44 57 31 a4 60 10 48 19 5c 2e 5f 53 42 ..CDW1.`.H.\._SB + 1af0: 5f 50 43 49 30 14 11 41 52 30 30 00 a4 5c 2e 5f _PCI0..AR00..\._ + 1b00: 53 42 5f 41 52 30 30 14 11 50 52 30 30 00 a4 5c SB_AR00..PR00..\ + 1b10: 2e 5f 53 42 5f 50 52 30 30 14 11 41 52 30 31 00 ._SB_PR00..AR01. + 1b20: a4 5c 2e 5f 53 42 5f 41 52 30 31 14 11 50 52 30 .\._SB_AR01..PR0 + 1b30: 31 00 a4 5c 2e 5f 53 42 5f 50 52 30 31 14 11 41 1..\._SB_PR01..A + 1b40: 52 30 32 00 a4 5c 2e 5f 53 42 5f 41 52 30 32 14 R02..\._SB_AR02. + 1b50: 11 50 52 30 32 00 a4 5c 2e 5f 53 42 5f 50 52 30 .PR02..\._SB_PR0 + 1b60: 32 14 11 41 52 30 34 00 a4 5c 2e 5f 53 42 5f 41 2..AR04..\._SB_A + 1b70: 52 30 34 14 11 50 52 30 34 00 a4 5c 2e 5f 53 42 R04..PR04..\._SB + 1b80: 5f 50 52 30 34 14 11 41 52 30 35 00 a4 5c 2e 5f _PR04..AR05..\._ + 1b90: 53 42 5f 41 52 30 35 14 11 50 52 30 35 00 a4 5c SB_AR05..PR05..\ + 1ba0: 2e 5f 53 42 5f 50 52 30 35 14 11 41 52 30 36 00 ._SB_PR05..AR06. + 1bb0: a4 5c 2e 5f 53 42 5f 41 52 30 36 14 11 50 52 30 .\._SB_AR06..PR0 + 1bc0: 36 00 a4 5c 2e 5f 53 42 5f 50 52 30 36 14 11 41 6..\._SB_PR06..A + 1bd0: 52 30 37 00 a4 5c 2e 5f 53 42 5f 41 52 30 37 14 R07..\._SB_AR07. + 1be0: 11 50 52 30 37 00 a4 5c 2e 5f 53 42 5f 50 52 30 .PR07..\._SB_PR0 + 1bf0: 37 14 11 41 52 30 38 00 a4 5c 2e 5f 53 42 5f 41 7..AR08..\._SB_A + 1c00: 52 30 38 14 11 50 52 30 38 00 a4 5c 2e 5f 53 42 R08..PR08..\._SB + 1c10: 5f 50 52 30 38 14 11 41 52 30 39 00 a4 5c 2e 5f _PR08..AR09..\._ + 1c20: 53 42 5f 41 52 30 39 14 11 50 52 30 39 00 a4 5c SB_AR09..PR09..\ + 1c30: 2e 5f 53 42 5f 50 52 30 39 14 11 41 52 30 41 00 ._SB_PR09..AR0A. + 1c40: a4 5c 2e 5f 53 42 5f 41 52 30 41 14 11 50 52 30 .\._SB_AR0A..PR0 + 1c50: 41 00 a4 5c 2e 5f 53 42 5f 50 52 30 41 14 11 41 A..\._SB_PR0A..A + 1c60: 52 30 42 00 a4 5c 2e 5f 53 42 5f 41 52 30 42 14 R0B..\._SB_AR0B. + 1c70: 11 50 52 30 42 00 a4 5c 2e 5f 53 42 5f 50 52 30 .PR0B..\._SB_PR0 + 1c80: 42 5b 82 45 04 50 45 47 30 08 5f 41 44 52 0c 00 B[.E.PEG0._ADR.. + 1c90: 00 01 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a ....._PRW..GPRW. + 1ca0: 09 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d ....._PRT...PICM + 1cb0: a4 41 52 30 32 a4 50 52 30 32 5b 82 0c 47 46 58 .AR02.PR02[..GFX + 1cc0: 30 08 5f 41 44 52 0a 00 5b 82 36 50 45 47 31 08 0._ADR..[.6PEG1. + 1cd0: 5f 41 44 52 0c 01 00 01 00 14 0f 5f 50 52 57 00 _ADR......._PRW. + 1ce0: a4 47 50 52 57 0a 09 0a 04 14 16 5f 50 52 54 00 .GPRW......_PRT. + 1cf0: a0 0a 50 49 43 4d a4 41 52 30 41 a4 50 52 30 41 ..PICM.AR0A.PR0A + 1d00: 5b 82 36 50 45 47 32 08 5f 41 44 52 0c 02 00 01 [.6PEG2._ADR.... + 1d10: 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 0a ..._PRW..GPRW... + 1d20: 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 41 ..._PRT...PICM.A + 1d30: 52 30 42 a4 50 52 30 42 5b 82 36 50 45 47 33 08 R0B.PR0B[.6PEG3. + 1d40: 5f 41 44 52 0c 00 00 06 00 14 0f 5f 50 52 57 00 _ADR......._PRW. + 1d50: a4 47 50 52 57 0a 09 0a 04 14 16 5f 50 52 54 00 .GPRW......_PRT. + 1d60: a0 0a 50 49 43 4d a4 41 52 30 43 a4 50 52 30 43 ..PICM.AR0C.PR0C + 1d70: 5b 82 1f 42 30 44 34 08 5f 41 44 52 0c 00 00 04 [..B0D4._ADR.... + 1d80: 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 0a ..._PRW..GPRW... + 1d90: 04 5b 82 36 50 30 50 31 08 5f 41 44 52 0c 00 00 .[.6P0P1._ADR... + 1da0: 1e 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 0b ...._PRW..GPRW.. + 1db0: 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 ...._PRT...PICM. + 1dc0: 41 52 30 31 a4 50 52 30 31 5b 82 4f 49 53 42 55 AR01.PR01[.OISBU + 1dd0: 53 08 5f 41 44 52 0c 03 00 1f 00 5b 80 53 4d 42 S._ADR.....[.SMB + 1de0: 50 02 0a 40 0a c0 5b 81 0d 53 4d 42 50 03 00 02 P..@..[..SMBP... + 1df0: 49 32 43 45 01 5b 80 53 4d 50 42 02 0a 20 0a 04 I2CE.[.SMPB.. .. + 1e00: 5b 81 0d 53 4d 50 42 03 00 05 53 42 41 52 0b 5b [..SMPB...SBAR.[ + 1e10: 80 53 4d 42 49 01 79 53 42 41 52 0a 05 00 0a 10 .SMBI.ySBAR..... + 1e20: 5b 81 3a 53 4d 42 49 01 48 53 54 53 08 00 08 48 [.:SMBI.HSTS...H + 1e30: 43 4f 4e 08 48 43 4f 4d 08 54 58 53 41 08 44 41 CON.HCOM.TXSA.DA + 1e40: 54 30 08 44 41 54 31 08 48 42 44 52 08 50 45 43 T0.DAT1.HBDR.PEC + 1e50: 52 08 52 58 53 41 08 53 44 41 54 10 14 48 04 53 R.RXSA.SDAT..H.S + 1e60: 53 58 42 0a a0 08 53 54 52 54 a4 0a 00 70 0a 00 SXB...STRT...p.. + 1e70: 49 32 43 45 70 0a bf 48 53 54 53 70 68 54 58 53 I2CEp..HSTSphTXS + 1e80: 41 70 69 48 43 4f 4d 70 0a 48 48 43 4f 4e a0 13 ApiHCOMp.HHCON.. + 1e90: 43 4f 4d 50 7d 48 53 54 53 0a ff 48 53 54 53 a4 COMP}HSTS..HSTS. + 1ea0: 0a 01 a4 0a 00 14 4a 04 53 52 58 42 09 a0 09 53 ......J.SRXB...S + 1eb0: 54 52 54 a4 0b ff ff 70 0a 00 49 32 43 45 70 0a TRT....p..I2CEp. + 1ec0: bf 48 53 54 53 70 7d 68 0a 01 00 54 58 53 41 70 .HSTSp}h...TXSAp + 1ed0: 0a 44 48 43 4f 4e a0 15 43 4f 4d 50 7d 48 53 54 .DHCON..COMP}HST + 1ee0: 53 0a ff 48 53 54 53 a4 44 41 54 30 a4 0b ff ff S..HSTS.DAT0.... + 1ef0: 14 4e 04 53 57 52 42 0b a0 08 53 54 52 54 a4 0a .N.SWRB...STRT.. + 1f00: 00 70 0a 00 49 32 43 45 70 0a bf 48 53 54 53 70 .p..I2CEp..HSTSp + 1f10: 68 54 58 53 41 70 69 48 43 4f 4d 70 6a 44 41 54 hTXSApiHCOMpjDAT + 1f20: 30 70 0a 48 48 43 4f 4e a0 13 43 4f 4d 50 7d 48 0p.HHCON..COMP}H + 1f30: 53 54 53 0a ff 48 53 54 53 a4 0a 01 a4 0a 00 14 STS..HSTS....... + 1f40: 40 05 53 52 44 42 0a a0 09 53 54 52 54 a4 0b ff @.SRDB...STRT... + 1f50: ff 70 0a 00 49 32 43 45 70 0a bf 48 53 54 53 70 .p..I2CEp..HSTSp + 1f60: 7d 68 0a 01 00 54 58 53 41 70 69 48 43 4f 4d 70 }h...TXSApiHCOMp + 1f70: 0a 48 48 43 4f 4e a0 15 43 4f 4d 50 7d 48 53 54 .HHCON..COMP}HST + 1f80: 53 0a ff 48 53 54 53 a4 44 41 54 30 a4 0b ff ff S..HSTS.DAT0.... + 1f90: 14 4c 05 53 57 52 57 0b a0 08 53 54 52 54 a4 0a .L.SWRW...STRT.. + 1fa0: 00 70 0a 00 49 32 43 45 70 0a bf 48 53 54 53 70 .p..I2CEp..HSTSp + 1fb0: 68 54 58 53 41 70 69 48 43 4f 4d 7b 6a 0a ff 44 hTXSApiHCOM{j..D + 1fc0: 41 54 31 7b 7a 6a 0a 08 00 0a ff 44 41 54 30 70 AT1{zj.....DAT0p + 1fd0: 0a 4c 48 43 4f 4e a0 13 43 4f 4d 50 7d 48 53 54 .LHCON..COMP}HST + 1fe0: 53 0a ff 48 53 54 53 a4 0a 01 a4 0a 00 14 4c 05 S..HSTS.......L. + 1ff0: 53 52 44 57 0a a0 09 53 54 52 54 a4 0b ff ff 70 SRDW...STRT....p + 2000: 0a 00 49 32 43 45 70 0a bf 48 53 54 53 70 7d 68 ..I2CEp..HSTSp}h + 2010: 0a 01 00 54 58 53 41 70 69 48 43 4f 4d 70 0a 4c ...TXSApiHCOMp.L + 2020: 48 43 4f 4e a0 1f 43 4f 4d 50 7d 48 53 54 53 0a HCON..COMP}HSTS. + 2030: ff 48 53 54 53 a4 7d 79 44 41 54 30 0a 08 00 44 .HSTS.}yDAT0...D + 2040: 41 54 31 00 a4 0c ff ff ff ff 14 40 0a 53 42 4c AT1........@.SBL + 2050: 57 0c a0 08 53 54 52 54 a4 0a 00 70 6b 49 32 43 W...STRT...pkI2C + 2060: 45 70 0a bf 48 53 54 53 70 68 54 58 53 41 70 69 Ep..HSTSphTXSApi + 2070: 48 43 4f 4d 70 87 6a 44 41 54 30 70 0a 00 61 70 HCOMp.jDAT0p..ap + 2080: 83 88 6a 0a 00 00 48 42 44 52 70 0a 54 48 43 4f ..j...HBDRp.THCO + 2090: 4e a2 42 04 94 87 6a 61 70 0b a0 0f 60 a2 12 90 N.B...jap...`... + 20a0: 92 7b 48 53 54 53 0a 80 00 60 76 60 5b 21 0a 32 .{HSTS...`v`[!.2 + 20b0: a0 0a 92 60 4b 49 4c 4c a4 0a 00 70 0a 80 48 53 ...`KILL...p..HS + 20c0: 54 53 75 61 a0 0f 94 87 6a 61 70 83 88 6a 61 00 TSua....jap..ja. + 20d0: 48 42 44 52 a0 13 43 4f 4d 50 7d 48 53 54 53 0a HBDR..COMP}HSTS. + 20e0: ff 48 53 54 53 a4 0a 01 a4 0a 00 14 48 0d 53 42 .HSTS.......H.SB + 20f0: 4c 52 0b 08 54 42 55 46 11 04 0b 00 01 a0 08 53 LR..TBUF.......S + 2100: 54 52 54 a4 0a 00 70 6a 49 32 43 45 70 0a bf 48 TRT...pjI2CEp..H + 2110: 53 54 53 70 7d 68 0a 01 00 54 58 53 41 70 69 48 STSp}h...TXSApiH + 2120: 43 4f 4d 70 0a 54 48 43 4f 4e 70 0b a0 0f 60 a2 COMp.THCONp...`. + 2130: 12 90 92 7b 48 53 54 53 0a 80 00 60 76 60 5b 21 ...{HSTS...`v`[! + 2140: 0a 32 a0 0a 92 60 4b 49 4c 4c a4 0a 00 70 44 41 .2...`KILL...pDA + 2150: 54 30 88 54 42 55 46 0a 00 00 70 0a 80 48 53 54 T0.TBUF...p..HST + 2160: 53 70 0a 01 61 a2 45 04 95 61 83 88 54 42 55 46 Sp..a.E..a..TBUF + 2170: 0a 00 00 70 0b a0 0f 60 a2 12 90 92 7b 48 53 54 ...p...`....{HST + 2180: 53 0a 80 00 60 76 60 5b 21 0a 32 a0 0a 92 60 4b S...`v`[!.2...`K + 2190: 49 4c 4c a4 0a 00 70 48 42 44 52 88 54 42 55 46 ILL...pHBDR.TBUF + 21a0: 61 00 70 0a 80 48 53 54 53 75 61 a0 15 43 4f 4d a.p..HSTSua..COM + 21b0: 50 7d 48 53 54 53 0a ff 48 53 54 53 a4 54 42 55 P}HSTS..HSTS.TBU + 21c0: 46 a4 0a 00 14 47 05 53 54 52 54 08 70 0a c8 60 F....G.STRT.p..` + 21d0: a2 21 60 a0 18 7b 48 53 54 53 0a 40 00 76 60 5b .!`..{HSTS.@.v`[ + 21e0: 22 0a 01 a0 08 93 60 0a 00 a4 0a 01 a1 05 70 0a ".....`.......p. + 21f0: 00 60 70 0b a0 0f 60 a2 21 60 a0 19 7b 48 53 54 .`p...`.!`..{HST + 2200: 53 0a 01 00 76 60 5b 21 0a 32 a0 09 93 60 0a 00 S...v`[!.2...`.. + 2210: 4b 49 4c 4c a1 04 a4 0a 00 a4 0a 01 14 30 43 4f KILL.........0CO + 2220: 4d 50 08 70 0b a0 0f 60 a2 21 60 a0 0c 7b 48 53 MP.p...`.!`..{HS + 2230: 54 53 0a 02 00 a4 0a 01 a1 11 76 60 5b 21 0a 32 TS........v`[!.2 + 2240: a0 09 93 60 0a 00 4b 49 4c 4c a4 0a 00 14 1c 4b ...`..KILL.....K + 2250: 49 4c 4c 08 7d 48 43 4f 4e 0a 02 48 43 4f 4e 7d ILL.}HCON..HCON} + 2260: 48 53 54 53 0a ff 48 53 54 53 5b 82 4f 04 48 44 HSTS..HSTS[.O.HD + 2270: 45 46 08 5f 41 44 52 0c 00 00 1b 00 5b 80 48 44 EF._ADR.....[.HD + 2280: 41 52 02 0a 4c 0a 10 5b 81 22 48 44 41 52 02 44 AR..L..[."HDAR.D + 2290: 43 4b 41 01 00 07 44 43 4b 4d 01 00 06 44 43 4b CKA...DCKM...DCK + 22a0: 53 01 00 30 00 0f 50 4d 45 53 01 14 0f 5f 50 52 S..0..PMES..._PR + 22b0: 57 00 a4 47 50 52 57 0a 0d 0a 04 5b 82 1f 47 4c W..GPRW....[..GL + 22c0: 41 4e 08 5f 41 44 52 0c 00 00 19 00 14 0f 5f 50 AN._ADR......._P + 22d0: 52 57 00 a4 47 50 52 57 0a 0d 0a 04 5b 82 44 ec RW..GPRW....[.D. + 22e0: 53 42 52 47 08 5f 41 44 52 0c 00 00 1f 00 10 46 SBRG._ADR......F + 22f0: 5a 5c 5f 53 42 5f 5b 80 5c 2f 04 5f 53 42 5f 50 Z\_SB_[.\/._SB_P + 2300: 43 49 30 53 42 52 47 4c 50 43 31 02 0a 40 0a c0 CI0SBRGLPC1..@.. + 2310: 5b 81 43 04 5c 2f 04 5f 53 42 5f 50 43 49 30 53 [.C.\/._SB_PCI0S + 2320: 42 52 47 4c 50 43 31 00 00 40 10 50 41 52 43 08 BRGLPC1..@.PARC. + 2330: 50 42 52 43 08 50 43 52 43 08 50 44 52 43 08 00 PBRC.PCRC.PDRC.. + 2340: 20 50 45 52 43 08 50 46 52 43 08 50 47 52 43 08 PERC.PFRC.PGRC. + 2350: 50 48 52 43 08 5b 82 46 0a 4c 4e 4b 41 08 5f 48 PHRC.[.F.LNKA._H + 2360: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 01 14 11 ID.A...._UID.... + 2370: 5f 44 49 53 08 7d 50 41 52 43 0a 80 50 41 52 43 _DIS.}PARC..PARC + 2380: 14 0b 5f 50 52 53 08 a4 50 52 53 41 14 3a 5f 43 .._PRS..PRSA.:_C + 2390: 52 53 08 08 52 54 4c 41 11 09 0a 06 23 00 00 18 RS..RTLA....#... + 23a0: 79 00 8b 52 54 4c 41 0a 01 49 52 51 30 70 00 49 y..RTLA..IRQ0p.I + 23b0: 52 51 30 79 0a 01 7b 50 41 52 43 0a 0f 00 49 52 RQ0y..{PARC...IR + 23c0: 51 30 a4 52 54 4c 41 14 1c 5f 53 52 53 09 8b 68 Q0.RTLA.._SRS..h + 23d0: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 ..IRQ0.IRQ0`v`p` + 23e0: 50 41 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 41 PARC.._STA...{PA + 23f0: 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 46 RC...........[.F + 2400: 0a 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKB._HID.A.... + 2410: 5f 55 49 44 0a 02 14 11 5f 44 49 53 08 7d 50 42 _UID...._DIS.}PB + 2420: 52 43 0a 80 50 42 52 43 14 0b 5f 50 52 53 08 a4 RC..PBRC.._PRS.. + 2430: 50 52 53 42 14 3a 5f 43 52 53 08 08 52 54 4c 42 PRSB.:_CRS..RTLB + 2440: 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c 42 0a ....#...y..RTLB. + 2450: 01 49 52 51 30 70 00 49 52 51 30 79 0a 01 7b 50 .IRQ0p.IRQ0y..{P + 2460: 42 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 42 14 BRC...IRQ0.RTLB. + 2470: 1c 5f 53 52 53 09 8b 68 0a 01 49 52 51 30 82 49 ._SRS..h..IRQ0.I + 2480: 52 51 30 60 76 60 70 60 50 42 52 43 14 18 5f 53 RQ0`v`p`PBRC.._S + 2490: 54 41 08 a0 0c 7b 50 42 52 43 0a 80 00 a4 0a 09 TA...{PBRC...... + 24a0: a1 04 a4 0a 0b 5b 82 46 0a 4c 4e 4b 43 08 5f 48 .....[.F.LNKC._H + 24b0: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 03 14 11 ID.A...._UID.... + 24c0: 5f 44 49 53 08 7d 50 43 52 43 0a 80 50 43 52 43 _DIS.}PCRC..PCRC + 24d0: 14 0b 5f 50 52 53 08 a4 50 52 53 43 14 3a 5f 43 .._PRS..PRSC.:_C + 24e0: 52 53 08 08 52 54 4c 43 11 09 0a 06 23 00 00 18 RS..RTLC....#... + 24f0: 79 00 8b 52 54 4c 43 0a 01 49 52 51 30 70 00 49 y..RTLC..IRQ0p.I + 2500: 52 51 30 79 0a 01 7b 50 43 52 43 0a 0f 00 49 52 RQ0y..{PCRC...IR + 2510: 51 30 a4 52 54 4c 43 14 1c 5f 53 52 53 09 8b 68 Q0.RTLC.._SRS..h + 2520: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 ..IRQ0.IRQ0`v`p` + 2530: 50 43 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 43 PCRC.._STA...{PC + 2540: 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 46 RC...........[.F + 2550: 0a 4c 4e 4b 44 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKD._HID.A.... + 2560: 5f 55 49 44 0a 04 14 11 5f 44 49 53 08 7d 50 44 _UID...._DIS.}PD + 2570: 52 43 0a 80 50 44 52 43 14 0b 5f 50 52 53 08 a4 RC..PDRC.._PRS.. + 2580: 50 52 53 44 14 3a 5f 43 52 53 08 08 52 54 4c 44 PRSD.:_CRS..RTLD + 2590: 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c 44 0a ....#...y..RTLD. + 25a0: 01 49 52 51 30 70 00 49 52 51 30 79 0a 01 7b 50 .IRQ0p.IRQ0y..{P + 25b0: 44 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 44 14 DRC...IRQ0.RTLD. + 25c0: 1c 5f 53 52 53 09 8b 68 0a 01 49 52 51 30 82 49 ._SRS..h..IRQ0.I + 25d0: 52 51 30 60 76 60 70 60 50 44 52 43 14 18 5f 53 RQ0`v`p`PDRC.._S + 25e0: 54 41 08 a0 0c 7b 50 44 52 43 0a 80 00 a4 0a 09 TA...{PDRC...... + 25f0: a1 04 a4 0a 0b 5b 82 46 0a 4c 4e 4b 45 08 5f 48 .....[.F.LNKE._H + 2600: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 05 14 11 ID.A...._UID.... + 2610: 5f 44 49 53 08 7d 50 45 52 43 0a 80 50 45 52 43 _DIS.}PERC..PERC + 2620: 14 0b 5f 50 52 53 08 a4 50 52 53 45 14 3a 5f 43 .._PRS..PRSE.:_C + 2630: 52 53 08 08 52 54 4c 45 11 09 0a 06 23 00 00 18 RS..RTLE....#... + 2640: 79 00 8b 52 54 4c 45 0a 01 49 52 51 30 70 00 49 y..RTLE..IRQ0p.I + 2650: 52 51 30 79 0a 01 7b 50 45 52 43 0a 0f 00 49 52 RQ0y..{PERC...IR + 2660: 51 30 a4 52 54 4c 45 14 1c 5f 53 52 53 09 8b 68 Q0.RTLE.._SRS..h + 2670: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 ..IRQ0.IRQ0`v`p` + 2680: 50 45 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 45 PERC.._STA...{PE + 2690: 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 46 RC...........[.F + 26a0: 0a 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKF._HID.A.... + 26b0: 5f 55 49 44 0a 06 14 11 5f 44 49 53 08 7d 50 46 _UID...._DIS.}PF + 26c0: 52 43 0a 80 50 46 52 43 14 0b 5f 50 52 53 08 a4 RC..PFRC.._PRS.. + 26d0: 50 52 53 46 14 3a 5f 43 52 53 08 08 52 54 4c 46 PRSF.:_CRS..RTLF + 26e0: 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c 46 0a ....#...y..RTLF. + 26f0: 01 49 52 51 30 70 00 49 52 51 30 79 0a 01 7b 50 .IRQ0p.IRQ0y..{P + 2700: 46 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 46 14 FRC...IRQ0.RTLF. + 2710: 1c 5f 53 52 53 09 8b 68 0a 01 49 52 51 30 82 49 ._SRS..h..IRQ0.I + 2720: 52 51 30 60 76 60 70 60 50 46 52 43 14 18 5f 53 RQ0`v`p`PFRC.._S + 2730: 54 41 08 a0 0c 7b 50 46 52 43 0a 80 00 a4 0a 09 TA...{PFRC...... + 2740: a1 04 a4 0a 0b 5b 82 46 0a 4c 4e 4b 47 08 5f 48 .....[.F.LNKG._H + 2750: 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 11 ID.A...._UID.... + 2760: 5f 44 49 53 08 7d 50 47 52 43 0a 80 50 47 52 43 _DIS.}PGRC..PGRC + 2770: 14 0b 5f 50 52 53 08 a4 50 52 53 47 14 3a 5f 43 .._PRS..PRSG.:_C + 2780: 52 53 08 08 52 54 4c 47 11 09 0a 06 23 00 00 18 RS..RTLG....#... + 2790: 79 00 8b 52 54 4c 47 0a 01 49 52 51 30 70 00 49 y..RTLG..IRQ0p.I + 27a0: 52 51 30 79 0a 01 7b 50 47 52 43 0a 0f 00 49 52 RQ0y..{PGRC...IR + 27b0: 51 30 a4 52 54 4c 47 14 1c 5f 53 52 53 09 8b 68 Q0.RTLG.._SRS..h + 27c0: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 ..IRQ0.IRQ0`v`p` + 27d0: 50 47 52 43 14 18 5f 53 54 41 08 a0 0c 7b 50 47 PGRC.._STA...{PG + 27e0: 52 43 0a 80 00 a4 0a 09 a1 04 a4 0a 0b 5b 82 46 RC...........[.F + 27f0: 0a 4c 4e 4b 48 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKH._HID.A.... + 2800: 5f 55 49 44 0a 08 14 11 5f 44 49 53 08 7d 50 48 _UID...._DIS.}PH + 2810: 52 43 0a 80 50 48 52 43 14 0b 5f 50 52 53 08 a4 RC..PHRC.._PRS.. + 2820: 50 52 53 48 14 3a 5f 43 52 53 08 08 52 54 4c 48 PRSH.:_CRS..RTLH + 2830: 11 09 0a 06 23 00 00 18 79 00 8b 52 54 4c 48 0a ....#...y..RTLH. + 2840: 01 49 52 51 30 70 00 49 52 51 30 79 0a 01 7b 50 .IRQ0p.IRQ0y..{P + 2850: 48 52 43 0a 0f 00 49 52 51 30 a4 52 54 4c 48 14 HRC...IRQ0.RTLH. + 2860: 1c 5f 53 52 53 09 8b 68 0a 01 49 52 51 30 82 49 ._SRS..h..IRQ0.I + 2870: 52 51 30 60 76 60 70 60 50 48 52 43 14 18 5f 53 RQ0`v`p`PHRC.._S + 2880: 54 41 08 a0 0c 7b 50 48 52 43 0a 80 00 a4 0a 09 TA...{PHRC...... + 2890: a1 04 a4 0a 0b 5b 80 4c 50 43 30 02 0a 40 0a c0 .....[.LPC0..@.. + 28a0: 5b 81 22 4c 50 43 30 00 00 40 20 49 4f 44 30 08 [."LPC0..@ IOD0. + 28b0: 49 4f 44 31 08 00 40 37 52 41 45 4e 01 00 0d 52 IOD1..@7RAEN...R + 28c0: 43 42 41 12 5b 82 3d 44 4d 41 43 08 5f 48 49 44 CBA.[.=DMAC._HID + 28d0: 0c 41 d0 02 00 08 5f 43 52 53 11 28 0a 25 47 01 .A...._CRS.(.%G. + 28e0: 00 00 00 00 01 20 47 01 81 00 81 00 01 11 47 01 ..... G.......G. + 28f0: 93 00 93 00 01 0d 47 01 c0 00 c0 00 01 20 2a 10 ......G...... *. + 2900: 01 79 00 5b 82 26 46 57 48 44 08 5f 48 49 44 0c .y.[.&FWHD._HID. + 2910: 25 d4 08 00 08 5f 43 52 53 11 11 0a 0e 86 09 00 %...._CRS....... + 2920: 00 00 00 00 ff 00 00 00 01 79 00 5b 82 4f 0a 48 .........y.[.O.H + 2930: 50 45 54 08 5f 48 49 44 0c 41 d0 01 03 08 5f 55 PET._HID.A...._U + 2940: 49 44 0a 00 08 42 55 46 30 11 11 0a 0e 86 09 00 ID...BUF0....... + 2950: 01 00 00 d0 fe 00 04 00 00 79 00 14 28 5f 53 54 .........y..(_ST + 2960: 41 00 a0 13 92 95 4f 53 59 53 0b d1 07 a0 08 48 A.....OSYS.....H + 2970: 50 41 45 a4 0a 0f a1 0a a0 08 48 50 41 45 a4 0a PAE.......HPAE.. + 2980: 0b a4 0a 00 14 47 05 5f 43 52 53 08 a0 4a 04 48 .....G._CRS..J.H + 2990: 50 41 45 8a 42 55 46 30 0a 04 48 50 54 30 a0 12 PAE.BUF0..HPT0.. + 29a0: 93 48 50 41 53 0a 01 70 0c 00 10 d0 fe 48 50 54 .HPAS..p.....HPT + 29b0: 30 a0 12 93 48 50 41 53 0a 02 70 0c 00 20 d0 fe 0...HPAS..p.. .. + 29c0: 48 50 54 30 a0 12 93 48 50 41 53 0a 03 70 0c 00 HPT0...HPAS..p.. + 29d0: 30 d0 fe 48 50 54 30 a4 42 55 46 30 5b 82 45 0a 0..HPT0.BUF0[.E. + 29e0: 49 50 49 43 08 5f 48 49 44 0b 41 d0 08 5f 43 52 IPIC._HID.A.._CR + 29f0: 53 11 41 09 0a 8d 47 01 20 00 20 00 01 02 47 01 S.A...G. . ...G. + 2a00: 24 00 24 00 01 02 47 01 28 00 28 00 01 02 47 01 $.$...G.(.(...G. + 2a10: 2c 00 2c 00 01 02 47 01 30 00 30 00 01 02 47 01 ,.,...G.0.0...G. + 2a20: 34 00 34 00 01 02 47 01 38 00 38 00 01 02 47 01 4.4...G.8.8...G. + 2a30: 3c 00 3c 00 01 02 47 01 a0 00 a0 00 01 02 47 01 <.<...G.......G. + 2a40: a4 00 a4 00 01 02 47 01 a8 00 a8 00 01 02 47 01 ......G.......G. + 2a50: ac 00 ac 00 01 02 47 01 b0 00 b0 00 01 02 47 01 ......G.......G. + 2a60: b4 00 b4 00 01 02 47 01 b8 00 b8 00 01 02 47 01 ......G.......G. + 2a70: bc 00 bc 00 01 02 47 01 d0 04 d0 04 01 02 22 04 ......G.......". + 2a80: 00 79 00 5b 82 25 4d 41 54 48 08 5f 48 49 44 0c .y.[.%MATH._HID. + 2a90: 41 d0 0c 04 08 5f 43 52 53 11 10 0a 0d 47 01 f0 A...._CRS....G.. + 2aa0: 00 f0 00 01 01 22 00 20 79 00 5b 82 43 1e 4c 44 .....". y.[.C.LD + 2ab0: 52 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 49 RC._HID.A...._UI + 2ac0: 44 0a 02 08 42 55 46 30 11 4e 08 0a 8a 47 01 2e D...BUF0.N...G.. + 2ad0: 00 2e 00 01 02 47 01 4e 00 4e 00 01 02 47 01 61 .....G.N.N...G.a + 2ae0: 00 61 00 01 01 47 01 63 00 63 00 01 01 47 01 65 .a...G.c.c...G.e + 2af0: 00 65 00 01 01 47 01 67 00 67 00 01 01 47 01 70 .e...G.g.g...G.p + 2b00: 00 70 00 01 01 47 01 80 00 80 00 01 01 47 01 92 .p...G.......G.. + 2b10: 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 80 .....G.......G.. + 2b20: 06 80 06 01 20 47 01 ff ff ff ff 01 01 47 01 ff .... G.......G.. + 2b30: ff ff ff 01 01 47 01 ff ff ff ff 01 01 47 01 00 .....G.......G.. + 2b40: 04 00 04 01 80 47 01 00 05 00 05 01 80 47 01 4e .....G.......G.N + 2b50: 16 4e 16 01 02 79 00 08 42 55 46 31 11 46 09 0a .N...y..BUF1.F.. + 2b60: 92 47 01 2e 00 2e 00 01 02 47 01 4e 00 4e 00 01 .G.......G.N.N.. + 2b70: 02 47 01 61 00 61 00 01 01 47 01 63 00 63 00 01 .G.a.a...G.c.c.. + 2b80: 01 47 01 65 00 65 00 01 01 47 01 67 00 67 00 01 .G.e.e...G.g.g.. + 2b90: 01 47 01 70 00 70 00 01 01 47 01 80 00 80 00 01 .G.p.p...G...... + 2ba0: 01 47 01 92 00 92 00 01 01 47 01 b2 00 b2 00 01 .G.......G...... + 2bb0: 02 47 01 80 06 80 06 01 20 47 01 ff ff ff ff 01 .G...... G...... + 2bc0: 01 47 01 ff ff ff ff 01 01 47 01 ff ff ff ff 01 .G.......G...... + 2bd0: 01 47 01 00 04 00 04 01 54 47 01 58 04 58 04 01 .G......TG.X.X.. + 2be0: 28 47 01 00 05 00 05 01 80 47 01 4e 16 4e 16 01 (G.......G.N.N.. + 2bf0: 02 79 00 08 5f 43 52 53 11 46 09 0a 92 47 01 2e .y.._CRS.F...G.. + 2c00: 00 2e 00 01 02 47 01 4e 00 4e 00 01 02 47 01 61 .....G.N.N...G.a + 2c10: 00 61 00 01 01 47 01 63 00 63 00 01 01 47 01 65 .a...G.c.c...G.e + 2c20: 00 65 00 01 01 47 01 67 00 67 00 01 01 47 01 70 .e...G.g.g...G.p + 2c30: 00 70 00 01 01 47 01 80 00 80 00 01 01 47 01 92 .p...G.......G.. + 2c40: 00 92 00 01 01 47 01 b2 00 b2 00 01 02 47 01 80 .....G.......G.. + 2c50: 06 80 06 01 20 47 01 00 10 00 10 01 10 47 01 ff .... G.......G.. + 2c60: ff ff ff 01 01 47 01 ff ff ff ff 01 01 47 01 00 .....G.......G.. + 2c70: 04 00 04 01 54 47 01 58 04 58 04 01 28 47 01 00 ....TG.X.X..(G.. + 2c80: 05 00 05 01 80 47 01 4e 16 4e 16 01 02 79 00 5b .....G.N.N...y.[ + 2c90: 82 25 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b 00 .%RTC_._HID.A... + 2ca0: 08 5f 43 52 53 11 10 0a 0d 47 01 70 00 70 00 01 ._CRS....G.p.p.. + 2cb0: 08 22 00 01 79 00 5b 82 2d 54 49 4d 52 08 5f 48 ."..y.[.-TIMR._H + 2cc0: 49 44 0c 41 d0 01 00 08 5f 43 52 53 11 18 0a 15 ID.A...._CRS.... + 2cd0: 47 01 40 00 40 00 01 04 47 01 50 00 50 00 10 04 G.@.@...G.P.P... + 2ce0: 22 01 00 79 00 5b 82 43 04 43 57 44 54 08 5f 48 "..y.[.C.CWDT._H + 2cf0: 49 44 0c 25 d4 3f 0d 08 5f 43 49 44 0c 41 d0 0c ID.%.?.._CID.A.. + 2d00: 02 08 42 55 46 30 11 0d 0a 0a 47 01 54 04 54 04 ..BUF0....G.T.T. + 2d10: 04 04 79 00 14 09 5f 53 54 41 08 a4 0a 0f 14 0b ..y..._STA...... + 2d20: 5f 43 52 53 08 a4 42 55 46 30 5b 82 40 31 41 44 _CRS..BUF0[.@1AD + 2d30: 42 47 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 49 BG._HID.A...._UI + 2d40: 44 0a 13 08 43 52 53 31 11 0d 0a 0a 47 01 40 02 D...CRS1....G.@. + 2d50: 40 02 01 1a 79 00 5b 80 44 42 47 43 01 0b 59 02 @...y.[.DBGC..Y. + 2d60: 0a 10 5b 81 0b 44 42 47 43 11 44 42 47 50 08 5b ..[..DBGC.DBGP.[ + 2d70: 80 44 42 50 50 01 0b 50 02 0a 02 5b 81 10 44 42 .DBPP..P...[..DB + 2d80: 50 50 11 50 50 44 54 08 50 50 53 54 08 5b 80 44 PP.PPDT.PPST.[.D + 2d90: 42 38 30 01 0a 80 0a 01 5b 81 0b 44 42 38 30 11 B80.....[..DB80. + 2da0: 44 50 38 30 08 14 0b 5f 43 52 53 00 a4 43 52 53 DP80..._CRS..CRS + 2db0: 31 14 0d 43 41 4c 4c 08 5c 49 53 4d 49 0a 96 14 1..CALL.\ISMI... + 2dc0: 4d 0b 50 55 54 44 09 7d 7b 68 0a 0f 00 0a 10 60 M.PUTD.}{h.....` + 2dd0: 7b 7a 68 0a 04 00 0a 0f 61 7b 80 61 00 0a 0f 62 {zh.....a{.a...b + 2de0: 70 0b ff 3f 64 70 60 50 50 44 54 70 7a 7f 50 50 p..?dp`PPDTpz.PP + 2df0: 53 54 0a 80 00 0a 03 00 63 a2 20 90 92 93 63 0a ST......c. ...c. + 2e00: 10 92 93 64 0a 00 70 7a 7f 50 50 53 54 0a 80 00 ...d..pz.PPST... + 2e10: 0a 03 00 63 76 64 5b 21 0a 1e a0 0f 93 64 0a 00 ...cvd[!.....d.. + 2e20: 70 0a 00 50 50 44 54 a4 0a 00 70 0b ff 3f 64 70 p..PPDT...p..?dp + 2e30: 61 50 50 44 54 70 7a 7f 50 50 53 54 0a 80 00 0a aPPDTpz.PPST.... + 2e40: 03 00 63 a2 20 90 92 93 63 0a 00 92 93 64 0a 00 ..c. ...c....d.. + 2e50: 70 7a 7f 50 50 53 54 0a 80 00 0a 03 00 63 76 64 pz.PPST......cvd + 2e60: 5b 21 0a 1e a0 0f 93 64 0a 00 70 0a 00 50 50 44 [!.....d..p..PPD + 2e70: 54 a4 0a 00 70 62 50 50 44 54 a4 0a 01 14 48 08 T...pbPPDT....H. + 2e80: 4f 55 54 53 09 a0 4b 07 92 93 5c 2f 05 5f 53 42 OUTS..K...\/._SB + 2e90: 5f 50 43 49 30 53 42 52 47 41 44 42 47 44 42 47 _PCI0SBRGADBGDBG + 2ea0: 50 0a ff 72 87 68 0a 01 60 70 0a 00 61 08 42 55 P..r.h..`p..a.BU + 2eb0: 46 46 11 02 60 70 68 42 55 46 46 74 60 0a 01 60 FF..`phBUFFt`..` + 2ec0: a0 0d 93 50 55 54 44 0a 53 0a 00 a4 0a 00 a2 29 ...PUTD.S......) + 2ed0: 92 93 83 88 42 55 46 46 61 00 0a 00 a0 19 93 50 ....BUFFa......P + 2ee0: 55 54 44 83 88 42 55 46 46 61 00 0a 00 50 55 54 UTD..BUFFa...PUT + 2ef0: 44 0a 00 a4 0a 00 75 61 50 55 54 44 0a 00 a4 0a D.....uaPUTD.... + 2f00: 01 a1 04 a4 0a 00 14 4d 09 4f 55 54 44 09 08 44 .......M.OUTD..D + 2f10: 45 43 5f 11 0e 0a 0b 30 31 32 33 34 35 36 37 38 EC_....012345678 + 2f20: 39 00 08 54 4d 50 5f 11 03 0a 0b 70 0a 00 60 70 9..TMP_....p..`p + 2f30: 68 61 a0 0c 93 61 0a 00 4f 55 54 53 0d 30 00 a1 ha...a..OUTS.0.. + 2f40: 44 06 a2 27 94 61 0a 00 78 61 0a 0a 62 61 70 83 D..'.a..xa..bap. + 2f50: 88 44 45 43 5f 62 00 88 54 4d 50 5f 60 00 75 60 .DEC_b..TMP_`.u` + 2f60: 70 0a 00 88 54 4d 50 5f 60 00 70 0a 00 62 76 60 p...TMP_`.p..bv` + 2f70: a2 2b 95 62 60 70 83 88 54 4d 50 5f 62 00 63 70 .+.b`p..TMP_b.cp + 2f80: 83 88 54 4d 50 5f 60 00 88 54 4d 50 5f 62 00 70 ..TMP_`..TMP_b.p + 2f90: 63 88 54 4d 50 5f 60 00 75 62 76 60 4f 55 54 53 c.TMP_`.ubv`OUTS + 2fa0: 54 4d 50 5f 14 47 09 4f 55 54 48 09 08 48 45 58 TMP_.G.OUTH..HEX + 2fb0: 5f 11 14 0a 11 30 31 32 33 34 35 36 37 38 39 41 _....0123456789A + 2fc0: 42 43 44 45 46 00 08 54 4d 50 5f 11 03 0a 0a 70 BCDEF..TMP_....p + 2fd0: 0a 00 60 70 68 61 a2 2b 95 60 0a 08 7b 61 0a 0f ..`pha.+.`..{a.. + 2fe0: 62 70 83 88 48 45 58 5f 62 00 88 54 4d 50 5f 60 bp..HEX_b..TMP_` + 2ff0: 00 7a 61 0a 04 61 75 60 70 0a 00 88 54 4d 50 5f .za..au`p...TMP_ + 3000: 60 00 70 0a 00 62 76 60 a2 2b 95 62 60 70 83 88 `.p..bv`.+.b`p.. + 3010: 54 4d 50 5f 62 00 63 70 83 88 54 4d 50 5f 60 00 TMP_b.cp..TMP_`. + 3020: 88 54 4d 50 5f 62 00 70 63 88 54 4d 50 5f 60 00 .TMP_b.pc.TMP_`. + 3030: 75 62 76 60 4f 55 54 53 54 4d 50 5f 5b 82 4e 0e ubv`OUTSTMP_[.N. + 3040: 50 53 32 4d 14 45 05 5f 48 49 44 00 a0 11 5c 2e PS2M.E._HID...\. + 3050: 5f 53 42 5f 53 59 4e 41 a4 0c 4f 2e 0a 06 a0 11 _SB_SYNA..O..... + 3060: 5c 2e 5f 53 42 5f 41 4c 50 53 a4 0c 06 a9 13 07 \._SB_ALPS...... + 3070: a0 11 5c 2e 5f 53 42 5f 45 4c 41 4e a4 0c 16 84 ..\._SB_ELAN.... + 3080: 01 01 a0 11 5c 2e 5f 53 42 5f 53 54 4c 43 a4 0c ....\._SB_STLC.. + 3090: 4e 8c c1 41 a4 0c 4f 2e 0a 06 08 5f 43 49 44 12 N..A..O...._CID. + 30a0: 1b 05 0c 4f 2e 0a 00 0c 4f 2e 00 02 0c 41 d0 0f ...O....O....A.. + 30b0: 03 0c 41 d0 0f 13 0c 41 d0 0f 12 14 21 5f 53 54 ..A....A....!_ST + 30c0: 41 00 79 0a 01 0a 0e 60 a0 0c 7b 5c 49 4f 53 54 A.y....`..{\IOST + 30d0: 60 00 a4 0a 0f a1 04 a4 0a 00 a4 0a 00 08 43 52 `.............CR + 30e0: 53 31 11 08 0a 05 22 00 10 79 00 08 43 52 53 32 S1...."..y..CRS2 + 30f0: 11 18 0a 15 47 01 60 00 60 00 00 01 47 01 64 00 ....G.`.`...G.d. + 3100: 64 00 00 01 22 00 10 79 00 14 22 5f 43 52 53 00 d..."..y.."_CRS. + 3110: 79 0a 01 0a 0a 60 a0 0e 7b 5c 49 4f 53 54 60 00 y....`..{\IOST`. + 3120: a4 43 52 53 31 a1 06 a4 43 52 53 32 5b 82 44 07 .CRS1...CRS2[.D. + 3130: 50 53 32 4b 08 5f 48 49 44 0c 41 d0 03 03 08 5f PS2K._HID.A...._ + 3140: 43 49 44 0c 41 d0 03 0b 14 1a 5f 53 54 41 00 a0 CID.A....._STA.. + 3150: 0e 7b 5c 49 4f 53 54 0b 00 04 00 a4 0a 0f a1 04 .{\IOST......... + 3160: a4 0a 00 08 5f 43 52 53 11 18 0a 15 47 01 60 00 ...._CRS....G.`. + 3170: 60 00 00 01 47 01 64 00 64 00 00 01 22 02 00 79 `...G.d.d..."..y + 3180: 00 08 5f 50 52 53 11 1b 0a 18 31 00 47 01 60 00 .._PRS....1.G.`. + 3190: 60 00 00 01 47 01 64 00 64 00 00 01 22 02 00 38 `...G.d.d..."..8 + 31a0: 79 00 5b 82 46 71 49 44 45 30 08 5f 41 44 52 0c y.[.FqIDE0._ADR. + 31b0: 02 00 1f 00 08 52 45 47 46 0a 01 14 12 5f 52 45 .....REGF...._RE + 31c0: 47 02 a0 0b 93 68 0a 02 70 69 52 45 47 46 5b 82 G....h..piREGF[. + 31d0: 49 04 43 48 4e 30 08 5f 41 44 52 0a 00 5b 82 1c I.CHN0._ADR..[.. + 31e0: 44 52 56 30 08 5f 41 44 52 0a 00 14 0f 5f 47 54 DRV0._ADR...._GT + 31f0: 46 00 a4 52 41 54 41 41 54 41 30 5b 82 1c 44 52 F..RATAATA0[..DR + 3200: 56 31 08 5f 41 44 52 0a 01 14 0f 5f 47 54 46 00 V1._ADR...._GTF. + 3210: a4 52 41 54 41 41 54 41 31 5b 82 49 04 43 48 4e .RATAATA1[.I.CHN + 3220: 31 08 5f 41 44 52 0a 01 5b 82 1c 44 52 56 30 08 1._ADR..[..DRV0. + 3230: 5f 41 44 52 0a 00 14 0f 5f 47 54 46 00 a4 52 41 _ADR...._GTF..RA + 3240: 54 41 41 54 41 32 5b 82 1c 44 52 56 31 08 5f 41 TAATA2[..DRV1._A + 3250: 44 52 0a 01 14 0f 5f 47 54 46 00 a4 52 41 54 41 DR...._GTF..RATA + 3260: 41 54 41 33 08 41 54 30 31 11 0a 0a 07 03 00 00 ATA3.AT01....... + 3270: 00 00 00 ef 08 41 54 30 32 11 0a 0a 07 00 00 00 .....AT02....... + 3280: 00 00 00 90 08 41 54 30 33 11 0a 0a 07 00 00 00 .....AT03....... + 3290: 00 00 00 c6 08 41 54 30 34 11 0a 0a 07 00 00 00 .....AT04....... + 32a0: 00 00 00 91 08 41 54 30 35 11 0a 0a 07 00 00 00 .....AT05....... + 32b0: 00 00 00 f5 08 41 54 30 36 11 0a 0a 07 10 03 00 .....AT06....... + 32c0: 00 00 00 ef 08 41 54 36 31 11 0a 0a 07 90 03 00 .....AT61....... + 32d0: 00 00 00 ef 08 41 54 30 37 11 0a 0a 07 10 06 00 .....AT07....... + 32e0: 00 00 00 ef 08 41 54 30 38 11 0a 0a 07 41 00 00 .....AT08....A.. + 32f0: 00 00 00 ef 08 41 54 38 31 11 0a 0a 07 c1 00 00 .....AT81....... + 3300: 00 00 00 ef 08 41 54 30 39 11 0a 0a 07 90 05 00 .....AT09....... + 3310: 00 00 00 ef 08 41 54 41 30 11 03 0a 32 08 41 54 .....ATA0...2.AT + 3320: 41 31 11 03 0a 32 08 41 54 41 32 11 03 0a 32 08 A1...2.ATA2...2. + 3330: 41 54 41 33 11 03 0a 32 08 41 54 41 42 11 03 0a ATA3...2.ATAB... + 3340: 32 8c 41 54 41 42 0a 00 43 4d 44 43 14 4c 05 47 2.ATAB..CMDC.L.G + 3350: 54 46 42 0b 77 43 4d 44 43 0a 38 60 72 60 0a 08 TFB.wCMDC.8`r`.. + 3360: 61 5b 13 41 54 41 42 61 0a 38 43 4d 44 58 77 43 a[.ATABa.8CMDXwC + 3370: 4d 44 43 0a 07 60 8c 41 54 41 42 72 60 0a 02 00 MDC..`.ATABr`... + 3380: 41 30 30 31 8c 41 54 41 42 72 60 0a 06 00 41 30 A001.ATABr`...A0 + 3390: 30 35 70 68 43 4d 44 58 70 69 41 30 30 31 70 6a 05phCMDXpiA001pj + 33a0: 41 30 30 35 75 43 4d 44 43 14 41 1f 47 54 46 5f A005uCMDC.A.GTF_ + 33b0: 0a 70 69 5b 31 70 0a 00 43 4d 44 43 08 49 44 30 .pi[1p..CMDC.ID0 + 33c0: 30 0a 00 08 49 44 34 39 0b 00 0c 08 49 44 35 39 0...ID49....ID59 + 33d0: 0a 00 08 49 44 35 33 0a 04 08 49 44 36 33 0b 00 ...ID53...ID63.. + 33e0: 0f 08 49 44 38 38 0b 00 0f 08 49 44 37 38 0a 00 ..ID88....ID78.. + 33f0: 08 57 31 32 38 0a 00 08 57 31 31 39 0a 00 08 57 .W128...W119...W + 3400: 31 32 30 0a 00 08 49 52 44 59 0a 01 08 50 49 4f 120...IRDY...PIO + 3410: 54 0a 00 08 44 4d 41 54 0a 00 a0 43 0b 93 87 69 T...DMAT...C...i + 3420: 0b 00 02 8b 69 0a 00 49 57 30 30 70 49 57 30 30 ....i..IW00pIW00 + 3430: 49 44 30 30 8b 69 0a 62 49 57 34 39 70 49 57 34 ID00.i.bIW49pIW4 + 3440: 39 49 44 34 39 8b 69 0a 6a 49 57 35 33 70 49 57 9ID49.i.jIW53pIW + 3450: 35 33 49 44 35 33 8b 69 0a 7e 49 57 36 33 70 49 53ID53.i.~IW63pI + 3460: 57 36 33 49 44 36 33 8b 69 0a 76 49 57 35 39 70 W63ID63.i.vIW59p + 3470: 49 57 35 39 49 44 35 39 8b 69 0a b0 49 57 38 38 IW59ID59.i..IW88 + 3480: 70 49 57 38 38 49 44 38 38 8b 69 0a 9c 49 57 37 pIW88ID88.i..IW7 + 3490: 38 70 49 57 37 38 49 44 37 38 8b 69 0b 00 01 49 8pIW78ID78.i...I + 34a0: 31 32 38 70 49 31 32 38 57 31 32 38 8b 69 0a ee 128pI128W128.i.. + 34b0: 49 31 31 39 70 49 31 31 39 57 31 31 39 8b 69 0a I119pI119W119.i. + 34c0: f0 49 31 32 30 70 49 31 32 30 57 31 32 30 70 0a .I120pI120W120p. + 34d0: a0 67 a0 06 68 70 0a b0 67 a0 24 90 7b 49 44 35 .g..hp..g.$.{ID5 + 34e0: 39 0b 00 01 00 7b 49 44 35 39 0a ff 00 47 54 46 9....{ID59...GTF + 34f0: 42 41 54 30 33 7b 49 44 35 39 0a ff 00 67 a0 40 BAT03{ID59...g.@ + 3500: 09 93 67 0a a0 a0 14 7b 57 31 32 38 0a 01 00 47 ..g....{W128...G + 3510: 54 46 42 41 54 30 35 0a 00 67 a0 14 7b 49 44 37 TFBAT05..g..{ID7 + 3520: 38 0a 40 00 47 54 46 42 41 54 30 37 0a 06 67 a0 8.@.GTFBAT07..g. + 3530: 2d 7b 49 44 37 38 0a 08 00 a0 16 5c 2e 5f 53 42 -{ID78.....\._SB + 3540: 5f 4c 44 46 54 47 54 46 42 41 54 30 36 0a 03 67 _LDFTGTFBAT06..g + 3550: a1 0c 47 54 46 42 41 54 36 31 0a 03 67 a0 31 7b ..GTFBAT61..g.1{ + 3560: 57 31 31 39 0a 20 00 a0 1a 7b 5c 2e 5f 53 42 5f W119. ...{\._SB_ + 3570: 48 44 44 46 0a 01 00 47 54 46 42 41 54 30 38 0a HDDF...GTFBAT08. + 3580: 00 67 a1 0c 47 54 46 42 41 54 38 31 0a 00 67 70 .g..GTFBAT81..gp + 3590: 41 54 41 42 5b 31 a4 41 54 41 42 14 2c 52 41 54 ATAB[1.ATAB.,RAT + 35a0: 41 01 8c 68 0a 00 43 4d 44 4e 77 43 4d 44 4e 0a A..h..CMDNwCMDN. + 35b0: 38 60 5b 13 68 0a 08 60 52 45 54 42 70 52 45 54 8`[.h..`RETBpRET + 35c0: 42 5b 31 a4 52 45 54 42 08 41 54 50 30 11 03 0a B[1.RETB.ATP0... + 35d0: 32 5b 82 30 50 52 54 30 08 5f 41 44 52 0b ff ff 2[.0PRT0._ADR... + 35e0: 14 12 5f 53 44 44 01 70 41 47 54 46 0a 00 68 41 .._SDD.pAGTF..hA + 35f0: 54 50 30 14 0f 5f 47 54 46 00 a4 52 41 54 41 41 TP0.._GTF..RATAA + 3600: 54 50 30 08 41 54 50 32 11 03 0a 32 5b 82 40 1e TP0.ATP2...2[.@. + 3610: 50 52 54 32 08 5f 41 44 52 0c ff ff 02 00 08 4f PRT2._ADR......O + 3620: 46 4c 47 0a 01 14 12 5f 53 44 44 01 70 41 47 54 FLG...._SDD.pAGT + 3630: 46 0a 00 68 41 54 50 32 14 0f 5f 47 54 46 00 a4 F..hATP2.._GTF.. + 3640: 52 41 54 41 41 54 50 32 14 45 1a 5f 44 53 4d 0c RATAATP2.E._DSM. + 3650: 08 5f 54 5f 31 00 08 5f 54 5f 30 00 a0 4c 18 93 ._T_1.._T_0..L.. + 3660: 68 11 13 0a 10 30 ef fa bd bb ae de 11 8a 39 08 h....0........9. + 3670: 00 20 0c 9a 66 a2 43 17 01 70 99 6a 00 5f 54 5f . ..f.C..p.j._T_ + 3680: 30 a0 2b 93 5f 54 5f 30 0a 00 a2 22 01 70 99 69 0.+._T_0...".p.i + 3690: 00 5f 54 5f 31 a0 0e 93 5f 54 5f 31 0a 01 a4 11 ._T_1..._T_1.... + 36a0: 04 0a 01 0f a1 07 a4 11 04 0a 01 00 a5 a1 4a 13 ..............J. + 36b0: a0 0b 93 5f 54 5f 30 0a 01 a4 0a 01 a1 4b 12 a0 ..._T_0......K.. + 36c0: 4c 0a 93 5f 54 5f 30 0a 02 70 5c 2f 04 5f 53 42 L.._T_0..p\/._SB + 36d0: 5f 50 43 49 30 53 42 52 47 47 50 4c 4b 66 70 0a _PCI0SBRGGPLKfp. + 36e0: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + 36f0: 47 50 4c 4b 70 0a 00 47 50 45 33 70 0a 01 47 50 GPLKp..GPE3p..GP + 3700: 53 33 70 0a 00 4f 46 4c 47 a0 17 93 7b 47 4c 30 S3p..OFLG...{GL0 + 3710: 30 0a 08 00 0a 08 7d 47 49 56 30 0a 08 47 49 56 0.....}GIV0..GIV + 3720: 30 a1 0c 7b 47 49 56 30 0a f7 47 49 56 30 7d 5c 0..{GIV0..GIV0}\ + 3730: 47 4c 30 38 0a 10 5c 47 4c 30 38 5b 22 0a c8 70 GL08..\GL08["..p + 3740: 0a 01 4f 46 4c 47 70 0a 01 47 50 53 33 70 0a 01 ..OFLGp..GPS3p.. + 3750: 47 50 45 33 70 66 5c 2f 04 5f 53 42 5f 50 43 49 GPE3pf\/._SB_PCI + 3760: 30 53 42 52 47 47 50 4c 4b a4 0a 01 a1 4b 07 a0 0SBRGGPLK....K.. + 3770: 43 07 93 5f 54 5f 30 0a 03 a0 44 06 4f 46 4c 47 C.._T_0...D.OFLG + 3780: 70 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 p\/._SB_PCI0SBRG + 3790: 47 50 4c 4b 66 70 0a 00 5c 2f 04 5f 53 42 5f 50 GPLKfp..\/._SB_P + 37a0: 43 49 30 53 42 52 47 47 50 4c 4b 70 0a 00 47 50 CI0SBRGGPLKp..GP + 37b0: 45 33 70 0a 01 47 50 53 33 7b 5c 47 4c 30 38 0a E3p..GPS3{\GL08. + 37c0: ef 5c 47 4c 30 38 70 66 5c 2f 04 5f 53 42 5f 50 .\GL08pf\/._SB_P + 37d0: 43 49 30 53 42 52 47 47 50 4c 4b a4 0a 01 a1 04 CI0SBRGGPLK..... + 37e0: a4 0a 00 a1 04 a4 0a 00 a5 a1 04 a4 0a 00 14 4b ...............K + 37f0: 0c 41 47 54 46 0a 70 0a a0 60 70 0a 00 43 4d 44 .AGTF.p..`p..CMD + 3800: 43 a0 43 0b 93 87 69 0b 00 02 8b 69 0a 00 49 57 C.C...i....i..IW + 3810: 30 30 8b 69 0b 00 01 49 31 32 38 a0 14 7b 49 31 00.i...I128..{I1 + 3820: 32 38 0a 01 00 47 54 46 42 41 54 30 35 0a 00 60 28...GTFBAT05..` + 3830: 8b 69 0a 9c 49 57 37 38 a0 14 7b 49 57 37 38 0a .i..IW78..{IW78. + 3840: 40 00 47 54 46 42 41 54 30 37 0a 06 60 a0 2d 7b @.GTFBAT07..`.-{ + 3850: 49 57 37 38 0a 08 00 a0 16 5c 2e 5f 53 42 5f 4c IW78.....\._SB_L + 3860: 44 46 54 47 54 46 42 41 54 30 36 0a 03 60 a1 0c DFTGTFBAT06..`.. + 3870: 47 54 46 42 41 54 36 31 0a 03 60 8b 69 0a ee 49 GTFBAT61..`.i..I + 3880: 31 31 39 a0 31 7b 49 31 31 39 0a 20 00 a0 1a 7b 119.1{I119. ...{ + 3890: 5c 2e 5f 53 42 5f 48 44 44 46 0a 01 00 47 54 46 \._SB_HDDF...GTF + 38a0: 42 41 54 30 38 0a 00 60 a1 0c 47 54 46 42 41 54 BAT08..`..GTFBAT + 38b0: 38 31 0a 00 60 a4 41 54 41 42 5b 82 4b 56 49 44 81..`.ATAB[.KVID + 38c0: 45 31 08 5f 41 44 52 0c 05 00 1f 00 08 52 45 47 E1._ADR......REG + 38d0: 46 0a 01 14 12 5f 52 45 47 02 a0 0b 93 68 0a 02 F...._REG....h.. + 38e0: 70 69 52 45 47 46 5b 80 42 41 52 30 02 0a 00 0b piREGF[.BAR0.... + 38f0: 00 01 5b 81 4d 06 42 41 52 30 03 56 44 49 44 20 ..[.M.BAR0.VDID + 3900: 00 30 53 43 43 52 08 42 43 43 52 08 00 40 42 4d .0SCCR.BCCR..@BM + 3910: 41 50 56 02 00 04 53 4d 53 5f 02 00 08 50 30 45 APV...SMS_...P0E + 3920: 4e 01 50 31 45 4e 01 50 32 45 4e 01 50 33 45 4e N.P1EN.P2EN.P3EN + 3930: 01 50 34 45 4e 01 50 35 45 4e 01 00 01 00 01 50 .P4EN.P5EN.....P + 3940: 30 50 46 01 50 31 50 46 01 50 32 50 46 01 50 33 0PF.P1PF.P2PF.P3 + 3950: 50 46 01 50 34 50 46 01 50 35 50 46 01 00 01 00 PF.P4PF.P5PF.... + 3960: 01 5b 82 49 04 43 48 4e 30 08 5f 41 44 52 0a 00 .[.I.CHN0._ADR.. + 3970: 5b 82 1c 44 52 56 30 08 5f 41 44 52 0a 00 14 0f [..DRV0._ADR.... + 3980: 5f 47 54 46 00 a4 52 41 54 41 41 54 41 30 5b 82 _GTF..RATAATA0[. + 3990: 1c 44 52 56 31 08 5f 41 44 52 0a 01 14 0f 5f 47 .DRV1._ADR...._G + 39a0: 54 46 00 a4 52 41 54 41 41 54 41 31 5b 82 49 04 TF..RATAATA1[.I. + 39b0: 43 48 4e 31 08 5f 41 44 52 0a 01 5b 82 1c 44 52 CHN1._ADR..[..DR + 39c0: 56 30 08 5f 41 44 52 0a 00 14 0f 5f 47 54 46 00 V0._ADR...._GTF. + 39d0: a4 52 41 54 41 41 54 41 32 5b 82 1c 44 52 56 31 .RATAATA2[..DRV1 + 39e0: 08 5f 41 44 52 0a 01 14 0f 5f 47 54 46 00 a4 52 ._ADR...._GTF..R + 39f0: 41 54 41 41 54 41 33 08 41 54 30 31 11 0a 0a 07 ATAATA3.AT01.... + 3a00: 03 00 00 00 00 00 ef 08 41 54 30 32 11 0a 0a 07 ........AT02.... + 3a10: 00 00 00 00 00 00 90 08 41 54 30 33 11 0a 0a 07 ........AT03.... + 3a20: 00 00 00 00 00 00 c6 08 41 54 30 34 11 0a 0a 07 ........AT04.... + 3a30: 00 00 00 00 00 00 91 08 41 54 30 35 11 0a 0a 07 ........AT05.... + 3a40: 00 00 00 00 00 00 f5 08 41 54 30 36 11 0a 0a 07 ........AT06.... + 3a50: 10 03 00 00 00 00 ef 08 41 54 36 31 11 0a 0a 07 ........AT61.... + 3a60: 90 03 00 00 00 00 ef 08 41 54 30 37 11 0a 0a 07 ........AT07.... + 3a70: 10 06 00 00 00 00 ef 08 41 54 30 38 11 0a 0a 07 ........AT08.... + 3a80: 41 00 00 00 00 00 ef 08 41 54 38 31 11 0a 0a 07 A.......AT81.... + 3a90: c1 00 00 00 00 00 ef 08 41 54 30 39 11 0a 0a 07 ........AT09.... + 3aa0: 90 05 00 00 00 00 ef 08 41 54 41 30 11 03 0a 32 ........ATA0...2 + 3ab0: 08 41 54 41 31 11 03 0a 32 08 41 54 41 32 11 03 .ATA1...2.ATA2.. + 3ac0: 0a 32 08 41 54 41 33 11 03 0a 32 08 41 54 41 42 .2.ATA3...2.ATAB + 3ad0: 11 03 0a 32 8c 41 54 41 42 0a 00 43 4d 44 43 14 ...2.ATAB..CMDC. + 3ae0: 4c 05 47 54 46 42 0b 77 43 4d 44 43 0a 38 60 72 L.GTFB.wCMDC.8`r + 3af0: 60 0a 08 61 5b 13 41 54 41 42 61 0a 38 43 4d 44 `..a[.ATABa.8CMD + 3b00: 58 77 43 4d 44 43 0a 07 60 8c 41 54 41 42 72 60 XwCMDC..`.ATABr` + 3b10: 0a 02 00 41 30 30 31 8c 41 54 41 42 72 60 0a 06 ...A001.ATABr`.. + 3b20: 00 41 30 30 35 70 68 43 4d 44 58 70 69 41 30 30 .A005phCMDXpiA00 + 3b30: 31 70 6a 41 30 30 35 75 43 4d 44 43 14 41 1f 47 1pjA005uCMDC.A.G + 3b40: 54 46 5f 0a 70 69 5b 31 70 0a 00 43 4d 44 43 08 TF_.pi[1p..CMDC. + 3b50: 49 44 30 30 0a 00 08 49 44 34 39 0b 00 0c 08 49 ID00...ID49....I + 3b60: 44 35 39 0a 00 08 49 44 35 33 0a 04 08 49 44 36 D59...ID53...ID6 + 3b70: 33 0b 00 0f 08 49 44 38 38 0b 00 0f 08 49 44 37 3....ID88....ID7 + 3b80: 38 0a 00 08 57 31 32 38 0a 00 08 57 31 31 39 0a 8...W128...W119. + 3b90: 00 08 57 31 32 30 0a 00 08 49 52 44 59 0a 01 08 ..W120...IRDY... + 3ba0: 50 49 4f 54 0a 00 08 44 4d 41 54 0a 00 a0 43 0b PIOT...DMAT...C. + 3bb0: 93 87 69 0b 00 02 8b 69 0a 00 49 57 30 30 70 49 ..i....i..IW00pI + 3bc0: 57 30 30 49 44 30 30 8b 69 0a 62 49 57 34 39 70 W00ID00.i.bIW49p + 3bd0: 49 57 34 39 49 44 34 39 8b 69 0a 6a 49 57 35 33 IW49ID49.i.jIW53 + 3be0: 70 49 57 35 33 49 44 35 33 8b 69 0a 7e 49 57 36 pIW53ID53.i.~IW6 + 3bf0: 33 70 49 57 36 33 49 44 36 33 8b 69 0a 76 49 57 3pIW63ID63.i.vIW + 3c00: 35 39 70 49 57 35 39 49 44 35 39 8b 69 0a b0 49 59pIW59ID59.i..I + 3c10: 57 38 38 70 49 57 38 38 49 44 38 38 8b 69 0a 9c W88pIW88ID88.i.. + 3c20: 49 57 37 38 70 49 57 37 38 49 44 37 38 8b 69 0b IW78pIW78ID78.i. + 3c30: 00 01 49 31 32 38 70 49 31 32 38 57 31 32 38 8b ..I128pI128W128. + 3c40: 69 0a ee 49 31 31 39 70 49 31 31 39 57 31 31 39 i..I119pI119W119 + 3c50: 8b 69 0a f0 49 31 32 30 70 49 31 32 30 57 31 32 .i..I120pI120W12 + 3c60: 30 70 0a a0 67 a0 06 68 70 0a b0 67 a0 24 90 7b 0p..g..hp..g.$.{ + 3c70: 49 44 35 39 0b 00 01 00 7b 49 44 35 39 0a ff 00 ID59....{ID59... + 3c80: 47 54 46 42 41 54 30 33 7b 49 44 35 39 0a ff 00 GTFBAT03{ID59... + 3c90: 67 a0 40 09 93 67 0a a0 a0 14 7b 57 31 32 38 0a g.@..g....{W128. + 3ca0: 01 00 47 54 46 42 41 54 30 35 0a 00 67 a0 14 7b ..GTFBAT05..g..{ + 3cb0: 49 44 37 38 0a 40 00 47 54 46 42 41 54 30 37 0a ID78.@.GTFBAT07. + 3cc0: 06 67 a0 2d 7b 49 44 37 38 0a 08 00 a0 16 5c 2e .g.-{ID78.....\. + 3cd0: 5f 53 42 5f 4c 44 46 54 47 54 46 42 41 54 30 36 _SB_LDFTGTFBAT06 + 3ce0: 0a 03 67 a1 0c 47 54 46 42 41 54 36 31 0a 03 67 ..g..GTFBAT61..g + 3cf0: a0 31 7b 57 31 31 39 0a 20 00 a0 1a 7b 5c 2e 5f .1{W119. ...{\._ + 3d00: 53 42 5f 48 44 44 46 0a 01 00 47 54 46 42 41 54 SB_HDDF...GTFBAT + 3d10: 30 38 0a 00 67 a1 0c 47 54 46 42 41 54 38 31 0a 08..g..GTFBAT81. + 3d20: 00 67 70 41 54 41 42 5b 31 a4 41 54 41 42 14 2c .gpATAB[1.ATAB., + 3d30: 52 41 54 41 01 8c 68 0a 00 43 4d 44 4e 77 43 4d RATA..h..CMDNwCM + 3d40: 44 4e 0a 38 60 5b 13 68 0a 08 60 52 45 54 42 70 DN.8`[.h..`RETBp + 3d50: 52 45 54 42 5b 31 a4 52 45 54 42 14 4b 0c 41 47 RETB[1.RETB.K.AG + 3d60: 54 46 0a 70 0a a0 60 70 0a 00 43 4d 44 43 a0 43 TF.p..`p..CMDC.C + 3d70: 0b 93 87 69 0b 00 02 8b 69 0a 00 49 57 30 30 8b ...i....i..IW00. + 3d80: 69 0b 00 01 49 31 32 38 a0 14 7b 49 31 32 38 0a i...I128..{I128. + 3d90: 01 00 47 54 46 42 41 54 30 35 0a 00 60 8b 69 0a ..GTFBAT05..`.i. + 3da0: 9c 49 57 37 38 a0 14 7b 49 57 37 38 0a 40 00 47 .IW78..{IW78.@.G + 3db0: 54 46 42 41 54 30 37 0a 06 60 a0 2d 7b 49 57 37 TFBAT07..`.-{IW7 + 3dc0: 38 0a 08 00 a0 16 5c 2e 5f 53 42 5f 4c 44 46 54 8.....\._SB_LDFT + 3dd0: 47 54 46 42 41 54 30 36 0a 03 60 a1 0c 47 54 46 GTFBAT06..`..GTF + 3de0: 42 41 54 36 31 0a 03 60 8b 69 0a ee 49 31 31 39 BAT61..`.i..I119 + 3df0: a0 31 7b 49 31 31 39 0a 20 00 a0 1a 7b 5c 2e 5f .1{I119. ...{\._ + 3e00: 53 42 5f 48 44 44 46 0a 01 00 47 54 46 42 41 54 SB_HDDF...GTFBAT + 3e10: 30 38 0a 00 60 a1 0c 47 54 46 42 41 54 38 31 0a 08..`..GTFBAT81. + 3e20: 00 60 a4 41 54 41 42 5b 82 1f 45 48 43 31 08 5f .`.ATAB[..EHC1._ + 3e30: 41 44 52 0c 00 00 1d 00 14 0f 5f 50 52 57 00 a4 ADR......._PRW.. + 3e40: 47 50 52 57 0a 0d 0a 03 5b 82 1f 55 53 42 31 08 GPRW....[..USB1. + 3e50: 5f 41 44 52 0c 01 00 1d 00 14 0f 5f 50 52 57 00 _ADR......._PRW. + 3e60: a4 47 50 52 57 0a 03 0a 03 5b 82 1f 55 53 42 32 .GPRW....[..USB2 + 3e70: 08 5f 41 44 52 0c 02 00 1d 00 14 0f 5f 50 52 57 ._ADR......._PRW + 3e80: 00 a4 47 50 52 57 0a 04 0a 03 5b 82 1f 55 53 42 ..GPRW....[..USB + 3e90: 33 08 5f 41 44 52 0c 03 00 1d 00 14 0f 5f 50 52 3._ADR......._PR + 3ea0: 57 00 a4 47 50 52 57 0a 0c 0a 03 5b 82 1f 55 53 W..GPRW....[..US + 3eb0: 42 34 08 5f 41 44 52 0c 04 00 1d 00 14 0f 5f 50 B4._ADR......._P + 3ec0: 52 57 00 a4 47 50 52 57 0a 0e 0a 03 5b 82 1f 45 RW..GPRW....[..E + 3ed0: 48 43 32 08 5f 41 44 52 0c 00 00 1a 00 14 0f 5f HC2._ADR......._ + 3ee0: 50 52 57 00 a4 47 50 52 57 0a 0d 0a 03 5b 82 1f PRW..GPRW....[.. + 3ef0: 55 53 42 35 08 5f 41 44 52 0c 01 00 1a 00 14 0f USB5._ADR....... + 3f00: 5f 50 52 57 00 a4 47 50 52 57 0a 05 0a 03 5b 82 _PRW..GPRW....[. + 3f10: 1f 55 53 42 36 08 5f 41 44 52 0c 02 00 1a 00 14 .USB6._ADR...... + 3f20: 0f 5f 50 52 57 00 a4 47 50 52 57 0a 20 0a 03 5b ._PRW..GPRW. ..[ + 3f30: 82 1f 55 53 42 37 08 5f 41 44 52 0c 03 00 1a 00 ..USB7._ADR..... + 3f40: 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 25 0a 03 .._PRW..GPRW.%.. + 3f50: 5b 82 45 19 52 50 30 31 08 5f 41 44 52 0c 00 00 [.E.RP01._ADR... + 3f60: 1c 00 5b 80 4c 43 54 4c 02 0a 50 0a 04 5b 81 12 ..[.LCTL..P..[.. + 3f70: 4c 43 54 4c 01 00 04 50 45 4c 44 01 50 45 52 4c LCTL...PELD.PERL + 3f80: 01 5b 80 53 4c 4f 54 02 0a 54 0a 10 5b 81 43 04 .[.SLOT..T..[.C. + 3f90: 53 4c 4f 54 01 53 43 41 50 20 53 43 54 4c 10 41 SLOT.SCAP SCTL.A + 3fa0: 42 50 31 01 50 46 44 31 01 4d 53 43 31 01 50 44 BP1.PFD1.MSC1.PD + 3fb0: 43 31 01 43 43 31 30 01 4d 53 31 30 01 50 44 53 C1.CC10.MS10.PDS + 3fc0: 31 01 52 53 56 30 01 4c 41 53 43 01 52 53 56 31 1.RSV0.LASC.RSV1 + 3fd0: 07 5b 80 52 48 55 42 02 0a 60 0a 10 5b 81 1a 52 .[.RHUB..`..[..R + 3fe0: 48 55 42 01 50 4d 49 44 10 50 4d 45 53 01 50 4d HUB.PMID.PMES.PM + 3ff0: 45 50 01 52 53 56 32 0e 5b 80 4d 49 53 43 02 0a EP.RSV2.[.MISC.. + 4000: d8 0a 08 5b 81 3d 4d 49 53 43 01 52 53 56 34 1e ...[.=MISC.RSV4. + 4010: 50 4d 43 45 01 48 50 43 45 01 50 4d 4d 53 01 48 PMCE.HPCE.PMMS.H + 4020: 50 50 44 01 48 50 41 42 01 48 50 43 43 01 48 50 PPD.HPAB.HPCC.HP + 4030: 4c 41 01 52 53 56 33 19 48 50 43 53 01 50 4d 43 LA.RSV3.HPCS.PMC + 4040: 53 01 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 41 S.[.PXCS..@..[.A + 4050: 05 50 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 .PXCS@.@...LASX. + 4060: 00 32 41 42 50 58 01 00 02 50 44 43 58 01 00 02 .2ABPX...PDCX... + 4070: 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 PDSX...LSCX..'.. + 4080: 50 53 50 58 01 00 4f 3a 00 1e 48 50 45 58 01 50 PSPX..O:..HPEX.P + 4090: 4d 45 58 01 00 1e 48 50 53 58 01 50 4d 53 58 01 MEX...HPSX.PMSX. + 40a0: 14 1f 48 50 48 4b 00 70 0a 01 50 44 43 31 70 0a ..HPHK.p..PDC1p. + 40b0: 01 48 50 43 53 70 0a 00 50 45 4c 44 5b 22 0a fa .HPCSp..PELD[".. + 40c0: 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 0a 04 .._PRW..GPRW.... + 40d0: 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 41 52 .._PRT...PICM.AR + 40e0: 30 34 a4 50 52 30 34 5b 82 45 21 52 50 30 32 08 04.PR04[.E!RP02. + 40f0: 5f 41 44 52 0c 01 00 1c 00 5b 80 4c 43 54 4c 02 _ADR.....[.LCTL. + 4100: 0a 50 0a 04 5b 81 12 4c 43 54 4c 01 00 04 50 45 .P..[..LCTL...PE + 4110: 4c 44 01 50 45 52 4c 01 5b 80 53 4c 4f 54 02 0a LD.PERL.[.SLOT.. + 4120: 54 0a 10 5b 81 43 04 53 4c 4f 54 01 53 43 41 50 T..[.C.SLOT.SCAP + 4130: 20 53 43 54 4c 10 41 42 50 31 01 50 46 44 31 01 SCTL.ABP1.PFD1. + 4140: 4d 53 43 31 01 50 44 43 31 01 43 43 31 30 01 4d MSC1.PDC1.CC10.M + 4150: 53 31 30 01 50 44 53 31 01 52 53 56 30 01 4c 41 S10.PDS1.RSV0.LA + 4160: 53 43 01 52 53 56 31 07 5b 80 52 48 55 42 02 0a SC.RSV1.[.RHUB.. + 4170: 60 0a 10 5b 81 1a 52 48 55 42 01 50 4d 49 44 10 `..[..RHUB.PMID. + 4180: 50 4d 45 53 01 50 4d 45 50 01 52 53 56 32 0e 5b PMES.PMEP.RSV2.[ + 4190: 80 4d 49 53 43 02 0a d8 0a 08 5b 81 3d 4d 49 53 .MISC.....[.=MIS + 41a0: 43 01 52 53 56 34 1e 50 4d 43 45 01 48 50 43 45 C.RSV4.PMCE.HPCE + 41b0: 01 50 4d 4d 53 01 48 50 50 44 01 48 50 41 42 01 .PMMS.HPPD.HPAB. + 41c0: 48 50 43 43 01 48 50 4c 41 01 52 53 56 33 19 48 HPCC.HPLA.RSV3.H + 41d0: 50 43 53 01 50 4d 43 53 01 5b 80 50 58 43 53 02 PCS.PMCS.[.PXCS. + 41e0: 0a 40 0a c0 5b 81 41 05 50 58 43 53 40 00 40 09 .@..[.A.PXCS@.@. + 41f0: 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 00 02 ..LASX..2ABPX... + 4200: 50 44 43 58 01 00 02 50 44 53 58 01 00 01 4c 53 PDCX...PDSX...LS + 4210: 43 58 01 00 27 00 10 50 53 50 58 01 00 4f 3a 00 CX..'..PSPX..O:. + 4220: 1e 48 50 45 58 01 50 4d 45 58 01 00 1e 48 50 53 .HPEX.PMEX...HPS + 4230: 58 01 50 4d 53 58 01 14 1f 48 50 48 4b 00 70 0a X.PMSX...HPHK.p. + 4240: 01 50 44 43 31 70 0a 01 48 50 43 53 70 0a 00 50 .PDC1p..HPCSp..P + 4250: 45 4c 44 5b 22 0a fa 14 0f 5f 50 52 57 00 a4 47 ELD["...._PRW..G + 4260: 50 52 57 0a 09 0a 04 14 16 5f 50 52 54 00 a0 0a PRW......_PRT... + 4270: 50 49 43 4d a4 41 52 30 35 a4 50 52 30 35 5b 82 PICM.AR05.PR05[. + 4280: 4e 07 57 4c 41 4e 08 5f 41 44 52 0a 00 14 08 5f N.WLAN._ADR...._ + 4290: 52 4d 56 00 a4 00 5b 80 4d 49 4e 50 02 0a 00 0a RMV...[.MINP.... + 42a0: 68 5b 81 26 4d 49 4e 50 01 56 4e 55 4d 20 00 28 h[.&MINP.VNUM .( + 42b0: 50 49 4e 46 08 53 42 43 43 08 42 53 43 43 08 00 PINF.SBCC.BSCC.. + 42c0: 40 10 53 4e 55 4d 20 00 20 14 24 4d 50 44 50 00 @.SNUM . .$MPDP. + 42d0: a0 0e 93 53 4e 55 4d 0c ff ff ff ff a4 0a 00 a0 ...SNUM......... + 42e0: 0c 92 93 42 53 43 43 0a 02 a4 0a 00 a4 01 14 0f ...BSCC......... + 42f0: 5f 50 52 57 00 a4 47 50 52 57 0a 09 0a 03 5b 82 _PRW..GPRW....[. + 4300: 42 28 52 50 30 34 08 5f 41 44 52 0c 03 00 1c 00 B(RP04._ADR..... + 4310: 5b 80 4c 43 54 4c 02 0a 50 0a 04 5b 81 12 4c 43 [.LCTL..P..[..LC + 4320: 54 4c 01 00 04 50 45 4c 44 01 50 45 52 4c 01 5b TL...PELD.PERL.[ + 4330: 80 53 4c 4f 54 02 0a 54 0a 10 5b 81 43 04 53 4c .SLOT..T..[.C.SL + 4340: 4f 54 01 53 43 41 50 20 53 43 54 4c 10 41 42 50 OT.SCAP SCTL.ABP + 4350: 31 01 50 46 44 31 01 4d 53 43 31 01 50 44 43 31 1.PFD1.MSC1.PDC1 + 4360: 01 43 43 31 30 01 4d 53 31 30 01 50 44 53 31 01 .CC10.MS10.PDS1. + 4370: 52 53 56 30 01 4c 41 53 43 01 52 53 56 31 07 5b RSV0.LASC.RSV1.[ + 4380: 80 52 48 55 42 02 0a 60 0a 10 5b 81 1a 52 48 55 .RHUB..`..[..RHU + 4390: 42 01 50 4d 49 44 10 50 4d 45 53 01 50 4d 45 50 B.PMID.PMES.PMEP + 43a0: 01 52 53 56 32 0e 5b 80 4d 49 53 43 02 0a d8 0a .RSV2.[.MISC.... + 43b0: 08 5b 81 3d 4d 49 53 43 01 52 53 56 34 1e 50 4d .[.=MISC.RSV4.PM + 43c0: 43 45 01 48 50 43 45 01 50 4d 4d 53 01 48 50 50 CE.HPCE.PMMS.HPP + 43d0: 44 01 48 50 41 42 01 48 50 43 43 01 48 50 4c 41 D.HPAB.HPCC.HPLA + 43e0: 01 52 53 56 33 19 48 50 43 53 01 50 4d 43 53 01 .RSV3.HPCS.PMCS. + 43f0: 5b 80 50 58 43 53 02 0a 40 0a c0 5b 81 41 05 50 [.PXCS..@..[.A.P + 4400: 58 43 53 40 00 40 09 00 0d 4c 41 53 58 01 00 32 XCS@.@...LASX..2 + 4410: 41 42 50 58 01 00 02 50 44 43 58 01 00 02 50 44 ABPX...PDCX...PD + 4420: 53 58 01 00 01 4c 53 43 58 01 00 27 00 10 50 53 SX...LSCX..'..PS + 4430: 50 58 01 00 4f 3a 00 1e 48 50 45 58 01 50 4d 45 PX..O:..HPEX.PME + 4440: 58 01 00 1e 48 50 53 58 01 50 4d 53 58 01 14 1f X...HPSX.PMSX... + 4450: 48 50 48 4b 00 70 0a 01 50 44 43 31 70 0a 01 48 HPHK.p..PDC1p..H + 4460: 50 43 53 70 0a 00 50 45 4c 44 5b 22 0a fa 14 0f PCSp..PELD[".... + 4470: 5f 50 52 57 00 a4 47 50 52 57 0a 09 0a 04 14 16 _PRW..GPRW...... + 4480: 5f 50 52 54 00 a0 0a 50 49 43 4d a4 41 52 30 37 _PRT...PICM.AR07 + 4490: a4 50 52 30 37 5b 82 4b 0e 58 48 43 49 08 5f 41 .PR07[.K.XHCI._A + 44a0: 44 52 0a 00 5b 80 58 48 50 43 02 0a 00 0b 00 01 DR..[.XHPC...... + 44b0: 5b 81 18 58 48 50 43 01 58 48 56 44 20 58 48 30 [..XHPC.XHVD XH0 + 44c0: 34 08 00 48 05 58 48 31 30 20 08 54 4d 50 30 0a 4..H.XH10 .TMP0. + 44d0: 00 08 54 4d 50 31 0a 00 14 09 5f 52 4d 56 00 a4 ..TMP1...._RMV.. + 44e0: 0a 00 14 46 04 5f 4f 4e 5f 00 5c 2f 05 5f 53 42 ...F._ON_.\/._SB + 44f0: 5f 50 43 49 30 53 42 52 47 45 43 30 5f 53 54 38 _PCI0SBRGEC0_ST8 + 4500: 37 0a 20 0a 25 5b 22 0a 64 5c 2f 05 5f 53 42 5f 7. .%[".d\/._SB_ + 4510: 50 43 49 30 53 42 52 47 45 43 30 5f 53 54 38 37 PCI0SBRGEC0_ST87 + 4520: 0a 20 0a 45 5b 22 0b e8 03 14 06 5f 49 4e 49 00 . .E["....._INI. + 4530: 14 41 04 5f 4f 46 46 00 70 5c 2f 05 5f 53 42 5f .A._OFF.p\/._SB_ + 4540: 50 43 49 30 53 42 52 47 45 43 30 5f 53 54 38 37 PCI0SBRGEC0_ST87 + 4550: 0a 40 0a 45 61 70 5c 2f 05 5f 53 42 5f 50 43 49 .@.Eap\/._SB_PCI + 4560: 30 53 42 52 47 45 43 30 5f 53 54 38 37 0a 40 0a 0SBRGEC0_ST87.@. + 4570: 25 61 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 %a.._PRW..GPRW.. + 4580: 0a 03 5b 82 45 19 52 50 30 35 08 5f 41 44 52 0c ..[.E.RP05._ADR. + 4590: 04 00 1c 00 5b 80 4c 43 54 4c 02 0a 50 0a 04 5b ....[.LCTL..P..[ + 45a0: 81 12 4c 43 54 4c 01 00 04 50 45 4c 44 01 50 45 ..LCTL...PELD.PE + 45b0: 52 4c 01 5b 80 53 4c 4f 54 02 0a 54 0a 10 5b 81 RL.[.SLOT..T..[. + 45c0: 43 04 53 4c 4f 54 01 53 43 41 50 20 53 43 54 4c C.SLOT.SCAP SCTL + 45d0: 10 41 42 50 31 01 50 46 44 31 01 4d 53 43 31 01 .ABP1.PFD1.MSC1. + 45e0: 50 44 43 31 01 43 43 31 30 01 4d 53 31 30 01 50 PDC1.CC10.MS10.P + 45f0: 44 53 31 01 52 53 56 30 01 4c 41 53 43 01 52 53 DS1.RSV0.LASC.RS + 4600: 56 31 07 5b 80 52 48 55 42 02 0a 60 0a 10 5b 81 V1.[.RHUB..`..[. + 4610: 1a 52 48 55 42 01 50 4d 49 44 10 50 4d 45 53 01 .RHUB.PMID.PMES. + 4620: 50 4d 45 50 01 52 53 56 32 0e 5b 80 4d 49 53 43 PMEP.RSV2.[.MISC + 4630: 02 0a d8 0a 08 5b 81 3d 4d 49 53 43 01 52 53 56 .....[.=MISC.RSV + 4640: 34 1e 50 4d 43 45 01 48 50 43 45 01 50 4d 4d 53 4.PMCE.HPCE.PMMS + 4650: 01 48 50 50 44 01 48 50 41 42 01 48 50 43 43 01 .HPPD.HPAB.HPCC. + 4660: 48 50 4c 41 01 52 53 56 33 19 48 50 43 53 01 50 HPLA.RSV3.HPCS.P + 4670: 4d 43 53 01 5b 80 50 58 43 53 02 0a 40 0a c0 5b MCS.[.PXCS..@..[ + 4680: 81 41 05 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .A.PXCS@.@...LAS + 4690: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 46a0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 46b0: 00 10 50 53 50 58 01 00 4f 3a 00 1e 48 50 45 58 ..PSPX..O:..HPEX + 46c0: 01 50 4d 45 58 01 00 1e 48 50 53 58 01 50 4d 53 .PMEX...HPSX.PMS + 46d0: 58 01 14 1f 48 50 48 4b 00 70 0a 01 50 44 43 31 X...HPHK.p..PDC1 + 46e0: 70 0a 01 48 50 43 53 70 0a 00 50 45 4c 44 5b 22 p..HPCSp..PELD[" + 46f0: 0a fa 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 ...._PRW..GPRW.. + 4700: 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 ...._PRT...PICM. + 4710: 41 52 30 38 a4 50 52 30 38 5b 82 40 1e 52 50 30 AR08.PR08[.@.RP0 + 4720: 36 08 5f 41 44 52 0c 05 00 1c 00 5b 80 4c 43 54 6._ADR.....[.LCT + 4730: 4c 02 0a 50 0a 04 5b 81 12 4c 43 54 4c 01 00 04 L..P..[..LCTL... + 4740: 50 45 4c 44 01 50 45 52 4c 01 5b 80 53 4c 4f 54 PELD.PERL.[.SLOT + 4750: 02 0a 54 0a 10 5b 81 43 04 53 4c 4f 54 01 53 43 ..T..[.C.SLOT.SC + 4760: 41 50 20 53 43 54 4c 10 41 42 50 31 01 50 46 44 AP SCTL.ABP1.PFD + 4770: 31 01 4d 53 43 31 01 50 44 43 31 01 43 43 31 30 1.MSC1.PDC1.CC10 + 4780: 01 4d 53 31 30 01 50 44 53 31 01 52 53 56 30 01 .MS10.PDS1.RSV0. + 4790: 4c 41 53 43 01 52 53 56 31 07 5b 80 52 48 55 42 LASC.RSV1.[.RHUB + 47a0: 02 0a 60 0a 10 5b 81 1a 52 48 55 42 01 50 4d 49 ..`..[..RHUB.PMI + 47b0: 44 10 50 4d 45 53 01 50 4d 45 50 01 52 53 56 32 D.PMES.PMEP.RSV2 + 47c0: 0e 5b 80 4d 49 53 43 02 0a d8 0a 08 5b 81 3d 4d .[.MISC.....[.=M + 47d0: 49 53 43 01 52 53 56 34 1e 50 4d 43 45 01 48 50 ISC.RSV4.PMCE.HP + 47e0: 43 45 01 50 4d 4d 53 01 48 50 50 44 01 48 50 41 CE.PMMS.HPPD.HPA + 47f0: 42 01 48 50 43 43 01 48 50 4c 41 01 52 53 56 33 B.HPCC.HPLA.RSV3 + 4800: 19 48 50 43 53 01 50 4d 43 53 01 5b 80 50 58 43 .HPCS.PMCS.[.PXC + 4810: 53 02 0a 40 0a c0 5b 81 41 05 50 58 43 53 40 00 S..@..[.A.PXCS@. + 4820: 40 09 00 0d 4c 41 53 58 01 00 32 41 42 50 58 01 @...LASX..2ABPX. + 4830: 00 02 50 44 43 58 01 00 02 50 44 53 58 01 00 01 ..PDCX...PDSX... + 4840: 4c 53 43 58 01 00 27 00 10 50 53 50 58 01 00 4f LSCX..'..PSPX..O + 4850: 3a 00 1e 48 50 45 58 01 50 4d 45 58 01 00 1e 48 :..HPEX.PMEX...H + 4860: 50 53 58 01 50 4d 53 58 01 14 1f 48 50 48 4b 00 PSX.PMSX...HPHK. + 4870: 70 0a 01 50 44 43 31 70 0a 01 48 50 43 53 70 0a p..PDC1p..HPCSp. + 4880: 00 50 45 4c 44 5b 22 0a fa 14 0f 5f 50 52 57 00 .PELD["...._PRW. + 4890: a4 47 50 52 57 0a 09 0a 04 14 16 5f 50 52 54 00 .GPRW......_PRT. + 48a0: a0 0a 50 49 43 4d a4 41 52 30 39 a4 50 52 30 39 ..PICM.AR09.PR09 + 48b0: 5b 82 49 04 47 4c 41 4e 08 5f 41 44 52 0a 00 14 [.I.GLAN._ADR... + 48c0: 08 5f 52 4d 56 00 a4 00 5b 80 4c 41 4e 52 02 0a ._RMV...[.LANR.. + 48d0: 00 0b 00 01 5b 81 15 4c 41 4e 52 01 56 49 44 5f ....[..LANR.VID_ + 48e0: 10 00 40 6f 00 0f 50 4d 45 53 01 14 0f 5f 50 52 ..@o..PMES..._PR + 48f0: 57 00 a4 47 50 52 57 0a 09 0a 04 5b 82 45 19 52 W..GPRW....[.E.R + 4900: 50 30 37 08 5f 41 44 52 0c 06 00 1c 00 5b 80 4c P07._ADR.....[.L + 4910: 43 54 4c 02 0a 50 0a 04 5b 81 12 4c 43 54 4c 01 CTL..P..[..LCTL. + 4920: 00 04 50 45 4c 44 01 50 45 52 4c 01 5b 80 53 4c ..PELD.PERL.[.SL + 4930: 4f 54 02 0a 54 0a 10 5b 81 43 04 53 4c 4f 54 01 OT..T..[.C.SLOT. + 4940: 53 43 41 50 20 53 43 54 4c 10 41 42 50 31 01 50 SCAP SCTL.ABP1.P + 4950: 46 44 31 01 4d 53 43 31 01 50 44 43 31 01 43 43 FD1.MSC1.PDC1.CC + 4960: 31 30 01 4d 53 31 30 01 50 44 53 31 01 52 53 56 10.MS10.PDS1.RSV + 4970: 30 01 4c 41 53 43 01 52 53 56 31 07 5b 80 52 48 0.LASC.RSV1.[.RH + 4980: 55 42 02 0a 60 0a 10 5b 81 1a 52 48 55 42 01 50 UB..`..[..RHUB.P + 4990: 4d 49 44 10 50 4d 45 53 01 50 4d 45 50 01 52 53 MID.PMES.PMEP.RS + 49a0: 56 32 0e 5b 80 4d 49 53 43 02 0a d8 0a 08 5b 81 V2.[.MISC.....[. + 49b0: 3d 4d 49 53 43 01 52 53 56 34 1e 50 4d 43 45 01 =MISC.RSV4.PMCE. + 49c0: 48 50 43 45 01 50 4d 4d 53 01 48 50 50 44 01 48 HPCE.PMMS.HPPD.H + 49d0: 50 41 42 01 48 50 43 43 01 48 50 4c 41 01 52 53 PAB.HPCC.HPLA.RS + 49e0: 56 33 19 48 50 43 53 01 50 4d 43 53 01 5b 80 50 V3.HPCS.PMCS.[.P + 49f0: 58 43 53 02 0a 40 0a c0 5b 81 41 05 50 58 43 53 XCS..@..[.A.PXCS + 4a00: 40 00 40 09 00 0d 4c 41 53 58 01 00 32 41 42 50 @.@...LASX..2ABP + 4a10: 58 01 00 02 50 44 43 58 01 00 02 50 44 53 58 01 X...PDCX...PDSX. + 4a20: 00 01 4c 53 43 58 01 00 27 00 10 50 53 50 58 01 ..LSCX..'..PSPX. + 4a30: 00 4f 3a 00 1e 48 50 45 58 01 50 4d 45 58 01 00 .O:..HPEX.PMEX.. + 4a40: 1e 48 50 53 58 01 50 4d 53 58 01 14 1f 48 50 48 .HPSX.PMSX...HPH + 4a50: 4b 00 70 0a 01 50 44 43 31 70 0a 01 48 50 43 53 K.p..PDC1p..HPCS + 4a60: 70 0a 00 50 45 4c 44 5b 22 0a fa 14 0f 5f 50 52 p..PELD["...._PR + 4a70: 57 00 a4 47 50 52 57 0a 09 0a 04 14 16 5f 50 52 W..GPRW......_PR + 4a80: 54 00 a0 0a 50 49 43 4d a4 41 52 30 45 a4 50 52 T...PICM.AR0E.PR + 4a90: 30 45 5b 82 45 19 52 50 30 38 08 5f 41 44 52 0c 0E[.E.RP08._ADR. + 4aa0: 07 00 1c 00 5b 80 4c 43 54 4c 02 0a 50 0a 04 5b ....[.LCTL..P..[ + 4ab0: 81 12 4c 43 54 4c 01 00 04 50 45 4c 44 01 50 45 ..LCTL...PELD.PE + 4ac0: 52 4c 01 5b 80 53 4c 4f 54 02 0a 54 0a 10 5b 81 RL.[.SLOT..T..[. + 4ad0: 43 04 53 4c 4f 54 01 53 43 41 50 20 53 43 54 4c C.SLOT.SCAP SCTL + 4ae0: 10 41 42 50 31 01 50 46 44 31 01 4d 53 43 31 01 .ABP1.PFD1.MSC1. + 4af0: 50 44 43 31 01 43 43 31 30 01 4d 53 31 30 01 50 PDC1.CC10.MS10.P + 4b00: 44 53 31 01 52 53 56 30 01 4c 41 53 43 01 52 53 DS1.RSV0.LASC.RS + 4b10: 56 31 07 5b 80 52 48 55 42 02 0a 60 0a 10 5b 81 V1.[.RHUB..`..[. + 4b20: 1a 52 48 55 42 01 50 4d 49 44 10 50 4d 45 53 01 .RHUB.PMID.PMES. + 4b30: 50 4d 45 50 01 52 53 56 32 0e 5b 80 4d 49 53 43 PMEP.RSV2.[.MISC + 4b40: 02 0a d8 0a 08 5b 81 3d 4d 49 53 43 01 52 53 56 .....[.=MISC.RSV + 4b50: 34 1e 50 4d 43 45 01 48 50 43 45 01 50 4d 4d 53 4.PMCE.HPCE.PMMS + 4b60: 01 48 50 50 44 01 48 50 41 42 01 48 50 43 43 01 .HPPD.HPAB.HPCC. + 4b70: 48 50 4c 41 01 52 53 56 33 19 48 50 43 53 01 50 HPLA.RSV3.HPCS.P + 4b80: 4d 43 53 01 5b 80 50 58 43 53 02 0a 40 0a c0 5b MCS.[.PXCS..@..[ + 4b90: 81 41 05 50 58 43 53 40 00 40 09 00 0d 4c 41 53 .A.PXCS@.@...LAS + 4ba0: 58 01 00 32 41 42 50 58 01 00 02 50 44 43 58 01 X..2ABPX...PDCX. + 4bb0: 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 00 27 ..PDSX...LSCX..' + 4bc0: 00 10 50 53 50 58 01 00 4f 3a 00 1e 48 50 45 58 ..PSPX..O:..HPEX + 4bd0: 01 50 4d 45 58 01 00 1e 48 50 53 58 01 50 4d 53 .PMEX...HPSX.PMS + 4be0: 58 01 14 1f 48 50 48 4b 00 70 0a 01 50 44 43 31 X...HPHK.p..PDC1 + 4bf0: 70 0a 01 48 50 43 53 70 0a 00 50 45 4c 44 5b 22 p..HPCSp..PELD[" + 4c00: 0a fa 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 09 ...._PRW..GPRW.. + 4c10: 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 ...._PRT...PICM. + 4c20: 41 52 30 46 a4 50 52 30 46 5b 82 89 ed 01 47 46 AR0F.PR0F[....GF + 4c30: 58 30 08 5f 41 44 52 0c 00 00 02 00 5b 80 56 53 X0._ADR.....[.VS + 4c40: 49 44 02 0a 00 0a 04 5b 81 0b 56 53 49 44 01 52 ID.....[..VSID.R + 4c50: 45 47 30 20 08 50 43 54 47 12 02 0b 10 28 5c 2e EG0 .PCTG....(\. + 4c60: 5f 53 42 5f 50 43 49 30 5b 80 4d 43 48 50 02 0a _SB_PCI0[.MCHP.. + 4c70: 40 0a c0 5b 81 10 4d 43 48 50 00 00 40 30 54 41 @..[..MCHP..@0TA + 4c80: 53 4d 0a 00 06 5b 80 49 47 44 50 02 0a 40 0a c0 SM...[.IGDP..@.. + 4c90: 5b 81 45 05 49 47 44 50 00 00 40 09 00 01 47 49 [.E.IGDP..@...GI + 4ca0: 56 44 01 00 02 47 55 4d 41 03 00 09 00 04 47 4d VD...GUMA.....GM + 4cb0: 46 4e 01 00 1b 00 40 46 41 53 4c 45 08 00 18 47 FN....@FASLE...G + 4cc0: 53 53 45 01 47 53 53 42 0e 47 53 45 53 01 00 30 SSE.GSSB.GSES..0 + 4cd0: 00 0c 43 44 56 4c 01 00 03 00 18 4c 42 50 43 08 ..CDVL.....LBPC. + 4ce0: 00 30 41 53 4c 53 20 5b 80 49 47 44 4d 00 41 53 .0ASLS [.IGDM.AS + 4cf0: 4c 42 0b 00 20 5b 81 48 19 49 47 44 4d 00 53 49 LB.. [.H.IGDM.SI + 4d00: 47 4e 40 08 53 49 5a 45 20 4f 56 45 52 20 53 56 GN@.SIZE OVER SV + 4d10: 45 52 40 10 56 56 45 52 40 08 47 56 45 52 40 08 ER@.VVER@.GVER@. + 4d20: 4d 42 4f 58 20 44 4d 4f 44 20 00 40 50 44 52 44 MBOX DMOD .@PDRD + 4d30: 59 20 43 53 54 53 20 43 45 56 54 20 00 40 0a 44 Y CSTS CEVT .@.D + 4d40: 49 44 4c 20 44 44 4c 32 20 44 44 4c 33 20 44 44 IDL DDL2 DDL3 DD + 4d50: 4c 34 20 44 44 4c 35 20 44 44 4c 36 20 44 44 4c L4 DDL5 DDL6 DDL + 4d60: 37 20 44 44 4c 38 20 43 50 44 4c 20 43 50 4c 32 7 DDL8 CPDL CPL2 + 4d70: 20 43 50 4c 33 20 43 50 4c 34 20 43 50 4c 35 20 CPL3 CPL4 CPL5 + 4d80: 43 50 4c 36 20 43 50 4c 37 20 43 50 4c 38 20 43 CPL6 CPL7 CPL8 C + 4d90: 41 44 4c 20 43 41 4c 32 20 43 41 4c 33 20 43 41 ADL CAL2 CAL3 CA + 4da0: 4c 34 20 43 41 4c 35 20 43 41 4c 36 20 43 41 4c L4 CAL5 CAL6 CAL + 4db0: 37 20 43 41 4c 38 20 4e 41 44 4c 20 4e 44 4c 32 7 CAL8 NADL NDL2 + 4dc0: 20 4e 44 4c 33 20 4e 44 4c 34 20 4e 44 4c 35 20 NDL3 NDL4 NDL5 + 4dd0: 4e 44 4c 36 20 4e 44 4c 37 20 4e 44 4c 38 20 41 NDL6 NDL7 NDL8 A + 4de0: 53 4c 50 20 54 49 44 58 20 43 48 50 44 20 43 4c SLP TIDX CHPD CL + 4df0: 49 44 20 43 44 43 4b 20 53 58 53 57 20 45 56 54 ID CDCK SXSW EVT + 4e00: 53 20 43 4e 4f 54 20 4e 52 44 59 20 00 40 1e 53 S CNOT NRDY .@.S + 4e10: 43 49 45 01 47 45 46 43 04 47 58 46 43 03 47 45 CIE.GEFC.GXFC.GE + 4e20: 53 46 08 00 10 50 41 52 4d 20 44 53 4c 50 20 00 SF...PARM DSLP . + 4e30: 40 7a 41 52 44 59 20 41 53 4c 43 20 54 43 48 45 @zARDY ASLC TCHE + 4e40: 20 41 4c 53 49 20 42 43 4c 50 20 50 46 49 54 20 ALSI BCLP PFIT + 4e50: 43 42 4c 56 20 42 43 4c 4d 40 14 43 50 46 4d 20 CBLV BCLM@.CPFM + 4e60: 45 50 46 4d 20 50 4c 55 54 40 25 50 46 4d 42 20 EPFM PLUT@%PFMB + 4e70: 43 43 44 56 20 50 43 46 54 20 00 40 2f 47 56 44 CCDV PCFT .@/GVD + 4e80: 31 80 00 0c 50 48 45 44 20 42 44 44 43 40 80 08 1...PHED BDDC@.. + 4e90: 44 42 54 42 12 38 15 0a 00 0a 07 0a 38 0b c0 01 DBTB.8......8... + 4ea0: 0b 00 0e 0a 3f 0b c7 01 0b 07 0e 0b f8 01 0b 38 ....?..........8 + 4eb0: 0e 0b c0 0f 0a 00 0a 00 0a 00 0a 00 0a 00 0b 00 ................ + 4ec0: 70 0b 07 70 0b 38 70 0b c0 71 0b 00 7e 08 43 44 p..p.8p..q..~.CD + 4ed0: 43 54 12 29 05 12 07 02 0a e4 0b 40 01 12 07 02 CT.).......@.... + 4ee0: 0a de 0b 4d 01 12 07 02 0a de 0b 4d 01 12 06 02 ...M.......M.... + 4ef0: 0a 00 0a 00 12 07 02 0a de 0b 4d 01 08 53 55 43 ..........M..SUC + 4f00: 43 0a 01 08 4e 56 4c 44 0a 02 08 43 52 49 54 0a C...NVLD...CRIT. + 4f10: 04 08 4e 43 52 54 0a 06 14 4e 51 47 53 43 49 08 ..NCRT...NQGSCI. + 4f20: 14 42 1f 47 42 44 41 08 a0 1b 93 47 45 53 46 0a .B.GBDA....GESF. + 4f30: 00 70 0b 79 06 50 41 52 4d 70 00 47 45 53 46 a4 .p.y.PARMp.GESF. + 4f40: 53 55 43 43 a0 1b 93 47 45 53 46 0a 01 70 0b 40 SUCC...GESF..p.@ + 4f50: 02 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 .PARMp.GESF.SUCC + 4f60: a0 47 04 93 47 45 53 46 0a 04 7b 50 41 52 4d 0c .G..GESF..{PARM. + 4f70: 00 00 ff ef 50 41 52 4d 7b 50 41 52 4d 79 83 88 ....PARM{PARMy.. + 4f80: 44 42 54 42 49 42 54 54 00 0a 10 00 50 41 52 4d DBTBIBTT....PARM + 4f90: 7d 49 42 54 54 50 41 52 4d 50 41 52 4d 70 00 47 }IBTTPARMPARMp.G + 4fa0: 45 53 46 a4 53 55 43 43 a0 4a 06 93 47 45 53 46 ESF.SUCC.J..GESF + 4fb0: 0a 05 70 49 50 53 43 50 41 52 4d 7d 50 41 52 4d ..pIPSCPARM}PARM + 4fc0: 79 49 50 41 54 0a 08 00 50 41 52 4d 72 50 41 52 yIPAT...PARMrPAR + 4fd0: 4d 0b 00 01 50 41 52 4d 7d 50 41 52 4d 79 4c 49 M...PARM}PARMyLI + 4fe0: 44 53 0a 10 00 50 41 52 4d 72 50 41 52 4d 0c 00 DS...PARMrPARM.. + 4ff0: 00 01 00 50 41 52 4d 7d 50 41 52 4d 79 49 42 49 ...PARM}PARMyIBI + 5000: 41 0a 14 00 50 41 52 4d 70 00 47 45 53 46 a4 53 A...PARMp.GESF.S + 5010: 55 43 43 a0 2d 93 47 45 53 46 0a 06 70 49 54 56 UCC.-.GESF..pITV + 5020: 46 50 41 52 4d 7d 50 41 52 4d 79 49 54 56 4d 0a FPARM}PARMyITVM. + 5030: 04 00 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 ..PARMp.GESF.SUC + 5040: 43 a0 49 07 93 47 45 53 46 0a 07 70 47 49 56 44 C.I..GESF..pGIVD + 5050: 50 41 52 4d 7f 50 41 52 4d 0a 01 50 41 52 4d 7d PARM.PARM..PARM} + 5060: 50 41 52 4d 79 47 4d 46 4e 0a 01 00 50 41 52 4d PARMyGMFN...PARM + 5070: 7d 50 41 52 4d 79 0a 03 0a 0b 00 50 41 52 4d 7d }PARMy.....PARM} + 5080: 50 41 52 4d 79 49 44 4d 53 0a 11 00 50 41 52 4d PARMyIDMS...PARM + 5090: 7d 79 83 88 83 88 43 44 43 54 48 56 43 4f 00 43 }y....CDCTHVCO.C + 50a0: 44 56 4c 00 0a 15 00 50 41 52 4d 50 41 52 4d 70 DVL....PARMPARMp + 50b0: 0a 01 47 45 53 46 a4 53 55 43 43 a0 2c 93 47 45 ..GESF.SUCC.,.GE + 50c0: 53 46 0a 0a 70 0a 00 50 41 52 4d a0 10 49 53 53 SF..p..PARM..ISS + 50d0: 43 7d 50 41 52 4d 0a 03 50 41 52 4d 70 0a 00 47 C}PARM..PARMp..G + 50e0: 45 53 46 a4 53 55 43 43 a0 1f 93 47 45 53 46 0a ESF.SUCC...GESF. + 50f0: 0b 70 4b 53 56 30 50 41 52 4d 70 4b 53 56 31 47 .pKSV0PARMpKSV1G + 5100: 45 53 46 a4 53 55 43 43 70 00 47 45 53 46 a4 43 ESF.SUCCp.GESF.C + 5110: 52 49 54 14 41 2e 53 42 43 42 08 a0 24 93 47 45 RIT.A.SBCB..$.GE + 5120: 53 46 0a 00 70 0a 00 50 41 52 4d 70 0c fd 87 0f SF..p..PARMp.... + 5130: 00 50 41 52 4d 70 00 47 45 53 46 a4 53 55 43 43 .PARMp.GESF.SUCC + 5140: a0 19 93 47 45 53 46 0a 01 70 00 47 45 53 46 70 ...GESF..p.GESFp + 5150: 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 53 .PARM.SUCC...GES + 5160: 46 0a 03 70 00 47 45 53 46 70 00 50 41 52 4d a4 F..p.GESFp.PARM. + 5170: 53 55 43 43 a0 19 93 47 45 53 46 0a 04 70 00 47 SUCC...GESF..p.G + 5180: 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 19 ESFp.PARM.SUCC.. + 5190: 93 47 45 53 46 0a 05 70 00 47 45 53 46 70 00 50 .GESF..p.GESFp.P + 51a0: 41 52 4d a4 53 55 43 43 a0 37 93 47 45 53 46 0a ARM.SUCC.7.GESF. + 51b0: 06 70 7b 50 41 52 4d 0a 0f 00 49 54 56 46 70 7a .p{PARM...ITVFpz + 51c0: 7b 50 41 52 4d 0a f0 00 0a 04 00 49 54 56 4d 70 {PARM......ITVMp + 51d0: 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 .GESFp.PARM.SUCC + 51e0: a0 46 04 93 47 45 53 46 0a 07 a0 2b 93 50 41 52 .F..GESF...+.PAR + 51f0: 4d 0a 00 70 43 4c 49 44 60 a0 1c 7b 0c 00 00 00 M..pCLID`..{.... + 5200: 80 60 00 7b 43 4c 49 44 0a 0f 43 4c 49 44 47 4c .`.{CLID..CLIDGL + 5210: 49 44 43 4c 49 44 70 00 47 45 53 46 70 00 50 41 IDCLIDp.GESFp.PA + 5220: 52 4d a4 53 55 43 43 a0 19 93 47 45 53 46 0a 08 RM.SUCC...GESF.. + 5230: 70 00 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 p.GESFp.PARM.SUC + 5240: 43 a0 24 93 47 45 53 46 0a 09 7b 50 41 52 4d 0a C.$.GESF..{PARM. + 5250: ff 49 42 54 54 70 00 47 45 53 46 70 00 50 41 52 .IBTTp.GESFp.PAR + 5260: 4d a4 53 55 43 43 a0 46 05 93 47 45 53 46 0a 0a M.SUCC.F..GESF.. + 5270: 7b 50 41 52 4d 0a ff 49 50 53 43 a0 21 7b 7a 50 {PARM..IPSC.!{zP + 5280: 41 52 4d 0a 08 00 0a ff 00 7b 7a 50 41 52 4d 0a ARM......{zPARM. + 5290: 08 00 0a ff 49 50 41 54 76 49 50 41 54 7b 7a 50 ....IPATvIPAT{zP + 52a0: 41 52 4d 0a 14 00 0a 07 49 42 49 41 70 00 47 45 ARM.....IBIAp.GE + 52b0: 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 47 05 SFp.PARM.SUCC.G. + 52c0: 93 47 45 53 46 0a 0b 7b 7a 50 41 52 4d 0a 01 00 .GESF..{zPARM... + 52d0: 0a 01 49 46 31 45 a0 1c 7b 50 41 52 4d 79 0a 0f ..IF1E..{PARMy.. + 52e0: 0a 0d 00 00 7b 7a 50 41 52 4d 0a 0d 00 0a 0f 49 ....{zPARM.....I + 52f0: 44 4d 53 a1 10 7b 7a 50 41 52 4d 0a 11 00 0a 0f DMS..{zPARM..... + 5300: 49 44 4d 53 70 00 47 45 53 46 70 00 50 41 52 4d IDMSp.GESFp.PARM + 5310: a4 53 55 43 43 a0 19 93 47 45 53 46 0a 10 70 00 .SUCC...GESF..p. + 5320: 47 45 53 46 70 00 50 41 52 4d a4 53 55 43 43 a0 GESFp.PARM.SUCC. + 5330: 2c 93 47 45 53 46 0a 11 70 79 4c 49 44 53 0a 08 ,.GESF..pyLIDS.. + 5340: 00 50 41 52 4d 72 50 41 52 4d 0b 00 01 50 41 52 .PARMrPARM...PAR + 5350: 4d 70 00 47 45 53 46 a4 53 55 43 43 a0 4e 04 93 Mp.GESF.SUCC.N.. + 5360: 47 45 53 46 0a 12 a0 2a 7b 50 41 52 4d 0a 01 00 GESF...*{PARM... + 5370: a0 13 93 7a 50 41 52 4d 0a 01 00 0a 01 70 0a 01 ...zPARM.....p.. + 5380: 49 53 53 43 a1 0c 70 00 47 45 53 46 a4 43 52 49 ISSC..p.GESF.CRI + 5390: 54 a1 08 70 0a 00 49 53 53 43 70 00 47 45 53 46 T..p..ISSCp.GESF + 53a0: 70 00 50 41 52 4d a4 53 55 43 43 a0 19 93 47 45 p.PARM.SUCC...GE + 53b0: 53 46 0a 13 70 00 47 45 53 46 70 00 50 41 52 4d SF..p.GESFp.PARM + 53c0: a4 53 55 43 43 a0 24 93 47 45 53 46 0a 14 7b 50 .SUCC.$.GESF..{P + 53d0: 41 52 4d 0a 0f 50 41 56 50 70 00 47 45 53 46 70 ARM..PAVPp.GESFp + 53e0: 00 50 41 52 4d a4 53 55 43 43 70 00 47 45 53 46 .PARM.SUCCp.GESF + 53f0: a4 53 55 43 43 a0 11 93 47 45 46 43 0a 04 70 47 .SUCC...GEFC..pG + 5400: 42 44 41 47 58 46 43 a0 11 93 47 45 46 43 0a 06 BDAGXFC...GEFC.. + 5410: 70 53 42 43 42 47 58 46 43 70 0a 00 47 45 46 43 pSBCBGXFCp..GEFC + 5420: 70 0a 01 53 43 49 53 70 0a 00 47 53 53 45 70 0a p..SCISp..GSSEp. + 5430: 00 53 43 49 45 a4 00 14 19 50 44 52 44 00 a0 0c .SCIE....PDRD... + 5440: 92 44 52 44 59 5b 22 41 53 4c 50 a4 92 44 52 44 .DRDY["ASLP..DRD + 5450: 59 14 1d 50 53 54 53 00 a0 0e 94 43 53 54 53 0a Y..PSTS....CSTS. + 5460: 02 5b 22 41 53 4c 50 a4 93 43 53 54 53 0a 03 14 .["ASLP..CSTS... + 5470: 42 08 47 4e 4f 54 02 a0 08 50 44 52 44 a4 0a 01 B.GNOT...PDRD... + 5480: 70 68 43 45 56 54 70 0a 03 43 53 54 53 a0 3f 90 phCEVTp..CSTS.?. + 5490: 93 43 48 50 44 0a 00 93 69 0a 00 a0 1e 91 94 4f .CHPD...i......O + 54a0: 53 59 53 0b d0 07 95 4f 53 59 53 0b d6 07 86 5c SYS....OSYS....\ + 54b0: 2e 5f 53 42 5f 50 43 49 30 69 a1 12 86 5c 2f 03 ._SB_PCI0i...\/. + 54c0: 5f 53 42 5f 50 43 49 30 47 46 58 30 69 a0 0d 5b _SB_PCI0GFX0i..[ + 54d0: 12 48 4e 4f 54 00 48 4e 4f 54 68 a1 13 86 5c 2f .HNOT.HNOTh...\/ + 54e0: 03 5f 53 42 5f 50 43 49 30 47 46 58 30 0a 80 a4 ._SB_PCI0GFX0... + 54f0: 0a 00 14 15 47 48 44 53 01 70 68 54 49 44 58 a4 ....GHDS.phTIDX. + 5500: 47 4e 4f 54 0a 01 0a 00 14 15 47 4c 49 44 01 70 GNOT......GLID.p + 5510: 68 43 4c 49 44 a4 47 4e 4f 54 0a 02 0a 00 14 15 hCLID.GNOT...... + 5520: 47 44 43 4b 01 70 68 43 44 43 4b a4 47 4e 4f 54 GDCK.phCDCK.GNOT + 5530: 0a 04 0a 00 14 19 50 41 52 44 00 a0 0c 92 41 52 ......PARD....AR + 5540: 44 59 5b 22 41 53 4c 50 a4 92 41 52 44 59 14 49 DY["ASLP..ARDY.I + 5550: 13 41 49 4e 54 02 a0 10 92 7b 54 43 48 45 79 0a .AINT....{TCHEy. + 5560: 01 68 00 00 a4 0a 01 a0 08 50 41 52 44 a4 0a 01 .h.......PARD... + 5570: a0 46 0c 93 68 0a 02 a0 4d 09 43 50 46 4d 7b 43 .F..h...M.CPFM{C + 5580: 50 46 4d 0a 0f 60 7b 45 50 46 4d 0a 0f 61 a0 2c PFM..`{EPFM..a., + 5590: 93 60 0a 01 a0 0d 7b 61 0a 06 00 70 0a 06 50 46 .`....{a...p..PF + 55a0: 49 54 a1 18 a0 0d 7b 61 0a 08 00 70 0a 08 50 46 IT....{a...p..PF + 55b0: 49 54 a1 08 70 0a 01 50 46 49 54 a0 2c 93 60 0a IT..p..PFIT.,.`. + 55c0: 06 a0 0d 7b 61 0a 08 00 70 0a 08 50 46 49 54 a1 ...{a...p..PFIT. + 55d0: 18 a0 0d 7b 61 0a 01 00 70 0a 01 50 46 49 54 a1 ...{a...p..PFIT. + 55e0: 08 70 0a 06 50 46 49 54 a0 2c 93 60 0a 08 a0 0d .p..PFIT.,.`.... + 55f0: 7b 61 0a 01 00 70 0a 01 50 46 49 54 a1 18 a0 0d {a...p..PFIT.... + 5600: 7b 61 0a 06 00 70 0a 06 50 46 49 54 a1 08 70 0a {a...p..PFIT..p. + 5610: 08 50 46 49 54 a1 0c 7f 50 46 49 54 0a 07 50 46 .PFIT...PFIT..PF + 5620: 49 54 7d 50 46 49 54 0c 00 00 00 80 50 46 49 54 IT}PFIT.....PFIT + 5630: 70 0a 04 41 53 4c 43 a1 46 04 a0 29 93 68 0a 01 p..ASLC.F..).h.. + 5640: 70 78 77 69 0a ff 00 0a 64 00 00 42 43 4c 50 7d pxwi....d..BCLP} + 5650: 42 43 4c 50 0c 00 00 00 80 42 43 4c 50 70 0a 02 BCLP.....BCLPp.. + 5660: 41 53 4c 43 a1 19 a0 12 93 68 0a 00 70 69 41 4c ASLC.....h..piAL + 5670: 53 49 70 0a 01 41 53 4c 43 a1 04 a4 0a 01 70 0a SIp..ASLC.....p. + 5680: 01 41 53 4c 45 a4 0a 00 14 19 53 43 49 50 00 a0 .ASLE.....SCIP.. + 5690: 0f 92 93 4f 56 45 52 0a 00 a4 92 47 53 4d 49 a4 ...OVER....GSMI. + 56a0: 0a 00 08 4f 50 42 53 0c 00 ff ff ff 14 25 4f 50 ...OPBS......%OP + 56b0: 54 53 01 a0 1e 7b 5c 2e 5f 53 42 5f 56 47 41 46 TS...{\._SB_VGAF + 56c0: 0a 01 00 a0 0e 93 68 0a 03 70 41 53 4c 53 4f 50 ......h..pASLSOP + 56d0: 42 53 14 43 04 4f 57 41 4b 01 a0 3b 7b 5c 2e 5f BS.C.OWAK..;{\._ + 56e0: 53 42 5f 56 47 41 46 0a 01 00 a0 15 93 68 0a 03 SB_VGAF......h.. + 56f0: 70 4f 50 42 53 41 53 4c 53 70 0a 01 47 53 45 53 pOPBSASLSp..GSES + 5700: 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 47 46 p..\/._SB_PCI0GF + 5710: 58 30 43 4c 49 44 14 4e 14 4f 47 43 44 00 a0 19 X0CLID.N.OGCD... + 5720: 93 43 41 44 4c 0a 00 70 4c 43 44 4d 5c 2e 5f 53 .CADL..pLCDM\._S + 5730: 42 5f 43 53 54 45 a4 00 70 4f 41 32 44 43 41 44 B_CSTE..pOA2DCAD + 5740: 4c 5c 2e 5f 53 42 5f 43 53 54 45 a0 0a 93 43 41 L\._SB_CSTE...CA + 5750: 4c 32 0a 00 a4 00 7d 4f 41 32 44 43 41 4c 32 5c L2....}OA2DCAL2\ + 5760: 2e 5f 53 42 5f 43 53 54 45 5c 2e 5f 53 42 5f 43 ._SB_CSTE\._SB_C + 5770: 53 54 45 a0 0a 93 43 41 4c 33 0a 00 a4 00 7d 4f STE...CAL3....}O + 5780: 41 32 44 43 41 4c 33 5c 2e 5f 53 42 5f 43 53 54 A2DCAL3\._SB_CST + 5790: 45 5c 2e 5f 53 42 5f 43 53 54 45 a0 0a 93 43 41 E\._SB_CSTE...CA + 57a0: 4c 34 0a 00 a4 00 7d 4f 41 32 44 43 41 4c 34 5c L4....}OA2DCAL4\ + 57b0: 2e 5f 53 42 5f 43 53 54 45 5c 2e 5f 53 42 5f 43 ._SB_CSTE\._SB_C + 57c0: 53 54 45 a0 0a 93 43 41 4c 35 0a 00 a4 00 7d 4f STE...CAL5....}O + 57d0: 41 32 44 43 41 4c 35 5c 2e 5f 53 42 5f 43 53 54 A2DCAL5\._SB_CST + 57e0: 45 5c 2e 5f 53 42 5f 43 53 54 45 a0 0a 93 43 41 E\._SB_CSTE...CA + 57f0: 4c 36 0a 00 a4 00 7d 4f 41 32 44 43 41 4c 36 5c L6....}OA2DCAL6\ + 5800: 2e 5f 53 42 5f 43 53 54 45 5c 2e 5f 53 42 5f 43 ._SB_CSTE\._SB_C + 5810: 53 54 45 a0 0a 93 43 41 4c 37 0a 00 a4 00 7d 4f STE...CAL7....}O + 5820: 41 32 44 43 41 4c 37 5c 2e 5f 53 42 5f 43 53 54 A2DCAL7\._SB_CST + 5830: 45 5c 2e 5f 53 42 5f 43 53 54 45 a0 0a 93 43 41 E\._SB_CSTE...CA + 5840: 4c 38 0a 00 a4 00 7d 4f 41 32 44 43 41 4c 38 5c L8....}OA2DCAL8\ + 5850: 2e 5f 53 42 5f 43 53 54 45 5c 2e 5f 53 42 5f 43 ._SB_CSTE\._SB_C + 5860: 53 54 45 a4 00 14 42 15 4f 47 43 41 00 53 44 54 STE...B.OGCA.SDT + 5870: 50 a0 19 93 43 50 44 4c 0a 00 70 4c 43 44 4d 5c P...CPDL..pLCDM\ + 5880: 2e 5f 53 42 5f 43 41 44 4c a4 00 70 4f 41 32 44 ._SB_CADL..pOA2D + 5890: 43 50 44 4c 5c 2e 5f 53 42 5f 43 41 44 4c a0 0a CPDL\._SB_CADL.. + 58a0: 93 43 50 4c 32 0a 00 a4 00 7d 4f 41 32 44 43 50 .CPL2....}OA2DCP + 58b0: 4c 32 5c 2e 5f 53 42 5f 43 41 44 4c 5c 2e 5f 53 L2\._SB_CADL\._S + 58c0: 42 5f 43 41 44 4c a0 0a 93 43 50 4c 33 0a 00 a4 B_CADL...CPL3... + 58d0: 00 7d 4f 41 32 44 43 50 4c 33 5c 2e 5f 53 42 5f .}OA2DCPL3\._SB_ + 58e0: 43 41 44 4c 5c 2e 5f 53 42 5f 43 41 44 4c a0 0a CADL\._SB_CADL.. + 58f0: 93 43 50 4c 34 0a 00 a4 00 7d 4f 41 32 44 43 50 .CPL4....}OA2DCP + 5900: 4c 34 5c 2e 5f 53 42 5f 43 41 44 4c 5c 2e 5f 53 L4\._SB_CADL\._S + 5910: 42 5f 43 41 44 4c a0 0a 93 43 50 4c 35 0a 00 a4 B_CADL...CPL5... + 5920: 00 7d 4f 41 32 44 43 50 4c 35 5c 2e 5f 53 42 5f .}OA2DCPL5\._SB_ + 5930: 43 41 44 4c 5c 2e 5f 53 42 5f 43 41 44 4c a0 0a CADL\._SB_CADL.. + 5940: 93 43 50 4c 36 0a 00 a4 00 7d 4f 41 32 44 43 50 .CPL6....}OA2DCP + 5950: 4c 36 5c 2e 5f 53 42 5f 43 41 44 4c 5c 2e 5f 53 L6\._SB_CADL\._S + 5960: 42 5f 43 41 44 4c a0 0a 93 43 50 4c 37 0a 00 a4 B_CADL...CPL7... + 5970: 00 7d 4f 41 32 44 43 50 4c 37 5c 2e 5f 53 42 5f .}OA2DCPL7\._SB_ + 5980: 43 41 44 4c 5c 2e 5f 53 42 5f 43 41 44 4c a0 0a CADL\._SB_CADL.. + 5990: 93 43 50 4c 38 0a 00 a4 00 7d 4f 41 32 44 43 50 .CPL8....}OA2DCP + 59a0: 4c 38 5c 2e 5f 53 42 5f 43 41 44 4c 5c 2e 5f 53 L8\._SB_CADL\._S + 59b0: 42 5f 43 41 44 4c a4 00 14 46 06 4f 41 32 44 01 B_CADL...F.OA2D. + 59c0: 70 00 60 a0 0e 93 68 4c 46 49 44 7d 60 4c 43 44 p.`...hLFID}`LCD + 59d0: 4d 60 a0 0e 93 68 43 52 49 44 7d 60 43 52 54 4d M`...hCRID}`CRTM + 59e0: 60 a0 0e 93 68 54 56 49 44 7d 60 54 56 4f 4d 60 `...hTVID}`TVOM` + 59f0: a0 0e 93 68 48 44 49 44 7d 60 48 44 4d 4d 60 a0 ...hHDID}`HDMM`. + 5a00: 0e 93 68 44 56 49 44 7d 60 44 56 49 4d 60 a0 0e ..hDVID}`DVIM`.. + 5a10: 93 68 44 50 49 44 7d 60 44 50 4f 4d 60 a4 60 08 .hDPID}`DPOM`.`. + 5a20: 44 44 49 44 0a 00 14 46 0a 57 4e 44 44 01 70 47 DDID...F.WNDD.pG + 5a30: 44 49 44 68 44 44 49 44 70 44 44 49 44 4e 41 44 DIDhDDIDpDDIDNAD + 5a40: 4c 70 47 44 49 44 68 44 44 49 44 70 44 44 49 44 LpGDIDhDDIDpDDID + 5a50: 4e 44 4c 32 70 47 44 49 44 68 44 44 49 44 70 44 NDL2pGDIDhDDIDpD + 5a60: 44 49 44 4e 44 4c 33 70 47 44 49 44 68 44 44 49 DIDNDL3pGDIDhDDI + 5a70: 44 70 44 44 49 44 4e 44 4c 34 70 47 44 49 44 68 DpDDIDNDL4pGDIDh + 5a80: 44 44 49 44 70 44 44 49 44 4e 44 4c 35 70 47 44 DDIDpDDIDNDL5pGD + 5a90: 49 44 68 44 44 49 44 70 44 44 49 44 4e 44 4c 36 IDhDDIDpDDIDNDL6 + 5aa0: 70 47 44 49 44 68 44 44 49 44 70 44 44 49 44 4e pGDIDhDDIDpDDIDN + 5ab0: 44 4c 37 70 47 44 49 44 68 44 44 49 44 70 44 44 DL7pGDIDhDDIDpDD + 5ac0: 49 44 4e 44 4c 38 70 0a 00 43 4f 4e 54 08 43 4f IDNDL8p..CONT.CO + 5ad0: 4e 54 0a 00 14 45 08 47 44 49 44 01 a2 4a 07 95 NT...E.GDID..J.. + 5ae0: 43 4f 4e 54 0a 08 70 0a 01 60 79 60 43 4f 4e 54 CONT..p..`y`CONT + 5af0: 60 7b 5c 2e 5f 53 42 5f 4e 53 54 45 60 61 75 43 `{\._SB_NSTE`auC + 5b00: 4f 4e 54 a0 0d 7b 61 4c 43 44 4d 00 a4 4c 46 49 ONT..{aLCDM..LFI + 5b10: 44 a0 0d 7b 61 43 52 54 4d 00 a4 43 52 49 44 a0 D..{aCRTM..CRID. + 5b20: 0d 7b 61 54 56 4f 4d 00 a4 54 56 49 44 a0 0d 7b .{aTVOM..TVID..{ + 5b30: 61 48 44 4d 4d 00 a4 48 44 49 44 a0 0d 7b 61 44 aHDMM..HDID..{aD + 5b40: 56 49 4d 00 a4 44 56 49 44 a0 0d 7b 61 44 50 4f VIM..DVID..{aDPO + 5b50: 4d 00 a4 44 50 49 44 a4 0a 00 08 4c 46 49 44 0c M..DPID....LFID. + 5b60: ff ff ff ff 08 43 52 49 44 0c ff ff ff ff 08 54 .....CRID......T + 5b70: 56 49 44 0c ff ff ff ff 08 44 50 49 44 0c ff ff VID......DPID... + 5b80: ff ff 08 48 44 49 44 0c ff ff ff ff 08 44 56 49 ...HDID......DVI + 5b90: 44 0c ff ff ff ff 14 41 04 47 44 54 50 01 7b 68 D......A.GDTP.{h + 5ba0: 0b 00 0f 60 a0 0c 93 60 0b 00 01 70 68 43 52 49 ...`...`...phCRI + 5bb0: 44 a0 0c 93 60 0b 00 02 70 68 54 56 49 44 a0 0c D...`...phTVID.. + 5bc0: 93 60 0b 00 04 70 68 4c 46 49 44 a0 0c 93 68 0b .`...phLFID...h. + 5bd0: 00 03 70 68 48 44 49 44 14 47 04 53 44 54 50 00 ..phHDID.G.SDTP. + 5be0: 47 44 54 50 43 50 44 4c 47 44 54 50 43 50 4c 32 GDTPCPDLGDTPCPL2 + 5bf0: 47 44 54 50 43 50 4c 33 47 44 54 50 43 50 4c 34 GDTPCPL3GDTPCPL4 + 5c00: 47 44 54 50 43 50 4c 35 47 44 54 50 43 50 4c 36 GDTPCPL5GDTPCPL6 + 5c10: 47 44 54 50 43 50 4c 37 47 44 54 50 43 50 4c 38 GDTPCPL7GDTPCPL8 + 5c20: 14 18 50 52 53 54 00 a0 0d 93 52 45 47 30 0c ff ..PRST....REG0.. + 5c30: ff ff ff a4 00 a1 03 a4 01 08 4c 43 44 4d 0b 08 ..........LCDM.. + 5c40: 08 08 43 52 54 4d 0b 01 01 08 54 56 4f 4d 0b 02 ..CRTM....TVOM.. + 5c50: 02 08 48 44 4d 4d 0b 04 04 08 44 56 49 4d 0b 40 ..HDMM....DVIM.@ + 5c60: 40 08 44 50 4f 4d 0b 80 80 08 44 4f 53 46 01 08 @.DPOM....DOSF.. + 5c70: 42 52 4e 43 00 08 55 50 44 4e 01 08 4e 58 54 44 BRNC..UPDN..NXTD + 5c80: 0a 01 14 49 06 4d 44 32 41 01 70 00 60 a0 0d 7b ...I.MD2A.p.`..{ + 5c90: 68 4c 43 44 4d 00 7d 60 0a 01 60 a0 0d 7b 68 43 hLCDM.}`..`..{hC + 5ca0: 52 54 4d 00 7d 60 0a 02 60 a0 0d 7b 68 54 56 4f RTM.}`..`..{hTVO + 5cb0: 4d 00 7d 60 0a 04 60 a0 0d 7b 68 44 56 49 4d 00 M.}`..`..{hDVIM. + 5cc0: 7d 60 0a 08 60 a0 0d 7b 68 48 44 4d 4d 00 7d 60 }`..`..{hHDMM.}` + 5cd0: 0a 10 60 a0 0d 7b 68 44 50 4f 4d 00 7d 60 0a 20 ..`..{hDPOM.}`. + 5ce0: 60 a0 08 92 60 a4 4e 58 54 44 a4 60 14 49 06 4d `...`.NXTD.`.I.M + 5cf0: 41 32 44 01 70 00 60 a0 0d 7b 68 0a 01 00 7d 60 A2D.p.`..{h...}` + 5d00: 4c 43 44 4d 60 a0 0d 7b 68 0a 02 00 7d 60 43 52 LCDM`..{h...}`CR + 5d10: 54 4d 60 a0 0d 7b 68 0a 04 00 7d 60 54 56 4f 4d TM`..{h...}`TVOM + 5d20: 60 a0 0d 7b 68 0a 08 00 7d 60 44 56 49 4d 60 a0 `..{h...}`DVIM`. + 5d30: 0d 7b 68 0a 10 00 7d 60 48 44 4d 4d 60 a0 0d 7b .{h...}`HDMM`..{ + 5d40: 68 0a 20 00 7d 60 44 50 4f 4d 60 a0 08 92 60 a4 h. .}`DPOM`...`. + 5d50: 4c 43 44 4d a4 60 14 06 5f 49 4e 49 00 14 37 5f LCDM.`.._INI..7_ + 5d60: 44 4f 53 01 47 56 49 46 a0 2c 7b 5c 2e 5f 53 42 DOS.GVIF.,{\._SB + 5d70: 5f 56 42 49 46 0a 01 00 7b 68 0a 03 44 4f 53 46 _VBIF...{h..DOSF + 5d80: 70 7a 68 0a 02 00 42 52 4e 43 7b 42 52 4e 43 0a pzh...BRNC{BRNC. + 5d90: 01 42 52 4e 43 14 4c 26 5f 44 4f 44 00 70 0a 00 .BRNC.L&_DOD.p.. + 5da0: 4e 44 49 44 a0 15 92 93 44 49 44 4c 00 70 53 44 NDID....DIDL.pSD + 5db0: 44 4c 44 49 44 4c 44 49 44 31 a0 15 92 93 44 44 DLDIDLDID1....DD + 5dc0: 4c 32 00 70 53 44 44 4c 44 44 4c 32 44 49 44 32 L2.pSDDLDDL2DID2 + 5dd0: a0 15 92 93 44 44 4c 33 00 70 53 44 44 4c 44 44 ....DDL3.pSDDLDD + 5de0: 4c 33 44 49 44 33 a0 15 92 93 44 44 4c 34 00 70 L3DID3....DDL4.p + 5df0: 53 44 44 4c 44 44 4c 34 44 49 44 34 a0 15 92 93 SDDLDDL4DID4.... + 5e00: 44 44 4c 35 00 70 53 44 44 4c 44 44 4c 35 44 49 DDL5.pSDDLDDL5DI + 5e10: 44 35 a0 2e 93 4e 44 49 44 0a 01 08 54 4d 50 31 D5...NDID...TMP1 + 5e20: 12 07 01 0c ff ff ff ff 70 7d 0c 00 00 01 00 44 ........p}.....D + 5e30: 49 44 31 00 88 54 4d 50 31 0a 00 00 a4 54 4d 50 ID1..TMP1....TMP + 5e40: 31 a0 48 04 93 4e 44 49 44 0a 02 08 54 4d 50 32 1.H..NDID...TMP2 + 5e50: 12 0c 02 0c ff ff ff ff 0c ff ff ff ff 70 7d 0c .............p}. + 5e60: 00 00 01 00 44 49 44 31 00 88 54 4d 50 32 0a 00 ....DID1..TMP2.. + 5e70: 00 70 7d 0c 00 00 01 00 44 49 44 32 00 88 54 4d .p}.....DID2..TM + 5e80: 50 32 0a 01 00 a4 54 4d 50 32 a0 41 06 93 4e 44 P2....TMP2.A..ND + 5e90: 49 44 0a 03 08 54 4d 50 33 12 11 03 0c ff ff ff ID...TMP3....... + 5ea0: ff 0c ff ff ff ff 0c ff ff ff ff 70 7d 0c 00 00 ...........p}... + 5eb0: 01 00 44 49 44 31 00 88 54 4d 50 33 0a 00 00 70 ..DID1..TMP3...p + 5ec0: 7d 0c 00 00 01 00 44 49 44 32 00 88 54 4d 50 33 }.....DID2..TMP3 + 5ed0: 0a 01 00 70 7d 0c 00 00 01 00 44 49 44 33 00 88 ...p}.....DID3.. + 5ee0: 54 4d 50 33 0a 02 00 a4 54 4d 50 33 a0 4a 07 93 TMP3....TMP3.J.. + 5ef0: 4e 44 49 44 0a 04 08 54 4d 50 34 12 16 04 0c ff NDID...TMP4..... + 5f00: ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ................ + 5f10: ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 ..p}.....DID1..T + 5f20: 4d 50 34 0a 00 00 70 7d 0c 00 00 01 00 44 49 44 MP4...p}.....DID + 5f30: 32 00 88 54 4d 50 34 0a 01 00 70 7d 0c 00 00 01 2..TMP4...p}.... + 5f40: 00 44 49 44 33 00 88 54 4d 50 34 0a 02 00 70 7d .DID3..TMP4...p} + 5f50: 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 34 0a .....DID4..TMP4. + 5f60: 03 00 a4 54 4d 50 34 a0 43 09 94 4e 44 49 44 0a ...TMP4.C..NDID. + 5f70: 04 08 54 4d 50 35 12 1b 05 0c ff ff ff ff 0c ff ..TMP5.......... + 5f80: ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ff ................ + 5f90: ff ff 70 7d 0c 00 00 01 00 44 49 44 31 00 88 54 ..p}.....DID1..T + 5fa0: 4d 50 35 0a 00 00 70 7d 0c 00 00 01 00 44 49 44 MP5...p}.....DID + 5fb0: 32 00 88 54 4d 50 35 0a 01 00 70 7d 0c 00 00 01 2..TMP5...p}.... + 5fc0: 00 44 49 44 33 00 88 54 4d 50 35 0a 02 00 70 7d .DID3..TMP5...p} + 5fd0: 0c 00 00 01 00 44 49 44 34 00 88 54 4d 50 35 0a .....DID4..TMP5. + 5fe0: 03 00 70 7d 0c 00 00 01 00 44 49 44 35 00 88 54 ..p}.....DID5..T + 5ff0: 4d 50 35 0a 04 00 a4 54 4d 50 35 a4 12 05 01 0b MP5....TMP5..... + 6000: 00 04 5b 82 45 06 44 44 30 31 14 1e 5f 41 44 52 ..[.E.DD01.._ADR + 6010: 08 a0 0b 93 44 49 44 31 0a 00 a4 0a 01 a1 0b a4 ....DID1........ + 6020: 7b 0b ff ff 44 49 44 31 00 14 0f 5f 44 43 53 00 {...DID1..._DCS. + 6030: a4 43 44 44 53 44 49 44 31 14 0f 5f 44 47 53 00 .CDDSDID1.._DGS. + 6040: a4 4e 44 44 53 44 49 44 31 14 1f 5f 44 53 53 01 .NDDSDID1.._DSS. + 6050: a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 ...{h........... + 6060: 70 4e 53 54 45 43 53 54 45 5b 82 42 12 4c 43 44 pNSTECSTE[.B.LCD + 6070: 44 14 1e 5f 41 44 52 08 a0 0b 93 44 49 44 32 0a D.._ADR....DID2. + 6080: 00 a4 0a 02 a1 0b a4 7b 0b ff ff 44 49 44 32 00 .......{...DID2. + 6090: 14 0f 5f 44 43 53 00 a4 43 44 44 53 44 49 44 32 .._DCS..CDDSDID2 + 60a0: 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 32 .._DGS..NDDSDID2 + 60b0: 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 00 .._DSS....{h.... + 60c0: c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 45 .......pNSTECSTE + 60d0: 14 46 06 5f 42 43 4c 00 70 0a 00 60 70 42 52 54 .F._BCL.p..`pBRT + 60e0: 49 64 79 64 0a 04 64 a2 4a 04 95 60 0a 0b 74 0a Idyd..d.J..`..t. + 60f0: 0b 60 63 74 63 0a 01 63 70 72 64 63 00 63 70 83 .`ctc..cprdc.cp. + 6100: 88 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + 6110: 45 43 30 5f 50 57 41 43 63 00 61 70 78 77 61 0a EC0_PWACc.apxwa. + 6120: 64 00 0a ff 00 00 62 70 62 88 50 43 54 47 60 00 d.....bpb.PCTG`. + 6130: 75 60 a4 50 43 54 47 08 42 43 42 48 0a 00 14 3c u`.PCTG.BCBH...< + 6140: 5f 42 43 4d 01 70 01 42 43 4d 44 70 47 43 42 4c _BCM.p.BCMDpGCBL + 6150: 68 60 74 74 0a 0b 0a 01 00 60 5c 2e 5f 53 42 5f h`tt.....`\._SB_ + 6160: 4c 42 54 4e 5c 2f 05 5f 53 42 5f 50 43 49 30 53 LBTN\/._SB_PCI0S + 6170: 42 52 47 45 43 30 5f 53 54 42 52 14 11 5f 42 51 BRGEC0_STBR.._BQ + 6180: 43 00 a4 5c 2e 5f 53 42 5f 4c 42 54 4e 5b 82 43 C..\._SB_LBTN[.C + 6190: 07 44 44 30 33 14 1e 5f 41 44 52 08 a0 0b 93 44 .DD03.._ADR....D + 61a0: 49 44 33 0a 00 a4 0a 03 a1 0b a4 7b 0b ff ff 44 ID3........{...D + 61b0: 49 44 33 00 14 1d 5f 44 43 53 00 a0 0b 93 44 49 ID3..._DCS....DI + 61c0: 44 33 0a 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 D3........CDDSDI + 61d0: 44 33 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 D3.._DGS..NDDSDI + 61e0: 44 33 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 D3.._DSS....{h.. + 61f0: 00 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 .........pNSTECS + 6200: 54 45 5b 82 43 07 44 44 30 34 14 1e 5f 41 44 52 TE[.C.DD04.._ADR + 6210: 08 a0 0b 93 44 49 44 34 0a 00 a4 0a 04 a1 0b a4 ....DID4........ + 6220: 7b 0b ff ff 44 49 44 34 00 14 1d 5f 44 43 53 00 {...DID4..._DCS. + 6230: a0 0b 93 44 49 44 34 0a 00 a4 0a 0b a1 0a a4 43 ...DID4........C + 6240: 44 44 53 44 49 44 34 14 0f 5f 44 47 53 00 a4 4e DDSDID4.._DGS..N + 6250: 44 44 53 44 49 44 34 14 1f 5f 44 53 53 01 a0 18 DDSDID4.._DSS... + 6260: 93 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e .{h...........pN + 6270: 53 54 45 43 53 54 45 5b 82 43 07 44 44 30 35 14 STECSTE[.C.DD05. + 6280: 1e 5f 41 44 52 08 a0 0b 93 44 49 44 35 0a 00 a4 ._ADR....DID5... + 6290: 0a 05 a1 0b a4 7b 0b ff ff 44 49 44 35 00 14 1d .....{...DID5... + 62a0: 5f 44 43 53 00 a0 0b 93 44 49 44 35 0a 00 a4 0a _DCS....DID5.... + 62b0: 0b a1 0a a4 43 44 44 53 44 49 44 35 14 0f 5f 44 ....CDDSDID5.._D + 62c0: 47 53 00 a4 4e 44 44 53 44 49 44 35 14 1f 5f 44 GS..NDDSDID5.._D + 62d0: 53 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 SS....{h........ + 62e0: 00 00 c0 70 4e 53 54 45 43 53 54 45 5b 82 43 07 ...pNSTECSTE[.C. + 62f0: 44 44 30 36 14 1e 5f 41 44 52 08 a0 0b 93 44 49 DD06.._ADR....DI + 6300: 44 36 0a 00 a4 0a 06 a1 0b a4 7b 0b ff ff 44 49 D6........{...DI + 6310: 44 36 00 14 1d 5f 44 43 53 00 a0 0b 93 44 49 44 D6..._DCS....DID + 6320: 36 0a 00 a4 0a 0b a1 0a a4 43 44 44 53 44 49 44 6........CDDSDID + 6330: 36 14 0f 5f 44 47 53 00 a4 4e 44 44 53 44 49 44 6.._DGS..NDDSDID + 6340: 36 14 1f 5f 44 53 53 01 a0 18 93 7b 68 0c 00 00 6.._DSS....{h... + 6350: 00 c0 00 0c 00 00 00 c0 70 4e 53 54 45 43 53 54 ........pNSTECST + 6360: 45 5b 82 43 07 44 44 30 37 14 1e 5f 41 44 52 08 E[.C.DD07.._ADR. + 6370: a0 0b 93 44 49 44 37 0a 00 a4 0a 07 a1 0b a4 7b ...DID7........{ + 6380: 0b ff ff 44 49 44 37 00 14 1d 5f 44 43 53 00 a0 ...DID7..._DCS.. + 6390: 0b 93 44 49 44 37 0a 00 a4 0a 0b a1 0a a4 43 44 ..DID7........CD + 63a0: 44 53 44 49 44 37 14 0f 5f 44 47 53 00 a4 4e 44 DSDID7.._DGS..ND + 63b0: 44 53 44 49 44 37 14 1f 5f 44 53 53 01 a0 18 93 DSDID7.._DSS.... + 63c0: 7b 68 0c 00 00 00 c0 00 0c 00 00 00 c0 70 4e 53 {h...........pNS + 63d0: 54 45 43 53 54 45 5b 82 43 07 44 44 30 38 14 1e TECSTE[.C.DD08.. + 63e0: 5f 41 44 52 08 a0 0b 93 44 49 44 38 0a 00 a4 0a _ADR....DID8.... + 63f0: 08 a1 0b a4 7b 0b ff ff 44 49 44 38 00 14 1d 5f ....{...DID8..._ + 6400: 44 43 53 00 a0 0b 93 44 49 44 38 0a 00 a4 0a 0b DCS....DID8..... + 6410: a1 0a a4 43 44 44 53 44 49 44 38 14 0f 5f 44 47 ...CDDSDID8.._DG + 6420: 53 00 a4 4e 44 44 53 44 49 44 38 14 1f 5f 44 53 S..NDDSDID8.._DS + 6430: 53 01 a0 18 93 7b 68 0c 00 00 00 c0 00 0c 00 00 S....{h......... + 6440: 00 c0 70 4e 53 54 45 43 53 54 45 14 4f 06 53 44 ..pNSTECSTE.O.SD + 6450: 44 4c 01 75 4e 44 49 44 70 7b 68 0b 0f 0f 00 60 DL.uNDIDp{h....` + 6460: 7d 0c 00 00 00 80 60 61 a0 09 93 44 49 44 4c 60 }.....`a...DIDL` + 6470: a4 61 a0 09 93 44 44 4c 32 60 a4 61 a0 09 93 44 .a...DDL2`.a...D + 6480: 44 4c 33 60 a4 61 a0 09 93 44 44 4c 34 60 a4 61 DL3`.a...DDL4`.a + 6490: a0 09 93 44 44 4c 35 60 a4 61 a0 09 93 44 44 4c ...DDL5`.a...DDL + 64a0: 36 60 a4 61 a0 09 93 44 44 4c 37 60 a4 61 a0 09 6`.a...DDL7`.a.. + 64b0: 93 44 44 4c 38 60 a4 61 a4 0a 00 14 43 07 43 44 .DDL8`.a....C.CD + 64c0: 44 53 01 70 7b 68 0b 0f 0f 00 60 a0 08 93 0a 00 DS.p{h....`..... + 64d0: 60 a4 0a 1d a0 0a 93 43 41 44 4c 60 a4 0a 1f a0 `......CADL`.... + 64e0: 0a 93 43 41 4c 32 60 a4 0a 1f a0 0a 93 43 41 4c ..CAL2`......CAL + 64f0: 33 60 a4 0a 1f a0 0a 93 43 41 4c 34 60 a4 0a 1f 3`......CAL4`... + 6500: a0 0a 93 43 41 4c 35 60 a4 0a 1f a0 0a 93 43 41 ...CAL5`......CA + 6510: 4c 36 60 a4 0a 1f a0 0a 93 43 41 4c 37 60 a4 0a L6`......CAL7`.. + 6520: 1f a0 0a 93 43 41 4c 38 60 a4 0a 1f a4 0a 1d 14 ....CAL8`....... + 6530: 43 07 4e 44 44 53 01 70 7b 68 0b 0f 0f 00 60 a0 C.NDDS.p{h....`. + 6540: 08 93 0a 00 60 a4 0a 00 a0 0a 93 4e 41 44 4c 60 ....`......NADL` + 6550: a4 0a 01 a0 0a 93 4e 44 4c 32 60 a4 0a 01 a0 0a ......NDL2`..... + 6560: 93 4e 44 4c 33 60 a4 0a 01 a0 0a 93 4e 44 4c 34 .NDL3`......NDL4 + 6570: 60 a4 0a 01 a0 0a 93 4e 44 4c 35 60 a4 0a 01 a0 `......NDL5`.... + 6580: 0a 93 4e 44 4c 36 60 a4 0a 01 a0 0a 93 4e 44 4c ..NDL6`......NDL + 6590: 37 60 a4 0a 01 a0 0a 93 4e 44 4c 38 60 a4 0a 01 7`......NDL8`... + 65a0: a4 0a 00 14 4b 14 53 57 48 44 09 70 01 55 50 44 ....K.SWHD.p.UPD + 65b0: 4e a0 4c 07 93 44 4f 53 46 0a 01 a0 13 5c 4e 41 N.L..DOSF....\NA + 65c0: 54 4b 70 0a 00 5c 2e 5f 53 42 5f 53 46 55 4e a1 TKp..\._SB_SFUN. + 65d0: 0e 70 0a 04 5c 2e 5f 53 42 5f 53 46 55 4e 70 68 .p..\._SB_SFUNph + 65e0: 5c 2e 5f 53 42 5f 53 53 54 45 a0 2b 5c 4e 41 54 \._SB_SSTE.+\NAT + 65f0: 4b 70 4d 41 32 44 68 5c 2e 5f 53 42 5f 4e 53 54 KpMA2Dh\._SB_NST + 6600: 45 70 5c 2e 5f 53 42 5f 4e 53 54 45 5c 2e 5f 53 Ep\._SB_NSTE\._S + 6610: 42 5f 53 53 54 45 49 53 4d 49 0a 94 86 5c 2f 03 B_SSTEISMI...\/. + 6620: 5f 53 42 5f 50 43 49 30 47 46 58 30 0a 81 a1 4d _SB_PCI0GFX0...M + 6630: 0b 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 47 .p..\/._SB_PCI0G + 6640: 46 58 30 43 45 56 54 70 0a 03 5c 2f 04 5f 53 42 FX0CEVTp..\/._SB + 6650: 5f 50 43 49 30 47 46 58 30 43 53 54 53 a0 4e 05 _PCI0GFX0CSTS.N. + 6660: 92 93 5c 2e 5f 53 42 5f 43 41 44 4c 5c 2e 5f 53 ..\._SB_CADL\._S + 6670: 42 5f 50 41 44 4c 70 5c 2e 5f 53 42 5f 43 41 44 B_PADLp\._SB_CAD + 6680: 4c 5c 2e 5f 53 42 5f 50 41 44 4c a0 17 93 4f 53 L\._SB_PADL...OS + 6690: 46 47 4f 53 58 50 86 5c 2e 5f 53 42 5f 50 43 49 FGOSXP.\._SB_PCI + 66a0: 30 0a 00 a1 13 86 5c 2f 03 5f 53 42 5f 50 43 49 0.....\/._SB_PCI + 66b0: 30 47 46 58 30 0a 00 5b 22 0b e8 03 70 4d 41 32 0GFX0..["...pMA2 + 66c0: 44 68 5c 2e 5f 53 42 5f 4e 53 54 45 57 4e 44 44 Dh\._SB_NSTEWNDD + 66d0: 5c 2e 5f 53 42 5f 4e 53 54 45 86 5c 2f 03 5f 53 \._SB_NSTE.\/._S + 66e0: 42 5f 50 43 49 30 47 46 58 30 0a 80 a4 0a 00 14 B_PCI0GFX0...... + 66f0: 24 47 43 44 44 00 70 0a 01 5c 2e 5f 53 42 5f 53 $GCDD.p..\._SB_S + 6700: 46 55 4e 49 53 4d 49 0a 95 a4 5c 2e 5f 53 42 5f FUNISMI...\._SB_ + 6710: 43 53 54 45 14 24 47 4e 44 44 00 70 0a 05 5c 2e CSTE.$GNDD.p..\. + 6720: 5f 53 42 5f 53 46 55 4e 49 53 4d 49 0a 95 a4 5c _SB_SFUNISMI...\ + 6730: 2e 5f 53 42 5f 4e 53 54 45 14 24 47 43 41 44 00 ._SB_NSTE.$GCAD. + 6740: 70 0a 02 5c 2e 5f 53 42 5f 53 46 55 4e 49 53 4d p..\._SB_SFUNISM + 6750: 49 0a 95 a4 5c 2e 5f 53 42 5f 43 41 44 4c 14 31 I...\._SB_CADL.1 + 6760: 47 56 49 46 00 70 0a 67 5c 2e 5f 53 42 5f 56 42 GVIF.p.g\._SB_VB + 6770: 49 46 70 0a 00 5c 2e 5f 53 42 5f 53 46 55 4e 49 IFp..\._SB_SFUNI + 6780: 53 4d 49 0a 95 a4 5c 2e 5f 53 42 5f 56 42 49 46 SMI...\._SB_VBIF + 6790: 14 44 27 41 44 56 44 00 a0 15 7b 44 4f 53 46 0a .D'ADVD...{DOSF. + 67a0: 03 00 47 43 44 44 47 43 41 44 47 56 49 46 a1 09 ..GCDDGCADGVIF.. + 67b0: 4f 47 43 41 4f 47 43 44 a0 47 24 5c 4e 41 54 4b OGCAOGCD.G$\NATK + 67c0: a0 1e 55 50 44 4e 70 4d 44 32 41 5c 2e 5f 53 42 ..UPDNpMD2A\._SB + 67d0: 5f 43 53 54 45 4e 58 54 44 70 00 55 50 44 4e 70 _CSTENXTDp.UPDNp + 67e0: 00 60 70 4d 44 32 41 5c 2e 5f 53 42 5f 43 41 44 .`pMD2A\._SB_CAD + 67f0: 4c 61 70 00 62 a0 1d 7b 5c 2e 5f 53 42 5f 56 47 Lap.b..{\._SB_VG + 6800: 41 46 0a 01 00 7b 5c 2e 5f 53 42 5f 56 42 49 46 AF...{\._SB_VBIF + 6810: 0a 08 62 a0 25 7b 93 62 0a 08 7b 5c 2e 5f 53 42 ..b.%{.b..{\._SB + 6820: 5f 56 47 41 46 0a 01 00 00 7b 4e 58 54 44 61 4e _VGAF....{NXTDaN + 6830: 58 54 44 70 4e 58 54 44 60 a2 41 1c 92 93 4e 58 XTDpNXTD`.A...NX + 6840: 54 44 60 75 4e 58 54 44 a0 15 90 93 44 4f 53 46 TD`uNXTD....DOSF + 6850: 0a 01 93 4e 58 54 44 0a 03 75 4e 58 54 44 a0 25 ...NXTD..uNXTD.% + 6860: 7b 44 4f 53 46 0a 03 00 a0 0d 93 4e 58 54 44 0a {DOSF......NXTD. + 6870: 05 75 4e 58 54 44 a0 0d 93 4e 58 54 44 0a 06 75 .uNXTD...NXTD..u + 6880: 4e 58 54 44 a0 0d 93 4e 58 54 44 0a 07 75 4e 58 NXTD...NXTD..uNX + 6890: 54 44 a0 17 7b 44 4f 53 46 0a 03 00 a0 0d 93 4e TD..{DOSF......N + 68a0: 58 54 44 0a 09 75 4e 58 54 44 a0 15 90 93 44 4f XTD..uNXTD....DO + 68b0: 53 46 0a 01 93 4e 58 54 44 0a 0a 75 4e 58 54 44 SF...NXTD..uNXTD + 68c0: a0 0d 93 4e 58 54 44 0a 0b 75 4e 58 54 44 a0 15 ...NXTD..uNXTD.. + 68d0: 90 93 44 4f 53 46 0a 01 93 4e 58 54 44 0a 0c 75 ..DOSF...NXTD..u + 68e0: 4e 58 54 44 a2 15 90 94 4e 58 54 44 0a 0c 95 4e NXTD....NXTD...N + 68f0: 58 54 44 0a 10 75 4e 58 54 44 a0 24 93 44 4f 53 XTD..uNXTD.$.DOS + 6900: 46 0a 01 a0 0d 93 4e 58 54 44 0a 11 75 4e 58 54 F.....NXTD..uNXT + 6910: 44 a0 0d 93 4e 58 54 44 0a 12 75 4e 58 54 44 a0 D...NXTD..uNXTD. + 6920: 0d 93 4e 58 54 44 0a 13 75 4e 58 54 44 a0 3b 93 ..NXTD..uNXTD.;. + 6930: 44 4f 53 46 0a 01 a2 16 90 92 95 4e 58 54 44 0a DOSF.......NXTD. + 6940: 14 95 4e 58 54 44 0a 20 75 4e 58 54 44 a0 0d 93 ..NXTD. uNXTD... + 6950: 4e 58 54 44 0a 21 75 4e 58 54 44 a0 0d 93 4e 58 NXTD.!uNXTD...NX + 6960: 54 44 0a 22 75 4e 58 54 44 a0 0d 93 4e 58 54 44 TD."uNXTD...NXTD + 6970: 0a 23 75 4e 58 54 44 a0 15 90 93 44 4f 53 46 0a .#uNXTD....DOSF. + 6980: 01 93 4e 58 54 44 0a 24 75 4e 58 54 44 a2 15 90 ..NXTD.$uNXTD... + 6990: 94 4e 58 54 44 0a 24 95 4e 58 54 44 0a 28 75 4e .NXTD.$.NXTD.(uN + 69a0: 58 54 44 a0 15 90 93 44 4f 53 46 0a 01 93 4e 58 XTD....DOSF...NX + 69b0: 54 44 0a 28 75 4e 58 54 44 a2 15 90 94 4e 58 54 TD.(uNXTD....NXT + 69c0: 44 0a 28 95 4e 58 54 44 0a 30 75 4e 58 54 44 a0 D.(.NXTD.0uNXTD. + 69d0: 15 90 93 44 4f 53 46 0a 01 93 4e 58 54 44 0a 30 ...DOSF...NXTD.0 + 69e0: 75 4e 58 54 44 a0 0e 94 4e 58 54 44 0a 30 70 01 uNXTD...NXTD.0p. + 69f0: 4e 58 54 44 7b 4e 58 54 44 61 60 a4 4e 58 54 44 NXTD{NXTDa`.NXTD + 6a00: a4 47 4e 44 44 14 35 47 43 44 53 00 a0 15 7b 44 .GNDD.5GCDS...{D + 6a10: 4f 53 46 0a 03 00 47 43 44 44 47 43 41 44 47 56 OSF...GCDDGCADGV + 6a20: 49 46 a1 09 4f 47 43 41 4f 47 43 44 a4 4d 44 32 IF..OGCAOGCD.MD2 + 6a30: 41 5c 2e 5f 53 42 5f 43 53 54 45 14 08 4e 41 54 A\._SB_CSTE..NAT + 6a40: 4b 00 a4 01 08 42 43 4d 44 0a 00 14 0f 55 50 42 K....BCMD....UPB + 6a50: 4c 00 86 4c 43 44 44 0a 86 a4 00 14 0f 44 57 42 L..LCDD......DWB + 6a60: 4c 00 86 4c 43 44 44 0a 87 a4 00 14 44 04 47 43 L..LCDD.....D.GC + 6a70: 42 4c 01 70 0a 00 60 7b 68 0c ff ff ff 7f 68 a2 BL.p..`{h.....h. + 6a80: 2e 95 60 74 0a 0b 0a 01 00 70 83 88 50 43 54 47 ..`t.....p..PCTG + 6a90: 60 00 61 70 83 88 50 43 54 47 72 60 0a 01 00 00 `.ap..PCTGr`.... + 6aa0: 62 a0 0a 90 92 94 68 61 94 68 62 a5 75 60 a4 60 b.....ha.hb.u`.` + 6ab0: 5b 82 42 05 5c 2e 5f 53 42 5f 4d 45 4d 32 08 5f [.B.\._SB_MEM2._ + 6ac0: 48 49 44 0c 41 d0 0c 01 08 5f 55 49 44 0a 02 08 HID.A...._UID... + 6ad0: 43 52 53 5f 11 1d 0a 1a 86 09 00 01 00 00 00 20 CRS_........... + 6ae0: 00 00 20 00 86 09 00 01 00 00 00 40 00 00 20 00 .. ........@.. . + 6af0: 79 00 14 11 5f 43 52 53 00 a0 0a 49 47 44 53 a4 y..._CRS...IGDS. + 6b00: 43 52 53 5f 5b 82 46 28 52 50 30 33 08 5f 41 44 CRS_[.F(RP03._AD + 6b10: 52 0c 02 00 1c 00 08 5f 48 50 50 12 0a 04 0a 08 R......_HPP..... + 6b20: 0a 40 0a 01 0a 00 5b 80 4c 43 54 4c 02 0a 50 0a .@....[.LCTL..P. + 6b30: 04 5b 81 12 4c 43 54 4c 01 00 04 50 45 4c 44 01 .[..LCTL...PELD. + 6b40: 50 45 52 4c 01 5b 80 53 4c 4f 54 02 0a 54 0a 10 PERL.[.SLOT..T.. + 6b50: 5b 81 43 04 53 4c 4f 54 01 53 43 41 50 20 53 43 [.C.SLOT.SCAP SC + 6b60: 54 4c 10 41 42 50 31 01 50 46 44 31 01 4d 53 43 TL.ABP1.PFD1.MSC + 6b70: 31 01 50 44 43 31 01 43 43 31 30 01 4d 53 31 30 1.PDC1.CC10.MS10 + 6b80: 01 50 44 53 31 01 52 53 56 30 01 4c 41 53 43 01 .PDS1.RSV0.LASC. + 6b90: 52 53 56 31 07 5b 80 52 48 55 42 02 0a 60 0a 10 RSV1.[.RHUB..`.. + 6ba0: 5b 81 1a 52 48 55 42 01 50 4d 49 44 10 50 4d 45 [..RHUB.PMID.PME + 6bb0: 53 01 50 4d 45 50 01 52 53 56 32 0e 5b 80 4d 49 S.PMEP.RSV2.[.MI + 6bc0: 53 43 02 0a d8 0a 08 5b 81 3d 4d 49 53 43 01 52 SC.....[.=MISC.R + 6bd0: 53 56 34 1e 50 4d 43 45 01 48 50 43 45 01 50 4d SV4.PMCE.HPCE.PM + 6be0: 4d 53 01 48 50 50 44 01 48 50 41 42 01 48 50 43 MS.HPPD.HPAB.HPC + 6bf0: 43 01 48 50 4c 41 01 52 53 56 33 19 48 50 43 53 C.HPLA.RSV3.HPCS + 6c00: 01 50 4d 43 53 01 5b 80 50 58 43 53 02 0a 40 0a .PMCS.[.PXCS..@. + 6c10: c0 5b 81 41 05 50 58 43 53 40 00 40 09 00 0d 4c .[.A.PXCS@.@...L + 6c20: 41 53 58 01 00 32 41 42 50 58 01 00 02 50 44 43 ASX..2ABPX...PDC + 6c30: 58 01 00 02 50 44 53 58 01 00 01 4c 53 43 58 01 X...PDSX...LSCX. + 6c40: 00 27 00 10 50 53 50 58 01 00 4f 3a 00 1e 48 50 .'..PSPX..O:..HP + 6c50: 45 58 01 50 4d 45 58 01 00 1e 48 50 53 58 01 50 EX.PMEX...HPSX.P + 6c60: 4d 53 58 01 14 1f 48 50 48 4b 00 70 0a 01 50 44 MSX...HPHK.p..PD + 6c70: 43 31 70 0a 01 48 50 43 53 70 0a 00 50 45 4c 44 C1p..HPCSp..PELD + 6c80: 5b 22 0a fa 5b 82 4c 04 58 43 46 30 08 5f 41 44 ["..[.L.XCF0._AD + 6c90: 52 0a 00 14 35 5f 53 54 41 00 a0 10 7b 5c 46 44 R...5_STA...{\FD + 6ca0: 52 54 0c 00 00 04 00 00 a4 0a 00 70 5c 2e 5f 53 RT.........p\._S + 6cb0: 42 5f 52 42 50 45 0c 5a 20 0e 00 60 a0 09 7b 60 B_RBPE.Z ..`..{` + 6cc0: 0a 40 00 a4 0a 0f a4 0a 00 14 08 5f 52 4d 56 00 .@........._RMV. + 6cd0: a4 01 5b 82 13 58 43 46 31 08 5f 41 44 52 0a 01 ..[..XCF1._ADR.. + 6ce0: 14 06 5f 45 4a 30 01 5b 82 13 58 43 46 32 08 5f .._EJ0.[..XCF2._ + 6cf0: 41 44 52 0a 02 14 06 5f 45 4a 30 01 5b 82 13 58 ADR...._EJ0.[..X + 6d00: 43 46 33 08 5f 41 44 52 0a 03 14 06 5f 45 4a 30 CF3._ADR...._EJ0 + 6d10: 01 5b 82 13 58 43 46 34 08 5f 41 44 52 0a 04 14 .[..XCF4._ADR... + 6d20: 06 5f 45 4a 30 01 5b 82 13 58 43 46 35 08 5f 41 ._EJ0.[..XCF5._A + 6d30: 44 52 0a 05 14 06 5f 45 4a 30 01 5b 82 13 58 43 DR...._EJ0.[..XC + 6d40: 46 36 08 5f 41 44 52 0a 06 14 06 5f 45 4a 30 01 F6._ADR...._EJ0. + 6d50: 5b 82 13 58 43 46 37 08 5f 41 44 52 0a 07 14 06 [..XCF7._ADR.... + 6d60: 5f 45 4a 30 01 14 0f 5f 50 52 57 00 a4 47 50 52 _EJ0..._PRW..GPR + 6d70: 57 0a 09 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 W......_PRT...PI + 6d80: 43 4d a4 41 52 30 36 a4 50 52 30 36 5b 01 4d 55 CM.AR06.PR06[.MU + 6d90: 54 58 00 5b 80 50 52 54 30 01 0a 80 0a 04 5b 81 TX.[.PRT0.....[. + 6da0: 0b 50 52 54 30 13 50 38 30 48 20 14 40 08 50 38 .PRT0.P80H .@.P8 + 6db0: 58 48 0a a0 18 93 68 0a 00 70 7d 7b 50 38 30 44 XH....h..p}{P80D + 6dc0: 0c 00 ff ff ff 00 69 00 50 38 30 44 a0 1c 93 68 ......i.P80D...h + 6dd0: 0a 01 70 7d 7b 50 38 30 44 0c ff 00 ff ff 00 79 ..p}{P80D......y + 6de0: 69 0a 08 00 00 50 38 30 44 a0 1c 93 68 0a 02 70 i....P80D...h..p + 6df0: 7d 7b 50 38 30 44 0c ff ff 00 ff 00 79 69 0a 10 }{P80D......yi.. + 6e00: 00 00 50 38 30 44 a0 1c 93 68 0a 03 70 7d 7b 50 ..P80D...h..p}{P + 6e10: 38 30 44 0c ff ff ff 00 00 79 69 0a 18 00 00 50 80D......yi....P + 6e20: 38 30 44 70 50 38 30 44 50 38 30 48 5b 80 53 50 80DpP80DP80H[.SP + 6e30: 52 54 01 0a b2 0a 02 5b 81 0b 53 50 52 54 11 53 RT.....[..SPRT.S + 6e40: 53 4d 50 08 14 13 5c 5f 50 49 43 01 70 68 47 50 SMP...\_PIC.phGP + 6e50: 49 43 70 68 50 49 43 4d 14 0b 5f 50 54 53 01 50 ICphPICM.._PTS.P + 6e60: 54 53 5f 68 14 13 5f 57 41 4b 09 57 41 4b 5f 68 TS_h.._WAK.WAK_h + 6e70: a4 12 06 02 0a 00 0a 00 14 1e 47 45 54 42 0b 77 ..........GETB.w + 6e80: 68 0a 08 60 77 69 0a 08 61 5b 13 6a 60 61 54 42 h..`wi..a[.j`aTB + 6e90: 46 33 a4 54 42 46 33 14 41 1c 50 4e 4f 54 08 a0 F3.TBF3.A.PNOT.. + 6ea0: 49 19 94 54 43 4e 54 0a 01 a0 31 7b 50 44 43 30 I..TCNT...1{PDC0 + 6eb0: 0a 08 00 86 5c 2e 5f 50 52 5f 43 50 55 30 0a 80 ....\._PR_CPU0.. + 6ec0: a0 1a 7b 50 44 43 30 0a 10 00 5b 22 0a 64 86 5c ..{PDC0...[".d.\ + 6ed0: 2e 5f 50 52 5f 43 50 55 30 0a 81 a0 31 7b 50 44 ._PR_CPU0...1{PD + 6ee0: 43 31 0a 08 00 86 5c 2e 5f 50 52 5f 43 50 55 31 C1....\._PR_CPU1 + 6ef0: 0a 80 a0 1a 7b 50 44 43 31 0a 10 00 5b 22 0a 64 ....{PDC1...[".d + 6f00: 86 5c 2e 5f 50 52 5f 43 50 55 31 0a 81 a0 31 7b .\._PR_CPU1...1{ + 6f10: 50 44 43 32 0a 08 00 86 5c 2e 5f 50 52 5f 43 50 PDC2....\._PR_CP + 6f20: 55 32 0a 80 a0 1a 7b 50 44 43 32 0a 10 00 5b 22 U2....{PDC2...[" + 6f30: 0a 64 86 5c 2e 5f 50 52 5f 43 50 55 32 0a 81 a0 .d.\._PR_CPU2... + 6f40: 31 7b 50 44 43 33 0a 08 00 86 5c 2e 5f 50 52 5f 1{PDC3....\._PR_ + 6f50: 43 50 55 33 0a 80 a0 1a 7b 50 44 43 33 0a 10 00 CPU3....{PDC3... + 6f60: 5b 22 0a 64 86 5c 2e 5f 50 52 5f 43 50 55 33 0a [".d.\._PR_CPU3. + 6f70: 81 a0 31 7b 50 44 43 34 0a 08 00 86 5c 2e 5f 50 ..1{PDC4....\._P + 6f80: 52 5f 43 50 55 34 0a 80 a0 1a 7b 50 44 43 34 0a R_CPU4....{PDC4. + 6f90: 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 5f 43 50 55 ..[".d.\._PR_CPU + 6fa0: 34 0a 81 a0 31 7b 50 44 43 35 0a 08 00 86 5c 2e 4...1{PDC5....\. + 6fb0: 5f 50 52 5f 43 50 55 35 0a 80 a0 1a 7b 50 44 43 _PR_CPU5....{PDC + 6fc0: 35 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 5f 43 5...[".d.\._PR_C + 6fd0: 50 55 35 0a 81 a0 31 7b 50 44 43 36 0a 08 00 86 PU5...1{PDC6.... + 6fe0: 5c 2e 5f 50 52 5f 43 50 55 36 0a 80 a0 1a 7b 50 \._PR_CPU6....{P + 6ff0: 44 43 36 0a 10 00 5b 22 0a 64 86 5c 2e 5f 50 52 DC6...[".d.\._PR + 7000: 5f 43 50 55 36 0a 81 a0 31 7b 50 44 43 37 0a 08 _CPU6...1{PDC7.. + 7010: 00 86 5c 2e 5f 50 52 5f 43 50 55 37 0a 80 a0 1a ..\._PR_CPU7.... + 7020: 7b 50 44 43 37 0a 10 00 5b 22 0a 64 86 5c 2e 5f {PDC7...[".d.\._ + 7030: 50 52 5f 43 50 55 37 0a 81 a1 1f 86 5c 2e 5f 50 PR_CPU7.....\._P + 7040: 52 5f 43 50 55 30 0a 80 5b 22 0a 64 86 5c 2e 5f R_CPU0..[".d.\._ + 7050: 50 52 5f 43 50 55 30 0a 81 14 3c 54 52 41 50 0a PR_CPU0...BIF0..0ECAV + 9e50: a0 0b 42 53 4c 46 70 42 31 4d 44 60 a1 07 70 42 ..BSLFpB1MD`..pB + 9e60: 30 4d 44 60 a0 16 92 93 60 0b ff ff 7a 60 0a 0f 0MD`....`...z`.. + 9e70: 61 7b 61 0a 01 61 7f 61 0a 01 60 a1 04 70 ff 60 a{a..a.a..`..p.` + 9e80: a4 60 14 2d 42 49 46 31 00 a0 1f 45 43 41 56 a0 .`.-BIF1...ECAV. + 9e90: 0b 42 53 4c 46 70 42 31 44 43 60 a1 07 70 42 30 .BSLFpB1DC`..pB0 + 9ea0: 44 43 60 7b 60 0b ff ff 60 a1 04 70 ff 60 a4 60 DC`{`...`..p.`.` + 9eb0: 14 2d 42 49 46 32 00 a0 1f 45 43 41 56 a0 0b 42 .-BIF2...ECAV..B + 9ec0: 53 4c 46 70 42 31 46 43 60 a1 07 70 42 30 46 43 SLFpB1FC`..pB0FC + 9ed0: 60 7b 60 0b ff ff 60 a1 04 70 ff 60 a4 60 14 3e `{`...`..p.`.`.> + 9ee0: 42 49 46 33 00 a0 30 45 43 41 56 a0 0b 42 53 4c BIF3..0ECAV..BSL + 9ef0: 46 70 42 31 4d 44 60 a1 07 70 42 30 4d 44 60 a0 FpB1MD`..pB0MD`. + 9f00: 16 92 93 60 0b ff ff 7a 60 0a 09 60 7b 60 0a 01 ...`...z`..`{`.. + 9f10: 60 7f 60 0a 01 60 a1 04 70 ff 60 a4 60 14 27 42 `.`..`..p.`.`.'B + 9f20: 49 46 34 00 a0 19 45 43 41 56 a0 0b 42 53 4c 46 IF4...ECAV..BSLF + 9f30: 70 42 31 44 56 60 a1 07 70 42 30 44 56 60 a1 04 pB1DV`..pB0DV`.. + 9f40: 70 ff 60 a4 60 14 47 06 42 49 46 39 00 08 42 53 p.`.`.G.BIF9..BS + 9f50: 54 52 11 03 0a 20 70 53 4d 42 52 52 44 42 4c 42 TR... pSMBRRDBLB + 9f60: 41 44 52 0a 21 60 a0 25 92 93 83 88 60 0a 00 00 ADR.!`.%....`... + 9f70: 0a 00 70 5c 2e 5f 53 42 5f 4d 4e 41 4d 42 53 54 ..p\._SB_MNAMBST + 9f80: 52 70 0a 00 88 42 53 54 52 0a 04 00 a1 1b 70 83 Rp...BSTR.....p. + 9f90: 88 60 0a 02 00 42 53 54 52 70 0a 00 88 42 53 54 .`...BSTRp...BST + 9fa0: 52 83 88 60 0a 01 00 00 a4 42 53 54 52 14 27 42 R..`.....BSTR.'B + 9fb0: 49 46 41 00 a0 19 45 43 41 56 a0 0b 42 53 4c 46 IFA...ECAV..BSLF + 9fc0: 70 42 31 53 4e 60 a1 07 70 42 30 53 4e 60 a1 04 pB1SN`..pB0SN`.. + 9fd0: 70 ff 60 a4 60 14 27 42 53 54 53 00 a0 19 45 43 p.`.`.'BSTS...EC + 9fe0: 41 56 a0 0b 42 53 4c 46 70 42 31 53 54 60 a1 07 AV..BSLFpB1ST`.. + 9ff0: 70 42 30 53 54 60 a1 04 70 ff 60 a4 60 14 27 42 pB0ST`..p.`.`.'B + a000: 43 52 54 00 a0 19 45 43 41 56 a0 0b 42 53 4c 46 CRT...ECAV..BSLF + a010: 70 42 31 43 43 60 a1 07 70 42 30 43 43 60 a1 04 pB1CC`..pB0CC`.. + a020: 70 ff 60 a4 60 14 31 42 52 43 50 00 a0 23 45 43 p.`.`.1BRCP..#EC + a030: 41 56 a0 0b 42 53 4c 46 70 42 31 52 43 60 a1 07 AV..BSLFpB1RC`.. + a040: 70 42 30 52 43 60 a0 09 93 60 0b ff ff 70 ff 60 pB0RC`...`...p.` + a050: a1 04 70 ff 60 a4 60 14 27 42 56 4f 54 00 a0 19 ..p.`.`.'BVOT... + a060: 45 43 41 56 a0 0b 42 53 4c 46 70 42 31 56 4c 60 ECAV..BSLFpB1VL` + a070: a1 07 70 42 30 56 4c 60 a1 04 70 ff 60 a4 60 10 ..pB0VL`..p.`.`. + a080: 4e 06 5c 00 14 22 43 48 47 53 09 70 5c 2f 05 5f N.\.."CHGS.p\/._ + a090: 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f 42 SB_PCI0SBRGEC0_B + a0a0: 43 48 47 68 60 a4 60 08 42 53 4c 46 00 14 17 42 CHGh`.`.BSLF...B + a0b0: 41 54 53 09 a0 08 68 70 01 42 53 4c 46 a1 07 70 ATS...hp.BSLF..p + a0c0: 00 42 53 4c 46 5b 01 4d 4d 50 58 00 14 0e 42 41 .BSLF[.MMPX...BA + a0d0: 54 4f 08 5b 23 4d 4d 50 58 ff ff 14 0c 42 41 54 TO.[#MMPX....BAT + a0e0: 52 08 5b 27 4d 4d 50 58 08 42 4c 4c 4f 00 10 43 R.['MMPX.BLLO..C + a0f0: 14 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + a100: 45 43 30 5f 14 4d 04 5f 51 41 31 00 70 44 43 50 EC0_.M._QA1.pDCP + a110: 53 0a 00 5c 2e 5f 53 42 5f 44 43 50 46 a0 10 5c S..\._SB_DCPF..\ + a120: 2e 5f 53 42 5f 44 43 50 46 5b 22 0b d0 07 86 5c ._SB_DCPF["....\ + a130: 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 30 0a 80 /._SB_PCI0BAT0.. + a140: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 30 .\/._SB_PCI0BAT0 + a150: 0a 81 14 46 04 5f 51 41 35 00 70 01 42 4c 4c 4f ...F._QA5.p.BLLO + a160: a0 1c 5c 2e 5f 53 42 5f 41 54 4b 50 5c 2f 03 5f ..\._SB_ATKP\/._ + a170: 53 42 5f 41 54 4b 44 49 41 4e 45 0a 6e a1 1b a0 SB_ATKDIANE.n... + a180: 19 42 41 54 50 0a 00 86 5c 2f 03 5f 53 42 5f 50 .BATP...\/._SB_P + a190: 43 49 30 42 41 54 30 0a 80 14 46 05 5f 51 41 33 CI0BAT0...F._QA3 + a1a0: 00 a0 4e 04 42 41 54 50 0a 00 70 42 43 4c 45 0a ..N.BATP..pBCLE. + a1b0: 00 60 a0 17 93 60 0a 00 86 5c 2f 03 5f 53 42 5f .`...`...\/._SB_ + a1c0: 50 43 49 30 42 41 54 30 0a 80 a1 25 86 5c 2f 03 PCI0BAT0...%.\/. + a1d0: 5f 53 42 5f 50 43 49 30 42 41 54 30 0a 81 86 5c _SB_PCI0BAT0...\ + a1e0: 2f 03 5f 53 42 5f 50 43 49 30 41 43 30 5f 0a 80 /._SB_PCI0AC0_.. + a1f0: 14 21 42 41 54 50 09 a0 0d 68 a4 5c 2e 5f 53 42 .!BATP...h.\._SB + a200: 5f 44 43 50 32 a1 0c a4 5c 2e 5f 53 42 5f 44 43 _DCP2...\._SB_DC + a210: 50 46 14 1f 4e 42 41 54 01 a0 18 42 41 54 50 0a PF..NBAT...BATP. + a220: 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 ..\/._SB_PCI0BAT + a230: 30 68 10 44 11 5c 00 08 4d 45 53 34 00 14 4d 08 0h.D.\..MES4..M. + a240: 4f 45 4d 53 01 a0 2d 93 68 0a 03 a0 19 92 94 5c OEMS..-.h......\ + a250: 4f 53 46 47 5c 4f 53 4d 45 70 01 5c 2e 5f 53 42 OSFG\OSMEp.\._SB + a260: 5f 57 49 44 45 a1 0d 70 00 5c 2e 5f 53 42 5f 57 _WIDE..p.\._SB_W + a270: 49 44 45 53 42 52 53 68 5c 2f 05 5f 53 42 5f 50 IDESBRSh\/._SB_P + a280: 43 49 30 53 42 52 47 45 43 30 5f 45 43 30 53 68 CI0SBRGEC0_EC0Sh + a290: 70 68 5c 2e 5f 53 42 5f 53 4c 50 4e 5c 44 49 41 ph\._SB_SLPN\DIA + a2a0: 47 72 68 0a d0 00 50 50 52 4a 68 70 68 5c 2e 5f Grh...PPRJhph\._ + a2b0: 53 42 5f 53 4c 50 54 a0 08 68 53 54 52 50 0a 01 SB_SLPT..hSTRP.. + a2c0: 50 52 4a 53 68 49 53 4d 49 0a 9d 14 4b 07 4f 45 PRJShISMI...K.OE + a2d0: 4d 57 01 49 53 4d 49 0a 9e 70 00 5c 2e 5f 53 42 MW.ISMI..p.\._SB + a2e0: 5f 53 4c 50 54 5c 2f 05 5f 53 42 5f 50 43 49 30 _SLPT\/._SB_PCI0 + a2f0: 53 42 52 47 45 43 30 5f 45 43 30 57 68 a0 22 93 SBRGEC0_EC0Wh.". + a300: 68 0a 04 a0 14 92 94 5c 4f 53 46 47 5c 4f 53 4d h......\OSFG\OSM + a310: 45 70 0a 02 4d 45 53 34 a1 07 70 00 4d 45 53 34 Ep..MES4..p.MES4 + a320: 53 42 52 57 68 a0 12 93 68 0a 04 86 5c 2e 5f 53 SBRWh...h...\._S + a330: 42 5f 53 4c 50 42 0a 02 50 52 4a 57 68 5c 44 49 B_SLPB..PRJWh\DI + a340: 41 47 72 68 0a f0 00 10 4e 50 5c 5f 53 42 5f 5b AGrh....NP\_SB_[ + a350: 82 45 50 50 54 49 44 08 43 41 44 52 0a 00 08 57 .EPPTID.CADR...W + a360: 4c 45 4e 0a 00 08 52 4c 45 4e 0a 00 08 43 41 4d LEN...RLEN...CAM + a370: 44 0a 00 08 4f 42 55 46 11 03 0a 10 08 49 42 55 D...OBUF.....IBU + a380: 46 11 03 0a 0f 08 45 52 52 4e 0a 00 08 5f 48 49 F.....ERRN..._HI + a390: 44 0c 25 d4 34 0e 08 5f 43 49 44 0c 41 d0 0c 02 D.%.4.._CID.A... + a3a0: 08 49 56 45 52 0c 00 00 03 00 08 54 53 44 4c 12 .IVER......TSDL. + a3b0: 28 04 0a 00 0d 43 50 55 20 54 65 6d 70 65 72 61 (....CPU Tempera + a3c0: 74 75 72 65 00 0a 05 0d 50 43 48 20 54 65 6d 70 ture....PCH Temp + a3d0: 65 72 61 74 75 72 65 00 08 54 4d 50 56 12 0c 02 erature..TMPV... + a3e0: 0c 00 00 00 80 0c 00 00 00 80 08 50 53 44 4c 12 ...........PSDL. + a3f0: 1c 04 0a 00 0d 43 50 55 20 50 6f 77 65 72 00 0a .....CPU Power.. + a400: 01 0d 47 66 78 20 50 6f 77 65 72 00 08 50 57 52 ..Gfx Power..PWR + a410: 56 12 0c 02 0c 00 00 00 80 0c 00 00 00 80 08 4f V..............O + a420: 53 44 4c 12 2a 06 0a 04 0d 46 61 6e 20 52 50 4d SDL.*....Fan RPM + a430: 00 0d 52 50 4d 00 0a 0c 0d 42 61 74 74 65 72 79 ..RPM....Battery + a440: 20 43 61 70 61 63 69 79 00 0d 6d 41 68 00 08 4f Capaciy..mAh..O + a450: 53 44 56 12 0c 02 0c 00 00 00 80 0c 00 00 00 80 SDV............. + a460: 14 45 06 54 53 44 44 00 08 54 4d 50 43 0a 00 70 .E.TSDD..TMPC..p + a470: 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 \/._SB_PCI0SBRGE + a480: 43 30 5f 45 43 50 55 54 4d 50 43 70 54 4d 50 43 C0_ECPUTMPCpTMPC + a490: 88 54 4d 50 56 0a 00 00 70 5c 2f 05 5f 53 42 5f .TMPV...p\/._SB_ + a4a0: 50 43 49 30 53 42 52 47 45 43 30 5f 45 43 50 55 PCI0SBRGEC0_ECPU + a4b0: 54 4d 50 43 70 54 4d 50 43 88 54 4d 50 56 0a 01 TMPCpTMPC.TMPV.. + a4c0: 00 a4 54 4d 50 56 14 08 50 57 52 47 00 a4 ff 14 ..TMPV..PWRG.... + a4d0: 3e 50 53 44 44 00 08 50 57 52 43 0a 00 70 50 57 >PSDD..PWRC..pPW + a4e0: 52 47 50 57 52 43 70 50 57 52 43 88 50 57 52 56 RGPWRCpPWRC.PWRV + a4f0: 0a 00 00 70 50 57 52 47 50 57 52 43 70 50 57 52 ...pPWRGPWRCpPWR + a500: 43 88 50 57 52 56 0a 01 00 a4 50 57 52 56 14 08 C.PWRV....PWRV.. + a510: 4f 53 44 47 00 a4 ff 14 3e 4f 53 44 44 00 08 4f OSDG....>OSDD..O + a520: 53 44 43 0a 00 70 4f 53 44 47 4f 53 44 43 70 4f SDC..pOSDGOSDCpO + a530: 53 44 43 88 4f 53 44 56 0a 00 00 70 4f 53 44 47 SDC.OSDV...pOSDG + a540: 4f 53 44 43 70 4f 53 44 43 88 4f 53 44 56 0a 01 OSDCpOSDC.OSDV.. + a550: 00 a4 4f 53 44 56 14 09 53 44 53 50 00 a4 0a 0a ..OSDV..SDSP.... + a560: 08 4d 42 4f 58 11 03 0a 1a 08 50 41 44 41 12 2e .MBOX.....PADA.. + a570: 0a 0a 01 0c ff ff ff ff 0c ff ff ff ff 0a 1a 0c ................ + a580: ff ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ + a590: ff ff ff 0c ff ff ff ff 0c ff ff ff ff 08 50 41 ..............PA + a5a0: 44 44 12 18 0a 0a 02 0b 71 02 0b 70 02 0a 1a 0a DD......q..p.... + a5b0: 62 0a 63 0a 60 0a 61 0a 65 0a 64 14 31 50 41 44 b.c.`.a.e.d.1PAD + a5c0: 54 00 7b 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 T.{\/._SB_PCI0SB + a5d0: 52 47 45 43 30 5f 50 42 53 59 0a 80 60 a0 0a 93 RGEC0_PBSY..`... + a5e0: 60 0a 00 a4 50 41 44 44 a4 50 41 44 41 14 3c 52 `...PADD.PADA.\._SB_A + a860: 54 4b 44 14 43 13 41 47 46 4e 09 a0 10 93 68 0a TKD.C.AGFN....h. + a870: 00 a4 5c 2e 5f 53 42 5f 47 4e 42 46 70 0a 00 60 ..\._SB_GNBFp..` + a880: 5b 80 5c 50 41 52 4d 00 68 0a 08 5b 81 20 5c 50 [.\PARM.h..[. \P + a890: 41 52 4d 03 4d 46 55 4e 10 53 46 55 4e 10 4c 45 ARM.MFUN.SFUN.LE + a8a0: 4e 5f 10 53 54 41 53 08 45 52 4f 52 08 70 0a 00 N_.STAS.EROR.p.. + a8b0: 45 52 4f 52 70 0a 01 53 54 41 53 a0 18 93 4d 46 ERORp..STAS...MF + a8c0: 55 4e 0a 02 42 53 4d 49 68 7b 53 54 41 53 0a fe UN..BSMIh{STAS.. + a8d0: 53 54 41 53 7b 4d 46 55 4e 0a f0 60 a0 16 93 60 STAS{MFUN..`...` + a8e0: 0a 10 4d 46 31 58 68 4c 45 4e 5f 4d 46 55 4e 53 ..MF1XhLEN_MFUNS + a8f0: 46 55 4e a0 20 93 4d 46 55 4e 0a 42 4d 46 34 32 FUN. .MFUN.BMF42 + a900: 68 53 46 55 4e 4c 45 4e 5f 7b 53 54 41 53 0a fe hSFUNLEN_{STAS.. + a910: 53 54 41 53 a0 1c 93 4d 46 55 4e 0a 01 47 56 45 STAS...MFUN..GVE + a920: 52 68 4c 45 4e 5f 7b 53 54 41 53 0a fe 53 54 41 RhLEN_{STAS..STA + a930: 53 a0 20 93 4d 46 55 4e 0a 30 4d 46 33 30 68 53 S. .MFUN.0MF30hS + a940: 46 55 4e 4c 45 4e 5f 7b 53 54 41 53 0a fe 53 54 FUNLEN_{STAS..ST + a950: 41 53 41 47 4c 4e 68 4d 46 55 4e 53 46 55 4e 4c ASAGLNhMFUNSFUNL + a960: 45 4e 5f a0 1a 93 53 54 41 53 0a 01 70 0a 01 45 EN_...STAS..p..E + a970: 52 4f 52 7d 53 54 41 53 0a 02 53 54 41 53 7b 53 ROR}STAS..STAS{S + a980: 54 41 53 0a fe 53 54 41 53 7d 53 54 41 53 0a 80 TAS..STAS}STAS.. + a990: 53 54 41 53 a4 0a 00 14 29 47 56 45 52 02 5b 80 STAS....)GVER.[. + a9a0: 5c 46 47 56 52 00 68 69 5b 81 14 5c 46 47 56 52 \FGVR.hi[..\FGVR + a9b0: 03 00 40 04 41 50 49 44 10 41 50 52 56 20 a4 0a ..@.APID.APRV .. + a9c0: 00 14 45 07 4d 46 33 30 03 5b 80 46 4d 33 30 00 ..E.MF30.[.FM30. + a9d0: 68 0a 08 5b 81 12 46 4d 33 30 03 00 30 53 4d 33 h..[..FM30..0SM3 + a9e0: 30 08 45 4d 33 30 08 70 0a 01 60 a0 0d 93 69 0a 0.EM30.p..`...i. + a9f0: 00 70 47 33 30 56 68 6a 60 a0 0d 93 69 0a 01 70 .pG30Vhj`...i..p + aa00: 45 43 30 31 68 6a 60 a0 0d 93 69 0a 02 70 45 43 EC01hj`...i..pEC + aa10: 30 32 68 6a 60 a0 13 60 70 60 45 4d 33 30 7d 53 02hj`..`p`EM30}S + aa20: 4d 33 30 0a 02 53 4d 33 30 7d 53 4d 33 30 0a 80 M30..SM30}SM30.. + aa30: 53 4d 33 30 a4 0a 00 14 41 04 47 33 30 56 02 a0 SM30....A.G30V.. + aa40: 08 95 69 0a 0c a4 0a 02 5b 80 5c 46 33 30 30 00 ..i.....[.\F300. + aa50: 68 69 5b 81 14 5c 46 33 30 30 03 00 40 04 53 56 hi[..\F300..@.SV + aa60: 45 52 10 4d 56 45 52 10 70 0a 00 4d 56 45 52 70 ER.MVER.p..MVERp + aa70: 0a 00 53 56 45 52 a4 0a 00 14 41 0b 45 43 30 31 ..SVER....A.EC01 + aa80: 02 a0 08 95 69 0a 10 a4 0a 02 5b 80 46 45 43 31 ....i.....[.FEC1 + aa90: 00 68 69 5b 81 27 46 45 43 31 03 00 40 04 45 43 .hi[.'FEC1..@.EC + aaa0: 4d 44 08 45 44 41 31 08 45 44 41 32 08 45 44 41 MD.EDA1.EDA2.EDA + aab0: 33 08 45 44 41 34 08 45 44 41 35 08 70 5c 2f 05 3.EDA4.EDA5.p\/. + aac0: 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f _SB_PCI0SBRGEC0_ + aad0: 45 43 58 54 45 43 4d 44 45 44 41 31 45 44 41 32 ECXTECMDEDA1EDA2 + aae0: 45 44 41 33 45 44 41 34 45 44 41 35 60 70 83 88 EDA3EDA4EDA5`p.. + aaf0: 60 0a 01 00 45 44 41 31 70 83 88 60 0a 02 00 45 `...EDA1p..`...E + ab00: 44 41 32 70 83 88 60 0a 03 00 45 44 41 33 70 83 DA2p..`...EDA3p. + ab10: 88 60 0a 04 00 45 44 41 34 70 83 88 60 0a 05 00 .`...EDA4p..`... + ab20: 45 44 41 35 a4 83 88 60 0a 00 00 14 49 0e 45 43 EDA5...`....I.EC + ab30: 30 32 02 a0 08 95 69 0a 30 a4 0a 02 5b 80 46 45 02....i.0...[.FE + ab40: 43 32 00 68 69 5b 81 37 46 45 43 32 03 00 40 04 C2.hi[.7FEC2..@. + ab50: 42 55 53 4e 08 50 52 4f 54 08 44 41 44 44 08 44 BUSN.PROT.DADD.D + ab60: 52 45 47 08 44 41 54 30 08 44 41 54 31 08 42 4c REG.DAT0.DAT1.BL + ab70: 45 4e 08 52 45 56 42 08 42 4c 4b 4b 40 10 70 12 EN.REVB.BLKK@.p. + ab80: 08 02 0a 00 11 03 0a 20 61 70 42 4c 45 4e 88 61 ....... apBLEN.a + ab90: 0a 00 00 70 42 4c 4b 4b 88 61 0a 01 00 70 5c 2f ...pBLKK.a...p\/ + aba0: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 + abb0: 5f 45 43 53 42 42 55 53 4e 50 52 4f 54 44 41 44 _ECSBBUSNPROTDAD + abc0: 44 44 52 45 47 44 41 54 30 44 41 54 31 61 60 a0 DDREGDAT0DAT1a`. + abd0: 36 93 83 88 60 0a 00 00 0a 00 70 83 88 60 0a 01 6...`.....p..`.. + abe0: 00 44 41 54 30 70 83 88 60 0a 02 00 44 41 54 31 .DAT0p..`...DAT1 + abf0: 70 83 88 60 0a 03 00 42 4c 45 4e 70 83 88 60 0a p..`...BLENp..`. + ac00: 04 00 42 4c 4b 4b 70 83 88 60 0a 00 00 62 7b 62 ..BLKKp..`...b{b + ac10: 0a 3f 62 a4 62 14 13 47 45 4e 57 01 70 0a 00 5c .?b.b..GENW.p..\ + ac20: 2e 5f 53 42 5f 52 54 43 57 14 18 42 53 4d 49 09 ._SB_RTCW..BSMI. + ac30: 70 68 5c 2e 5f 53 42 5f 42 49 50 41 49 53 4d 49 ph\._SB_BIPAISMI + ac40: 0a a1 10 81 3b 01 5c 2e 5f 53 42 5f 41 54 4b 44 ....;.\._SB_ATKD + ac50: 14 48 0f 4d 46 31 58 04 5b 80 46 4d 31 58 00 68 .H.MF1X.[.FM1X.h + ac60: 0a 08 5b 81 12 46 4d 31 58 03 00 30 53 4d 31 58 ..[..FM1X..0SM1X + ac70: 08 45 4d 31 58 08 70 0a 01 60 a0 0e 93 6a 0a 10 .EM1X.p..`...j.. + ac80: 70 4d 46 31 30 68 69 6b 60 a0 0e 93 6a 0a 11 70 pMF10hik`...j..p + ac90: 4d 46 31 31 68 69 6b 60 a0 0e 93 6a 0a 12 70 4d MF11hik`...j..pM + aca0: 46 31 32 68 69 6b 60 a0 0e 93 6a 0a 13 70 4d 46 F12hik`...j..pMF + acb0: 31 33 68 69 6b 60 a0 0e 93 6a 0a 14 70 4d 46 31 13hik`...j..pMF1 + acc0: 34 68 69 6b 60 a0 0e 93 6a 0a 15 70 4d 46 31 35 4hik`...j..pMF15 + acd0: 68 69 6b 60 a0 0e 93 6a 0a 16 70 4d 46 31 36 68 hik`...j..pMF16h + ace0: 69 6b 60 a0 0e 93 6a 0a 17 70 4d 46 31 37 68 69 ik`...j..pMF17hi + acf0: 6b 60 a0 0e 93 6a 0a 18 70 4d 46 31 38 68 69 6b k`...j..pMF18hik + ad00: 60 a0 0e 93 6a 0a 19 70 4d 46 31 39 68 69 6b 60 `...j..pMF19hik` + ad10: a0 0e 93 6a 0a 1f 70 4d 46 31 46 68 69 6b 60 7b ...j..pMF1Fhik`{ + ad20: 53 4d 31 58 0a fe 53 4d 31 58 a0 13 60 70 60 45 SM1X..SM1X..`p`E + ad30: 4d 31 58 7d 53 4d 31 58 0a 02 53 4d 31 58 7d 53 M1X}SM1X..SM1X}S + ad40: 4d 31 58 0a 80 53 4d 31 58 14 28 4d 46 31 30 03 M1X..SM1X.(MF10. + ad50: 70 0a 01 60 a0 0d 93 6a 0a 00 70 47 31 30 56 68 p..`...j..pG10Vh + ad60: 69 60 a0 0d 93 6a 0a 01 70 53 52 54 43 68 69 60 i`...j..pSRTChi` + ad70: a4 60 14 41 04 47 31 30 56 02 a0 08 95 69 0a 0c .`.A.G10V....i.. + ad80: a4 0a 02 5b 80 5c 46 31 30 30 00 68 69 5b 81 14 ...[.\F100.hi[.. + ad90: 5c 46 31 30 30 03 00 40 04 53 56 45 52 10 4d 56 \F100..@.SVER.MV + ada0: 45 52 10 70 0a 00 4d 56 45 52 70 0a 00 53 56 45 ER.p..MVERp..SVE + adb0: 52 a4 0a 00 14 3c 53 52 54 43 02 a0 08 95 69 0a R....G + b590: 56 53 56 02 a0 08 95 69 0a 0b a4 0a 02 5b 80 5c VSV....i.....[.\ + b5a0: 46 31 33 34 00 68 69 5b 81 14 5c 46 31 33 34 03 F134.hi[..\F134. + b5b0: 00 40 04 56 53 4e 4d 08 56 53 56 4c 10 a0 0b 94 .@.VSNM.VSVL.... + b5c0: 56 53 4e 4d 0a 00 a4 0a 10 a4 0a 00 14 34 47 46 VSNM.........4GF + b5d0: 4e 4e 02 a0 08 95 69 0a 09 a4 0a 02 5b 80 5c 46 NN....i.....[.\F + b5e0: 31 33 35 00 68 69 5b 81 0f 5c 46 31 33 35 03 00 135.hi[..\F135.. + b5f0: 40 04 4e 4d 46 4e 20 70 0a 01 4e 4d 46 4e a4 0a @.NMFN p..NMFN.. + b600: 00 14 4f 05 47 46 4e 53 02 a0 08 95 69 0a 0d a4 ..O.GFNS....i... + b610: 0a 02 5b 80 5c 46 31 33 36 00 68 69 5b 81 14 5c ..[.\F136.hi[..\ + b620: 46 31 33 36 03 00 40 04 46 4e 4e 4d 08 47 46 4e F136..@.FNNM.GFN + b630: 53 20 a0 14 7d 93 46 4e 4e 4d 0a 00 94 46 4e 4e S ..}.FNNM...FNN + b640: 4d 0a 01 00 a4 0a 10 70 46 4e 4e 4d 60 70 5c 2e M......pFNNM`p\. + b650: 5f 54 5a 5f 52 46 41 4e 76 60 47 46 4e 53 a4 0a _TZ_RFANv`GFNS.. + b660: 00 14 4e 05 53 46 4e 53 02 a0 08 95 69 0a 0a a4 ..N.SFNS....i... + b670: 0a 02 5b 80 5c 46 31 33 37 00 68 69 5b 81 14 5c ..[.\F137.hi[..\ + b680: 46 31 33 37 03 00 40 04 46 4e 4e 42 08 46 4e 53 F137..@.FNNB.FNS + b690: 50 08 a0 0b 94 46 4e 4e 42 0a 01 a4 0a 10 5c 2f P....FNNB.....\/ + b6a0: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 + b6b0: 5f 53 46 4e 56 46 4e 4e 42 46 4e 53 50 a4 0a 00 _SFNVFNNBFNSP... + b6c0: 14 36 4d 46 31 34 03 70 0a 01 60 a0 0d 93 6a 0a .6MF14.p..`...j. + b6d0: 00 70 47 31 34 56 68 69 60 a0 0d 93 6a 0a 01 70 .pG14Vhi`...j..p + b6e0: 47 4e 42 54 68 69 60 a0 0d 93 6a 0a 02 70 47 42 GNBThi`...j..pGB + b6f0: 54 53 68 69 60 a4 60 14 41 04 47 31 34 56 02 a0 TShi`.`.A.G14V.. + b700: 08 95 69 0a 0c a4 0a 02 5b 80 5c 46 31 34 30 00 ..i.....[.\F140. + b710: 68 69 5b 81 14 5c 46 31 34 30 03 00 40 04 53 56 hi[..\F140..@.SV + b720: 45 52 10 4d 56 45 52 10 70 0a 00 4d 56 45 52 70 ER.MVER.p..MVERp + b730: 0a 00 53 56 45 52 a4 0a 00 14 34 47 4e 42 54 02 ..SVER....4GNBT. + b740: a0 08 95 69 0a 09 a4 0a 02 5b 80 5c 46 31 34 31 ...i.....[.\F141 + b750: 00 68 69 5b 81 0f 5c 46 31 34 31 03 00 40 04 4e .hi[..\F141..@.N + b760: 42 42 54 08 70 0a 05 4e 42 42 54 a4 0a 00 14 4f BBT.p..NBBT....O + b770: 0e 47 42 54 53 02 a0 08 95 69 0a 0a a4 0a 02 5b .GBTS....i.....[ + b780: 80 5c 46 31 34 32 00 68 69 5b 81 14 5c 46 31 34 .\F142.hi[..\F14 + b790: 32 03 00 40 04 42 54 4e 4d 08 42 54 53 54 08 08 2..@.BTNM.BTST.. + b7a0: 42 54 54 42 12 2f 05 12 08 03 0a 0c 0a 00 0a 00 BTTB./.......... + b7b0: 12 08 03 0a 0d 0a 00 0a 00 12 08 03 0a 0e 0a 00 ................ + b7c0: 0a 00 12 08 03 0a 0f 0a 00 0a 00 12 08 03 0a 15 ................ + b7d0: 0a 00 0a 00 a0 0b 94 42 54 4e 4d 0a 05 a4 0a 10 .......BTNM..... + b7e0: 70 42 54 4e 4d 60 76 60 70 83 88 42 54 54 42 60 pBTNM`v`p..BTTB` + b7f0: 00 61 a0 29 93 83 88 61 0a 01 00 0a 00 70 5c 2f .a.)...a.....p\/ + b800: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 + b810: 5f 52 50 49 4e 83 88 61 0a 00 00 62 a0 19 93 83 _RPIN..a...b.... + b820: 88 61 0a 01 00 0a 01 70 5c 52 47 50 4c 83 88 61 .a.....p\RGPL..a + b830: 0a 00 00 0a 01 62 a0 0a 93 83 88 61 0a 01 00 0a .....b.....a.... + b840: 03 a0 10 93 83 88 61 0a 02 00 62 70 0a 00 42 54 ......a...bp..BT + b850: 53 54 a1 08 70 0a 01 42 54 53 54 a4 0a 00 14 43 ST..p..BTST....C + b860: 05 4d 46 31 35 03 70 0a 01 60 a0 0d 93 6a 0a 00 .MF15.p..`...j.. + b870: 70 47 31 35 56 68 69 60 a0 0d 93 6a 0a 01 70 47 pG15Vhi`...j..pG + b880: 4c 44 42 68 69 60 a0 0d 93 6a 0a 02 70 53 4c 44 LDBhi`...j..pSLD + b890: 42 68 69 60 a0 0d 93 6a 0a 03 70 47 44 50 49 68 Bhi`...j..pGDPIh + b8a0: 69 60 a0 0d 93 6a 0a 04 70 53 4f 44 50 68 69 60 i`...j..pSODPhi` + b8b0: a4 60 14 41 04 47 31 35 56 02 a0 08 95 69 0a 0c .`.A.G15V....i.. + b8c0: a4 0a 02 5b 80 5c 46 31 35 30 00 68 69 5b 81 14 ...[.\F150.hi[.. + b8d0: 5c 46 31 35 30 03 00 40 04 53 56 45 52 10 4d 56 \F150..@.SVER.MV + b8e0: 45 52 10 70 0a 00 4d 56 45 52 70 0a 00 53 56 45 ER.p..MVERp..SVE + b8f0: 52 a4 0a 00 14 43 04 47 4c 44 42 02 a0 08 95 69 R....C.GLDB....i + b900: 0a 0a a4 0a 02 5b 80 5c 46 31 35 31 00 68 69 5b .....[.\F151.hi[ + b910: 81 14 5c 46 31 35 31 03 00 40 04 4c 43 44 42 08 ..\F151..@.LCDB. + b920: 4d 4c 44 42 08 70 47 50 4c 56 4c 43 44 42 70 0a MLDB.pGPLVLCDBp. + b930: 0b 4d 4c 44 42 a4 0a 00 14 4a 07 53 4c 44 42 02 .MLDB....J.SLDB. + b940: a0 08 95 69 0a 0a a4 0a 02 5b 80 5c 46 31 35 32 ...i.....[.\F152 + b950: 00 68 69 5b 81 14 5c 46 31 35 32 03 00 40 04 4c .hi[..\F152..@.L + b960: 43 44 4c 08 4c 54 50 45 08 a0 1f 93 4c 54 50 45 CDL.LTPE....LTPE + b970: 0a 00 a0 0b 94 4c 43 44 4c 0a 0b a4 0a 10 53 50 .....LCDL.....SP + b980: 4c 56 4c 43 44 4c a4 0a 00 a0 26 93 4c 54 50 45 LVLCDL....&.LTPE + b990: 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 ..\/._SB_PCI0SBR + b9a0: 47 45 43 30 5f 53 42 52 56 4c 43 44 4c a4 0a 00 GEC0_SBRVLCDL... + b9b0: a4 0a 11 14 4c 04 47 44 50 49 02 a0 08 95 69 0a ....L.GDPI....i. + b9c0: 10 a4 0a 02 5b 80 5c 46 31 35 33 00 68 69 5b 81 ....[.\F153.hi[. + b9d0: 14 5c 46 31 35 33 03 00 40 04 4f 44 50 49 20 4f .\F153..@.ODPI O + b9e0: 44 50 43 08 70 0a 00 60 7d 60 0a 01 60 7d 60 0a DPC.p..`}`..`}`. + b9f0: 02 60 70 60 4f 44 50 49 42 53 4d 49 68 a4 0a 00 .`p`ODPIBSMIh... + ba00: 14 46 05 53 4f 44 50 02 a0 08 95 69 0a 0c a4 0a .F.SODP....i.... + ba10: 02 5b 80 5c 46 31 35 34 00 68 69 5b 81 0f 5c 46 .[.\F154.hi[..\F + ba20: 31 35 34 03 00 40 04 4f 44 50 4d 20 70 0a 00 60 154..@.ODPM p..` + ba30: 7d 60 0a 01 60 7d 60 0a 02 60 7b 4f 44 50 4d 60 }`..`}`..`{ODPM` + ba40: 60 a0 12 93 60 4f 44 50 4d 53 44 53 50 4f 44 50 `...`ODPMSDSPODP + ba50: 4d a4 0a 00 a4 0a 10 14 36 4d 46 31 36 03 70 0a M.......6MF16.p. + ba60: 01 60 a0 0d 93 6a 0a 00 70 47 31 36 56 68 69 60 .`...j..pG16Vhi` + ba70: a0 0d 93 6a 0a 01 70 53 46 42 44 68 69 60 a0 0d ...j..pSFBDhi`.. + ba80: 93 6a 0a 02 70 4c 43 4d 44 68 69 60 a4 60 14 41 .j..pLCMDhi`.`.A + ba90: 04 47 31 36 56 02 a0 08 95 69 0a 0c a4 0a 02 5b .G16V....i.....[ + baa0: 80 5c 46 31 36 30 00 68 69 5b 81 14 5c 46 31 36 .\F160.hi[..\F16 + bab0: 30 03 00 40 04 53 56 45 52 10 4d 56 45 52 10 70 0..@.SVER.MVER.p + bac0: 0a 00 4d 56 45 52 70 0a 00 53 56 45 52 a4 0a 00 ..MVERp..SVER... + bad0: 14 4c 04 53 46 42 44 02 a0 08 95 69 0a 0a a4 0a .L.SFBD....i.... + bae0: 02 5b 80 5c 46 31 36 31 00 68 69 5b 81 0f 5c 46 .[.\F161.hi[..\F + baf0: 31 36 31 03 00 40 04 4e 58 42 44 08 a0 1b 4f 46 161..@.NXBD...OF + bb00: 42 44 4e 58 42 44 70 4e 58 42 44 5c 2e 5f 53 42 BDNXBDpNXBD\._SB + bb10: 5f 55 48 44 42 a4 0a 00 a1 04 a4 0a 10 14 17 4c _UHDB..........L + bb20: 43 4d 44 02 a0 08 95 69 0a 0a a4 0a 02 42 53 4d CMD....i.....BSM + bb30: 49 68 a4 0a 00 14 45 04 4d 46 31 37 03 70 0a 01 Ih....E.MF17.p.. + bb40: 60 a0 0d 93 6a 0a 00 70 47 31 37 56 68 69 60 a0 `...j..pG17Vhi`. + bb50: 0d 93 6a 0a 01 70 47 4d 44 4c 68 69 60 a0 0d 93 ..j..pGMDLhi`... + bb60: 6a 0a 02 70 47 42 53 49 68 69 60 a0 0d 93 6a 0a j..pGBSIhi`...j. + bb70: 03 70 47 45 43 49 68 69 60 a4 60 14 41 04 47 31 .pGECIhi`.`.A.G1 + bb80: 37 56 02 a0 08 95 69 0a 0c a4 0a 02 5b 80 5c 46 7V....i.....[.\F + bb90: 31 37 30 00 68 69 5b 81 14 5c 46 31 37 30 03 00 170.hi[..\F170.. + bba0: 40 04 53 56 45 52 10 4d 56 45 52 10 70 0a 00 4d @.SVER.MVER.p..M + bbb0: 56 45 52 70 0a 00 53 56 45 52 a4 0a 00 14 4d 0c VERp..SVER....M. + bbc0: 47 4d 44 4c 02 a0 08 95 69 0a 19 a4 0a 02 5b 80 GMDL....i.....[. + bbd0: 5c 46 31 37 31 00 68 69 5b 81 23 5c 46 31 37 31 \F171.hi[.#\F171 + bbe0: 03 00 40 04 4d 4c 45 4e 08 4d 44 4c 31 20 4d 44 ..@.MLEN.MDL1 MD + bbf0: 4c 32 20 4d 44 4c 33 20 4d 44 4c 34 20 70 0a 00 L2 MDL3 MDL4 p.. + bc00: 4d 44 4c 31 70 0a 00 4d 44 4c 32 70 0a 00 4d 44 MDL1p..MDL2p..MD + bc10: 4c 33 70 0a 00 4d 44 4c 34 08 42 42 55 46 11 03 L3p..MDL4.BBUF.. + bc20: 0a 10 8a 42 42 55 46 0a 00 44 41 54 31 8a 42 42 ...BBUF..DAT1.BB + bc30: 55 46 0a 04 44 41 54 32 8a 42 42 55 46 0a 08 44 UF..DAT2.BBUF..D + bc40: 41 54 33 8a 42 42 55 46 0a 0c 44 41 54 34 70 47 AT3.BBUF..DAT4pG + bc50: 42 4d 4e 60 70 87 60 4d 4c 45 4e 70 47 42 4d 4e BMN`p.`MLENpGBMN + bc60: 42 42 55 46 70 44 41 54 31 4d 44 4c 31 70 44 41 BBUFpDAT1MDL1pDA + bc70: 54 32 4d 44 4c 32 70 44 41 54 33 4d 44 4c 33 70 T2MDL2pDAT3MDL3p + bc80: 44 41 54 34 4d 44 4c 34 a4 0a 00 14 4d 0c 47 42 DAT4MDL4....M.GB + bc90: 53 49 02 a0 08 95 69 0a 19 a4 0a 02 5b 80 5c 46 SI....i.....[.\F + bca0: 31 37 32 00 68 69 5b 81 23 5c 46 31 37 32 03 00 172.hi[.#\F172.. + bcb0: 40 04 42 4c 45 4e 08 42 44 4c 31 20 42 44 4c 32 @.BLEN.BDL1 BDL2 + bcc0: 20 42 44 4c 33 20 42 44 4c 34 20 70 0a 00 42 44 BDL3 BDL4 p..BD + bcd0: 4c 31 70 0a 00 42 44 4c 32 70 0a 00 42 44 4c 33 L1p..BDL2p..BDL3 + bce0: 70 0a 00 42 44 4c 34 08 42 42 55 46 11 03 0a 10 p..BDL4.BBUF.... + bcf0: 8a 42 42 55 46 0a 00 44 41 54 31 8a 42 42 55 46 .BBUF..DAT1.BBUF + bd00: 0a 04 44 41 54 32 8a 42 42 55 46 0a 08 44 41 54 ..DAT2.BBUF..DAT + bd10: 33 8a 42 42 55 46 0a 0c 44 41 54 34 70 47 42 52 3.BBUF..DAT4pGBR + bd20: 56 60 70 87 60 42 4c 45 4e 70 47 42 52 56 42 42 V`p.`BLENpGBRVBB + bd30: 55 46 70 44 41 54 31 42 44 4c 31 70 44 41 54 32 UFpDAT1BDL1pDAT2 + bd40: 42 44 4c 32 70 44 41 54 33 42 44 4c 33 70 44 41 BDL2pDAT3BDL3pDA + bd50: 54 34 42 44 4c 34 a4 0a 00 14 43 06 47 45 43 49 T4BDL4....C.GECI + bd60: 02 a0 08 95 69 0a 19 a4 0a 02 5b 80 5c 46 31 37 ....i.....[.\F17 + bd70: 33 00 68 69 5b 81 23 5c 46 31 37 33 03 00 40 04 3.hi[.#\F173..@. + bd80: 45 4c 45 4e 08 45 44 4c 31 20 45 44 4c 32 20 45 ELEN.EDL1 EDL2 E + bd90: 44 4c 33 20 45 44 4c 34 20 70 0a 00 45 44 4c 31 DL3 EDL4 p..EDL1 + bda0: 70 0a 00 45 44 4c 32 70 0a 00 45 44 4c 33 70 0a p..EDL2p..EDL3p. + bdb0: 00 45 44 4c 34 42 53 4d 49 68 a4 0a 00 14 45 04 .EDL4BSMIh....E. + bdc0: 4d 46 31 38 03 70 0a 01 60 a0 0d 93 6a 0a 00 70 MF18.p..`...j..p + bdd0: 47 31 38 56 68 69 60 a0 0d 93 6a 0a 01 70 47 44 G18Vhi`...j..pGD + bde0: 56 49 68 69 60 a0 0d 93 6a 0a 02 70 47 44 56 53 VIhi`...j..pGDVS + bdf0: 68 69 60 a0 0d 93 6a 0a 03 70 53 44 50 57 68 69 hi`...j..pSDPWhi + be00: 60 a4 60 14 41 04 47 31 38 56 02 a0 08 95 69 0a `.`.A.G18V....i. + be10: 0c a4 0a 02 5b 80 5c 46 31 38 30 00 68 69 5b 81 ....[.\F180.hi[. + be20: 14 5c 46 31 38 30 03 00 40 04 53 56 45 52 10 4d .\F180..@.SVER.M + be30: 56 45 52 10 70 0a 00 4d 56 45 52 70 0a 00 53 56 VER.p..MVERp..SV + be40: 45 52 a4 0a 00 14 3b 47 44 56 49 02 a0 08 95 69 ER....;GDVI....i + be50: 0a 18 a4 0a 02 5b 80 5c 46 31 38 31 00 68 69 5b .....[.\F181.hi[ + be60: 81 14 5c 46 31 38 31 03 00 40 04 4c 44 49 30 20 ..\F181..@.LDI0 + be70: 4c 44 49 31 20 70 46 45 42 4c 4c 44 49 30 a4 0a LDI1 pFEBLLDI0.. + be80: 00 14 4a 04 47 44 56 53 02 a0 08 95 69 0a 0a a4 ..J.GDVS....i... + be90: 0a 02 5b 80 5c 46 31 38 32 00 68 69 5b 81 14 5c ..[.\F182.hi[..\ + bea0: 46 31 38 32 03 00 40 04 44 4e 55 4d 08 44 53 54 F182..@.DNUM.DST + beb0: 53 08 79 0a 01 44 4e 55 4d 60 a0 0e 93 7b 60 46 S.y..DNUM`...{`F + bec0: 45 42 4c 00 0a 00 a4 0a 10 a4 0a 00 14 46 05 53 EBL..........F.S + bed0: 44 50 57 02 a0 08 95 69 0a 0a a4 0a 02 5b 80 5c DPW....i.....[.\ + bee0: 46 31 38 33 00 68 69 5b 81 14 5c 46 31 38 33 03 F183.hi[..\F183. + bef0: 00 40 04 44 4e 55 4d 08 44 43 54 52 08 79 0a 01 .@.DNUM.DCTR.y.. + bf00: 44 4e 55 4d 60 a0 0e 93 7b 60 46 45 42 4c 00 0a DNUM`...{`FEBL.. + bf10: 00 a4 0a 10 a0 0b 94 44 43 54 52 0a 01 a4 0a 11 .......DCTR..... + bf20: a4 0a 00 14 36 4d 46 31 39 03 70 0a 01 60 a0 0d ....6MF19.p..`.. + bf30: 93 6a 0a 00 70 47 31 39 56 68 69 60 a0 0d 93 6a .j..pG19Vhi`...j + bf40: 0a 01 70 41 43 4d 53 68 69 60 a0 0d 93 6a 0a 02 ..pACMShi`...j.. + bf50: 70 43 53 49 4e 68 69 60 a4 60 14 41 04 47 31 39 pCSINhi`.`.A.G19 + bf60: 56 02 a0 08 95 69 0a 0c a4 0a 02 5b 80 5c 46 31 V....i.....[.\F1 + bf70: 39 30 00 68 69 5b 81 14 5c 46 31 39 30 03 00 40 90.hi[..\F190..@ + bf80: 04 53 56 45 52 10 4d 56 45 52 10 70 0a 00 4d 56 .SVER.MVER.p..MV + bf90: 45 52 70 0a 00 53 56 45 52 a4 0a 00 14 0e 41 43 ERp..SVER.....AC + bfa0: 4d 53 02 42 53 4d 49 68 a4 0a 00 14 39 43 53 49 MS.BSMIh....9CSI + bfb0: 4e 02 a0 08 95 69 0a 0a a4 0a 02 5b 80 5c 46 31 N....i.....[.\F1 + bfc0: 39 32 00 68 69 5b 81 0f 5c 46 31 39 32 03 00 40 92.hi[..\F192..@ + bfd0: 04 43 4d 41 58 10 70 74 0b 00 01 0a 01 00 43 4d .CMAX.pt......CM + bfe0: 41 58 a4 0a 00 14 0e 4d 46 31 46 03 42 53 4d 49 AX.....MF1F.BSMI + bff0: 68 a4 0a 00 10 12 5c 2e 5f 53 42 5f 41 54 4b 44 h.....\._SB_ATKD + c000: 14 06 41 47 4c 4e 04 10 49 1b 5c 2e 5f 53 42 5f ..AGLN..I.\._SB_ + c010: 41 54 4b 44 14 49 04 4f 46 42 44 01 08 46 42 44 ATKD.I.OFBD..FBD + c020: 54 12 2a 14 0a e0 0a e1 0a e2 0a e3 0a e4 0a e5 T.*............. + c030: 0a e6 0a e7 0a e8 0a e9 0a ea 0a eb 0a ec 0a ed ................ + c040: 0a ee 0a ef 0a f1 0a f2 0a f3 0a f6 70 89 46 42 ............p.FB + c050: 44 54 01 68 00 0a 00 0a 00 60 75 60 a4 60 14 0f DT.h.....`u`.`.. + c060: 47 42 52 56 00 70 0d 32 30 38 00 60 a4 60 14 11 GBRV.p.208.`.`.. + c070: 47 42 4d 4e 00 70 0d 4b 34 33 53 41 00 60 a4 60 GBMN.p.K43SA.`.` + c080: 14 0f 4f 47 44 50 01 70 68 60 70 0a 02 61 a4 61 ..OGDP.ph`p..a.a + c090: 14 09 52 53 49 44 00 a4 0a 00 14 0c 4f 53 44 50 ..RSID......OSDP + c0a0: 02 70 68 60 70 69 61 14 45 07 4d 46 34 32 03 5b .ph`pia.E.MF42.[ + c0b0: 80 46 4d 34 32 00 68 0a 08 5b 81 12 46 4d 34 32 .FM42.h..[..FM42 + c0c0: 03 00 30 53 4d 34 32 08 45 4d 34 32 08 70 0a 01 ..0SM42.EM42.p.. + c0d0: 60 a0 0d 93 69 0a 01 70 53 46 42 4f 68 6a 60 a0 `...i..pSFBOhj`. + c0e0: 0d 93 69 0a 02 70 53 41 4f 43 68 6a 60 a0 0d 93 ..i..pSAOChj`... + c0f0: 69 0a 03 70 47 42 53 54 68 6a 60 a0 13 60 70 60 i..pGBSThj`..`p` + c100: 45 4d 34 32 7d 53 4d 34 32 0a 02 53 4d 34 32 7d EM42}SM42..SM42} + c110: 53 4d 34 32 0a 80 53 4d 34 32 a4 0a 00 14 24 53 SM42..SM42....$S + c120: 46 42 4f 02 5b 80 5c 46 34 32 31 00 68 69 5b 81 FBO.[.\F421.hi[. + c130: 0f 5c 46 34 32 31 03 00 40 04 53 4f 50 54 08 a4 .\F421..@.SOPT.. + c140: 0a 00 14 24 53 41 4f 43 02 5b 80 5c 46 34 32 32 ...$SAOC.[.\F422 + c150: 00 68 69 5b 81 0f 5c 46 34 32 32 03 00 40 04 43 .hi[..\F422..@.C + c160: 4e 54 46 08 a4 0a 00 14 49 05 47 42 53 54 02 5b NTF.....I.GBST.[ + c170: 80 5c 46 34 32 33 00 68 69 5b 81 16 5c 46 34 32 .\F423.hi[..\F42 + c180: 33 03 00 40 04 42 4f 54 31 40 04 42 4f 54 32 40 3..@.BOT1@.BOT2@ + c190: 04 70 54 42 4f 54 42 4f 54 31 70 52 54 43 33 60 .pTBOTBOT1pRTC3` + c1a0: 79 60 0a 08 60 72 52 54 43 32 60 60 79 60 0a 08 y`..`rRTC2``y`.. + c1b0: 60 72 52 54 43 31 60 60 70 60 42 4f 54 32 a4 0a `rRTC1``p`BOT2.. + c1c0: 00 10 8f 4b 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ...K.\/._SB_PCI0 + c1d0: 53 42 52 47 45 43 30 5f 14 28 47 42 54 54 09 a0 SBRGEC0_.(GBTT.. + c1e0: 19 45 43 41 56 a0 0b 93 68 0a 00 70 45 42 30 54 .ECAV...h..pEB0T + c1f0: 60 a1 07 70 45 42 31 54 60 a1 05 70 0a ff 60 a4 `..pEB1T`..p..`. + c200: 60 14 20 57 43 4d 44 09 a0 19 45 43 41 56 5b 23 `. WCMD...ECAV[# + c210: 4d 55 45 43 ff ff 70 68 43 4d 44 31 5b 27 4d 55 MUEC..phCMD1['MU + c220: 45 43 14 4e 05 44 4c 59 30 09 a0 08 92 45 43 41 EC.N.DLY0....ECA + c230: 56 a4 ff 70 ff 60 5b 23 4d 55 45 43 ff ff 70 68 V..p.`[#MUEC..ph + c240: 43 44 54 31 70 0a 6b 43 44 54 32 70 0a 00 43 44 CDT1p.kCDT2p..CD + c250: 54 33 70 0a bb 43 4d 44 31 70 0a 7f 61 a2 0d 90 T3p..CMD1p..a... + c260: 61 43 4d 44 31 5b 22 0a 01 76 61 a0 0d 93 43 4d aCMD1["..va...CM + c270: 44 31 00 70 43 44 54 31 60 5b 27 4d 55 45 43 a4 D1.pCDT1`['MUEC. + c280: 60 14 41 07 52 52 41 4d 09 a0 47 06 45 43 41 56 `.A.RRAM..G.ECAV + c290: 5b 23 4d 55 45 43 ff ff 70 68 60 7b 60 0a ff 61 [#MUEC..ph`{`..a + c2a0: 7a 60 0a 08 60 7b 60 0a ff 60 70 61 43 44 54 33 z`..`{`..`paCDT3 + c2b0: 70 60 43 44 54 32 70 0a 80 43 44 54 31 70 0a b6 p`CDT2p..CDT1p.. + c2c0: 43 4d 44 31 70 0a 7f 60 a2 0d 90 60 43 4d 44 31 CMD1p..`...`CMD1 + c2d0: 5b 22 0a 01 76 60 a0 0d 93 43 4d 44 31 00 70 43 ["..v`...CMD1.pC + c2e0: 44 54 31 60 a1 04 70 ff 60 5b 27 4d 55 45 43 a4 DT1`..p.`['MUEC. + c2f0: 60 a4 ff 14 44 07 57 52 41 4d 0a a0 4a 06 45 43 `...D.WRAM..J.EC + c300: 41 56 5b 23 4d 55 45 43 ff ff 70 68 60 7b 60 0a AV[#MUEC..ph`{`. + c310: ff 61 7a 60 0a 08 60 7b 60 0a ff 60 70 61 43 44 .az`..`{`..`paCD + c320: 54 33 70 60 43 44 54 32 70 0a 81 43 44 54 31 70 T3p`CDT2p..CDT1p + c330: 69 43 44 54 34 70 0a b6 43 4d 44 31 70 0a 7f 60 iCDT4p..CMD1p..` + c340: a2 0d 90 60 43 4d 44 31 5b 22 0a 01 76 60 a0 0a ...`CMD1["..v`.. + c350: 93 43 4d 44 31 00 70 01 60 a1 04 70 ff 60 5b 27 .CMD1.p.`..p.`[' + c360: 4d 55 45 43 a4 60 a4 ff 14 48 05 53 54 42 52 08 MUEC.`...H.STBR. + c370: 70 0a 00 60 70 0a 00 61 70 0a 00 62 a0 13 7b 5c p..`p..ap..b..{\ + c380: 2e 5f 53 42 5f 56 47 41 46 0a 01 00 70 0a 01 60 ._SB_VGAF...p..` + c390: a0 09 61 5c 49 53 4d 49 0a 9a a1 26 a0 1e 62 a0 ..a\ISMI...&..b. + c3a0: 12 92 93 4f 53 46 47 4f 53 45 47 5c 49 53 4d 49 ...OSFGOSEG\ISMI + c3b0: 0a 9a a1 08 5c 49 53 4d 49 0a 9a a1 05 45 43 43 ....\ISMI....ECC + c3c0: 42 14 4f 04 45 43 43 42 08 a0 1b 91 41 43 41 50 B.O.ECCB....ACAP + c3d0: 93 4f 53 46 47 4f 53 56 54 70 5c 2e 5f 53 42 5f .OSFGOSVTp\._SB_ + c3e0: 4c 42 54 4e 60 a1 0d 70 5c 2e 5f 53 42 5f 4c 42 LBTN`..p\._SB_LB + c3f0: 54 4e 60 70 42 52 54 49 61 79 61 0a 04 61 72 60 TN`pBRTIaya..ar` + c400: 61 61 70 83 88 50 57 41 43 61 00 60 53 41 44 43 aap..PWACa.`SADC + c410: 60 14 0d 53 42 52 56 09 53 54 38 36 0a 00 68 08 `..SBRV.ST86..h. + c420: 44 45 43 46 0a 00 14 4d 0b 53 46 4e 56 0a a0 40 DECF...M.SFNV..@ + c430: 05 93 68 0a 00 a0 1f 7b 44 45 43 46 0a 01 00 70 ..h....{DECF...p + c440: 52 52 41 4d 0b 21 05 60 7d 60 0a 80 60 57 52 41 RRAM.!.`}`..`WRA + c450: 4d 0b 21 05 60 a0 1f 7b 44 45 43 46 0a 02 00 70 M.!.`..{DECF...p + c460: 52 52 41 4d 0b 22 05 60 7d 60 0a 80 60 57 52 41 RRAM.".`}`..`WRA + c470: 4d 0b 22 05 60 70 0a 00 44 45 43 46 a4 0a 00 a0 M.".`p..DECF.... + c480: 30 93 68 0a 01 70 52 52 41 4d 0b 21 05 60 7b 60 0.h..pRRAM.!.`{` + c490: 0a 7f 60 57 52 41 4d 0b 21 05 60 7d 44 45 43 46 ..`WRAM.!.`}DECF + c4a0: 0a 01 44 45 43 46 53 54 38 34 0a 00 69 a4 0a 00 ..DECFST84..i... + c4b0: a0 30 93 68 0a 02 70 52 52 41 4d 0b 22 05 60 7b .0.h..pRRAM.".`{ + c4c0: 60 0a 7f 60 57 52 41 4d 0b 22 05 60 7d 44 45 43 `..`WRAM.".`}DEC + c4d0: 46 0a 02 44 45 43 46 53 54 38 34 0a 01 69 a4 0a F..DECFST84..i.. + c4e0: 00 a4 0a 00 14 4f 05 53 41 44 43 09 a0 45 05 45 .....O.SADC..E.E + c4f0: 43 41 56 5b 23 4d 55 45 43 ff ff 70 0a 86 43 44 CAV[#MUEC..p..CD + c500: 54 31 70 00 43 44 54 32 70 68 43 44 54 33 70 0a T1p.CDT2phCDT3p. + c510: b6 43 4d 44 31 70 0a 7f 60 a2 0d 90 60 43 4d 44 .CMD1p..`...`CMD + c520: 31 5b 22 0a 01 76 60 a0 0d 93 43 4d 44 31 00 70 1["..v`...CMD1.p + c530: 43 44 54 31 60 a1 04 70 ff 60 5b 27 4d 55 45 43 CDT1`..p.`['MUEC + c540: a4 60 a4 ff 14 1b 53 50 49 4e 0a a0 09 69 53 54 .`....SPIN...iST + c550: 38 37 0a 20 68 a1 08 53 54 38 37 0a 40 68 a4 01 87. h..ST87.@h.. + c560: 14 11 52 50 49 4e 09 70 53 54 38 37 0a 00 68 61 ..RPIN.pST87..ha + c570: a4 61 14 4e 06 52 42 41 54 0a a0 08 92 45 43 41 .a.N.RBAT....ECA + c580: 56 a4 ff 5b 23 4d 55 45 43 ff ff 70 0a 03 60 a2 V..[#MUEC..p..`. + c590: 47 04 60 70 68 43 44 54 32 70 69 61 79 61 0a 01 G.`phCDT2piaya.. + c5a0: 61 72 61 0a da 61 70 61 43 4d 44 31 70 0a 7f 61 ara..apaCMD1p..a + c5b0: a2 0d 90 43 4d 44 31 61 76 61 5b 22 0a 01 a0 11 ...CMD1ava[".... + c5c0: 93 43 4d 44 31 0a 00 70 43 44 54 31 61 70 00 60 .CMD1..pCDT1ap.` + c5d0: a1 06 70 ff 61 76 60 5b 27 4d 55 45 43 a4 61 a4 ..p.av`['MUEC.a. + c5e0: ff 14 4f 05 57 42 41 54 0b 7d 68 0a 80 63 a0 08 ..O.WBAT.}h..c.. + c5f0: 92 45 43 41 56 a4 ff 5b 23 4d 55 45 43 ff ff 70 .ECAV..[#MUEC..p + c600: 0a 03 60 a2 33 60 70 6a 43 44 54 31 70 63 43 44 ..`.3`pjCDT1pcCD + c610: 54 32 70 69 61 79 61 0a 01 61 72 61 0a da 61 70 T2piaya..ara..ap + c620: 61 43 4d 44 31 70 0a 7f 61 a2 0d 90 43 4d 44 31 aCMD1p..a...CMD1 + c630: 61 76 61 5b 22 0a 01 5b 27 4d 55 45 43 a4 61 a4 ava["..['MUEC.a. + c640: ff 14 3f 46 4e 43 54 0a a0 38 45 43 41 56 5b 23 ..?FNCT..8ECAV[# + c650: 4d 55 45 43 ff ff 70 68 43 44 54 32 70 69 43 44 MUEC..phCDT2piCD + c660: 54 31 70 0a c4 43 4d 44 31 70 0a 7f 60 a2 0d 90 T1p..CMD1p..`... + c670: 60 43 4d 44 31 5b 22 0a 01 76 60 5b 27 4d 55 45 `CMD1["..v`['MUE + c680: 43 08 57 52 51 4b 0a 02 08 52 44 51 4b 0a 03 08 C.WRQK...RDQK... + c690: 53 44 42 54 0a 04 08 52 43 42 54 0a 05 08 57 52 SDBT...RCBT...WR + c6a0: 42 54 0a 06 08 52 44 42 54 0a 07 08 57 52 57 44 BT...RDBT...WRWD + c6b0: 0a 08 08 52 44 57 44 0a 09 08 57 52 42 4c 0a 0a ...RDWD...WRBL.. + c6c0: 08 52 44 42 4c 0a 0b 08 50 43 4c 4c 0a 0c 08 47 .RDBL...PCLL...G + c6d0: 4f 4f 44 0a 00 08 55 4b 45 52 0a 07 08 44 41 45 OOD...UKER...DAE + c6e0: 52 0a 10 08 43 4d 44 4e 0a 12 08 55 4b 45 32 0a R...CMDN...UKE2. + c6f0: 13 08 44 41 44 4e 0a 17 08 53 42 54 4f 0a 18 08 ..DADN...SBTO... + c700: 55 53 50 54 0a 19 08 53 42 42 59 0a 1a 14 4e 04 USPT...SBBY...N. + c710: 53 57 54 43 09 70 55 4b 45 52 60 70 0a 03 61 a2 SWTC.pUKER`p..a. + c720: 3a 90 60 61 70 0a 23 62 a2 19 62 a0 0b 50 52 54 :.`ap.#b..b..PRT + c730: 43 5b 22 0a 01 76 62 a1 0a 70 00 62 70 53 53 54 C["..vb..p.bpSST + c740: 53 60 a0 17 60 70 00 50 52 54 43 76 61 a0 0c 61 S`..`p.PRTCva..a + c750: 5b 22 0a 01 70 68 50 52 54 43 a4 60 14 4b 14 53 ["..phPRTC.`.K.S + c760: 4d 42 52 0b 70 12 08 03 0a 07 0a 00 0a 00 60 a0 MBR.p.........`. + c770: 08 92 45 43 41 56 a4 60 a0 2e 92 93 68 52 44 42 ..ECAV.`....hRDB + c780: 4c a0 25 92 93 68 52 44 57 44 a0 1c 92 93 68 52 L.%..hRDWD....hR + c790: 44 42 54 a0 13 92 93 68 52 43 42 54 a0 0a 92 93 DBT....hRCBT.... + c7a0: 68 52 44 51 4b a4 60 5b 23 4d 55 45 43 ff ff 70 hRDQK.`[#MUEC..p + c7b0: 50 52 54 43 61 70 00 62 a2 28 92 93 61 0a 00 5b PRTCap.b.(..a..[ + c7c0: 21 0a 0a 75 62 a0 13 94 62 0b e8 03 70 53 42 42 !..ub...b...pSBB + c7d0: 59 88 60 0a 00 00 70 00 61 a1 07 70 50 52 54 43 Y.`...p.a..pPRTC + c7e0: 61 a0 4e 0b 92 94 62 0b e8 03 79 69 0a 01 63 7d a.N...b...yi..c} + c7f0: 63 0a 01 63 70 63 41 44 44 52 a0 17 92 93 68 52 c..cpcADDR....hR + c800: 44 51 4b a0 0e 92 93 68 52 43 42 54 70 6a 43 4d DQK....hRCBTpjCM + c810: 44 42 70 0a 00 42 44 41 54 70 68 50 52 54 43 70 DBp..BDATphPRTCp + c820: 53 57 54 43 68 88 60 0a 00 00 a0 45 07 93 83 88 SWTCh.`....E.... + c830: 60 0a 00 00 0a 00 a0 1b 93 68 52 44 42 4c 70 42 `........hRDBLpB + c840: 43 4e 54 88 60 0a 01 00 70 42 44 41 54 88 60 0a CNT.`...pBDAT.`. + c850: 02 00 a0 19 93 68 52 44 57 44 70 0a 02 88 60 0a .....hRDWDp...`. + c860: 01 00 70 44 54 32 42 88 60 0a 02 00 a0 19 93 68 ..pDT2B.`......h + c870: 52 44 42 54 70 0a 01 88 60 0a 01 00 70 44 41 54 RDBTp...`...pDAT + c880: 30 88 60 0a 02 00 a0 19 93 68 52 43 42 54 70 0a 0.`......hRCBTp. + c890: 01 88 60 0a 01 00 70 44 41 54 30 88 60 0a 02 00 ..`...pDAT0.`... + c8a0: 5b 27 4d 55 45 43 a4 60 14 4a 10 53 4d 42 57 0d ['MUEC.`.J.SMBW. + c8b0: 70 12 04 01 0a 07 60 a0 08 92 45 43 41 56 a4 60 p.....`...ECAV.` + c8c0: a0 2e 92 93 68 57 52 42 4c a0 25 92 93 68 57 52 ....hWRBL.%..hWR + c8d0: 57 44 a0 1c 92 93 68 57 52 42 54 a0 13 92 93 68 WD....hWRBT....h + c8e0: 53 44 42 54 a0 0a 92 93 68 57 52 51 4b a4 60 5b SDBT....hWRQK.`[ + c8f0: 23 4d 55 45 43 ff ff 70 50 52 54 43 61 70 00 62 #MUEC..pPRTCap.b + c900: a2 28 92 93 61 0a 00 5b 21 0a 0a 75 62 a0 13 94 .(..a..[!..ub... + c910: 62 0b e8 03 70 53 42 42 59 88 60 0a 00 00 70 00 b...pSBBY.`...p. + c920: 61 a1 07 70 50 52 54 43 61 a0 41 08 92 94 62 0b a..pPRTCa.A...b. + c930: e8 03 70 0a 00 42 44 41 54 79 69 0a 01 63 70 63 ..p..BDATyi..cpc + c940: 41 44 44 52 a0 17 92 93 68 57 52 51 4b a0 0e 92 ADDR....hWRQK... + c950: 93 68 53 44 42 54 70 6a 43 4d 44 42 a0 13 93 68 .hSDBTpjCMDB...h + c960: 57 52 42 4c 70 6b 42 43 4e 54 70 6c 42 44 41 54 WRBLpkBCNTplBDAT + c970: a0 0d 93 68 57 52 57 44 70 6c 44 54 32 42 a0 0d ...hWRWDplDT2B.. + c980: 93 68 57 52 42 54 70 6c 44 41 54 30 a0 0d 93 68 .hWRBTplDAT0...h + c990: 53 44 42 54 70 6c 44 41 54 30 70 68 50 52 54 43 SDBTplDAT0phPRTC + c9a0: 70 53 57 54 43 68 88 60 0a 00 00 5b 27 4d 55 45 pSWTCh.`...['MUE + c9b0: 43 a4 60 5b 01 4d 55 45 50 00 14 4e 0a 52 42 45 C.`[.MUEP..N.RBE + c9c0: 50 01 70 0b ff ff 61 5b 23 4d 55 45 50 ff ff 70 P.p...a[#MUEP..p + c9d0: 52 52 41 4d 0b 20 06 63 7b 63 0a 7f 64 57 52 41 RRAM. .c{c..dWRA + c9e0: 4d 0b 20 06 64 70 0a 10 62 70 0a 10 61 a2 4a 04 M. .dp..bp..a.J. + c9f0: 7b 93 61 0a 10 92 93 62 0a 00 00 53 4d 42 57 57 {.a....b...SMBWW + ca00: 52 57 44 42 41 44 52 0a 00 0a 02 0b 35 06 53 4d RWDBADR.....5.SM + ca10: 42 57 57 52 57 44 42 41 44 52 0a 00 0a 02 0b 06 BWWRWDBADR...... + ca20: 06 70 53 4d 42 52 52 44 42 54 0a 50 68 60 70 83 .pSMBRRDBT.Ph`p. + ca30: 88 60 0a 00 00 61 76 62 5c 2f 05 5f 53 42 5f 50 .`...avb\/._SB_P + ca40: 43 49 30 53 42 52 47 45 43 30 5f 57 52 41 4d 0b CI0SBRGEC0_WRAM. + ca50: 20 06 63 79 61 0a 08 61 7d 61 83 88 60 0a 02 00 .cya..a}a..`... + ca60: 61 5b 27 4d 55 45 50 a4 61 14 43 0a 57 42 45 50 a['MUEP.a.C.WBEP + ca70: 02 70 0b ff ff 61 5b 23 4d 55 45 50 ff ff 70 52 .p...a[#MUEP..pR + ca80: 52 41 4d 0b 20 06 63 7b 63 0a 7f 64 57 52 41 4d RAM. .c{c..dWRAM + ca90: 0b 20 06 64 70 0a 10 62 70 0a 10 61 a2 4d 04 7b . .dp..bp..a.M.{ + caa0: 93 61 0a 10 92 93 62 0a 00 00 53 4d 42 57 57 52 .a....b...SMBWWR + cab0: 57 44 42 41 44 52 0a 00 0a 02 0b 35 06 53 4d 42 WDBADR.....5.SMB + cac0: 57 57 52 57 44 42 41 44 52 0a 00 0a 02 0b 06 06 WWRWDBADR....... + cad0: 70 53 4d 42 57 57 52 42 54 0a 50 68 0a 01 69 60 pSMBWWRBT.Ph..i` + cae0: 70 83 88 60 0a 00 00 61 76 62 5c 2f 05 5f 53 42 p..`...avb\/._SB + caf0: 5f 50 43 49 30 53 42 52 47 45 43 30 5f 57 52 41 _PCI0SBRGEC0_WRA + cb00: 4d 0b 20 06 63 5b 27 4d 55 45 50 a4 61 14 4c 0a M. .c['MUEP.a.L. + cb10: 45 43 58 54 06 70 12 0e 06 0a 10 0a 00 0a 00 0a ECXT.p.......... + cb20: 00 0a 00 0a 00 61 a0 41 09 45 43 41 56 5b 23 4d .....a.A.ECAV[#M + cb30: 55 45 43 ff ff 70 69 43 44 54 31 70 6a 43 44 54 UEC..piCDT1pjCDT + cb40: 32 70 6b 43 44 54 33 70 6c 43 44 54 34 70 6d 43 2pkCDT3plCDT4pmC + cb50: 44 54 35 70 68 43 4d 44 31 70 0a 7f 60 a2 0d 90 DT5phCMD1p..`... + cb60: 60 43 4d 44 31 5b 22 0a 01 76 60 a0 3c 60 70 0a `CMD1["..v`.<`p. + cb70: 00 88 61 0a 00 00 70 43 44 54 31 88 61 0a 01 00 ..a...pCDT1.a... + cb80: 70 43 44 54 32 88 61 0a 02 00 70 43 44 54 33 88 pCDT2.a...pCDT3. + cb90: 61 0a 03 00 70 43 44 54 34 88 61 0a 04 00 70 43 a...pCDT4.a...pC + cba0: 44 54 35 88 61 0a 05 00 a1 09 70 0a 10 88 61 0a DT5.a.....p...a. + cbb0: 00 00 5b 27 4d 55 45 43 a4 61 14 48 1a 45 43 53 ..['MUEC.a.H.ECS + cbc0: 42 07 70 12 0e 05 0a 11 0a 00 0a 00 0a 00 11 03 B.p............. + cbd0: 0a 20 61 a0 07 94 68 0a 01 a4 61 a0 45 18 45 43 . a...h...a.E.EC + cbe0: 41 56 5b 23 4d 55 45 43 ff ff a0 0b 93 68 0a 00 AV[#MUEC.....h.. + cbf0: 70 50 52 54 43 60 a1 07 70 50 52 54 32 60 70 00 pPRTC`..pPRT2`p. + cc00: 62 a2 36 92 93 60 0a 00 5b 21 0a 0a 75 62 a0 13 b.6..`..[!..ub.. + cc10: 94 62 0b e8 03 70 53 42 42 59 88 61 0a 00 00 70 .b...pSBBY.a...p + cc20: 00 60 a1 15 a0 0b 93 68 0a 00 70 50 52 54 43 60 .`.....h..pPRTC` + cc30: a1 07 70 50 52 54 32 60 a0 42 12 92 94 62 0b e8 ..pPRT2`.B...b.. + cc40: 03 a0 39 93 68 0a 00 70 6a 41 44 44 52 70 6b 43 ..9.h..pjADDRpkC + cc50: 4d 44 42 70 6c 44 41 54 30 70 6d 44 41 54 31 70 MDBplDAT0pmDAT1p + cc60: 83 88 6e 0a 00 00 42 43 4e 54 70 83 88 6e 0a 01 ..n...BCNTp..n.. + cc70: 00 42 44 41 54 70 69 50 52 54 43 a1 35 70 6a 41 .BDATpiPRTC.5pjA + cc80: 44 44 32 70 6b 43 4d 44 32 70 6c 44 41 32 30 70 DD2pkCMD2plDA20p + cc90: 6d 44 41 32 31 70 83 88 6e 0a 00 00 42 43 4e 32 mDA21p..n...BCN2 + cca0: 70 83 88 6e 0a 01 00 42 44 41 32 70 69 50 52 54 p..n...BDA2piPRT + ccb0: 32 70 0a 7f 60 a0 11 93 68 0a 00 a2 0b 50 52 54 2p..`...h....PRT + ccc0: 43 5b 22 0a 01 76 60 a1 0d a2 0b 50 52 54 32 5b C["..v`....PRT2[ + ccd0: 22 0a 01 76 60 a0 4b 07 60 a0 33 93 68 0a 00 70 "..v`.K.`.3.h..p + cce0: 53 53 54 53 60 70 44 41 54 30 88 61 0a 01 00 70 SSTS`pDAT0.a...p + ccf0: 44 41 54 31 88 61 0a 02 00 70 42 43 4e 54 88 61 DAT1.a...pBCNT.a + cd00: 0a 03 00 70 42 44 41 54 88 61 0a 04 00 a1 2f 70 ...pBDAT.a..../p + cd10: 53 53 54 32 60 70 44 41 32 30 88 61 0a 01 00 70 SST2`pDA20.a...p + cd20: 44 41 32 31 88 61 0a 02 00 70 42 43 4e 32 88 61 DA21.a...pBCN2.a + cd30: 0a 03 00 70 42 44 41 32 88 61 0a 04 00 7b 60 0a ...pBDA2.a...{`. + cd40: 1f 60 a0 07 60 72 60 0a 10 60 70 60 88 61 0a 00 .`..`r`..`p`.a.. + cd50: 00 a1 09 70 0a 10 88 61 0a 00 00 5b 27 4d 55 45 ...p...a...['MUE + cd60: 43 a4 61 5b 80 45 43 49 44 01 0b 57 02 0a 01 5b C.a[.ECID..W...[ + cd70: 81 0b 45 43 49 44 01 45 43 34 44 08 5b 80 45 43 ..ECID.EC4D.[.EC + cd80: 49 43 01 0b 58 02 0a 01 5b 81 0b 45 43 49 43 01 IC..X...[..ECIC. + cd90: 45 43 34 43 08 14 28 57 45 49 45 08 70 0b ff ff EC4C..(WEIE.p... + cda0: 60 a2 1a 93 7b 45 43 34 43 0a 02 00 0a 02 a0 07 `...{EC4C....... + cdb0: 93 60 0a 00 a4 ff 76 60 5b 22 0a 05 a4 00 14 29 .`....v`[".....) + cdc0: 57 45 4f 46 08 70 0b ff ff 60 a2 1b 92 93 7b 45 WEOF.p...`....{E + cdd0: 43 34 43 0a 01 00 0a 01 a0 07 93 60 0a 00 a4 ff C4C........`.... + cde0: 76 60 5b 22 0a 05 a4 00 14 2e 57 45 4f 45 00 70 v`["......WEOE.p + cdf0: 0b ff ff 60 a2 20 93 7b 45 43 34 43 0a 01 00 0a ...`. .{EC4C.... + ce00: 01 a0 07 93 60 0a 00 a4 ff 76 60 5b 22 0a 05 70 ....`....v`["..p + ce10: 45 43 34 44 61 a4 00 14 40 0a 53 54 38 33 09 a0 EC4Da...@.ST83.. + ce20: 46 09 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 10 F.ECAV[#MU4T.... + ce30: 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff a0 ..WEOE.['MU4T... + ce40: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + ce50: 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 00 p..EC4C....WEIE. + ce60: 5b 27 4d 55 34 54 a4 ff 70 0a 83 45 43 34 43 a0 ['MU4T..p..EC4C. + ce70: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + ce80: 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b phEC4D....WEIE.[ + ce90: 27 4d 55 34 54 a4 ff a0 10 92 93 57 45 4f 46 00 'MU4T......WEOF. + cea0: 5b 27 4d 55 34 54 a4 ff 70 45 43 34 44 60 5b 27 ['MU4T..pEC4D`[' + ceb0: 4d 55 34 54 a4 60 a4 ff 14 40 0a 53 54 38 34 0a MU4T.`...@.ST84. + cec0: a0 46 09 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 .F.ECAV[#MU4T... + ced0: 10 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff ...WEOE.['MU4T.. + cee0: a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ....WEIE.['MU4T. + cef0: ff 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 .p..EC4C....WEIE + cf00: 00 5b 27 4d 55 34 54 a4 ff 70 0a 84 45 43 34 43 .['MU4T..p..EC4C + cf10: a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ....WEIE.['MU4T. + cf20: ff 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 .phEC4D....WEIE. + cf30: 5b 27 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 10 ['MU4T..piEC4D.. + cf40: 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 5b ..WEIE.['MU4T..[ + cf50: 27 4d 55 34 54 a4 00 a4 ff 14 45 0c 53 54 39 35 'MU4T.....E.ST95 + cf60: 0a a0 4b 0b 45 43 41 56 5b 23 4d 55 34 54 ff ff ..K.ECAV[#MU4T.. + cf70: a0 10 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ....WEOE.['MU4T. + cf80: ff a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 .....WEIE.['MU4T + cf90: a4 ff 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 ..p..EC4C....WEI + cfa0: 45 00 5b 27 4d 55 34 54 a4 ff 70 0a 95 45 43 34 E.['MU4T..p..EC4 + cfb0: 43 a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 C....WEIE.['MU4T + cfc0: a4 ff 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 ..phEC4D....WEIE + cfd0: 00 5b 27 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 .['MU4T..piEC4D. + cfe0: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + cff0: a0 1c 93 68 0a 00 a0 10 92 93 57 45 4f 46 00 5b ...h......WEOF.[ + d000: 27 4d 55 34 54 a4 ff 70 45 43 34 44 60 5b 27 4d 'MU4T..pEC4D`['M + d010: 55 34 54 a0 07 93 68 0a 00 a4 60 a4 00 a4 ff 14 U4T...h...`..... + d020: 45 0c 53 54 38 37 0a a0 4b 0b 45 43 41 56 5b 23 E.ST87..K.ECAV[# + d030: 4d 55 34 54 ff ff a0 10 92 93 57 45 4f 45 00 5b MU4T......WEOE.[ + d040: 27 4d 55 34 54 a4 ff a0 10 92 93 57 45 49 45 00 'MU4T......WEIE. + d050: 5b 27 4d 55 34 54 a4 ff 70 0a ff 45 43 34 43 a0 ['MU4T..p..EC4C. + d060: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d070: 70 0a 87 45 43 34 43 a0 10 92 93 57 45 49 45 00 p..EC4C....WEIE. + d080: 5b 27 4d 55 34 54 a4 ff 70 68 45 43 34 44 a0 10 ['MU4T..phEC4D.. + d090: 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 ..WEIE.['MU4T..p + d0a0: 69 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b 27 iEC4D....WEIE.[' + d0b0: 4d 55 34 54 a4 ff a0 1c 93 68 0a 00 a0 10 92 93 MU4T.....h...... + d0c0: 57 45 4f 46 00 5b 27 4d 55 34 54 a4 ff 70 45 43 WEOF.['MU4T..pEC + d0d0: 34 44 60 5b 27 4d 55 34 54 a0 07 93 68 0a 00 a4 4D`['MU4T...h... + d0e0: 60 a4 00 a4 ff 14 40 0a 53 54 38 35 09 a0 46 09 `.....@.ST85..F. + d0f0: 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 10 92 93 ECAV[#MU4T...... + d100: 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff a0 10 92 WEOE.['MU4T..... + d110: 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 0a .WEIE.['MU4T..p. + d120: ff 45 43 34 43 a0 10 92 93 57 45 49 45 00 5b 27 .EC4C....WEIE.[' + d130: 4d 55 34 54 a4 ff 70 0a 85 45 43 34 43 a0 10 92 MU4T..p..EC4C... + d140: 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 68 .WEIE.['MU4T..ph + d150: 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b 27 4d EC4D....WEIE.['M + d160: 55 34 54 a4 ff a0 10 92 93 57 45 4f 46 00 5b 27 U4T......WEOF.[' + d170: 4d 55 34 54 a4 ff 70 45 43 34 44 60 5b 27 4d 55 MU4T..pEC4D`['MU + d180: 34 54 a4 60 a4 ff 14 40 0a 53 54 38 36 0a a0 46 4T.`...@.ST86..F + d190: 09 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 10 92 .ECAV[#MU4T..... + d1a0: 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff a0 10 .WEOE.['MU4T.... + d1b0: 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 ..WEIE.['MU4T..p + d1c0: 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 00 5b ..EC4C....WEIE.[ + d1d0: 27 4d 55 34 54 a4 ff 70 0a 86 45 43 34 43 a0 10 'MU4T..p..EC4C.. + d1e0: 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 ..WEIE.['MU4T..p + d1f0: 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b 27 hEC4D....WEIE.[' + d200: 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 10 92 93 MU4T..piEC4D.... + d210: 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 5b 27 4d WEIE.['MU4T..['M + d220: 55 34 54 a4 00 a4 ff 14 47 0b 53 54 38 45 0a a0 U4T.....G.ST8E.. + d230: 4d 0a 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 10 M.ECAV[#MU4T.... + d240: 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff a0 ..WEOE.['MU4T... + d250: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d260: 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 00 p..EC4C....WEIE. + d270: 5b 27 4d 55 34 54 a4 ff 70 0a 8e 45 43 34 43 a0 ['MU4T..p..EC4C. + d280: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d290: 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b phEC4D....WEIE.[ + d2a0: 27 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 10 92 'MU4T..piEC4D... + d2b0: 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff a0 10 .WEIE.['MU4T.... + d2c0: 92 93 57 45 4f 46 00 5b 27 4d 55 34 54 a4 ff 70 ..WEOF.['MU4T..p + d2d0: 45 43 34 44 60 5b 27 4d 55 34 54 a4 60 a4 ff 14 EC4D`['MU4T.`... + d2e0: 47 0b 53 54 39 45 0b a0 4d 0a 45 43 41 56 5b 23 G.ST9E..M.ECAV[# + d2f0: 4d 55 34 54 ff ff a0 10 92 93 57 45 4f 45 00 5b MU4T......WEOE.[ + d300: 27 4d 55 34 54 a4 ff a0 10 92 93 57 45 49 45 00 'MU4T......WEIE. + d310: 5b 27 4d 55 34 54 a4 ff 70 0a ff 45 43 34 43 a0 ['MU4T..p..EC4C. + d320: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d330: 70 0a 9e 45 43 34 43 a0 10 92 93 57 45 49 45 00 p..EC4C....WEIE. + d340: 5b 27 4d 55 34 54 a4 ff 70 68 45 43 34 44 a0 10 ['MU4T..phEC4D.. + d350: 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 ..WEIE.['MU4T..p + d360: 69 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b 27 iEC4D....WEIE.[' + d370: 4d 55 34 54 a4 ff 70 6a 45 43 34 44 a0 10 92 93 MU4T..pjEC4D.... + d380: 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 5b 27 4d WEIE.['MU4T..['M + d390: 55 34 54 a4 00 a4 ff 14 47 0b 53 54 39 46 0b a0 U4T.....G.ST9F.. + d3a0: 4d 0a 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 10 M.ECAV[#MU4T.... + d3b0: 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff a0 ..WEOE.['MU4T... + d3c0: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d3d0: 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 00 p..EC4C....WEIE. + d3e0: 5b 27 4d 55 34 54 a4 ff 70 0a 9f 45 43 34 43 a0 ['MU4T..p..EC4C. + d3f0: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d400: 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b phEC4D....WEIE.[ + d410: 27 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 10 92 'MU4T..piEC4D... + d420: 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 70 6a .WEIE.['MU4T..pj + d430: 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b 27 4d EC4D....WEIE.['M + d440: 55 34 54 a4 ff 5b 27 4d 55 34 54 a4 00 a4 ff 14 U4T..['MU4T..... + d450: 48 08 53 54 41 39 0a a0 4e 07 45 43 41 56 5b 23 H.STA9..N.ECAV[# + d460: 4d 55 34 54 ff ff a0 10 92 93 57 45 4f 45 00 5b MU4T......WEOE.[ + d470: 27 4d 55 34 54 a4 ff a0 10 92 93 57 45 49 45 00 'MU4T......WEIE. + d480: 5b 27 4d 55 34 54 a4 ff 70 0a a9 45 43 34 43 a0 ['MU4T..p..EC4C. + d490: 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff ...WEIE.['MU4T.. + d4a0: 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 5b phEC4D....WEIE.[ + d4b0: 27 4d 55 34 54 a4 ff 70 69 45 43 34 44 a0 10 92 'MU4T..piEC4D... + d4c0: 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ff 5b 27 .WEIE.['MU4T..[' + d4d0: 4d 55 34 54 a4 00 a4 ff 14 40 0a 53 54 41 38 09 MU4T.....@.STA8. + d4e0: a0 46 09 45 43 41 56 5b 23 4d 55 34 54 ff ff a0 .F.ECAV[#MU4T... + d4f0: 10 92 93 57 45 4f 45 00 5b 27 4d 55 34 54 a4 ff ...WEOE.['MU4T.. + d500: a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ....WEIE.['MU4T. + d510: ff 70 0a ff 45 43 34 43 a0 10 92 93 57 45 49 45 .p..EC4C....WEIE + d520: 00 5b 27 4d 55 34 54 a4 ff 70 0a a8 45 43 34 43 .['MU4T..p..EC4C + d530: a0 10 92 93 57 45 49 45 00 5b 27 4d 55 34 54 a4 ....WEIE.['MU4T. + d540: ff 70 68 45 43 34 44 a0 10 92 93 57 45 49 45 00 .phEC4D....WEIE. + d550: 5b 27 4d 55 34 54 a4 ff a0 10 92 93 57 45 4f 46 ['MU4T......WEOF + d560: 00 5b 27 4d 55 34 54 a4 ff 70 45 43 34 44 60 5b .['MU4T..pEC4D`[ + d570: 27 4d 55 34 54 a4 60 a4 ff 14 47 05 54 50 53 57 'MU4T.`...G.TPSW + d580: 01 7b 68 0a 01 60 a0 25 60 5c 2f 05 5f 53 42 5f .{h..`.%`\/._SB_ + d590: 50 43 49 30 53 42 52 47 45 43 30 5f 45 43 58 54 PCI0SBRGEC0_ECXT + d5a0: 0a b6 0a b8 0a 01 0a 01 0a 00 0a 00 a1 24 5c 2f .............$\/ + d5b0: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 + d5c0: 5f 45 43 58 54 0a b6 0a b8 0a 01 0a 02 0a 00 0a _ECXT........... + d5d0: 00 14 42 04 54 50 53 54 00 70 5c 2f 05 5f 53 42 ..B.TPST.p\/._SB + d5e0: 5f 50 43 49 30 53 42 52 47 45 43 30 5f 45 43 58 _PCI0SBRGEC0_ECX + d5f0: 54 0a b6 0a b8 0a 02 0a 00 0a 00 0a 00 60 70 83 T............`p. + d600: 88 60 0a 01 00 61 a0 08 93 61 0a 00 a4 0a 01 a1 .`...a...a...... + d610: 04 a4 0a 00 14 45 05 4c 42 53 57 01 a0 28 93 68 .....E.LBSW..(.h + d620: 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 ..\/._SB_PCI0SBR + d630: 47 45 43 30 5f 45 43 58 54 0a b6 0a b9 0a 01 0a GEC0_ECXT....... + d640: 00 0a 00 0a 00 a1 24 5c 2f 05 5f 53 42 5f 50 43 ......$\/._SB_PC + d650: 49 30 53 42 52 47 45 43 30 5f 45 43 58 54 0a b6 I0SBRGEC0_ECXT.. + d660: 0a b9 0a 02 0a 00 0a 00 0a 00 14 16 4c 42 53 54 ............LBST + d670: 00 70 52 52 41 4d 0b 4a 04 60 7b 60 0a 03 60 a4 .pRRAM.J.`{`..`. + d680: 60 10 18 5c 00 08 54 53 50 5f 0a 0a 08 54 43 31 `..\..TSP_...TC1 + d690: 5f 0a 02 08 54 43 32 5f 0a 0a 10 46 14 5c 5f 54 _...TC2_...F.\_T + d6a0: 5a 5f 14 32 4b 45 4c 56 01 7b 68 0a ff 60 a0 19 Z_.2KELV.{h..`.. + d6b0: 92 95 60 0a 80 74 0b 00 01 60 60 77 60 0a 0a 60 ..`..t...``w`..` + d6c0: 74 0b ac 0a 60 60 a4 60 77 60 0a 0a 60 72 60 0b t...``.`w`..`r`. + d6d0: ac 0a 60 a4 60 14 14 43 45 4c 43 01 74 68 0b ac ..`.`..CELC.th.. + d6e0: 0a 60 78 60 0a 0a 61 60 a4 60 08 50 4c 43 59 0a .`x`..a`.`.PLCY. + d6f0: 00 5b 85 4e 0e 54 48 52 4d 14 19 5f 43 52 54 00 .[.N.THRM.._CRT. + d700: 52 43 52 54 a4 4b 45 4c 56 5c 2e 5f 53 42 5f 54 RCRT.KELV\._SB_T + d710: 43 52 54 14 2f 5f 54 4d 50 00 70 0a 05 61 a2 1e CRT./_TMP.p..a.. + d720: 61 70 52 54 4d 50 60 a0 0f 94 60 5c 2e 5f 53 42 apRTMP`...`\._SB + d730: 5f 54 43 52 54 76 61 a1 05 70 0a 00 61 a4 4b 45 _TCRTva..p..a.KE + d740: 4c 56 60 08 5f 50 53 4c 12 2a 04 5c 2e 5f 50 52 LV`._PSL.*.\._PR + d750: 5f 43 50 55 30 5c 2e 5f 50 52 5f 43 50 55 31 5c _CPU0\._PR_CPU1\ + d760: 2e 5f 50 52 5f 43 50 55 32 5c 2e 5f 50 52 5f 43 ._PR_CPU2\._PR_C + d770: 50 55 33 14 10 5f 54 53 50 00 77 54 53 50 5f 0a PU3.._TSP.wTSP_. + d780: 0a 60 a4 60 14 0b 5f 54 43 31 00 a4 54 43 31 5f .`.`.._TC1..TC1_ + d790: 14 0b 5f 54 43 32 00 a4 54 43 32 5f 14 30 5f 50 .._TC2..TC2_.0_P + d7a0: 53 56 00 52 50 53 56 a0 14 50 4c 43 59 a4 4b 45 SV.RPSV..PLCY.KE + d7b0: 4c 56 5c 2e 5f 53 42 5f 50 50 53 56 a1 10 a4 4b LV\._SB_PPSV...K + d7c0: 45 4c 56 5c 2e 5f 53 42 5f 54 50 53 56 14 13 5f ELV\._SB_TPSV.._ + d7d0: 53 43 50 01 70 00 50 4c 43 59 86 54 48 52 4d 0a SCP.p.PLCY.THRM. + d7e0: 81 10 4e 20 5c 5f 54 5a 5f 08 41 54 4d 50 0a 3c ..N \_TZ_.ATMP.< + d7f0: 08 4c 54 4d 50 0a 3c 08 46 41 4e 53 0a 00 14 4a .LTMP.<.FANS...J + d800: 04 52 54 4d 50 00 a0 3d 5c 2f 05 5f 53 42 5f 50 .RTMP..=\/._SB_P + d810: 43 49 30 53 42 52 47 45 43 30 5f 45 43 41 56 70 CI0SBRGEC0_ECAVp + d820: 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 \/._SB_PCI0SBRGE + d830: 43 30 5f 45 43 50 55 60 a0 0b 95 60 0a 80 70 60 C0_ECPU`...`..p` + d840: 4c 54 4d 50 a4 4c 54 4d 50 14 4c 04 52 43 52 54 LTMP.LTMP.L.RCRT + d850: 00 a0 44 04 5c 2f 05 5f 53 42 5f 50 43 49 30 53 ..D.\/._SB_PCI0S + d860: 42 52 47 45 43 30 5f 45 43 41 56 70 5c 2f 05 5f BRGEC0_ECAVp\/._ + d870: 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f 45 SB_PCI0SBRGEC0_E + d880: 43 52 54 60 a0 11 95 60 0a 80 70 60 5c 2e 5f 53 CRT`...`..p`\._S + d890: 42 5f 54 43 52 54 14 4c 04 52 50 53 56 00 a0 44 B_TCRT.L.RPSV..D + d8a0: 04 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + d8b0: 45 43 30 5f 45 43 41 56 70 5c 2f 05 5f 53 42 5f EC0_ECAVp\/._SB_ + d8c0: 50 43 49 30 53 42 52 47 45 43 30 5f 45 50 53 56 PCI0SBRGEC0_EPSV + d8d0: 60 a0 11 95 60 0a 80 70 60 5c 2e 5f 53 42 5f 54 `...`..p`\._SB_T + d8e0: 50 53 56 14 44 08 52 46 41 4e 01 a0 45 07 5c 2f PSV.D.RFAN..E.\/ + d8f0: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 + d900: 5f 45 43 41 56 70 5c 2f 05 5f 53 42 5f 50 43 49 _ECAVp\/._SB_PCI + d910: 30 53 42 52 47 45 43 30 5f 53 54 38 33 68 60 a0 0SBRGEC0_ST83h`. + d920: 07 93 60 0a ff a4 60 70 5c 2f 05 5f 53 42 5f 50 ..`...`p\/._SB_P + d930: 43 49 30 53 42 52 47 45 43 30 5f 54 41 43 48 68 CI0SBRGEC0_TACHh + d940: 60 78 60 0a 64 61 60 72 60 0a 01 60 a0 0c 92 94 `x`.da`r`..`.... + d950: 60 0a 3c 70 60 46 41 4e 53 a1 07 70 46 41 4e 53 `.LID_ + ea90: 08 5f 48 49 44 0c 41 d0 0c 0d 14 2e 5f 4c 49 44 ._HID.A....._LID + eaa0: 00 70 01 60 70 5c 2f 05 5f 53 42 5f 50 43 49 30 .p.`p\/._SB_PCI0 + eab0: 53 42 52 47 45 43 30 5f 52 50 49 4e 0a 46 60 a0 SBRGEC0_RPIN.F`. + eac0: 07 93 60 ff 70 01 60 a4 60 10 06 5c 5f 47 50 45 ..`.p.`.`..\_GPE + ead0: 10 28 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 .(\/._SB_PCI0SBR + eae0: 47 45 43 30 5f 14 13 5f 51 38 33 00 86 5c 2e 5f GEC0_.._Q83..\._ + eaf0: 53 42 5f 4c 49 44 5f 0a 80 10 26 5c 5f 53 42 5f SB_LID_...&\_SB_ + eb00: 5b 82 1e 53 4c 50 42 08 5f 48 49 44 0c 41 d0 0c [..SLPB._HID.A.. + eb10: 0e 14 0e 5f 50 52 57 00 a4 12 06 02 0a 0b 0a 04 ..._PRW......... + eb20: 10 49 21 5c 2e 5f 53 42 5f 41 54 4b 44 14 28 46 .I!\._SB_ATKD.(F + eb30: 53 4d 49 01 70 68 5c 2e 5f 53 42 5f 46 53 46 4e SMI.ph\._SB_FSFN + eb40: 7d 68 0a a0 60 49 53 4d 49 0a 90 a4 5c 2e 5f 53 }h..`ISMI...\._S + eb50: 42 5f 46 53 54 41 14 18 46 4c 53 48 01 70 68 5c B_FSTA..FLSH.ph\ + eb60: 2e 5f 53 42 5f 46 53 54 41 46 53 4d 49 0a 00 14 ._SB_FSTAFSMI... + eb70: 19 46 49 4e 49 01 70 68 5c 2e 5f 53 42 5f 46 41 .FINI.ph\._SB_FA + eb80: 44 52 a4 46 53 4d 49 0a 01 14 19 46 45 52 53 01 DR.FSMI....FERS. + eb90: 70 68 5c 2e 5f 53 42 5f 46 53 54 41 a4 46 53 4d ph\._SB_FSTA.FSM + eba0: 49 0a 02 14 2c 46 57 52 49 01 70 68 5c 2e 5f 53 I...,FWRI.ph\._S + ebb0: 42 5f 46 41 44 52 70 0b 00 10 5c 2e 5f 53 42 5f B_FADRp...\._SB_ + ebc0: 46 53 49 5a a4 74 0b 00 10 46 53 4d 49 0a 03 00 FSIZ.t...FSMI... + ebd0: 14 1f 46 57 52 50 00 70 0a 00 5c 2e 5f 53 42 5f ..FWRP.p..\._SB_ + ebe0: 46 53 49 5a a4 74 0b 00 10 46 53 4d 49 0a 03 00 FSIZ.t...FSMI... + ebf0: 14 19 46 45 42 57 01 70 68 5c 2e 5f 53 42 5f 46 ..FEBW.ph\._SB_F + ec00: 41 44 52 a4 46 53 4d 49 0a 04 14 19 46 45 42 52 ADR.FSMI....FEBR + ec10: 01 70 68 5c 2e 5f 53 42 5f 46 41 44 52 a4 46 53 .ph\._SB_FADR.FS + ec20: 4d 49 0a 05 14 0d 46 45 44 57 00 a4 46 53 4d 49 MI....FEDW..FSMI + ec30: 0a 06 14 19 45 43 53 52 01 70 68 5c 2e 5f 53 42 ....ECSR.ph\._SB + ec40: 5f 46 53 54 41 a4 46 53 4d 49 0a 07 14 19 46 4c _FSTA.FSMI....FL + ec50: 53 43 01 70 68 5c 2e 5f 53 42 5f 46 53 54 41 a4 SC.ph\._SB_FSTA. + ec60: 46 53 4d 49 0a 08 14 4f 07 46 49 4d 45 01 70 68 FSMI...O.FIME.ph + ec70: 5c 2e 5f 53 42 5f 46 53 54 41 a0 3e 7d 93 68 0a \._SB_FSTA.>}.h. + ec80: 04 93 68 0a 05 00 46 53 4d 49 0a 09 a0 14 93 68 ..h...FSMI.....h + ec90: 0a 04 70 5c 2e 5f 53 42 5f 46 41 44 52 55 4c 43 ..p\._SB_FADRULC + eca0: 4b 70 0a 00 5c 2e 5f 53 42 5f 46 53 54 41 a4 5c Kp..\._SB_FSTA.\ + ecb0: 2e 5f 53 42 5f 46 53 54 41 a0 25 93 68 0b 00 80 ._SB_FSTA.%.h... + ecc0: 70 0b 00 10 5c 2e 5f 53 42 5f 46 53 49 5a 46 53 p...\._SB_FSIZFS + ecd0: 4d 49 0a 09 a4 5c 2e 5f 53 42 5f 46 53 54 41 a4 MI...\._SB_FSTA. + ece0: 46 53 4d 49 0a 09 14 4c 04 46 52 45 43 01 a0 31 FSMI...L.FREC..1 + ecf0: 93 68 0b 00 80 70 68 5c 2e 5f 53 42 5f 46 53 54 .h...ph\._SB_FST + ed00: 41 46 53 4d 49 0a 0a 70 0b 00 10 5c 2e 5f 53 42 AFSMI..p...\._SB + ed10: 5f 46 53 49 5a a4 5c 2e 5f 53 42 5f 46 53 54 41 _FSIZ.\._SB_FSTA + ed20: 70 68 5c 2e 5f 53 42 5f 46 53 54 41 a4 46 53 4d ph\._SB_FSTA.FSM + ed30: 49 0a 0a 08 55 4c 43 4b 0a 00 10 44 2a 5c 5f 53 I...ULCK...D*\_S + ed40: 42 5f 08 58 43 50 44 0a 00 08 58 4e 50 54 0a 01 B_.XCPD...XNPT.. + ed50: 08 58 43 41 50 0a 02 08 58 44 43 50 0a 04 08 58 .XCAP...XDCP...X + ed60: 44 43 54 0a 08 08 58 44 53 54 0a 0a 08 58 4c 43 DCT...XDST...XLC + ed70: 50 0a 0c 08 58 4c 43 54 0a 10 08 58 4c 53 54 0a P...XLCT...XLST. + ed80: 12 08 58 53 43 50 0a 14 08 58 53 43 54 0a 18 08 ..XSCP...XSCT... + ed90: 58 53 53 54 0a 1a 08 58 52 43 54 0a 1c 5b 01 4d XSST...XRCT..[.M + eda0: 55 54 45 00 14 28 42 44 46 52 04 79 68 0a 14 68 UTE..(BDFR.yh..h + edb0: 79 69 0a 0f 69 79 6a 0a 0c 6a 72 68 0a 00 60 72 yi..iyj..jrh..`r + edc0: 69 60 60 72 6a 60 60 72 6b 60 60 a4 60 14 38 52 i``rj``rk``.`.8R + edd0: 42 50 45 01 5b 23 4d 55 54 45 ff ff 72 68 5c 50 BPE.[#MUTE..rh\P + ede0: 45 42 53 60 5b 80 50 43 46 47 00 60 0a 01 5b 81 EBS`[.PCFG.`..[. + edf0: 0b 50 43 46 47 01 58 43 46 47 08 5b 27 4d 55 54 .PCFG.XCFG.['MUT + ee00: 45 a4 58 43 46 47 14 41 04 52 57 50 45 01 5b 23 E.XCFG.A.RWPE.[# + ee10: 4d 55 54 45 ff ff 7b 68 0c fe ff ff ff 68 72 68 MUTE..{h.....hrh + ee20: 5c 50 45 42 53 60 5b 80 50 43 46 47 00 60 0a 02 \PEBS`[.PCFG.`.. + ee30: 5b 81 0b 50 43 46 47 02 58 43 46 47 10 5b 27 4d [..PCFG.XCFG.['M + ee40: 55 54 45 a4 58 43 46 47 14 41 04 52 44 50 45 01 UTE.XCFG.A.RDPE. + ee50: 5b 23 4d 55 54 45 ff ff 7b 68 0c fc ff ff ff 68 [#MUTE..{h.....h + ee60: 72 68 5c 50 45 42 53 60 5b 80 50 43 46 47 00 60 rh\PEBS`[.PCFG.` + ee70: 0a 04 5b 81 0b 50 43 46 47 03 58 43 46 47 20 5b ..[..PCFG.XCFG [ + ee80: 27 4d 55 54 45 a4 58 43 46 47 14 39 57 42 50 45 'MUTE.XCFG.9WBPE + ee90: 02 5b 23 4d 55 54 45 ff ff 72 68 5c 50 45 42 53 .[#MUTE..rh\PEBS + eea0: 60 5b 80 50 43 46 47 00 60 0a 01 5b 81 0b 50 43 `[.PCFG.`..[..PC + eeb0: 46 47 01 58 43 46 47 08 70 69 58 43 46 47 5b 27 FG.XCFG.piXCFG[' + eec0: 4d 55 54 45 14 42 04 57 57 50 45 02 5b 23 4d 55 MUTE.B.WWPE.[#MU + eed0: 54 45 ff ff 7b 68 0c fe ff ff ff 68 72 68 5c 50 TE..{h.....hrh\P + eee0: 45 42 53 60 5b 80 50 43 46 47 00 60 0a 02 5b 81 EBS`[.PCFG.`..[. + eef0: 0b 50 43 46 47 02 58 43 46 47 10 70 69 58 43 46 .PCFG.XCFG.piXCF + ef00: 47 5b 27 4d 55 54 45 14 42 04 57 44 50 45 02 5b G['MUTE.B.WDPE.[ + ef10: 23 4d 55 54 45 ff ff 7b 68 0c fc ff ff ff 68 72 #MUTE..{h.....hr + ef20: 68 5c 50 45 42 53 60 5b 80 50 43 46 47 00 60 0a h\PEBS`[.PCFG.`. + ef30: 04 5b 81 0b 50 43 46 47 03 58 43 46 47 20 70 69 .[..PCFG.XCFG pi + ef40: 58 43 46 47 5b 27 4d 55 54 45 14 4a 04 52 57 44 XCFG['MUTE.J.RWD + ef50: 50 03 5b 23 4d 55 54 45 ff ff 7b 68 0c fc ff ff P.[#MUTE..{h.... + ef60: ff 68 72 68 5c 50 45 42 53 60 5b 80 50 43 46 47 .hrh\PEBS`[.PCFG + ef70: 00 60 0a 04 5b 81 0b 50 43 46 47 03 58 43 46 47 .`..[..PCFG.XCFG + ef80: 20 7b 58 43 46 47 6a 61 7d 61 69 58 43 46 47 5b {XCFGja}aiXCFG[ + ef90: 27 4d 55 54 45 14 49 04 52 50 4d 45 01 72 68 0a 'MUTE.I.RPME.rh. + efa0: 84 60 70 5c 2e 5f 53 42 5f 52 44 50 45 60 61 a0 .`p\._SB_RDPE`a. + efb0: 0b 93 61 0c ff ff ff ff a4 0a 00 a1 23 a0 1e 90 ..a.........#... + efc0: 61 0c 00 00 01 00 5c 2e 5f 53 42 5f 57 44 50 45 a.....\._SB_WDPE + efd0: 60 7b 61 0c 00 00 01 00 00 a4 0a 01 a4 0a 00 10 `{a............. + efe0: 44 08 5c 2e 5f 53 42 5f 50 43 49 30 5b 82 46 07 D.\._SB_PCI0[.F. + eff0: 52 45 53 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f RESC._HID.A...._ + f000: 55 49 44 0a 09 08 42 55 46 30 11 11 0a 0e 86 09 UID...BUF0...... + f010: 00 01 00 00 00 00 00 10 00 00 79 00 14 47 04 5f ..........y..G._ + f020: 43 52 53 08 8a 42 55 46 30 0a 04 50 54 42 30 70 CRS..BUF0..PTB0p + f030: 5c 2e 5f 53 42 5f 50 54 41 42 50 54 42 30 8a 42 \._SB_PTABPTB0.B + f040: 55 46 30 0a 08 50 54 4c 4e a0 15 93 5c 2e 5f 53 UF0..PTLN...\._S + f050: 42 5f 50 54 41 42 0a 00 70 0a 00 50 54 4c 4e a4 B_PTAB..p..PTLN. + f060: 42 55 46 30 10 4f 64 5c 00 5b 80 5c 50 4d 49 4f BUF0.Od\.[.\PMIO + f070: 01 0b 00 04 0a 80 5b 81 4f 15 5c 50 4d 49 4f 01 ......[.O.\PMIO. + f080: 00 40 08 00 01 54 44 54 59 03 54 45 4e 41 01 54 .@...TDTY.TENA.T + f090: 54 44 54 03 46 52 43 54 01 00 08 54 48 4c 53 01 TDT.FRCT...THLS. + f0a0: 00 06 00 48 06 00 01 50 45 48 53 01 00 07 50 45 ...H...PEHS...PE + f0b0: 50 53 01 42 4c 53 54 01 53 42 50 53 01 00 04 47 PS.BLST.SBPS...G + f0c0: 30 30 53 01 47 30 31 53 01 47 30 32 53 01 47 50 00S.G01S.G02S.GP + f0d0: 53 33 01 47 30 34 53 01 47 30 35 53 01 47 30 36 S3.G04S.G05S.G06 + f0e0: 53 01 47 30 37 53 01 47 30 38 53 01 47 30 39 53 S.G07S.G08S.G09S + f0f0: 01 47 30 41 53 01 47 30 42 53 01 47 30 43 53 01 .G0AS.G0BS.G0CS. + f100: 47 30 44 53 01 47 30 45 53 01 47 30 46 53 01 00 G0DS.G0ES.G0FS.. + f110: 20 00 01 50 45 48 45 01 00 07 50 45 50 45 01 42 ..PEHE...PEPE.B + f120: 4c 45 4e 01 53 42 50 45 01 00 04 47 30 30 45 01 LEN.SBPE...G00E. + f130: 47 30 31 45 01 47 30 32 45 01 47 50 45 33 01 47 G01E.G02E.GPE3.G + f140: 30 34 45 01 47 30 35 45 01 47 30 36 45 01 47 30 04E.G05E.G06E.G0 + f150: 37 45 01 47 30 38 45 01 47 30 39 45 01 47 30 41 7E.G08E.G09E.G0A + f160: 45 01 47 30 42 45 01 47 30 43 45 01 47 30 44 45 E.G0BE.G0CE.G0DE + f170: 01 47 30 45 45 01 47 30 46 45 01 00 20 00 04 53 .G0EE.G0FE.. ..S + f180: 4c 50 45 01 41 50 4d 45 01 00 05 4d 43 53 45 01 LPE.APME...MCSE. + f190: 00 01 54 43 4f 45 01 50 45 52 45 01 00 01 00 10 ..TCOE.PERE..... + f1a0: 00 04 53 4c 50 53 01 41 50 4d 53 01 00 05 4d 43 ..SLPS.APMS...MC + f1b0: 53 53 01 00 01 54 43 4f 53 01 50 45 52 53 01 00 SS...TCOS.PERS.. + f1c0: 01 00 40 06 00 01 47 50 45 43 01 00 4e 10 00 09 ..@...GPEC..N... + f1d0: 53 43 49 53 01 00 06 5b 80 5c 47 50 49 53 01 0b SCIS...[.\GPIS.. + f1e0: 00 04 0a 50 5b 81 0f 5c 47 50 49 53 01 00 40 11 ...P[..\GPIS..@. + f1f0: 47 53 30 30 10 5b 80 5c 47 50 30 31 01 0b 00 05 GS00.[.\GP01.... + f200: 0a 64 5b 81 42 0f 5c 47 50 30 31 01 47 55 30 30 .d[.B.\GP01.GU00 + f210: 08 47 55 30 31 08 47 55 30 32 08 47 55 30 33 08 .GU01.GU02.GU03. + f220: 47 49 4f 30 08 47 49 4f 31 08 47 49 4f 32 08 47 GIO0.GIO1.GIO2.G + f230: 49 4f 33 08 00 20 00 08 47 4c 30 31 08 47 4c 30 IO3.. ..GL01.GL0 + f240: 32 08 00 03 47 50 32 37 01 47 50 32 38 01 00 03 2...GP27.GP28... + f250: 00 40 04 00 08 47 42 30 31 08 47 42 30 32 08 47 .@...GB01.GB02.G + f260: 42 30 33 08 00 40 08 47 49 56 30 08 47 49 56 31 B03..@.GIV0.GIV1 + f270: 08 47 49 56 32 08 47 49 56 33 08 47 55 30 34 08 .GIV2.GIV3.GU04. + f280: 47 55 30 35 08 47 55 30 36 08 47 55 30 37 08 47 GU05.GU06.GU07.G + f290: 49 4f 34 08 47 49 4f 35 08 47 49 4f 36 08 47 49 IO4.GIO5.GIO6.GI + f2a0: 4f 37 08 00 05 00 01 00 02 47 4c 30 35 08 47 4c O7.......GL05.GL + f2b0: 30 36 08 47 4c 30 37 08 00 20 47 55 30 38 08 47 06.GL07.. GU08.G + f2c0: 55 30 39 08 47 55 30 41 08 47 55 30 42 08 47 49 U09.GU0A.GU0B.GI + f2d0: 4f 38 08 47 49 4f 39 08 47 49 4f 41 08 47 49 4f O8.GIO9.GIOA.GIO + f2e0: 42 08 47 4c 30 38 08 47 4c 30 39 08 47 4c 30 41 B.GL08.GL09.GL0A + f2f0: 08 47 4c 30 42 08 5b 80 5c 47 50 49 4f 01 0b 00 .GL0B.[.\GPIO... + f300: 05 0a 80 5b 81 34 5c 47 50 49 4f 01 00 40 06 47 ...[.4\GPIO..@.G + f310: 4c 30 30 10 47 4c 31 30 10 00 40 04 47 42 30 30 L00.GL10..@.GB00 + f320: 20 00 40 08 47 50 30 30 10 00 40 05 47 4c 32 30 .@.GP00..@.GL20 + f330: 20 00 40 06 47 4c 34 30 20 5b 80 52 43 42 41 00 .@.GL40 [.RCBA. + f340: 0c 00 c0 d1 fe 0b 00 40 5b 81 0f 52 43 42 41 01 .......@[..RCBA. + f350: 00 80 0c 1a 46 44 52 54 20 14 45 07 52 47 50 4c ....FDRT .E.RGPL + f360: 0a 70 69 60 70 00 61 a2 0e 60 79 61 0a 01 61 7d .pi`p.a..`ya..a} + f370: 61 0a 01 61 76 60 a0 17 95 68 0a 10 79 61 68 61 a..av`...h..yaha + f380: 70 47 4c 30 30 60 7b 60 61 60 7a 60 68 60 a1 3e pGL00`{`a`z`h`.> + f390: a0 10 95 68 0a 20 70 47 4c 31 30 60 74 68 0a 10 ...h. pGL10`th.. + f3a0: 62 a1 1f a0 10 95 68 0a 40 70 47 4c 32 30 60 74 b.....h.@pGL20`t + f3b0: 68 0a 20 62 a1 0c 70 47 4c 34 30 60 74 68 0a 40 h. b..pGL40`th.@ + f3c0: 62 79 61 62 61 7b 60 61 60 7a 60 62 60 a4 60 14 byaba{`a`z`b`.`. + f3d0: 48 0e 53 47 50 4c 0b 70 5c 2f 04 5f 53 42 5f 50 H.SGPL.p\/._SB_P + f3e0: 43 49 30 53 42 52 47 47 50 4c 4b 67 70 0a 00 5c CI0SBRGGPLKgp..\ + f3f0: 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 47 50 /._SB_PCI0SBRGGP + f400: 4c 4b 70 69 60 70 00 61 a2 0e 60 79 61 0a 01 61 LKpi`p.a..`ya..a + f410: 7d 61 0a 01 61 76 60 a0 4d 06 92 95 68 0a 10 a0 }a..av`.M...h... + f420: 10 95 68 0a 20 70 47 4c 31 30 60 74 68 0a 10 62 ..h. pGL10`th..b + f430: a1 1f a0 10 95 68 0a 40 70 47 4c 32 30 60 74 68 .....h.@pGL20`th + f440: 0a 20 62 a1 0c 70 47 4c 34 30 60 74 68 0a 40 62 . b..pGL40`th.@b + f450: 79 61 62 61 80 61 63 7b 60 63 60 79 6a 62 64 7d yaba.ac{`c`yjbd} + f460: 60 64 60 a0 0b 95 68 0a 20 70 60 47 4c 31 30 a1 `d`...h. p`GL10. + f470: 15 a0 0b 95 68 0a 40 70 60 47 4c 32 30 a1 07 70 ....h.@p`GL20..p + f480: 60 47 4c 34 30 a1 1d 79 61 68 61 80 61 63 7b 47 `GL40..yaha.ac{G + f490: 4c 30 30 63 60 79 6a 68 64 7d 60 64 60 70 60 47 L00c`yjhd}`d`p`G + f4a0: 4c 30 30 70 67 5c 2f 04 5f 53 42 5f 50 43 49 30 L00pg\/._SB_PCI0 + f4b0: 53 42 52 47 47 50 4c 4b 14 14 52 47 50 50 09 7a SBRGGPLK..RGPP.z + f4c0: 47 50 30 30 68 60 7b 60 0a 01 60 a4 60 14 46 05 GP00h`{`..`.`.F. + f4d0: 54 47 50 50 09 70 5c 2f 04 5f 53 42 5f 50 43 49 TGPP.p\/._SB_PCI + f4e0: 30 53 42 52 47 47 50 4c 4b 67 70 0a 00 5c 2f 04 0SBRGGPLKgp..\/. + f4f0: 5f 53 42 5f 50 43 49 30 53 42 52 47 47 50 4c 4b _SB_PCI0SBRGGPLK + f500: 79 0a 01 68 60 7f 47 50 30 30 60 47 50 30 30 70 y..h`.GP00`GP00p + f510: 67 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 g\/._SB_PCI0SBRG + f520: 47 50 4c 4b 14 48 06 53 47 50 50 0a 70 5c 2f 04 GPLK.H.SGPP.p\/. + f530: 5f 53 42 5f 50 43 49 30 53 42 52 47 47 50 4c 4b _SB_PCI0SBRGGPLK + f540: 67 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 gp..\/._SB_PCI0S + f550: 42 52 47 47 50 4c 4b 79 0a 01 68 60 a0 0c 69 7d BRGGPLKy..h`..i} + f560: 47 50 30 30 60 47 50 30 30 a1 0e 80 60 61 7b 47 GP00`GP00...`a{G + f570: 50 30 30 61 47 50 30 30 70 67 5c 2f 04 5f 53 42 P00aGP00pg\/._SB + f580: 5f 50 43 49 30 53 42 52 47 47 50 4c 4b 08 50 4d _PCI0SBRGGPLK.PM + f590: 45 57 00 14 0b 53 42 52 53 01 5c 43 50 58 53 14 EW...SBRS.\CPXS. + f5a0: 11 53 42 52 57 01 70 5c 53 42 50 53 5c 50 4d 45 .SBRW.p\SBPS\PME + f5b0: 57 14 27 53 54 52 50 01 a0 10 68 70 01 5c 53 4c W.'STRP...hp.\SL + f5c0: 50 53 70 01 5c 53 4c 50 45 a1 0f 70 00 5c 53 4c PSp.\SLPE..p.\SL + f5d0: 50 45 70 01 5c 53 4c 50 53 14 17 48 4b 54 48 08 PEp.\SLPS..HKTH. + f5e0: a0 0a 54 48 4c 53 a4 54 54 44 54 a1 05 a4 0b ff ..THLS.TTDT..... + f5f0: ff 14 42 0c 43 50 58 53 00 70 0a 00 60 70 0c 00 ..B.CPXS.p..`p.. + f600: 00 01 00 61 70 0c 60 00 0e 00 62 70 0c dc 00 0e ...ap.`...bp.... + f610: 00 63 a2 49 08 95 60 0a 04 a0 4f 06 92 7b 5c 46 .c.I..`...O..{\F + f620: 44 52 54 61 00 a2 31 7b 5c 2e 5f 53 42 5f 52 44 DRTa..1{\._SB_RD + f630: 50 45 62 0c 00 00 01 00 00 7d 5c 2e 5f 53 42 5f PEb......}\._SB_ + f640: 52 44 50 45 62 0c 00 00 01 00 64 5c 2e 5f 53 42 RDPEb.....d\._SB + f650: 5f 57 44 50 45 62 64 a2 31 7b 5c 2e 5f 53 42 5f _WDPEbd.1{\._SB_ + f660: 52 44 50 45 63 0c 00 00 00 80 00 7d 5c 2e 5f 53 RDPEc......}\._S + f670: 42 5f 52 44 50 45 63 0c 00 00 00 80 64 5c 2e 5f B_RDPEc.....d\._ + f680: 53 42 5f 57 44 50 45 63 64 72 62 0b 00 10 62 72 SB_WDPEcdrb...br + f690: 63 0b 00 10 63 79 61 0a 01 61 75 60 a2 17 7b 5c c...cya..au`..{\ + f6a0: 50 45 50 53 0a 01 00 7d 5c 50 45 50 53 0a 01 5c PEPS...}\PEPS..\ + f6b0: 50 45 50 53 10 49 20 5c 5f 47 50 45 14 41 05 5f PEPS.I \_GPE.A._ + f6c0: 4c 30 31 00 a0 49 04 92 7b 5c 46 44 52 54 0c 00 L01..I..{\FDRT.. + f6d0: 00 04 00 00 a0 39 5c 2f 04 5f 53 42 5f 50 43 49 .....9\/._SB_PCI + f6e0: 30 52 50 30 33 48 50 43 53 5c 2f 04 5f 53 42 5f 0RP03HPCS\/._SB_ + f6f0: 50 43 49 30 52 50 30 33 48 50 48 4b 86 5c 2f 03 PCI0RP03HPHK.\/. + f700: 5f 53 42 5f 50 43 49 30 52 50 30 33 0a 00 14 4f _SB_PCI0RP03...O + f710: 1a 5f 4c 30 39 00 a0 49 06 5c 2f 04 5f 53 42 5f ._L09..I.\/._SB_ + f720: 50 43 49 30 52 50 30 31 50 4d 45 53 a2 41 04 5c PCI0RP01PMES.A.\ + f730: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 31 50 4d /._SB_PCI0RP01PM + f740: 45 53 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ESp..\/._SB_PCI0 + f750: 52 50 30 31 50 4d 45 53 70 0a 01 5c 2f 04 5f 53 RP01PMESp..\/._S + f760: 42 5f 50 43 49 30 52 50 30 31 50 4d 43 53 86 5c B_PCI0RP01PMCS.\ + f770: 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 31 0a 02 /._SB_PCI0RP01.. + f780: a0 49 06 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .I.\/._SB_PCI0RP + f790: 30 32 50 4d 45 53 a2 41 04 5c 2f 04 5f 53 42 5f 02PMES.A.\/._SB_ + f7a0: 50 43 49 30 52 50 30 32 50 4d 45 53 70 0a 01 5c PCI0RP02PMESp..\ + f7b0: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 32 50 4d /._SB_PCI0RP02PM + f7c0: 45 53 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ESp..\/._SB_PCI0 + f7d0: 52 50 30 32 50 4d 43 53 86 5c 2f 03 5f 53 42 5f RP02PMCS.\/._SB_ + f7e0: 50 43 49 30 52 50 30 32 0a 02 a0 49 06 5c 2f 04 PCI0RP02...I.\/. + f7f0: 5f 53 42 5f 50 43 49 30 52 50 30 34 50 4d 45 53 _SB_PCI0RP04PMES + f800: a2 41 04 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 .A.\/._SB_PCI0RP + f810: 30 34 50 4d 45 53 70 0a 01 5c 2f 04 5f 53 42 5f 04PMESp..\/._SB_ + f820: 50 43 49 30 52 50 30 34 50 4d 45 53 70 0a 01 5c PCI0RP04PMESp..\ + f830: 2f 04 5f 53 42 5f 50 43 49 30 52 50 30 34 50 4d /._SB_PCI0RP04PM + f840: 43 53 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 CS.\/._SB_PCI0RP + f850: 30 34 0a 02 a0 49 06 5c 2f 04 5f 53 42 5f 50 43 04...I.\/._SB_PC + f860: 49 30 52 50 30 36 50 4d 45 53 a2 41 04 5c 2f 04 I0RP06PMES.A.\/. + f870: 5f 53 42 5f 50 43 49 30 52 50 30 36 50 4d 45 53 _SB_PCI0RP06PMES + f880: 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 52 50 p..\/._SB_PCI0RP + f890: 30 36 50 4d 45 53 70 0a 01 5c 2f 04 5f 53 42 5f 06PMESp..\/._SB_ + f8a0: 50 43 49 30 52 50 30 36 50 4d 43 53 86 5c 2f 03 PCI0RP06PMCS.\/. + f8b0: 5f 53 42 5f 50 43 49 30 52 50 30 36 0a 02 10 4f _SB_PCI0RP06...O + f8c0: 06 5c 2f 03 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + f8d0: 5b 80 52 58 34 30 02 0a 40 0a 10 5b 81 0e 52 58 [.RX40..@..[..RX + f8e0: 34 30 01 00 40 06 47 50 4c 4b 01 5b 80 52 58 41 40..@.GPLK.[.RXA + f8f0: 30 02 0a a0 0a 20 5b 81 36 52 58 41 30 01 00 09 0.... [.6RXA0... + f900: 50 42 4c 56 01 42 43 50 45 01 00 45 07 00 01 50 PBLV.BCPE..E...P + f910: 42 4d 53 01 00 01 50 4d 43 53 01 45 43 4e 53 01 BMS...PMCS.ECNS. + f920: 00 03 45 43 54 31 10 45 4c 45 4e 01 00 07 10 43 ..ECT1.ELEN....C + f930: 44 5c 00 5b 80 53 4d 42 30 01 5c 2e 5f 53 42 5f D\.[.SMB0.\._SB_ + f940: 53 4d 42 42 0a 10 5b 81 48 04 53 4d 42 30 01 48 SMBB..[.H.SMB0.H + f950: 53 54 53 08 53 53 54 53 08 48 53 54 43 08 48 43 STS.SSTS.HSTC.HC + f960: 4d 44 08 48 41 44 52 08 48 44 54 30 08 48 44 54 MD.HADR.HDT0.HDT + f970: 31 08 42 4c 4b 44 08 53 50 45 43 08 53 52 43 56 1.BLKD.SPEC.SRCV + f980: 08 53 4c 56 44 10 41 55 58 53 08 41 55 58 43 08 .SLVD.AUXS.AUXC. + f990: 08 52 42 55 46 11 03 0a 20 14 22 48 42 53 59 00 .RBUF... ."HBSY. + f9a0: 70 0c ff ff 0f 00 60 a2 12 60 7b 48 53 54 53 0a p.....`..`{HSTS. + f9b0: 01 61 a0 05 92 61 a4 00 76 60 a4 01 14 29 57 54 .a...a..v`...)WT + f9c0: 53 42 00 70 0c ff ff 0f 00 60 a2 19 60 76 60 7b SB.p.....`..`v`{ + f9d0: 48 53 54 53 0a 1e 61 a0 07 93 61 0a 02 a4 01 a0 HSTS..a...a..... + f9e0: 04 61 a4 00 a4 00 5b 01 5c 50 34 53 4d 00 14 4f .a....[.\P4SM..O + f9f0: 05 53 42 59 54 0a 5b 23 5c 50 34 53 4d ff ff 70 .SBYT.[#\P4SM..p + fa00: 41 55 58 43 60 70 0a 00 41 55 58 43 70 68 48 41 AUXC`p..AUXCphHA + fa10: 44 52 70 69 48 43 4d 44 70 0a ff 48 53 54 53 70 DRpiHCMDp..HSTSp + fa20: 0a 44 48 53 54 43 a0 14 57 54 53 42 70 60 41 55 .DHSTC..WTSBp`AU + fa30: 58 43 5b 27 5c 50 34 53 4d a4 01 a1 10 70 60 41 XC['\P4SM....p`A + fa40: 55 58 43 5b 27 5c 50 34 53 4d a4 00 a4 ff 14 4d UXC['\P4SM.....M + fa50: 05 57 42 59 54 0b 5b 23 5c 50 34 53 4d ff ff 70 .WBYT.[#\P4SM..p + fa60: 0a 05 60 a2 3f 60 a0 07 48 42 53 59 76 60 a1 34 ..`.?`..HBSYv`.4 + fa70: 70 68 48 41 44 52 70 69 48 43 4d 44 70 6a 48 44 phHADRpiHCMDpjHD + fa80: 54 30 70 0a ff 48 53 54 53 70 0a 48 48 53 54 43 T0p..HSTSp.HHSTC + fa90: a0 0e 57 54 53 42 5b 27 5c 50 34 53 4d a4 01 a1 ..WTSB['\P4SM... + faa0: 03 76 60 5b 27 5c 50 34 53 4d a4 ff 14 44 07 57 .v`['\P4SM...D.W + fab0: 57 52 44 0b 5b 23 5c 50 34 53 4d ff ff 70 0a 05 WRD.[#\P4SM..p.. + fac0: 60 a2 46 05 60 a0 07 48 42 53 59 76 60 a1 4a 04 `.F.`..HBSYv`.J. + fad0: 70 68 48 41 44 52 70 69 48 43 4d 44 7b 6a 0a ff phHADRpiHCMD{j.. + fae0: 61 7a 6a 0a 08 62 7b 62 0a ff 62 70 62 48 44 54 azj..b{b..bpbHDT + faf0: 30 70 61 48 44 54 31 70 0a ff 48 53 54 53 70 0a 0paHDT1p..HSTSp. + fb00: 4c 48 53 54 43 a0 0e 57 54 53 42 5b 27 5c 50 34 LHSTC..WTSB['\P4 + fb10: 53 4d a4 01 a1 03 76 60 5b 27 5c 50 34 53 4d a4 SM....v`['\P4SM. + fb20: ff 14 41 09 57 42 4c 4b 0b 5b 23 5c 50 34 53 4d ..A.WBLK.[#\P4SM + fb30: ff ff 70 0a 05 60 a2 43 07 60 a0 07 48 42 53 59 ..p..`.C.`..HBSY + fb40: 76 60 a1 47 06 7d 41 55 58 43 0a 02 41 55 58 43 v`.G.}AUXC..AUXC + fb50: 70 68 48 41 44 52 70 69 48 43 4d 44 70 48 53 54 phHADRpiHCMDpHST + fb60: 43 61 70 6a 62 70 0a 00 61 a2 13 62 70 83 88 52 Capjbp..a..bp..R + fb70: 42 55 46 61 00 42 4c 4b 44 76 62 75 61 70 6a 48 BUFa.BLKDvbuapjH + fb80: 44 54 30 70 48 53 54 43 61 70 0a ff 48 53 54 53 DT0pHSTCap..HSTS + fb90: 70 0a 54 48 53 54 43 a0 0e 57 54 53 42 5b 27 5c p.THSTC..WTSB['\ + fba0: 50 34 53 4d a4 01 a1 03 76 60 5b 27 5c 50 34 53 P4SM....v`['\P4S + fbb0: 4d a4 ff 14 4c 05 52 53 42 54 0a 5b 23 5c 50 34 M...L.RSBT.[#\P4 + fbc0: 53 4d ff ff 70 0a 05 60 a2 3e 60 a0 07 48 42 53 SM..p..`.>`..HBS + fbd0: 59 76 60 a1 33 7d 68 0a 01 48 41 44 52 70 69 48 Yv`.3}h..HADRpiH + fbe0: 43 4d 44 70 0a ff 48 53 54 53 70 0a 44 48 53 54 CMDp..HSTSp.DHST + fbf0: 43 a0 11 57 54 53 42 5b 27 5c 50 34 53 4d a4 48 C..WTSB['\P4SM.H + fc00: 44 54 30 a1 03 76 60 5b 27 5c 50 34 53 4d a4 ff DT0..v`['\P4SM.. + fc10: 14 4c 05 52 42 59 54 0a 5b 23 5c 50 34 53 4d ff .L.RBYT.[#\P4SM. + fc20: ff 70 0a 05 60 a2 3e 60 a0 07 48 42 53 59 76 60 .p..`.>`..HBSYv` + fc30: a1 33 7d 68 0a 01 48 41 44 52 70 69 48 43 4d 44 .3}h..HADRpiHCMD + fc40: 70 0a ff 48 53 54 53 70 0a 48 48 53 54 43 a0 11 p..HSTSp.HHSTC.. + fc50: 57 54 53 42 5b 27 5c 50 34 53 4d a4 48 44 54 30 WTSB['\P4SM.HDT0 + fc60: a1 03 76 60 5b 27 5c 50 34 53 4d a4 ff 14 40 07 ..v`['\P4SM...@. + fc70: 52 57 52 44 0a 5b 23 5c 50 34 53 4d ff ff 70 0a RWRD.[#\P4SM..p. + fc80: 05 60 a2 42 05 60 a0 07 48 42 53 59 76 60 a1 46 .`.B.`..HBSYv`.F + fc90: 04 7d 68 0a 01 48 41 44 52 70 69 48 43 4d 44 70 .}h..HADRpiHCMDp + fca0: 0a ff 48 53 54 53 70 0a 4c 48 53 54 43 a0 23 57 ..HSTSp.LHSTC.#W + fcb0: 54 53 42 70 48 44 54 30 61 79 61 0a 08 61 70 48 TSBpHDT0aya..apH + fcc0: 44 54 31 62 72 61 62 61 5b 27 5c 50 34 53 4d a4 DT1braba['\P4SM. + fcd0: 61 a1 03 76 60 5b 27 5c 50 34 53 4d a4 ff 14 43 a..v`['\P4SM...C + fce0: 09 52 42 4c 4b 0b 5b 23 5c 50 34 53 4d ff ff 70 .RBLK.[#\P4SM..p + fcf0: 0a 05 60 a2 45 07 60 a0 07 48 42 53 59 76 60 a1 ..`.E.`..HBSYv`. + fd00: 49 06 7d 41 55 58 43 0a 02 41 55 58 43 7d 68 0a I.}AUXC..AUXC}h. + fd10: 01 48 41 44 52 70 69 48 43 4d 44 70 0a ff 48 53 .HADRpiHCMDp..HS + fd20: 54 53 70 0a 54 48 53 54 43 a0 3b 57 54 53 42 70 TSp.THSTC.;WTSBp + fd30: 48 53 54 43 61 70 48 44 54 30 62 70 62 63 70 0a HSTCapHDT0bpbcp. + fd40: 00 52 42 55 46 70 0a 00 61 a2 12 62 70 42 4c 4b .RBUFp..a..bpBLK + fd50: 44 88 52 42 55 46 61 00 76 62 75 61 5b 27 5c 50 D.RBUFa.vbua['\P + fd60: 34 53 4d a4 63 a1 03 76 60 5b 27 5c 50 34 53 4d 4SM.c..v`['\P4SM + fd70: a4 ff 10 43 1c 5c 5f 47 50 45 14 18 5f 4c 30 33 ...C.\_GPE.._L03 + fd80: 08 86 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 ..\/._SB_PCI0USB + fd90: 31 0a 02 14 18 5f 4c 30 34 08 86 5c 2f 03 5f 53 1...._L04..\/._S + fda0: 42 5f 50 43 49 30 55 53 42 32 0a 02 14 18 5f 4c B_PCI0USB2...._L + fdb0: 30 43 08 86 5c 2f 03 5f 53 42 5f 50 43 49 30 55 0C..\/._SB_PCI0U + fdc0: 53 42 33 0a 02 14 18 5f 4c 30 45 08 86 5c 2f 03 SB3...._L0E..\/. + fdd0: 5f 53 42 5f 50 43 49 30 55 53 42 34 0a 02 14 18 _SB_PCI0USB4.... + fde0: 5f 4c 30 35 08 86 5c 2f 03 5f 53 42 5f 50 43 49 _L05..\/._SB_PCI + fdf0: 30 55 53 42 35 0a 02 14 2a 5f 4c 32 30 08 86 5c 0USB5...*_L20..\ + fe00: 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 36 0a 02 /._SB_PCI0USB6.. + fe10: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 37 .\/._SB_PCI0USB7 + fe20: 0a 02 14 2a 5f 4c 30 44 08 86 5c 2f 03 5f 53 42 ...*_L0D..\/._SB + fe30: 5f 50 43 49 30 45 48 43 31 0a 02 86 5c 2f 03 5f _PCI0EHC1...\/._ + fe40: 53 42 5f 50 43 49 30 45 48 43 32 0a 02 14 18 5f SB_PCI0EHC2...._ + fe50: 4c 30 38 08 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L08..\/._SB_PCI0 + fe60: 48 44 45 46 0a 02 14 35 5f 4c 30 42 08 a0 2c 5c HDEF...5_L0B..,\ + fe70: 50 4d 45 57 86 5c 2e 5f 53 42 5f 50 43 49 30 0a PMEW.\._SB_PCI0. + fe80: 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 52 50 30 ..\/._SB_PCI0RP0 + fe90: 32 0a 02 70 00 5c 50 4d 45 57 a1 01 14 49 09 5f 2..p.\PMEW...I._ + fea0: 4c 31 33 00 a0 0c 93 50 46 4c 56 46 44 54 50 a4 L13....PFLVFDTP. + feb0: 00 a0 42 08 5c 2f 05 5f 53 42 5f 50 43 49 30 49 ..B.\/._SB_PCI0I + fec0: 44 45 30 50 52 54 32 4f 46 4c 47 70 5c 2f 04 5f DE0PRT2OFLGp\/._ + fed0: 53 42 5f 50 43 49 30 53 42 52 47 47 50 4c 4b 67 SB_PCI0SBRGGPLKg + fee0: 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 p..\/._SB_PCI0SB + fef0: 52 47 47 50 4c 4b 70 0a 00 47 50 45 33 7b 47 4c RGGPLKp..GPE3{GL + ff00: 30 38 0a ef 47 4c 30 38 70 67 5c 2f 04 5f 53 42 08..GL08pg\/._SB + ff10: 5f 50 43 49 30 53 42 52 47 47 50 4c 4b 5b 22 0b _PCI0SBRGGPLK[". + ff20: 20 03 86 5c 2f 03 5f 53 42 5f 50 43 49 30 49 44 ..\/._SB_PCI0ID + ff30: 45 30 0a 82 a4 00 10 4f 1e 5c 2f 03 5f 53 42 5f E0.....O.\/._SB_ + ff40: 50 43 49 30 45 48 43 31 5b 82 4c 1d 52 48 55 42 PCI0EHC1[.L.RHUB + ff50: 08 5f 41 44 52 0a 00 5b 82 4d 1c 50 52 54 31 08 ._ADR..[.M.PRT1. + ff60: 5f 41 44 52 0a 01 08 5f 55 50 43 12 0a 04 0a 00 _ADR..._UPC..... + ff70: 0a ff 0a 00 0a 00 5b 82 34 50 52 54 31 08 5f 41 ......[.4PRT1._A + ff80: 44 52 0a 01 14 13 5f 55 50 43 00 5c 4f 55 50 43 DR...._UPC.\OUPC + ff90: 0a 00 a4 5c 42 55 50 43 14 13 5f 50 4c 44 00 5c ...\BUPC.._PLD.\ + ffa0: 4f 50 4c 44 0a 00 a4 5c 42 50 4c 44 5b 82 34 50 OPLD...\BPLD[.4P + ffb0: 52 54 32 08 5f 41 44 52 0a 02 14 13 5f 55 50 43 RT2._ADR...._UPC + ffc0: 00 5c 4f 55 50 43 0a 01 a4 5c 42 55 50 43 14 13 .\OUPC...\BUPC.. + ffd0: 5f 50 4c 44 00 5c 4f 50 4c 44 0a 01 a4 5c 42 50 _PLD.\OPLD...\BP + ffe0: 4c 44 5b 82 34 50 52 54 33 08 5f 41 44 52 0a 03 LD[.4PRT3._ADR.. + fff0: 14 13 5f 55 50 43 00 5c 4f 55 50 43 0a 02 a4 5c .._UPC.\OUPC...\ + 10000: 42 55 50 43 14 13 5f 50 4c 44 00 5c 4f 50 4c 44 BUPC.._PLD.\OPLD + 10010: 0a 02 a4 5c 42 50 4c 44 5b 82 34 50 52 54 34 08 ...\BPLD[.4PRT4. + 10020: 5f 41 44 52 0a 04 14 13 5f 55 50 43 00 5c 4f 55 _ADR...._UPC.\OU + 10030: 50 43 0a 03 a4 5c 42 55 50 43 14 13 5f 50 4c 44 PC...\BUPC.._PLD + 10040: 00 5c 4f 50 4c 44 0a 03 a4 5c 42 50 4c 44 5b 82 .\OPLD...\BPLD[. + 10050: 34 50 52 54 35 08 5f 41 44 52 0a 05 14 13 5f 55 4PRT5._ADR...._U + 10060: 50 43 00 5c 4f 55 50 43 0a 04 a4 5c 42 55 50 43 PC.\OUPC...\BUPC + 10070: 14 13 5f 50 4c 44 00 5c 4f 50 4c 44 0a 04 a4 5c .._PLD.\OPLD...\ + 10080: 42 50 4c 44 5b 82 34 50 52 54 36 08 5f 41 44 52 BPLD[.4PRT6._ADR + 10090: 0a 06 14 13 5f 55 50 43 00 5c 4f 55 50 43 0a 05 ...._UPC.\OUPC.. + 100a0: a4 5c 42 55 50 43 14 13 5f 50 4c 44 00 5c 4f 50 .\BUPC.._PLD.\OP + 100b0: 4c 44 0a 05 a4 5c 42 50 4c 44 5b 82 34 50 52 54 LD...\BPLD[.4PRT + 100c0: 37 08 5f 41 44 52 0a 07 14 13 5f 55 50 43 00 5c 7._ADR...._UPC.\ + 100d0: 4f 55 50 43 0a 06 a4 5c 42 55 50 43 14 13 5f 50 OUPC...\BUPC.._P + 100e0: 4c 44 00 5c 4f 50 4c 44 0a 06 a4 5c 42 50 4c 44 LD.\OPLD...\BPLD + 100f0: 5b 82 34 50 52 54 38 08 5f 41 44 52 0a 08 14 13 [.4PRT8._ADR.... + 10100: 5f 55 50 43 00 5c 4f 55 50 43 0a 07 a4 5c 42 55 _UPC.\OUPC...\BU + 10110: 50 43 14 13 5f 50 4c 44 00 5c 4f 50 4c 44 0a 07 PC.._PLD.\OPLD.. + 10120: a4 5c 42 50 4c 44 10 43 18 5c 2f 03 5f 53 42 5f .\BPLD.C.\/._SB_ + 10130: 50 43 49 30 45 48 43 32 5b 82 40 17 52 48 55 42 PCI0EHC2[.@.RHUB + 10140: 08 5f 41 44 52 0a 00 5b 82 41 16 50 52 54 31 08 ._ADR..[.A.PRT1. + 10150: 5f 41 44 52 0a 01 08 5f 55 50 43 12 0a 04 0a 00 _ADR..._UPC..... + 10160: 0a ff 0a 00 0a 00 5b 82 34 50 52 54 31 08 5f 41 ......[.4PRT1._A + 10170: 44 52 0a 01 14 13 5f 55 50 43 00 5c 4f 55 50 43 DR...._UPC.\OUPC + 10180: 0a 08 a4 5c 42 55 50 43 14 13 5f 50 4c 44 00 5c ...\BUPC.._PLD.\ + 10190: 4f 50 4c 44 0a 08 a4 5c 42 50 4c 44 5b 82 34 50 OPLD...\BPLD[.4P + 101a0: 52 54 32 08 5f 41 44 52 0a 02 14 13 5f 55 50 43 RT2._ADR...._UPC + 101b0: 00 5c 4f 55 50 43 0a 09 a4 5c 42 55 50 43 14 13 .\OUPC...\BUPC.. + 101c0: 5f 50 4c 44 00 5c 4f 50 4c 44 0a 09 a4 5c 42 50 _PLD.\OPLD...\BP + 101d0: 4c 44 5b 82 34 50 52 54 33 08 5f 41 44 52 0a 03 LD[.4PRT3._ADR.. + 101e0: 14 13 5f 55 50 43 00 5c 4f 55 50 43 0a 0a a4 5c .._UPC.\OUPC...\ + 101f0: 42 55 50 43 14 13 5f 50 4c 44 00 5c 4f 50 4c 44 BUPC.._PLD.\OPLD + 10200: 0a 0a a4 5c 42 50 4c 44 5b 82 34 50 52 54 34 08 ...\BPLD[.4PRT4. + 10210: 5f 41 44 52 0a 04 14 13 5f 55 50 43 00 5c 4f 55 _ADR...._UPC.\OU + 10220: 50 43 0a 0b a4 5c 42 55 50 43 14 13 5f 50 4c 44 PC...\BUPC.._PLD + 10230: 00 5c 4f 50 4c 44 0a 0b a4 5c 42 50 4c 44 5b 82 .\OPLD...\BPLD[. + 10240: 34 50 52 54 35 08 5f 41 44 52 0a 05 14 13 5f 55 4PRT5._ADR...._U + 10250: 50 43 00 5c 4f 55 50 43 0a 0c a4 5c 42 55 50 43 PC.\OUPC...\BUPC + 10260: 14 13 5f 50 4c 44 00 5c 4f 50 4c 44 0a 0c a4 5c .._PLD.\OPLD...\ + 10270: 42 50 4c 44 5b 82 34 50 52 54 36 08 5f 41 44 52 BPLD[.4PRT6._ADR + 10280: 0a 06 14 13 5f 55 50 43 00 5c 4f 55 50 43 0a 0d ...._UPC.\OUPC.. + 10290: a4 5c 42 55 50 43 14 13 5f 50 4c 44 00 5c 4f 50 .\BUPC.._PLD.\OP + 102a0: 4c 44 0a 0d a4 5c 42 50 4c 44 10 49 0d 5c 00 08 LD...\BPLD.I.\.. + 102b0: 43 4e 54 42 11 11 0a 0e ff ff ff 00 00 00 00 00 CNTB............ + 102c0: ff ff 00 ff ff 00 08 56 49 53 42 11 11 0a 0e 01 .......VISB..... + 102d0: 01 01 00 00 00 00 00 00 00 00 00 00 00 08 53 48 ..............SH + 102e0: 50 42 11 11 0a 0e 07 07 07 07 07 07 07 07 07 07 PB.............. + 102f0: 07 07 07 07 08 42 55 50 43 12 0a 04 0a ff 0a 00 .....BUPC....... + 10300: 0a 00 0a 00 08 42 50 4c 44 11 07 0a 10 81 00 31 .....BPLD......1 + 10310: 00 14 1a 4f 55 50 43 09 70 83 88 43 4e 54 42 68 ...OUPC.p..CNTBh + 10320: 00 60 70 60 88 42 55 50 43 0a 00 00 14 47 05 4f .`p`.BUPC....G.O + 10330: 50 4c 44 09 70 83 88 56 49 53 42 68 00 60 70 83 PLD.p..VISBh.`p. + 10340: 88 42 50 4c 44 0a 08 00 61 7b 61 0a fe 61 7d 61 .BPLD...a{a..a}a + 10350: 60 61 70 61 88 42 50 4c 44 0a 08 00 70 83 88 53 `apa.BPLD...p..S + 10360: 48 50 42 68 00 60 70 83 88 42 50 4c 44 0a 09 00 HPBh.`p..BPLD... + 10370: 61 7b 61 0a c3 61 7d 61 60 61 70 61 88 42 50 4c a{a..a}a`apa.BPL + 10380: 44 0a 09 00 10 45 49 5c 00 14 1e 4c 49 4d 54 00 D....EI\...LIMT. + 10390: 74 5c 2e 5f 53 42 5f 43 50 55 50 5c 2e 5f 53 42 t\._SB_CPUP\._SB + 103a0: 5f 53 4c 4d 54 60 a4 60 08 4c 43 44 42 0a 00 14 _SLMT`.`.LCDB... + 103b0: 2e 50 50 52 4a 09 a0 10 94 68 0a 03 5c 53 47 50 .PPRJ....h..\SGP + 103c0: 4c 0a 18 0a 01 0a 00 5c 2f 05 5f 53 42 5f 50 43 L......\/._SB_PC + 103d0: 49 30 52 50 30 34 58 48 43 49 5f 4f 4e 5f 14 11 I0RP04XHCI_ON_.. + 103e0: 50 52 4a 53 09 5c 53 47 50 4c 0a 0f 0a 01 0a 00 PRJS.\SGPL...... + 103f0: 14 1d 50 52 4a 57 09 5c 2f 05 5f 53 42 5f 50 43 ..PRJW.\/._SB_PC + 10400: 49 30 53 42 52 47 45 43 30 5f 53 54 42 52 14 20 I0SBRGEC0_STBR. + 10410: 47 4c 49 44 08 a4 5c 2f 05 5f 53 42 5f 50 43 49 GLID..\/._SB_PCI + 10420: 30 53 42 52 47 45 43 30 5f 52 50 49 4e 0a 46 14 0SBRGEC0_RPIN.F. + 10430: 06 54 4c 49 44 08 14 06 54 47 41 43 08 14 06 54 .TLID...TGAC...T + 10440: 47 44 43 09 14 06 46 43 54 52 0b 14 10 4f 57 47 GDC...FCTR...OWG + 10450: 44 09 5c 53 47 50 4c 0a 16 0a 01 68 14 38 4f 57 D.\SGPL....h.8OW + 10460: 4c 44 09 70 68 5c 2e 5f 53 42 5f 57 52 53 54 7f LD.ph\._SB_WRST. + 10470: 68 0a 01 68 a0 20 93 90 5c 2f 03 5f 53 42 5f 41 h..h. ..\/._SB_A + 10480: 54 4b 44 57 41 50 46 0a 05 0a 00 5c 53 47 50 4c TKDWAPF....\SGPL + 10490: 0a 1c 0a 01 68 14 26 4f 42 54 44 09 70 68 5c 2e ....h.&OBTD.ph\. + 104a0: 5f 53 42 5f 42 52 53 54 5c 53 47 50 4c 0a 39 0a _SB_BRST\SGPL.9. + 104b0: 01 68 5c 53 47 50 4c 0a 0f 0a 01 68 14 45 05 4f .h\SGPL....h.E.O + 104c0: 55 57 44 09 70 68 5c 2e 5f 53 42 5f 55 57 53 54 UWD.ph\._SB_UWST + 104d0: a0 1f 68 70 5c 2f 05 5f 53 42 5f 50 43 49 30 53 ..hp\/._SB_PCI0S + 104e0: 42 52 47 45 43 30 5f 53 54 38 37 0a 40 0a ff 60 BRGEC0_ST87.@..` + 104f0: a1 1e 70 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 ..p\/._SB_PCI0SB + 10500: 52 47 45 43 30 5f 53 54 38 37 0a 20 0a ff 60 a4 RGEC0_ST87. ..`. + 10510: 0a 01 14 45 05 4f 57 4d 44 09 70 68 5c 2e 5f 53 ...E.OWMD.ph\._S + 10520: 42 5f 57 4d 53 54 a0 1f 68 70 5c 2f 05 5f 53 42 B_WMST..hp\/._SB + 10530: 5f 50 43 49 30 53 42 52 47 45 43 30 5f 53 54 38 _PCI0SBRGEC0_ST8 + 10540: 37 0a 40 0a ff 60 a1 1e 70 5c 2f 05 5f 53 42 5f 7.@..`..p\/._SB_ + 10550: 50 43 49 30 53 42 52 47 45 43 30 5f 53 54 38 37 PCI0SBRGEC0_ST87 + 10560: 0a 20 0a ff 60 a4 0a 01 14 45 05 4f 47 50 44 09 . ..`....E.OGPD. + 10570: 70 68 5c 2e 5f 53 42 5f 47 50 53 54 a0 1f 68 70 ph\._SB_GPST..hp + 10580: 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 \/._SB_PCI0SBRGE + 10590: 43 30 5f 53 54 38 37 0a 40 0a ff 60 a1 1e 70 5c C0_ST87.@..`..p\ + 105a0: 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 /._SB_PCI0SBRGEC + 105b0: 30 5f 53 54 38 37 0a 20 0a ff 60 a4 0a 01 14 45 0_ST87. ..`....E + 105c0: 05 4f 54 47 44 09 70 68 5c 2e 5f 53 42 5f 54 47 .OTGD.ph\._SB_TG + 105d0: 53 54 a0 1f 68 70 5c 2f 05 5f 53 42 5f 50 43 49 ST..hp\/._SB_PCI + 105e0: 30 53 42 52 47 45 43 30 5f 53 54 38 37 0a 40 0a 0SBRGEC0_ST87.@. + 105f0: ff 60 a1 1e 70 5c 2f 05 5f 53 42 5f 50 43 49 30 .`..p\/._SB_PCI0 + 10600: 53 42 52 47 45 43 30 5f 53 54 38 37 0a 20 0a ff SBRGEC0_ST87. .. + 10610: 60 a4 0a 01 14 40 08 4f 48 57 52 08 70 00 60 a0 `....@.OHWR.p.`. + 10620: 1d 5c 2f 05 5f 53 42 5f 50 43 49 30 52 50 30 32 .\/._SB_PCI0RP02 + 10630: 57 4c 41 4e 4d 50 44 50 7d 60 0a 80 60 a0 11 5c WLANMPDP}`..`..\ + 10640: 2e 5f 53 42 5f 42 54 44 50 7d 60 0b 00 01 60 a0 ._SB_BTDP}`...`. + 10650: 10 5c 2e 5f 53 42 5f 55 57 44 50 7d 60 0a 08 60 .\._SB_UWDP}`..` + 10660: a0 10 5c 2e 5f 53 42 5f 57 4d 44 50 7d 60 0a 10 ..\._SB_WMDP}`.. + 10670: 60 a0 10 5c 2e 5f 53 42 5f 47 50 44 50 7d 60 0a `..\._SB_GPDP}`. + 10680: 20 60 a0 10 5c 2e 5f 53 42 5f 54 47 44 50 7d 60 `..\._SB_TGDP}` + 10690: 0a 40 60 a4 60 14 43 07 4f 52 53 54 08 70 0a 00 .@`.`.C.ORST.p.. + 106a0: 60 a0 10 5c 2e 5f 53 42 5f 57 52 53 54 7d 60 0a `..\._SB_WRST}`. + 106b0: 01 60 a0 10 5c 2e 5f 53 42 5f 42 52 53 54 7d 60 .`..\._SB_BRST}` + 106c0: 0a 02 60 a0 10 5c 2e 5f 53 42 5f 55 57 53 54 7d ..`..\._SB_UWST} + 106d0: 60 0a 04 60 a0 10 5c 2e 5f 53 42 5f 57 4d 53 54 `..`..\._SB_WMST + 106e0: 7d 60 0a 08 60 a0 10 5c 2e 5f 53 42 5f 47 50 53 }`..`..\._SB_GPS + 106f0: 54 7d 60 0a 10 60 a0 10 5c 2e 5f 53 42 5f 54 47 T}`..`..\._SB_TG + 10700: 53 54 7d 60 0a 20 60 a4 60 14 20 47 42 54 4c 08 ST}`. `.`. GBTL. + 10710: a4 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + 10720: 45 43 30 5f 52 50 49 4e 0a 73 14 20 53 42 54 4c EC0_RPIN.s. SBTL + 10730: 09 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + 10740: 45 43 30 5f 53 50 49 4e 0a 73 68 14 08 42 4c 32 EC0_SPIN.sh..BL2 + 10750: 43 00 a4 00 14 27 53 54 43 46 09 a0 20 93 68 0a C....'STCF.. .h. + 10760: 01 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 .\/._SB_PCI0SBRG + 10770: 45 43 30 5f 46 4e 43 54 0a 84 0a 00 14 0b 4f 54 EC0_FNCT......OT + 10780: 47 42 08 70 01 60 a4 60 14 28 44 43 50 53 09 70 GB.p.`.`.(DCPS.p + 10790: 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 \/._SB_PCI0SBRGE + 107a0: 43 30 5f 52 50 49 4e 0a 26 60 7f 60 0a 01 60 a4 C0_RPIN.&`.`..`. + 107b0: 60 14 28 41 43 50 53 08 70 5c 2f 05 5f 53 42 5f `.(ACPS.p\/._SB_ + 107c0: 50 43 49 30 53 42 52 47 45 43 30 5f 52 50 49 4e PCI0SBRGEC0_RPIN + 107d0: 0a 24 60 7f 60 0a 01 60 a4 60 14 3f 4f 4c 50 4d .$`.`..`.`.?OLPM + 107e0: 08 a0 38 93 5c 2e 5f 53 42 5f 41 43 50 46 0a 00 ..8.\._SB_ACPF.. + 107f0: a0 29 92 94 5c 2f 05 5f 53 42 5f 50 43 49 30 53 .)..\/._SB_PCI0S + 10800: 42 52 47 45 43 30 5f 42 30 44 43 0b b8 0b 70 01 BRGEC0_B0DC...p. + 10810: 5c 2e 5f 53 42 5f 53 4c 4d 54 10 06 5c 5f 47 50 \._SB_SLMT..\_GP + 10820: 45 10 14 5c 2f 04 5f 53 42 5f 50 43 49 30 53 42 E..\/._SB_PCI0SB + 10830: 52 47 45 43 30 5f 10 41 4e 5c 2f 04 5f 53 42 5f RGEC0_.AN\/._SB_ + 10840: 50 43 49 30 50 45 47 30 47 46 58 30 5b 80 56 53 PCI0PEG0GFX0[.VS + 10850: 49 44 02 0a 00 0a 04 5b 81 0b 56 53 49 44 01 52 ID.....[..VSID.R + 10860: 45 47 30 20 08 50 43 54 47 12 02 0b 14 18 50 52 EG0 .PCTG.....PR + 10870: 53 54 00 a0 0d 93 52 45 47 30 0c ff ff ff ff a4 ST....REG0...... + 10880: 00 a1 03 a4 01 08 55 50 44 4e 01 08 4e 58 54 44 ......UPDN..NXTD + 10890: 0a 01 08 4c 43 44 4d 0a 01 08 43 52 54 4d 0a 02 ...LCDM...CRTM.. + 108a0: 08 54 56 4f 4d 0a 04 08 44 56 49 4d 0a 08 08 48 .TVOM...DVIM...H + 108b0: 44 4d 4d 0a 10 08 50 41 43 48 00 08 44 4f 4e 45 DMM...PACH..DONE + 108c0: 00 08 44 4f 53 46 01 08 42 52 4e 43 00 14 19 5f ..DOSF..BRNC..._ + 108d0: 49 4e 49 00 70 44 4f 53 46 5c 2e 5f 53 42 5f 44 INI.pDOSF\._SB_D + 108e0: 4f 53 46 47 45 54 44 14 32 5f 44 4f 53 01 7b 68 OSFGETD.2_DOS.{h + 108f0: 0a 03 44 4f 53 46 70 44 4f 53 46 5c 2e 5f 53 42 ..DOSFpDOSF\._SB + 10900: 5f 44 4f 53 46 70 7a 68 0a 02 00 42 52 4e 43 7b _DOSFpzh...BRNC{ + 10910: 42 52 4e 43 0a 01 42 52 4e 43 08 44 4f 44 50 12 BRNC..BRNC.DODP. + 10920: 11 03 0c 00 01 01 00 0c 10 01 01 00 0c 10 00 ff ................ + 10930: ff 14 40 06 5f 44 4f 44 00 a0 43 05 92 50 41 43 ..@._DOD..C..PAC + 10940: 48 a0 28 93 5c 2e 5f 53 42 5f 56 47 41 46 0a 02 H.(.\._SB_VGAF.. + 10950: 70 0b 10 02 88 44 4f 44 50 89 44 4f 44 50 01 0c p....DODP.DODP.. + 10960: 10 00 ff ff 00 0a 00 0a 00 00 a1 1b 70 0b 21 01 ............p.!. + 10970: 88 44 4f 44 50 89 44 4f 44 50 01 0c 10 00 ff ff .DODP.DODP...... + 10980: 00 0a 00 0a 00 00 70 0a 01 50 41 43 48 a4 44 4f ......p..PACH.DO + 10990: 44 50 5b 82 4a 05 43 52 54 44 08 5f 41 44 52 0b DP[.J.CRTD._ADR. + 109a0: 00 01 14 24 5f 44 43 53 00 70 5c 2e 5f 53 42 5f ...$_DCS.p\._SB_ + 109b0: 41 56 4c 44 60 a0 0e 60 a0 0b 7b 60 43 52 54 4d AVLD`..`..{`CRTM + 109c0: 00 a4 0a 1f a4 0a 1d 14 19 5f 44 47 53 00 7b 4e ........._DGS.{N + 109d0: 58 54 44 43 52 54 4d 60 a0 05 60 a4 0a 01 a4 0a XTDCRTM`..`..... + 109e0: 00 14 0c 5f 44 53 53 01 70 01 44 4f 4e 45 5b 82 ..._DSS.p.DONE[. + 109f0: 42 07 48 44 4d 49 14 1f 5f 41 44 52 00 a0 12 93 B.HDMI.._ADR.... + 10a00: 5c 2e 5f 53 42 5f 56 47 41 46 0a 02 a4 0b 10 02 \._SB_VGAF...... + 10a10: a1 05 a4 0b 21 01 14 24 5f 44 43 53 00 70 5c 2e ....!..$_DCS.p\. + 10a20: 5f 53 42 5f 41 56 4c 44 60 a0 0e 60 a0 0b 7b 60 _SB_AVLD`..`..{` + 10a30: 48 44 4d 4d 00 a4 0a 1f a4 0a 1d 14 19 5f 44 47 HDMM........._DG + 10a40: 53 00 7b 4e 58 54 44 48 44 4d 4d 60 a0 05 60 a4 S.{NXTDHDMM`..`. + 10a50: 0a 01 a4 0a 00 14 0c 5f 44 53 53 01 70 01 44 4f ......._DSS.p.DO + 10a60: 4e 45 5b 82 47 11 4c 43 44 44 08 5f 41 44 52 0b NE[.G.LCDD._ADR. + 10a70: 10 01 14 2a 5f 44 43 53 00 49 53 4d 49 0a 95 70 ...*_DCS.ISMI..p + 10a80: 5c 2e 5f 53 42 5f 41 43 54 44 60 a0 0e 60 a0 0b \._SB_ACTD`..`.. + 10a90: 7b 60 4c 43 44 4d 00 a4 0a 1f a4 0a 1d 14 19 5f {`LCDM........._ + 10aa0: 44 47 53 00 7b 4e 58 54 44 4c 43 44 4d 60 a0 05 DGS.{NXTDLCDM`.. + 10ab0: 60 a4 0a 01 a4 0a 00 14 0c 5f 44 53 53 01 70 01 `........_DSS.p. + 10ac0: 44 4f 4e 45 14 46 06 5f 42 43 4c 00 70 0a 00 60 DONE.F._BCL.p..` + 10ad0: 70 42 52 54 49 64 79 64 0a 04 64 a2 4a 04 95 60 pBRTIdyd..d.J..` + 10ae0: 0a 0b 74 0a 0b 60 63 74 63 0a 01 63 70 72 64 63 ..t..`ctc..cprdc + 10af0: 00 63 70 83 88 5c 2f 05 5f 53 42 5f 50 43 49 30 .cp..\/._SB_PCI0 + 10b00: 53 42 52 47 45 43 30 5f 50 57 41 43 63 00 61 70 SBRGEC0_PWACc.ap + 10b10: 78 77 61 0a 64 00 0a ff 00 00 62 70 62 88 50 43 xwa.d.....bpb.PC + 10b20: 54 47 60 00 75 60 a4 50 43 54 47 08 42 43 42 48 TG`.u`.PCTG.BCBH + 10b30: 0a 00 14 36 5f 42 43 4d 01 70 47 43 42 4c 68 60 ...6_BCM.pGCBLh` + 10b40: 74 74 0a 0b 0a 01 00 60 5c 2e 5f 53 42 5f 4c 42 tt.....`\._SB_LB + 10b50: 54 4e 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 TN\/._SB_PCI0SBR + 10b60: 47 45 43 30 5f 53 54 42 52 14 11 5f 42 51 43 00 GEC0_STBR.._BQC. + 10b70: a4 5c 2e 5f 53 42 5f 4c 42 54 4e 14 42 07 53 57 .\._SB_LBTN.B.SW + 10b80: 48 44 09 70 01 55 50 44 4e a0 1a 93 44 4f 53 46 HD.p.UPDN...DOSF + 10b90: 0a 01 70 68 5c 2e 5f 53 42 5f 53 45 54 44 49 53 ..ph\._SB_SETDIS + 10ba0: 4d 49 0a 94 a1 49 04 70 68 4e 58 54 44 70 68 5c MI...I.phNXTDph\ + 10bb0: 2e 5f 53 42 5f 53 45 54 44 70 00 44 4f 4e 45 86 ._SB_SETDp.DONE. + 10bc0: 47 46 58 30 0a 80 70 0b f4 01 60 a2 22 60 47 45 GFX0..p...`."`GE + 10bd0: 54 44 a0 13 93 5c 2e 5f 53 42 5f 41 43 54 44 4e TD...\._SB_ACTDN + 10be0: 58 54 44 70 00 60 a1 07 5b 22 0a 0a 76 60 14 17 XTDp.`..["..v`.. + 10bf0: 47 45 54 44 00 49 53 4d 49 0a 95 a4 5c 2e 5f 53 GETD.ISMI...\._S + 10c00: 42 5f 41 43 54 44 14 17 47 4e 44 44 00 49 53 4d B_ACTD..GNDD.ISM + 10c10: 49 0a a0 a4 5c 2e 5f 53 42 5f 53 45 54 44 14 45 I...\._SB_SETD.E + 10c20: 08 41 44 56 44 00 a0 4f 05 55 50 44 4e 70 00 55 .ADVD..O.UPDNp.U + 10c30: 50 44 4e 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 PDN\/._SB_PCI0SB + 10c40: 52 47 45 43 30 5f 53 50 49 4e 0a 40 0a 00 47 45 RGEC0_SPIN.@..GE + 10c50: 54 44 5b 22 0a 01 5c 2f 05 5f 53 42 5f 50 43 49 TD["..\/._SB_PCI + 10c60: 30 53 42 52 47 45 43 30 5f 53 50 49 4e 0a 40 0a 0SBRGEC0_SPIN.@. + 10c70: 01 70 5c 2e 5f 53 42 5f 41 43 54 44 5c 2e 5f 53 .p\._SB_ACTD\._S + 10c80: 42 5f 53 45 54 44 47 4e 44 44 70 5c 2e 5f 53 42 B_SETDGNDDp\._SB + 10c90: 5f 53 45 54 44 4e 58 54 44 a4 5c 2e 5f 53 42 5f _SETDNXTD.\._SB_ + 10ca0: 53 45 54 44 14 0b 47 43 44 53 00 a4 47 45 54 44 SETD..GCDS..GETD + 10cb0: 14 08 4e 41 54 4b 00 a4 01 14 0d 55 50 42 4c 00 ..NATK.....UPBL. + 10cc0: 86 4c 43 44 44 0a 86 14 0d 44 57 42 4c 00 86 4c .LCDD....DWBL..L + 10cd0: 43 44 44 0a 87 14 42 04 47 43 42 4c 01 7b 68 0c CDD...B.GCBL.{h. + 10ce0: ff ff ff 7f 68 70 0a 00 60 a2 18 95 60 0a 0b 70 ....hp..`...`..p + 10cf0: 83 88 50 43 54 47 60 00 61 a0 06 92 94 61 68 a5 ..PCTG`.a....ah. + 10d00: 75 60 a0 0e 92 95 60 0a 0b 70 74 0a 0b 0a 01 00 u`....`..pt..... + 10d10: 62 a1 04 70 60 62 a4 62 08 5c 5f 53 30 5f 12 0a b..p`b.b.\_S0_.. + 10d20: 04 0a 00 0a 00 0a 00 0a 00 a0 16 53 53 33 5f 08 ...........SS3_. + 10d30: 5c 5f 53 33 5f 12 0a 04 0a 05 0a 00 0a 00 0a 00 \_S3_........... + 10d40: a0 16 53 53 34 5f 08 5c 5f 53 34 5f 12 0a 04 0a ..SS4_.\_S4_.... + 10d50: 06 0a 00 0a 00 0a 00 08 5c 5f 53 35 5f 12 0a 04 ........\_S5_... + 10d60: 0a 07 0a 00 0a 00 0a 00 14 23 50 54 53 5f 01 a0 .........#PTS_.. + 10d70: 1c 68 5c 2f 04 5f 53 42 5f 50 43 49 30 47 46 58 .h\/._SB_PCI0GFX + 10d80: 30 4f 50 54 53 68 5c 4f 45 4d 53 68 14 30 57 41 0OPTSh\OEMSh.0WA + 10d90: 4b 5f 01 5c 2f 03 5f 53 42 5f 41 54 4b 44 47 45 K_.\/._SB_ATKDGE + 10da0: 4e 57 68 5c 2f 04 5f 53 42 5f 50 43 49 30 47 46 NWh\/._SB_PCI0GF + 10db0: 58 30 4f 57 41 4b 68 5c 4f 45 4d 57 68 X0OWAKh\OEMWh + +FACP @ 0x00000000 + 0000: 46 41 43 50 f4 00 00 00 04 9c 5f 41 53 55 53 5f FACP......_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 4d 53 46 54 Notebook. ".MSFT + 0020: 13 00 01 00 40 4e 7e bf 18 90 78 bf 01 02 09 00 ....@N~...x..... + 0030: b2 00 00 00 b0 b1 00 80 00 04 00 00 00 00 00 00 ................ + 0040: 04 04 00 00 00 00 00 00 50 04 00 00 08 04 00 00 ........P....... + 0050: 20 04 00 00 00 00 00 00 04 02 01 04 10 00 00 85 ............... + 0060: 65 00 e9 03 00 04 10 00 01 03 7d 7e 32 13 00 00 e.........}~2... + 0070: a5 86 03 00 01 08 00 00 f9 0c 00 00 00 00 00 00 ................ + 0080: 06 00 00 00 40 4d 7e bf 00 00 00 00 18 90 78 bf ....@M~.......x. + 0090: 00 00 00 00 01 20 00 00 00 04 00 00 00 00 00 00 ..... .......... + 00a0: 01 00 00 00 00 00 00 00 00 00 00 00 01 10 00 00 ................ + 00b0: 04 04 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ................ + 00c0: 00 00 00 00 01 08 00 00 50 04 00 00 00 00 00 00 ........P....... + 00d0: 01 20 00 00 08 04 00 00 00 00 00 00 01 80 00 00 . .............. + 00e0: 20 04 00 00 00 00 00 00 01 00 00 00 00 00 00 00 ............... + 00f0: 00 00 00 00 .... + +FACS @ 0x00000000 + 0000: 46 41 43 53 40 00 00 00 00 00 00 00 00 00 00 00 FACS@........... + 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + +HPET @ 0x00000000 + 0000: 48 50 45 54 38 00 00 00 01 66 5f 41 53 55 53 5f HPET8....f_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 41 4d 49 2e Notebook. ".AMI. + 0020: 03 00 00 00 01 a7 86 80 00 00 00 00 00 00 d0 fe ................ + 0030: 00 00 00 00 00 ee 37 00 ......7. + +MCFG @ 0x00000000 + 0000: 4d 43 46 47 3c 00 00 00 01 2f 5f 41 53 55 53 5f MCFG<..../_ASUS_ + 0010: 4e 6f 74 65 62 6f 6f 6b 04 20 22 06 4d 53 46 54 Notebook. ".MSFT + 0020: 97 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e0 ................ + 0030: 00 00 00 00 00 00 00 3f 00 00 00 00 .......?.... + +SSDT1 @ 0x00000000 + 0000: 53 53 44 54 55 09 00 00 01 47 50 6d 52 65 66 00 SSDTU....GPmRef. + 0010: 43 70 75 30 49 73 74 00 00 30 00 00 49 4e 54 4c Cpu0Ist..0..INTL + 0020: 12 11 09 20 10 40 93 5c 2e 5f 50 52 5f 43 50 55 ... .@.\._PR_CPU + 0030: 30 14 0c 5f 50 50 43 00 a4 5c 4c 49 4d 54 14 44 0.._PPC..\LIMT.D + 0040: 07 5f 50 43 54 00 a0 3e 90 7b 43 46 47 44 01 00 ._PCT..>.{CFGD.. + 0050: 7b 50 44 43 30 01 00 a4 12 2c 02 11 14 0a 11 82 {PDC0....,...... + 0060: 0c 00 7f 00 00 00 00 00 00 00 00 00 00 00 79 00 ..............y. + 0070: 11 14 0a 11 82 0c 00 7f 00 00 00 00 00 00 00 00 ................ + 0080: 00 00 00 79 00 a4 12 2c 02 11 14 0a 11 82 0c 00 ...y...,........ + 0090: 01 10 00 00 00 10 00 00 00 00 00 00 79 00 11 14 ............y... + 00a0: 0a 11 82 0c 00 01 08 00 00 b3 00 00 00 00 00 00 ................ + 00b0: 00 79 00 14 19 58 50 53 53 00 a0 0d 7b 50 44 43 .y...XPSS...{PDC + 00c0: 30 01 00 a4 4e 50 53 53 a4 53 50 53 53 08 53 50 0...NPSS.SPSS.SP + 00d0: 53 53 12 42 1f 0f 12 20 06 0c 99 08 00 00 0c c8 SS.B... ........ + 00e0: af 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 00 ....n........... + 00f0: 00 00 0c 00 00 00 00 12 20 06 0c 98 08 00 00 0c ........ ....... + 0100: c8 af 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 .....n.......... + 0110: 01 00 00 0c 01 00 00 00 12 20 06 0c d0 07 00 00 ......... ...... + 0120: 0c 9d 9a 00 00 0c 6e 00 00 00 0c 0a 00 00 00 0c ......n......... + 0130: 83 02 00 00 0c 02 00 00 00 12 20 06 0c 6c 07 00 .......... ..l.. + 0140: 00 0c 0b 92 00 00 0c 6e 00 00 00 0c 0a 00 00 00 .......n........ + 0150: 0c 83 03 00 00 0c 03 00 00 00 12 20 06 0c 08 07 ........... .... + 0160: 00 00 0c f6 87 00 00 0c 6e 00 00 00 0c 0a 00 00 ........n....... + 0170: 00 0c 83 04 00 00 0c 04 00 00 00 12 20 06 0c a4 ............ ... + 0180: 06 00 00 0c bf 7f 00 00 0c 6e 00 00 00 0c 0a 00 .........n...... + 0190: 00 00 0c 83 05 00 00 0c 05 00 00 00 12 20 06 0c ............. .. + 01a0: 40 06 00 00 0c 13 76 00 00 0c 6e 00 00 00 0c 0a @.....v...n..... + 01b0: 00 00 00 0c 83 06 00 00 0c 06 00 00 00 12 20 06 .............. . + 01c0: 0c dc 05 00 00 0c 34 6e 00 00 0c 6e 00 00 00 0c ......4n...n.... + 01d0: 0a 00 00 00 0c 83 07 00 00 0c 07 00 00 00 12 20 ............... + 01e0: 06 0c 78 05 00 00 0c e4 64 00 00 0c 6e 00 00 00 ..x.....d...n... + 01f0: 0c 0a 00 00 00 0c 83 08 00 00 0c 08 00 00 00 12 ................ + 0200: 20 06 0c 14 05 00 00 0c 5c 5d 00 00 0c 6e 00 00 .......\]...n.. + 0210: 00 0c 0a 00 00 00 0c 83 09 00 00 0c 09 00 00 00 ................ + 0220: 12 20 06 0c b0 04 00 00 0c 6d 54 00 00 0c 6e 00 . .......mT...n. + 0230: 00 00 0c 0a 00 00 00 0c 83 0a 00 00 0c 0a 00 00 ................ + 0240: 00 12 20 06 0c 4c 04 00 00 0c 3f 4d 00 00 0c 6e .. ..L....?M...n + 0250: 00 00 00 0c 0a 00 00 00 0c 83 0b 00 00 0c 0b 00 ................ + 0260: 00 00 12 20 06 0c e8 03 00 00 0c ae 44 00 00 0c ... ........D... + 0270: 6e 00 00 00 0c 0a 00 00 00 0c 83 0c 00 00 0c 0c n............... + 0280: 00 00 00 12 20 06 0c 84 03 00 00 0c 4d 3c 00 00 .... .......M<.. + 0290: 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0d 00 00 0c .n.............. + 02a0: 0d 00 00 00 12 20 06 0c 20 03 00 00 0c 9b 35 00 ..... .. .....5. + 02b0: 00 0c 6e 00 00 00 0c 0a 00 00 00 0c 83 0e 00 00 ..n............. + 02c0: 0c 0e 00 00 00 12 20 06 0c 00 00 00 80 0c 00 00 ...... ......... + 02d0: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 02e0: 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 ....... ........ + 02f0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0300: 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c ........ ....... + 0310: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0320: 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 ......... ...... + 0330: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0340: 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 .......... ..... + 0350: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0360: 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 ........... .... + 0370: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0380: 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 ............ ... + 0390: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 03a0: 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c ............. .. + 03b0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 03c0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 .............. . + 03d0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 03e0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 ............... + 03f0: 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0400: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 ................ + 0410: 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ............... + 0420: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0430: 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 . .............. + 0440: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0450: 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 .. ............. + 0460: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0470: 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c ... ............ + 0480: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0490: 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 .... ........... + 04a0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 04b0: 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 ..... .......... + 04c0: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 04d0: 0c 00 00 00 80 08 5f 50 53 53 12 42 1f 0f 12 20 ......_PSS.B... + 04e0: 06 0c 99 08 00 00 0c c8 af 00 00 0c 0a 00 00 00 ................ + 04f0: 0c 0a 00 00 00 0c 00 1f 00 00 0c 00 1f 00 00 12 ................ + 0500: 20 06 0c 98 08 00 00 0c c8 af 00 00 0c 0a 00 00 ............... + 0510: 00 0c 0a 00 00 00 0c 00 16 00 00 0c 00 16 00 00 ................ + 0520: 12 20 06 0c d0 07 00 00 0c 9d 9a 00 00 0c 0a 00 . .............. + 0530: 00 00 0c 0a 00 00 00 0c 00 14 00 00 0c 00 14 00 ................ + 0540: 00 12 20 06 0c 6c 07 00 00 0c 0b 92 00 00 0c 0a .. ..l.......... + 0550: 00 00 00 0c 0a 00 00 00 0c 00 13 00 00 0c 00 13 ................ + 0560: 00 00 12 20 06 0c 08 07 00 00 0c f6 87 00 00 0c ... ............ + 0570: 0a 00 00 00 0c 0a 00 00 00 0c 00 12 00 00 0c 00 ................ + 0580: 12 00 00 12 20 06 0c a4 06 00 00 0c bf 7f 00 00 .... ........... + 0590: 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 11 00 00 0c ................ + 05a0: 00 11 00 00 12 20 06 0c 40 06 00 00 0c 13 76 00 ..... ..@.....v. + 05b0: 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 10 00 00 ................ + 05c0: 0c 00 10 00 00 12 20 06 0c dc 05 00 00 0c 34 6e ...... .......4n + 05d0: 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 0f 00 ................ + 05e0: 00 0c 00 0f 00 00 12 20 06 0c 78 05 00 00 0c e4 ....... ..x..... + 05f0: 64 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 0e d............... + 0600: 00 00 0c 00 0e 00 00 12 20 06 0c 14 05 00 00 0c ........ ....... + 0610: 5c 5d 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c 00 \].............. + 0620: 0d 00 00 0c 00 0d 00 00 12 20 06 0c b0 04 00 00 ......... ...... + 0630: 0c 6d 54 00 00 0c 0a 00 00 00 0c 0a 00 00 00 0c .mT............. + 0640: 00 0c 00 00 0c 00 0c 00 00 12 20 06 0c 4c 04 00 .......... ..L.. + 0650: 00 0c 3f 4d 00 00 0c 0a 00 00 00 0c 0a 00 00 00 ..?M............ + 0660: 0c 00 0b 00 00 0c 00 0b 00 00 12 20 06 0c e8 03 ........... .... + 0670: 00 00 0c ae 44 00 00 0c 0a 00 00 00 0c 0a 00 00 ....D........... + 0680: 00 0c 00 0a 00 00 0c 00 0a 00 00 12 20 06 0c 84 ............ ... + 0690: 03 00 00 0c 4d 3c 00 00 0c 0a 00 00 00 0c 0a 00 ....M<.......... + 06a0: 00 00 0c 00 09 00 00 0c 00 09 00 00 12 20 06 0c ............. .. + 06b0: 20 03 00 00 0c 9b 35 00 00 0c 0a 00 00 00 0c 0a .....5......... + 06c0: 00 00 00 0c 00 08 00 00 0c 00 08 00 00 12 20 06 .............. . + 06d0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 06e0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 ............... + 06f0: 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0700: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 12 ................ + 0710: 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ............... + 0720: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0730: 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 . .............. + 0740: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0750: 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c 00 .. ............. + 0760: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0770: 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 0c ... ............ + 0780: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0790: 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 80 .... ........... + 07a0: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 07b0: 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 00 ..... .......... + 07c0: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 07d0: 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 00 ...... ......... + 07e0: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 07f0: 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c 00 ....... ........ + 0800: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 0810: 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 0c ........ ....... + 0820: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 0830: 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 80 ......... ...... + 0840: 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c ................ + 0850: 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 00 .......... ..... + 0860: 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 ................ + 0870: 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 00 ........... .... + 0880: 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 00 ................ + 0890: 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c 00 ............ ... + 08a0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 00 ................ + 08b0: 00 80 0c 00 00 00 80 0c 00 00 00 80 12 20 06 0c ............. .. + 08c0: 00 00 00 80 0c 00 00 00 80 0c 00 00 00 80 0c 00 ................ + 08d0: 00 00 80 0c 00 00 00 80 0c 00 00 00 80 08 50 53 ..............PS + 08e0: 44 46 00 14 4b 04 5f 50 53 44 00 a0 2e 92 50 53 DF..K._PSD....PS + 08f0: 44 46 70 54 43 4e 54 88 83 88 48 50 53 44 00 00 DFpTCNT...HPSD.. + 0900: 0a 04 00 70 54 43 4e 54 88 83 88 53 50 53 44 00 ...pTCNT...SPSD. + 0910: 00 0a 04 00 70 ff 50 53 44 46 a0 0f 7b 50 44 43 ....p.PSDF..{PDC + 0920: 30 0b 00 08 00 a4 48 50 53 44 a4 53 50 53 44 08 0.....HPSD.SPSD. + 0930: 48 50 53 44 12 0d 01 12 0a 05 0a 05 00 00 0a fe HPSD............ + 0940: 0a 80 08 53 50 53 44 12 0d 01 12 0a 05 0a 05 00 ...SPSD......... + 0950: 00 0a fc 0a 80 ..... + +SSDT2 @ 0x00000000 + 0000: 53 53 44 54 96 09 00 00 01 ae 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 43 70 75 50 6d 00 00 00 00 30 00 00 49 4e 54 4c CpuPm....0..INTL + 0020: 12 11 09 20 10 46 0c 5c 00 08 53 53 44 54 12 43 ... .F.\..SSDT.C + 0030: 05 0c 0d 43 50 55 30 49 53 54 20 00 0c 18 a0 09 ...CPU0IST ..... + 0040: 02 0c 55 09 00 00 0d 41 50 49 53 54 20 20 20 00 ..U....APIST . + 0050: 0c 98 ba 5c bf 0c 03 03 00 00 0d 43 50 55 30 43 ...\.......CPU0C + 0060: 53 54 20 00 0c 98 a7 5c bf 0c 3f 07 00 00 0d 41 ST ....\..?....A + 0070: 50 43 53 54 20 20 20 00 0c 98 9d 5c bf 0c 19 01 PCST ....\.... + 0080: 00 00 08 43 46 47 44 0c ff f6 70 00 08 5c 50 44 ...CFGD...p..\PD + 0090: 43 30 0c 00 00 00 80 08 5c 50 44 43 31 0c 00 00 C0......\PDC1... + 00a0: 00 80 08 5c 50 44 43 32 0c 00 00 00 80 08 5c 50 ...\PDC2......\P + 00b0: 44 43 33 0c 00 00 00 80 08 5c 50 44 43 34 0c 00 DC3......\PDC4.. + 00c0: 00 00 80 08 5c 50 44 43 35 0c 00 00 00 80 08 5c ....\PDC5......\ + 00d0: 50 44 43 36 0c 00 00 00 80 08 5c 50 44 43 37 0c PDC6......\PDC7. + 00e0: 00 00 00 80 08 5c 53 44 54 4c 00 10 4b 21 5c 2e .....\SDTL..K!\. + 00f0: 5f 50 52 5f 43 50 55 30 08 48 49 30 5f 00 08 48 _PR_CPU0.HI0_..H + 0100: 43 30 5f 00 14 14 5f 50 44 43 01 70 43 50 44 43 C0_..._PDC.pCPDC + 0110: 68 60 47 43 41 50 60 a4 60 14 17 5f 4f 53 43 04 h`GCAP`.`.._OSC. + 0120: 70 43 4f 53 43 68 69 6a 6b 60 47 43 41 50 60 a4 pCOSChijk`GCAP`. + 0130: 60 14 48 06 43 50 44 43 01 8a 68 00 52 45 56 53 `.H.CPDC..h.REVS + 0140: 8a 68 0a 04 53 49 5a 45 70 87 68 60 70 74 60 0a .h..SIZEp.h`pt`. + 0150: 08 00 61 5b 13 68 0a 40 77 61 0a 08 00 54 45 4d ..a[.h.@wa...TEM + 0160: 50 08 53 54 53 30 11 07 0a 04 00 00 00 00 73 53 P.STS0........sS + 0170: 54 53 30 54 45 4d 50 62 a4 43 4f 53 43 11 13 0a TS0TEMPb.COSC... + 0180: 10 16 a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 ...w@.).G...pXq9 + 0190: 53 52 45 56 53 53 49 5a 45 62 14 4d 0b 43 4f 53 SREVSSIZEb.M.COS + 01a0: 43 04 8a 6b 00 53 54 53 30 8a 6b 0a 04 43 41 50 C..k.STS0.k..CAP + 01b0: 30 8a 68 00 49 49 44 30 8a 68 0a 04 49 49 44 31 0.h.IID0.h..IID1 + 01c0: 8a 68 0a 08 49 49 44 32 8a 68 0a 0c 49 49 44 33 .h..IID2.h..IID3 + 01d0: 08 55 49 44 30 11 13 0a 10 16 a6 77 40 0c 29 be .UID0......w@.). + 01e0: 47 9e bd d8 70 58 71 39 53 8a 55 49 44 30 00 45 G...pXq9S.UID0.E + 01f0: 49 44 30 8a 55 49 44 30 0a 04 45 49 44 31 8a 55 ID0.UID0..EID1.U + 0200: 49 44 30 0a 08 45 49 44 32 8a 55 49 44 30 0a 0c ID0..EID2.UID0.. + 0210: 45 49 44 33 a0 32 92 90 90 93 49 49 44 30 45 49 EID3.2....IID0EI + 0220: 44 30 93 49 49 44 31 45 49 44 31 90 93 49 49 44 D0.IID1EID1..IID + 0230: 32 45 49 44 32 93 49 49 44 33 45 49 44 33 70 0a 2EID2.IID3EID3p. + 0240: 06 53 54 53 30 a4 6b a0 0e 92 93 69 01 70 0a 0a .STS0.k....i.p.. + 0250: 53 54 53 30 a4 6b a4 6b 14 4e 0a 47 43 41 50 01 STS0.k.k.N.GCAP. + 0260: 8a 68 00 53 54 53 30 8a 68 0a 04 43 41 50 30 a0 .h.STS0.h..CAP0. + 0270: 12 91 93 53 54 53 30 0a 06 93 53 54 53 30 0a 0a ...STS0...STS0.. + 0280: a4 00 a0 16 7b 53 54 53 30 01 00 7b 43 41 50 30 ....{STS0..{CAP0 + 0290: 0b ff 0b 43 41 50 30 a4 00 7d 7b 50 44 43 30 0c ...CAP0..}{PDC0. + 02a0: ff ff ff 7f 00 43 41 50 30 50 44 43 30 a0 47 05 .....CAP0PDC0.G. + 02b0: 7b 43 46 47 44 0a 3e 00 a0 4c 04 90 90 7b 43 46 {CFGD.>..L...{CF + 02c0: 47 44 0b 00 04 00 7b 50 44 43 30 0a 18 00 92 7b GD....{PDC0....{ + 02d0: 53 44 54 4c 0a 02 00 7d 53 44 54 4c 0a 02 53 44 SDTL...}SDTL..SD + 02e0: 54 4c 5b 80 43 53 54 30 00 83 88 53 53 44 54 0a TL[.CST0...SSDT. + 02f0: 07 00 83 88 53 53 44 54 0a 08 00 5b 20 43 53 54 ....SSDT...[ CST + 0300: 30 48 43 30 5f a4 00 10 46 16 5c 2e 5f 50 52 5f 0HC0_...F.\._PR_ + 0310: 43 50 55 31 08 48 49 31 5f 00 08 48 43 31 5f 00 CPU1.HI1_..HC1_. + 0320: 14 1f 5f 50 44 43 01 70 5c 2f 03 5f 50 52 5f 43 .._PDC.p\/._PR_C + 0330: 50 55 30 43 50 44 43 68 60 47 43 41 50 60 a4 60 PU0CPDCh`GCAP`.` + 0340: 14 22 5f 4f 53 43 04 70 5c 2f 03 5f 50 52 5f 43 ."_OSC.p\/._PR_C + 0350: 50 55 30 43 4f 53 43 68 69 6a 6b 60 47 43 41 50 PU0COSChijk`GCAP + 0360: 60 a4 60 14 45 07 47 43 41 50 01 8a 68 00 53 54 `.`.E.GCAP..h.ST + 0370: 53 31 8a 68 0a 04 43 41 50 31 a0 12 91 93 53 54 S1.h..CAP1....ST + 0380: 53 31 0a 06 93 53 54 53 31 0a 0a a4 00 a0 16 7b S1...STS1......{ + 0390: 53 54 53 31 01 00 7b 43 41 50 31 0b ff 0b 43 41 STS1..{CAP1...CA + 03a0: 50 31 a4 00 7d 7b 50 44 43 31 0c ff ff ff 7f 00 P1..}{PDC1...... + 03b0: 43 41 50 31 50 44 43 31 a0 10 93 7b 50 44 43 30 CAP1PDC1...{PDC0 + 03c0: 0a 09 00 0a 09 41 50 50 54 a0 0d 7b 50 44 43 30 .....APPT..{PDC0 + 03d0: 0a 18 00 41 50 43 54 a4 00 14 4a 04 41 50 43 54 ...APCT...J.APCT + 03e0: 00 a0 42 04 90 7b 43 46 47 44 0a 2e 00 92 7b 53 ..B..{CFGD....{S + 03f0: 44 54 4c 0a 20 00 7d 53 44 54 4c 0a 20 53 44 54 DTL. .}SDTL. SDT + 0400: 4c 5b 80 43 53 54 31 00 83 88 53 53 44 54 0a 0a L[.CST1...SSDT.. + 0410: 00 83 88 53 53 44 54 0a 0b 00 5b 20 43 53 54 31 ...SSDT...[ CST1 + 0420: 48 43 31 5f 14 49 04 41 50 50 54 00 a0 41 04 90 HC1_.I.APPT..A.. + 0430: 7b 43 46 47 44 01 00 92 7b 53 44 54 4c 0a 10 00 {CFGD...{SDTL... + 0440: 7d 53 44 54 4c 0a 10 53 44 54 4c 5b 80 49 53 54 }SDTL..SDTL[.IST + 0450: 31 00 83 88 53 53 44 54 0a 04 00 83 88 53 53 44 1...SSDT.....SSD + 0460: 54 0a 05 00 5b 20 49 53 54 31 48 49 31 5f 10 4b T...[ IST1HI1_.K + 0470: 0d 5c 2e 5f 50 52 5f 43 50 55 32 14 1f 5f 50 44 .\._PR_CPU2.._PD + 0480: 43 01 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 50 C.p\/._PR_CPU0CP + 0490: 44 43 68 60 47 43 41 50 60 a4 60 14 22 5f 4f 53 DCh`GCAP`.`."_OS + 04a0: 43 04 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 4f C.p\/._PR_CPU0CO + 04b0: 53 43 68 69 6a 6b 60 47 43 41 50 60 a4 60 14 4b SChijk`GCAP`.`.K + 04c0: 08 47 43 41 50 01 8a 68 00 53 54 53 32 8a 68 0a .GCAP..h.STS2.h. + 04d0: 04 43 41 50 32 a0 12 91 93 53 54 53 32 0a 06 93 .CAP2....STS2... + 04e0: 53 54 53 32 0a 0a a4 00 a0 16 7b 53 54 53 32 01 STS2......{STS2. + 04f0: 00 7b 43 41 50 32 0b ff 0b 43 41 50 32 a4 00 7d .{CAP2...CAP2..} + 0500: 7b 50 44 43 32 0c ff ff ff 7f 00 43 41 50 32 50 {PDC2......CAP2P + 0510: 44 43 32 a0 1b 93 7b 50 44 43 32 0a 09 00 0a 09 DC2...{PDC2..... + 0520: 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 50 54 a0 \/._PR_CPU1APPT. + 0530: 18 7b 50 44 43 32 0a 18 00 5c 2f 03 5f 50 52 5f .{PDC2...\/._PR_ + 0540: 43 50 55 31 41 50 43 54 a4 00 10 4b 0d 5c 2e 5f CPU1APCT...K.\._ + 0550: 50 52 5f 43 50 55 33 14 1f 5f 50 44 43 01 70 5c PR_CPU3.._PDC.p\ + 0560: 2f 03 5f 50 52 5f 43 50 55 30 43 50 44 43 68 60 /._PR_CPU0CPDCh` + 0570: 47 43 41 50 60 a4 60 14 22 5f 4f 53 43 04 70 5c GCAP`.`."_OSC.p\ + 0580: 2f 03 5f 50 52 5f 43 50 55 30 43 4f 53 43 68 69 /._PR_CPU0COSChi + 0590: 6a 6b 60 47 43 41 50 60 a4 60 14 4b 08 47 43 41 jk`GCAP`.`.K.GCA + 05a0: 50 01 8a 68 00 53 54 53 33 8a 68 0a 04 43 41 50 P..h.STS3.h..CAP + 05b0: 33 a0 12 91 93 53 54 53 33 0a 06 93 53 54 53 33 3....STS3...STS3 + 05c0: 0a 0a a4 00 a0 16 7b 53 54 53 33 01 00 7b 43 41 ......{STS3..{CA + 05d0: 50 33 0b ff 0b 43 41 50 33 a4 00 7d 7b 50 44 43 P3...CAP3..}{PDC + 05e0: 33 0c ff ff ff 7f 00 43 41 50 33 50 44 43 33 a0 3......CAP3PDC3. + 05f0: 1b 93 7b 50 44 43 33 0a 09 00 0a 09 5c 2f 03 5f ..{PDC3.....\/._ + 0600: 50 52 5f 43 50 55 31 41 50 50 54 a0 18 7b 50 44 PR_CPU1APPT..{PD + 0610: 43 33 0a 18 00 5c 2f 03 5f 50 52 5f 43 50 55 31 C3...\/._PR_CPU1 + 0620: 41 50 43 54 a4 00 10 4b 0d 5c 2e 5f 50 52 5f 43 APCT...K.\._PR_C + 0630: 50 55 34 14 1f 5f 50 44 43 01 70 5c 2f 03 5f 50 PU4.._PDC.p\/._P + 0640: 52 5f 43 50 55 30 43 50 44 43 68 60 47 43 41 50 R_CPU0CPDCh`GCAP + 0650: 60 a4 60 14 22 5f 4f 53 43 04 70 5c 2f 03 5f 50 `.`."_OSC.p\/._P + 0660: 52 5f 43 50 55 30 43 4f 53 43 68 69 6a 6b 60 47 R_CPU0COSChijk`G + 0670: 43 41 50 60 a4 60 14 4b 08 47 43 41 50 01 8a 68 CAP`.`.K.GCAP..h + 0680: 00 53 54 53 34 8a 68 0a 04 43 41 50 34 a0 12 91 .STS4.h..CAP4... + 0690: 93 53 54 53 34 0a 06 93 53 54 53 34 0a 0a a4 00 .STS4...STS4.... + 06a0: a0 16 7b 53 54 53 34 01 00 7b 43 41 50 34 0b ff ..{STS4..{CAP4.. + 06b0: 0b 43 41 50 34 a4 00 7d 7b 50 44 43 34 0c ff ff .CAP4..}{PDC4... + 06c0: ff 7f 00 43 41 50 34 50 44 43 34 a0 1b 93 7b 50 ...CAP4PDC4...{P + 06d0: 44 43 34 0a 09 00 0a 09 5c 2f 03 5f 50 52 5f 43 DC4.....\/._PR_C + 06e0: 50 55 31 41 50 50 54 a0 18 7b 50 44 43 34 0a 18 PU1APPT..{PDC4.. + 06f0: 00 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 43 54 .\/._PR_CPU1APCT + 0700: a4 00 10 4b 0d 5c 2e 5f 50 52 5f 43 50 55 35 14 ...K.\._PR_CPU5. + 0710: 1f 5f 50 44 43 01 70 5c 2f 03 5f 50 52 5f 43 50 ._PDC.p\/._PR_CP + 0720: 55 30 43 50 44 43 68 60 47 43 41 50 60 a4 60 14 U0CPDCh`GCAP`.`. + 0730: 22 5f 4f 53 43 04 70 5c 2f 03 5f 50 52 5f 43 50 "_OSC.p\/._PR_CP + 0740: 55 30 43 4f 53 43 68 69 6a 6b 60 47 43 41 50 60 U0COSChijk`GCAP` + 0750: a4 60 14 4b 08 47 43 41 50 01 8a 68 00 53 54 53 .`.K.GCAP..h.STS + 0760: 35 8a 68 0a 04 43 41 50 35 a0 12 91 93 53 54 53 5.h..CAP5....STS + 0770: 35 0a 06 93 53 54 53 35 0a 0a a4 00 a0 16 7b 53 5...STS5......{S + 0780: 54 53 35 01 00 7b 43 41 50 35 0b ff 0b 43 41 50 TS5..{CAP5...CAP + 0790: 35 a4 00 7d 7b 50 44 43 35 0c ff ff ff 7f 00 43 5..}{PDC5......C + 07a0: 41 50 35 50 44 43 35 a0 1b 93 7b 50 44 43 35 0a AP5PDC5...{PDC5. + 07b0: 09 00 0a 09 5c 2f 03 5f 50 52 5f 43 50 55 31 41 ....\/._PR_CPU1A + 07c0: 50 50 54 a0 18 7b 50 44 43 35 0a 18 00 5c 2f 03 PPT..{PDC5...\/. + 07d0: 5f 50 52 5f 43 50 55 31 41 50 43 54 a4 00 10 4b _PR_CPU1APCT...K + 07e0: 0d 5c 2e 5f 50 52 5f 43 50 55 36 14 1f 5f 50 44 .\._PR_CPU6.._PD + 07f0: 43 01 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 50 C.p\/._PR_CPU0CP + 0800: 44 43 68 60 47 43 41 50 60 a4 60 14 22 5f 4f 53 DCh`GCAP`.`."_OS + 0810: 43 04 70 5c 2f 03 5f 50 52 5f 43 50 55 30 43 4f C.p\/._PR_CPU0CO + 0820: 53 43 68 69 6a 6b 60 47 43 41 50 60 a4 60 14 4b SChijk`GCAP`.`.K + 0830: 08 47 43 41 50 01 8a 68 00 53 54 53 36 8a 68 0a .GCAP..h.STS6.h. + 0840: 04 43 41 50 36 a0 12 91 93 53 54 53 36 0a 06 93 .CAP6....STS6... + 0850: 53 54 53 36 0a 0a a4 00 a0 16 7b 53 54 53 36 01 STS6......{STS6. + 0860: 00 7b 43 41 50 36 0b ff 0b 43 41 50 36 a4 00 7d .{CAP6...CAP6..} + 0870: 7b 50 44 43 36 0c ff ff ff 7f 00 43 41 50 36 50 {PDC6......CAP6P + 0880: 44 43 36 a0 1b 93 7b 50 44 43 36 0a 09 00 0a 09 DC6...{PDC6..... + 0890: 5c 2f 03 5f 50 52 5f 43 50 55 31 41 50 50 54 a0 \/._PR_CPU1APPT. + 08a0: 18 7b 50 44 43 36 0a 18 00 5c 2f 03 5f 50 52 5f .{PDC6...\/._PR_ + 08b0: 43 50 55 31 41 50 43 54 a4 00 10 4b 0d 5c 2e 5f CPU1APCT...K.\._ + 08c0: 50 52 5f 43 50 55 37 14 1f 5f 50 44 43 01 70 5c PR_CPU7.._PDC.p\ + 08d0: 2f 03 5f 50 52 5f 43 50 55 30 43 50 44 43 68 60 /._PR_CPU0CPDCh` + 08e0: 47 43 41 50 60 a4 60 14 22 5f 4f 53 43 04 70 5c GCAP`.`."_OSC.p\ + 08f0: 2f 03 5f 50 52 5f 43 50 55 30 43 4f 53 43 68 69 /._PR_CPU0COSChi + 0900: 6a 6b 60 47 43 41 50 60 a4 60 14 4b 08 47 43 41 jk`GCAP`.`.K.GCA + 0910: 50 01 8a 68 00 53 54 53 37 8a 68 0a 04 43 41 50 P..h.STS7.h..CAP + 0920: 37 a0 12 91 93 53 54 53 37 0a 06 93 53 54 53 37 7....STS7...STS7 + 0930: 0a 0a a4 00 a0 16 7b 53 54 53 37 01 00 7b 43 41 ......{STS7..{CA + 0940: 50 37 0b ff 0b 43 41 50 37 a4 00 7d 7b 50 44 43 P7...CAP7..}{PDC + 0950: 37 0c ff ff ff 7f 00 43 41 50 37 50 44 43 37 a0 7......CAP7PDC7. + 0960: 1b 93 7b 50 44 43 37 0a 09 00 0a 09 5c 2f 03 5f ..{PDC7.....\/._ + 0970: 50 52 5f 43 50 55 31 41 50 50 54 a0 18 7b 50 44 PR_CPU1APPT..{PD + 0980: 43 37 0a 18 00 5c 2f 03 5f 50 52 5f 43 50 55 31 C7...\/._PR_CPU1 + 0990: 41 50 43 54 a4 00 APCT.. + +SSDT3 @ 0x00000000 + 0000: 53 53 44 54 3f 07 00 00 01 2b 50 6d 52 65 66 00 SSDT?....+PmRef. + 0010: 43 70 75 30 43 73 74 00 01 30 00 00 49 4e 54 4c Cpu0Cst..0..INTL + 0020: 12 11 09 20 10 4a 71 5c 2e 5f 50 52 5f 43 50 55 ... .Jq\._PR_CPU + 0030: 30 08 43 31 4c 4d 12 1c 04 11 14 0a 11 82 0c 00 0.C1LM.......... + 0040: 7f 01 02 01 00 00 00 00 00 00 00 00 79 00 01 01 ............y... + 0050: 0b e8 03 08 43 31 4c 48 12 1c 04 11 14 0a 11 82 ....C1LH........ + 0060: 0c 00 7f 00 00 00 00 00 00 00 00 00 00 00 79 00 ..............y. + 0070: 01 01 0b e8 03 08 43 33 4c 4d 12 1e 04 11 14 0a ......C3LM...... + 0080: 11 82 0c 00 7f 01 02 01 10 00 00 00 00 00 00 00 ................ + 0090: 79 00 0a 02 0a 9c 0b f4 01 08 43 37 53 4d 12 1d y.........C7SM.. + 00a0: 04 11 14 0a 11 82 0c 00 7f 01 02 01 31 00 00 00 ............1... + 00b0: 00 00 00 00 79 00 0a 03 0a c7 0a c8 08 43 37 4c ....y........C7L + 00c0: 4d 12 1d 04 11 14 0a 11 82 0c 00 7f 01 02 01 30 M..............0 + 00d0: 00 00 00 00 00 00 00 79 00 0a 03 0a c7 0a c8 08 .......y........ + 00e0: 43 36 4c 4d 12 1e 04 11 14 0a 11 82 0c 00 7f 01 C6LM............ + 00f0: 02 01 20 00 00 00 00 00 00 00 79 00 0a 03 0a b5 .. .......y..... + 0100: 0b 5e 01 08 43 33 4c 49 12 1e 04 11 14 0a 11 82 .^..C3LI........ + 0110: 0c 00 01 08 00 00 14 04 00 00 00 00 00 00 79 00 ..............y. + 0120: 0a 02 0a 9c 0b f4 01 08 43 36 4c 49 12 1e 04 11 ........C6LI.... + 0130: 14 0a 11 82 0c 00 01 08 00 00 15 04 00 00 00 00 ................ + 0140: 00 00 79 00 0a 03 0a b5 0b 5e 01 08 43 37 4c 49 ..y......^..C7LI + 0150: 12 1d 04 11 14 0a 11 82 0c 00 01 08 00 00 16 04 ................ + 0160: 00 00 00 00 00 00 79 00 0a 03 0a c7 0a c8 08 43 ......y........C + 0170: 33 53 54 12 0d 04 0a 03 12 02 00 12 02 00 12 02 3ST............. + 0180: 00 08 43 32 53 54 12 0a 03 0a 02 12 02 00 12 02 ..C2ST.......... + 0190: 00 08 43 31 53 54 12 06 02 01 12 02 00 08 43 53 ..C1ST........CS + 01a0: 54 46 00 14 4b 59 5f 43 53 54 08 70 5c 2f 04 5f TF..KY_CST.p\/._ + 01b0: 53 42 5f 50 43 49 30 41 43 30 5f 5f 50 53 52 50 SB_PCI0AC0__PSRP + 01c0: 57 52 53 a0 46 06 90 92 43 53 54 46 7b 43 46 47 WRS.F...CSTF{CFG + 01d0: 44 0c 00 00 40 00 00 70 0a 50 88 43 33 4c 49 0a D...@..p.P.C3LI. + 01e0: 02 00 70 0a 50 88 43 33 4c 4d 0a 02 00 70 0a 6d ..p.P.C3LM...p.m + 01f0: 88 43 37 53 4d 0a 02 00 70 0a 6d 88 43 37 4c 4d .C7SM...p.m.C7LM + 0200: 0a 02 00 70 0a 68 88 43 36 4c 4d 0a 02 00 70 0a ...p.h.C6LM...p. + 0210: 6d 88 43 37 4c 49 0a 02 00 70 0a 68 88 43 36 4c m.C7LI...p.h.C6L + 0220: 49 0a 02 00 70 ff 43 53 54 46 a0 4a 1f 90 7b 43 I...p.CSTF.J..{C + 0230: 46 47 44 0b 00 10 00 7b 50 44 43 30 0b 00 02 00 FGD....{PDC0.... + 0240: a0 40 17 91 92 50 57 52 53 92 93 50 46 4c 56 46 .@...PWRS..PFLVF + 0250: 4d 42 4c a0 42 06 7b 43 46 47 44 0c 00 00 01 00 MBL.B.{CFGD..... + 0260: 00 a0 34 7b 43 46 47 44 0a 08 00 70 43 31 4c 4d ..4{CFGD...pC1LM + 0270: 88 43 33 53 54 01 00 70 43 33 4c 4d 88 43 33 53 .C3ST..pC3LM.C3S + 0280: 54 0a 02 00 70 43 37 53 4d 88 43 33 53 54 0a 03 T...pC7SM.C3ST.. + 0290: 00 a4 43 33 53 54 a1 1f 70 43 31 4c 4d 88 43 32 ..C3ST..pC1LM.C2 + 02a0: 53 54 01 00 70 43 37 53 4d 88 43 32 53 54 0a 02 ST..pC7SM.C2ST.. + 02b0: 00 a4 43 32 53 54 a0 4f 05 7b 43 46 47 44 0a 20 ..C2ST.O.{CFGD. + 02c0: 00 a0 34 7b 43 46 47 44 0a 08 00 70 43 31 4c 4d ..4{CFGD...pC1LM + 02d0: 88 43 33 53 54 01 00 70 43 33 4c 4d 88 43 33 53 .C3ST..pC3LM.C3S + 02e0: 54 0a 02 00 70 43 37 4c 4d 88 43 33 53 54 0a 03 T...pC7LM.C3ST.. + 02f0: 00 a4 43 33 53 54 a1 1f 70 43 31 4c 4d 88 43 32 ..C3ST..pC1LM.C2 + 0300: 53 54 01 00 70 43 37 4c 4d 88 43 32 53 54 0a 02 ST..pC7LM.C2ST.. + 0310: 00 a4 43 32 53 54 a0 4f 05 7b 43 46 47 44 0a 10 ..C2ST.O.{CFGD.. + 0320: 00 a0 34 7b 43 46 47 44 0a 08 00 70 43 31 4c 4d ..4{CFGD...pC1LM + 0330: 88 43 33 53 54 01 00 70 43 33 4c 4d 88 43 33 53 .C3ST..pC3LM.C3S + 0340: 54 0a 02 00 70 43 36 4c 4d 88 43 33 53 54 0a 03 T...pC6LM.C3ST.. + 0350: 00 a4 43 33 53 54 a1 1f 70 43 31 4c 4d 88 43 32 ..C3ST..pC1LM.C2 + 0360: 53 54 01 00 70 43 36 4c 4d 88 43 32 53 54 0a 02 ST..pC6LM.C2ST.. + 0370: 00 a4 43 32 53 54 a0 27 7b 43 46 47 44 0a 08 00 ..C2ST.'{CFGD... + 0380: 70 43 31 4c 4d 88 43 32 53 54 01 00 70 43 33 4c pC1LM.C2ST..pC3L + 0390: 4d 88 43 32 53 54 0a 02 00 a4 43 32 53 54 a1 12 M.C2ST....C2ST.. + 03a0: 70 43 31 4c 4d 88 43 31 53 54 01 00 a4 43 31 53 pC1LM.C1ST...C1S + 03b0: 54 a0 36 7b 43 46 47 44 0a 10 00 70 43 31 4c 4d T.6{CFGD...pC1LM + 03c0: 88 43 32 53 54 01 00 70 43 36 4c 4d 88 43 32 53 .C2ST..pC6LM.C2S + 03d0: 54 0a 02 00 70 0a 02 88 83 88 43 32 53 54 0a 02 T...p.....C2ST.. + 03e0: 00 01 00 a4 43 32 53 54 a1 3c a0 27 7b 43 46 47 ....C2ST.<.'{CFG + 03f0: 44 0a 08 00 70 43 31 4c 4d 88 43 32 53 54 01 00 D...pC1LM.C2ST.. + 0400: 70 43 33 4c 4d 88 43 32 53 54 0a 02 00 a4 43 32 pC3LM.C2ST....C2 + 0410: 53 54 a1 12 70 43 31 4c 4d 88 43 31 53 54 01 00 ST..pC1LM.C1ST.. + 0420: a4 43 31 53 54 a0 47 19 90 7b 43 46 47 44 0b 00 .C1ST.G..{CFGD.. + 0430: 10 00 7b 50 44 43 30 0b 00 01 00 a0 4d 10 91 92 ..{PDC0.....M... + 0440: 50 57 52 53 92 93 50 46 4c 56 46 4d 42 4c a0 4f PWRS..PFLVFMBL.O + 0450: 05 7b 43 46 47 44 0a 20 00 a0 34 7b 43 46 47 44 .{CFGD. ..4{CFGD + 0460: 0a 08 00 70 43 31 4c 4d 88 43 33 53 54 01 00 70 ...pC1LM.C3ST..p + 0470: 43 33 4c 49 88 43 33 53 54 0a 02 00 70 43 37 4c C3LI.C3ST...pC7L + 0480: 49 88 43 33 53 54 0a 03 00 a4 43 33 53 54 a1 1f I.C3ST....C3ST.. + 0490: 70 43 31 4c 4d 88 43 32 53 54 01 00 70 43 37 4c pC1LM.C2ST..pC7L + 04a0: 49 88 43 32 53 54 0a 02 00 a4 43 32 53 54 a0 4f I.C2ST....C2ST.O + 04b0: 05 7b 43 46 47 44 0a 10 00 a0 34 7b 43 46 47 44 .{CFGD....4{CFGD + 04c0: 0a 08 00 70 43 31 4c 4d 88 43 33 53 54 01 00 70 ...pC1LM.C3ST..p + 04d0: 43 33 4c 49 88 43 33 53 54 0a 02 00 70 43 36 4c C3LI.C3ST...pC6L + 04e0: 49 88 43 33 53 54 0a 03 00 a4 43 33 53 54 a1 1f I.C3ST....C3ST.. + 04f0: 70 43 31 4c 4d 88 43 32 53 54 01 00 70 43 36 4c pC1LM.C2ST..pC6L + 0500: 49 88 43 32 53 54 0a 02 00 a4 43 32 53 54 a0 27 I.C2ST....C2ST.' + 0510: 7b 43 46 47 44 0a 08 00 70 43 31 4c 4d 88 43 32 {CFGD...pC1LM.C2 + 0520: 53 54 01 00 70 43 33 4c 49 88 43 32 53 54 0a 02 ST..pC3LI.C2ST.. + 0530: 00 a4 43 32 53 54 a1 12 70 43 31 4c 4d 88 43 31 ..C2ST..pC1LM.C1 + 0540: 53 54 01 00 a4 43 31 53 54 a0 36 7b 43 46 47 44 ST...C1ST.6{CFGD + 0550: 0a 10 00 70 43 31 4c 4d 88 43 32 53 54 01 00 70 ...pC1LM.C2ST..p + 0560: 43 36 4c 49 88 43 32 53 54 0a 02 00 70 0a 02 88 C6LI.C2ST...p... + 0570: 83 88 43 32 53 54 0a 02 00 01 00 a4 43 32 53 54 ..C2ST......C2ST + 0580: a1 3c a0 27 7b 43 46 47 44 0a 08 00 70 43 31 4c .<.'{CFGD...pC1L + 0590: 4d 88 43 32 53 54 01 00 70 43 33 4c 49 88 43 32 M.C2ST..pC3LI.C2 + 05a0: 53 54 0a 02 00 a4 43 32 53 54 a1 12 70 43 31 4c ST....C2ST..pC1L + 05b0: 4d 88 43 31 53 54 01 00 a4 43 31 53 54 a0 4d 10 M.C1ST...C1ST.M. + 05c0: 91 92 50 57 52 53 92 93 50 46 4c 56 46 4d 42 4c ..PWRS..PFLVFMBL + 05d0: a0 4f 05 7b 43 46 47 44 0a 20 00 a0 34 7b 43 46 .O.{CFGD. ..4{CF + 05e0: 47 44 0a 08 00 70 43 31 4c 48 88 43 33 53 54 01 GD...pC1LH.C3ST. + 05f0: 00 70 43 33 4c 49 88 43 33 53 54 0a 02 00 70 43 .pC3LI.C3ST...pC + 0600: 37 4c 49 88 43 33 53 54 0a 03 00 a4 43 33 53 54 7LI.C3ST....C3ST + 0610: a1 1f 70 43 31 4c 48 88 43 32 53 54 01 00 70 43 ..pC1LH.C2ST..pC + 0620: 37 4c 49 88 43 32 53 54 0a 02 00 a4 43 32 53 54 7LI.C2ST....C2ST + 0630: a0 4f 05 7b 43 46 47 44 0a 10 00 a0 34 7b 43 46 .O.{CFGD....4{CF + 0640: 47 44 0a 08 00 70 43 31 4c 48 88 43 33 53 54 01 GD...pC1LH.C3ST. + 0650: 00 70 43 33 4c 49 88 43 33 53 54 0a 02 00 70 43 .pC3LI.C3ST...pC + 0660: 36 4c 49 88 43 33 53 54 0a 03 00 a4 43 33 53 54 6LI.C3ST....C3ST + 0670: a1 1f 70 43 31 4c 48 88 43 32 53 54 01 00 70 43 ..pC1LH.C2ST..pC + 0680: 36 4c 49 88 43 32 53 54 0a 02 00 a4 43 32 53 54 6LI.C2ST....C2ST + 0690: a0 27 7b 43 46 47 44 0a 08 00 70 43 31 4c 48 88 .'{CFGD...pC1LH. + 06a0: 43 32 53 54 01 00 70 43 33 4c 49 88 43 32 53 54 C2ST..pC3LI.C2ST + 06b0: 0a 02 00 a4 43 32 53 54 a1 12 70 43 31 4c 48 88 ....C2ST..pC1LH. + 06c0: 43 31 53 54 01 00 a4 43 31 53 54 a0 36 7b 43 46 C1ST...C1ST.6{CF + 06d0: 47 44 0a 10 00 70 43 31 4c 48 88 43 32 53 54 01 GD...pC1LH.C2ST. + 06e0: 00 70 43 36 4c 49 88 43 32 53 54 0a 02 00 70 0a .pC6LI.C2ST...p. + 06f0: 02 88 83 88 43 32 53 54 0a 02 00 01 00 a4 43 32 ....C2ST......C2 + 0700: 53 54 a1 3c a0 27 7b 43 46 47 44 0a 08 00 70 43 ST.<.'{CFGD...pC + 0710: 31 4c 48 88 43 32 53 54 01 00 70 43 33 4c 49 88 1LH.C2ST..pC3LI. + 0720: 43 32 53 54 0a 02 00 a4 43 32 53 54 a1 12 70 43 C2ST....C2ST..pC + +SSDT4 @ 0x00000000 + 0000: 53 53 44 54 03 03 00 00 01 77 50 6d 52 65 66 00 SSDT.....wPmRef. + 0010: 41 70 49 73 74 00 00 00 00 30 00 00 49 4e 54 4c ApIst....0..INTL + 0020: 12 11 09 20 10 48 06 5c 2e 5f 50 52 5f 43 50 55 ... .H.\._PR_CPU + 0030: 31 14 16 5f 50 50 43 00 a4 5c 2f 03 5f 50 52 5f 1.._PPC..\/._PR_ + 0040: 43 50 55 30 5f 50 50 43 14 16 5f 50 43 54 00 a4 CPU0_PPC.._PCT.. + 0050: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 43 54 14 \/._PR_CPU0_PCT. + 0060: 16 5f 50 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._PSS..\/._PR_CP + 0070: 55 30 5f 50 53 53 14 16 5f 50 53 44 00 a4 5c 2f U0_PSS.._PSD..\/ + 0080: 03 5f 50 52 5f 43 50 55 30 5f 50 53 44 10 48 06 ._PR_CPU0_PSD.H. + 0090: 5c 2e 5f 50 52 5f 43 50 55 32 14 16 5f 50 50 43 \._PR_CPU2.._PPC + 00a0: 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 50 ..\/._PR_CPU0_PP + 00b0: 43 14 16 5f 50 43 54 00 a4 5c 2f 03 5f 50 52 5f C.._PCT..\/._PR_ + 00c0: 43 50 55 30 5f 50 43 54 14 16 5f 50 53 53 00 a4 CPU0_PCT.._PSS.. + 00d0: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 53 53 14 \/._PR_CPU0_PSS. + 00e0: 16 5f 50 53 44 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._PSD..\/._PR_CP + 00f0: 55 30 5f 50 53 44 10 48 06 5c 2e 5f 50 52 5f 43 U0_PSD.H.\._PR_C + 0100: 50 55 33 14 16 5f 50 50 43 00 a4 5c 2f 03 5f 50 PU3.._PPC..\/._P + 0110: 52 5f 43 50 55 30 5f 50 50 43 14 16 5f 50 43 54 R_CPU0_PPC.._PCT + 0120: 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 43 ..\/._PR_CPU0_PC + 0130: 54 14 16 5f 50 53 53 00 a4 5c 2f 03 5f 50 52 5f T.._PSS..\/._PR_ + 0140: 43 50 55 30 5f 50 53 53 14 16 5f 50 53 44 00 a4 CPU0_PSS.._PSD.. + 0150: 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 53 44 10 \/._PR_CPU0_PSD. + 0160: 48 06 5c 2e 5f 50 52 5f 43 50 55 34 14 16 5f 50 H.\._PR_CPU4.._P + 0170: 50 43 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f PC..\/._PR_CPU0_ + 0180: 50 50 43 14 16 5f 50 43 54 00 a4 5c 2f 03 5f 50 PPC.._PCT..\/._P + 0190: 52 5f 43 50 55 30 5f 50 43 54 14 16 5f 50 53 53 R_CPU0_PCT.._PSS + 01a0: 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 53 ..\/._PR_CPU0_PS + 01b0: 53 14 16 5f 50 53 44 00 a4 5c 2f 03 5f 50 52 5f S.._PSD..\/._PR_ + 01c0: 43 50 55 30 5f 50 53 44 10 48 06 5c 2e 5f 50 52 CPU0_PSD.H.\._PR + 01d0: 5f 43 50 55 35 14 16 5f 50 50 43 00 a4 5c 2f 03 _CPU5.._PPC..\/. + 01e0: 5f 50 52 5f 43 50 55 30 5f 50 50 43 14 16 5f 50 _PR_CPU0_PPC.._P + 01f0: 43 54 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f CT..\/._PR_CPU0_ + 0200: 50 43 54 14 16 5f 50 53 53 00 a4 5c 2f 03 5f 50 PCT.._PSS..\/._P + 0210: 52 5f 43 50 55 30 5f 50 53 53 14 16 5f 50 53 44 R_CPU0_PSS.._PSD + 0220: 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 50 53 ..\/._PR_CPU0_PS + 0230: 44 10 48 06 5c 2e 5f 50 52 5f 43 50 55 36 14 16 D.H.\._PR_CPU6.. + 0240: 5f 50 50 43 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 _PPC..\/._PR_CPU + 0250: 30 5f 50 50 43 14 16 5f 50 43 54 00 a4 5c 2f 03 0_PPC.._PCT..\/. + 0260: 5f 50 52 5f 43 50 55 30 5f 50 43 54 14 16 5f 50 _PR_CPU0_PCT.._P + 0270: 53 53 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f SS..\/._PR_CPU0_ + 0280: 50 53 53 14 16 5f 50 53 44 00 a4 5c 2f 03 5f 50 PSS.._PSD..\/._P + 0290: 52 5f 43 50 55 30 5f 50 53 44 10 48 06 5c 2e 5f R_CPU0_PSD.H.\._ + 02a0: 50 52 5f 43 50 55 37 14 16 5f 50 50 43 00 a4 5c PR_CPU7.._PPC..\ + 02b0: 2f 03 5f 50 52 5f 43 50 55 30 5f 50 50 43 14 16 /._PR_CPU0_PPC.. + 02c0: 5f 50 43 54 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 _PCT..\/._PR_CPU + 02d0: 30 5f 50 43 54 14 16 5f 50 53 53 00 a4 5c 2f 03 0_PCT.._PSS..\/. + 02e0: 5f 50 52 5f 43 50 55 30 5f 50 53 53 14 16 5f 50 _PR_CPU0_PSS.._P + 02f0: 53 44 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f SD..\/._PR_CPU0_ + 0300: 50 53 44 PSD + +SSDT5 @ 0x00000000 + 0000: 53 53 44 54 19 01 00 00 01 ed 50 6d 52 65 66 00 SSDT......PmRef. + 0010: 41 70 43 73 74 00 00 00 00 30 00 00 49 4e 54 4c ApCst....0..INTL + 0020: 12 11 09 20 10 22 5c 2e 5f 50 52 5f 43 50 55 31 ... ."\._PR_CPU1 + 0030: 14 16 5f 43 53 54 00 a4 5c 2f 03 5f 50 52 5f 43 .._CST..\/._PR_C + 0040: 50 55 30 5f 43 53 54 10 22 5c 2e 5f 50 52 5f 43 PU0_CST."\._PR_C + 0050: 50 55 32 14 16 5f 43 53 54 00 a4 5c 2f 03 5f 50 PU2.._CST..\/._P + 0060: 52 5f 43 50 55 30 5f 43 53 54 10 22 5c 2e 5f 50 R_CPU0_CST."\._P + 0070: 52 5f 43 50 55 33 14 16 5f 43 53 54 00 a4 5c 2f R_CPU3.._CST..\/ + 0080: 03 5f 50 52 5f 43 50 55 30 5f 43 53 54 10 22 5c ._PR_CPU0_CST."\ + 0090: 2e 5f 50 52 5f 43 50 55 34 14 16 5f 43 53 54 00 ._PR_CPU4.._CST. + 00a0: a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f 43 53 54 .\/._PR_CPU0_CST + 00b0: 10 22 5c 2e 5f 50 52 5f 43 50 55 35 14 16 5f 43 ."\._PR_CPU5.._C + 00c0: 53 54 00 a4 5c 2f 03 5f 50 52 5f 43 50 55 30 5f ST..\/._PR_CPU0_ + 00d0: 43 53 54 10 22 5c 2e 5f 50 52 5f 43 50 55 36 14 CST."\._PR_CPU6. + 00e0: 16 5f 43 53 54 00 a4 5c 2f 03 5f 50 52 5f 43 50 ._CST..\/._PR_CP + 00f0: 55 30 5f 43 53 54 10 22 5c 2e 5f 50 52 5f 43 50 U0_CST."\._PR_CP + 0100: 55 37 14 16 5f 43 53 54 00 a4 5c 2f 03 5f 50 52 U7.._CST..\/._PR + 0110: 5f 43 50 55 30 5f 43 53 54 _CPU0_CST diff -Nru fwts-14.02.00/fwts-test/wmi-0001/acpidump-0003.log fwts-14.03.00/fwts-test/wmi-0001/acpidump-0003.log --- fwts-14.02.00/fwts-test/wmi-0001/acpidump-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/acpidump-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,4609 @@ +DSDT @ 0x00000000 + 0000: 44 53 44 54 41 f7 00 00 01 7d 44 45 4c 4c 20 20 DSDTA....}DELL + 0010: 51 41 30 39 20 20 20 00 00 10 00 00 4c 4f 48 52 QA09 .....LOHR + 0020: 02 00 00 00 5b 80 4e 56 31 5f 01 0a 72 0a 02 5b ....[.NV1_..r..[ + 0030: 81 10 4e 56 31 5f 01 49 4e 44 58 08 44 41 54 41 ..NV1_.INDX.DATA + 0040: 08 5b 86 20 49 4e 44 58 44 41 54 41 01 00 40 60 .[. INDXDATA..@` + 0050: 42 52 47 41 04 00 04 42 52 47 44 04 00 14 53 34 BRGA...BRGD...S4 + 0060: 46 47 08 10 39 5f 50 52 5f 5b 83 0b 43 30 30 30 FG..9_PR_[..C000 + 0070: 00 10 08 00 00 06 5b 83 0b 43 30 30 31 01 10 08 ......[..C001... + 0080: 00 00 06 5b 83 0b 43 30 30 32 02 10 08 00 00 06 ...[..C002...... + 0090: 5b 83 0b 43 30 30 33 03 10 08 00 00 06 08 5f 53 [..C003......._S + 00a0: 30 5f 12 0a 04 0a 00 0a 00 0a 00 0a 00 08 5f 53 0_............_S + 00b0: 33 5f 12 0a 04 0a 03 0a 03 0a 00 0a 00 08 5f 53 3_............_S + 00c0: 34 5f 12 0a 04 0a 04 0a 04 0a 00 0a 00 08 5f 53 4_............_S + 00d0: 35 5f 12 0a 04 0a 05 0a 05 0a 00 0a 00 08 54 5a 5_............TZ + 00e0: 46 47 0a 00 5b 80 44 45 42 32 01 0a 80 0a 02 5b FG..[.DEB2.....[ + 00f0: 81 0b 44 45 42 32 02 50 38 30 48 10 5b 80 50 4d ..DEB2.P80H.[.PM + 0100: 49 4f 01 0b d6 0c 0a 02 5b 81 10 50 4d 49 4f 01 IO......[..PMIO. + 0110: 50 49 44 58 08 50 44 41 54 08 5b 80 50 30 31 5f PIDX.PDAT.[.P01_ + 0120: 01 0b 01 08 0a 01 5b 81 0b 50 30 31 5f 01 50 53 ......[..P01_.PS + 0130: 54 31 08 5b 80 53 50 52 54 01 0a b0 0a 02 5b 81 T1.[.SPRT.....[. + 0140: 10 53 50 52 54 11 53 53 4d 50 08 53 53 4d 44 08 .SPRT.SSMP.SSMD. + 0150: 5b 80 4f 4e 56 53 00 0c 98 0f 34 5e 0b 05 00 5b [.ONVS....4^...[ + 0160: 81 1f 4f 4e 56 53 00 42 52 49 44 08 50 57 52 53 ..ONVS.BRID.PWRS + 0170: 08 45 43 4f 4e 08 42 52 54 4c 08 4c 49 44 53 08 .ECON.BRTL.LIDS. + 0180: 10 4b 2f 5f 53 42 5f 08 4c 49 4e 58 0a 00 08 4f .K/_SB_.LINX...O + 0190: 53 53 50 0a 00 08 4f 53 54 42 ff 5b 80 4f 53 54 SSP...OSTB.[.OST + 01a0: 59 00 0c 18 0f 34 5e 0c 01 00 00 00 5b 81 0b 4f Y....4^.....[..O + 01b0: 53 54 59 00 54 50 4f 53 08 14 46 26 4f 53 54 50 STY.TPOS..F&OSTP + 01c0: 00 a0 49 25 93 4f 53 54 42 ff a0 49 16 5b 12 5f ..I%.OSTB..I.[._ + 01d0: 4f 53 49 60 70 0a 00 4f 53 54 42 70 0a 00 54 50 OSI`p..OSTBp..TP + 01e0: 4f 53 a0 21 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 OS.!_OSI.Windows + 01f0: 20 32 30 30 31 00 70 0a 08 4f 53 54 42 70 0a 08 2001.p..OSTBp.. + 0200: 54 50 4f 53 a0 23 5f 4f 53 49 0d 57 69 6e 64 6f TPOS.#_OSI.Windo + 0210: 77 73 20 32 30 30 31 2e 31 00 70 0a 20 4f 53 54 ws 2001.1.p. OST + 0220: 42 70 0a 20 54 50 4f 53 a0 25 5f 4f 53 49 0d 57 Bp. TPOS.%_OSI.W + 0230: 69 6e 64 6f 77 73 20 32 30 30 31 20 53 50 31 00 indows 2001 SP1. + 0240: 70 0a 10 4f 53 54 42 70 0a 10 54 50 4f 53 a0 25 p..OSTBp..TPOS.% + 0250: 5f 4f 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 _OSI.Windows 200 + 0260: 31 20 53 50 32 00 70 0a 11 4f 53 54 42 70 0a 11 1 SP2.p..OSTBp.. + 0270: 54 50 4f 53 a0 25 5f 4f 53 49 0d 57 69 6e 64 6f TPOS.%_OSI.Windo + 0280: 77 73 20 32 30 30 31 20 53 50 33 00 70 0a 12 4f ws 2001 SP3.p..O + 0290: 53 54 42 70 0a 12 54 50 4f 53 a0 21 5f 4f 53 49 STBp..TPOS.!_OSI + 02a0: 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 00 70 0a .Windows 2006.p. + 02b0: 40 4f 53 54 42 70 0a 40 54 50 4f 53 a0 2c 5f 4f @OSTBp.@TPOS.,_O + 02c0: 53 49 0d 57 69 6e 64 6f 77 73 20 32 30 30 36 20 SI.Windows 2006 + 02d0: 53 50 31 00 70 0a 01 4f 53 53 50 70 0a 40 4f 53 SP1.p..OSSPp.@OS + 02e0: 54 42 70 0a 40 54 50 4f 53 a0 28 5f 4f 53 49 0d TBp.@TPOS.(_OSI. + 02f0: 57 69 6e 64 6f 77 73 20 32 30 30 39 00 70 0a 01 Windows 2009.p.. + 0300: 4f 53 53 50 70 0a 50 4f 53 54 42 70 0a 50 54 50 OSSPp.POSTBp.PTP + 0310: 4f 53 a0 21 5f 4f 53 49 0d 4c 69 6e 75 78 00 70 OS.!_OSI.Linux.p + 0320: 0a 01 4c 49 4e 58 70 0a 80 4f 53 54 42 70 0a 80 ..LINXp..OSTBp.. + 0330: 54 50 4f 53 a1 4c 0c a0 49 0b 5b 12 5f 4f 53 5f TPOS.L..I.[._OS_ + 0340: 60 a0 2a 53 45 51 4c 5f 4f 53 5f 0d 4d 69 63 72 `.*SEQL_OS_.Micr + 0350: 6f 73 6f 66 74 20 57 69 6e 64 6f 77 73 00 70 0a osoft Windows.p. + 0360: 01 4f 53 54 42 70 0a 01 54 50 4f 53 a1 44 08 a0 .OSTBp..TPOS.D.. + 0370: 41 04 53 45 51 4c 5f 4f 53 5f 0d 4d 69 63 72 6f A.SEQL_OS_.Micro + 0380: 73 6f 66 74 20 57 69 6e 64 6f 77 73 4d 45 3a 20 soft WindowsME: + 0390: 4d 69 6c 6c 65 6e 6e 69 75 6d 20 45 64 69 74 69 Millennium Editi + 03a0: 6f 6e 00 70 0a 02 4f 53 54 42 70 0a 02 54 50 4f on.p..OSTBp..TPO + 03b0: 53 a1 3f a0 2d 53 45 51 4c 5f 4f 53 5f 0d 4d 69 S.?.-SEQL_OS_.Mi + 03c0: 63 72 6f 73 6f 66 74 20 57 69 6e 64 6f 77 73 20 crosoft Windows + 03d0: 4e 54 00 70 0a 04 4f 53 54 42 70 0a 04 54 50 4f NT.p..OSTBp..TPO + 03e0: 53 a1 0f 70 0a 00 4f 53 54 42 70 0a 00 54 50 4f S..p..OSTBp..TPO + 03f0: 53 a1 0f 70 0a 00 4f 53 54 42 70 0a 00 54 50 4f S..p..OSTBp..TPO + 0400: 53 5e 2f 03 50 43 49 30 4c 50 43 30 50 48 53 31 S^/.PCI0LPC0PHS1 + 0410: 0a b0 a0 08 93 54 50 4f 53 0a 80 a4 4f 53 54 42 .....TPOS...OSTB + 0420: 14 4b 05 53 45 51 4c 0a 70 87 68 60 70 87 69 61 .K.SEQL.p.h`p.ia + 0430: a0 07 92 93 60 61 a4 00 08 42 55 46 30 11 02 60 ....`a...BUF0..` + 0440: 70 68 42 55 46 30 08 42 55 46 31 11 02 60 70 69 phBUF0.BUF1..`pi + 0450: 42 55 46 31 70 00 62 a2 22 95 62 60 70 83 88 42 BUF1p.b.".b`p..B + 0460: 55 46 30 62 00 63 70 83 88 42 55 46 31 62 00 64 UF0b.cp..BUF1b.d + 0470: a0 07 92 93 63 64 a4 00 75 62 a4 01 08 4d 59 39 ....cd..ub...MY9 + 0480: 46 0a 00 14 43 08 5f 50 54 53 01 70 0a 01 4d 59 F...C._PTS.p..MY + 0490: 39 46 a0 05 93 68 0a 05 a0 21 93 68 0a 04 70 0a 9F...h...!.h..p. + 04a0: 01 53 34 46 47 70 00 5c 2f 04 5f 53 42 5f 50 43 .S4FGp.\/._SB_PC + 04b0: 49 30 53 4d 42 5f 50 48 59 44 a0 30 93 68 0a 03 I0SMB_PHYD.0.h.. + 04c0: 70 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 p.\/._SB_PCI0SMB + 04d0: 5f 52 53 54 55 70 0a 01 5c 2f 04 5f 53 42 5f 50 _RSTUp..\/._SB_P + 04e0: 43 49 30 53 4d 42 5f 42 4c 4e 4b a0 1b 93 68 0a CI0SMB_BLNK...h. + 04f0: 01 70 0a 02 5c 2f 04 5f 53 42 5f 50 43 49 30 53 .p..\/._SB_PCI0S + 0500: 4d 42 5f 42 4c 4e 4b 14 43 23 5f 57 41 4b 01 70 MB_BLNK.C#_WAK.p + 0510: 0a 00 4d 59 39 46 a0 0f 92 95 5c 2e 5f 53 42 5f ..MY9F....\._SB_ + 0520: 54 50 4f 53 0a 40 a0 0e 93 5c 2e 5f 53 42 5f 54 TPOS.@...\._SB_T + 0530: 50 4f 53 0a 80 70 54 5a 46 47 60 a0 0c 60 5c 2e POS..pTZFG`..`\. + 0540: 5f 54 5a 5f 49 4e 49 54 a0 4c 04 93 68 0a 03 5c _TZ_INIT.L..h..\ + 0550: 2e 5f 47 50 45 54 52 49 47 5c 2e 5f 47 50 45 57 ._GPETRIG\._GPEW + 0560: 4c 45 4e 70 0a 71 53 53 4d 50 70 01 5c 2f 04 5f LENp.qSSMPp.\/._ + 0570: 53 42 5f 50 43 49 30 53 4d 42 5f 52 53 54 55 70 SB_PCI0SMB_RSTUp + 0580: 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 ..\/._SB_PCI0SMB + 0590: 5f 53 52 42 54 a0 41 08 93 68 0a 04 a0 18 47 50 _SRBT.A..h....GP + 05a0: 49 43 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 IC\/._SB_PCI0LPC + 05b0: 30 44 53 50 49 5c 2e 5f 47 50 45 54 52 49 47 5c 0DSPI\._GPETRIG\ + 05c0: 2e 5f 47 50 45 57 4c 45 4e 70 01 5c 2f 04 5f 53 ._GPEWLENp.\/._S + 05d0: 42 5f 50 43 49 30 53 4d 42 5f 50 48 59 44 70 0a B_PCI0SMB_PHYDp. + 05e0: 0f 5c 2f 04 5f 53 42 5f 50 43 49 30 4c 50 43 30 .\/._SB_PCI0LPC0 + 05f0: 42 43 4d 44 70 0a ab 5c 2f 04 5f 53 42 5f 50 43 BCMDp..\/._SB_PC + 0600: 49 30 4c 50 43 30 53 4d 49 43 86 5c 2e 5f 53 42 I0LPC0SMIC.\._SB + 0610: 5f 50 57 52 42 0a 02 a0 20 93 68 0a 01 7b 50 53 _PWRB... .h..{PS + 0620: 54 31 0a 04 60 a0 12 93 60 0a 00 86 5c 2e 5f 53 T1..`...`...\._S + 0630: 42 5f 50 57 52 42 0a 02 70 0a 03 5c 2f 04 5f 53 B_PWRB..p..\/._S + 0640: 42 5f 50 43 49 30 53 4d 42 5f 42 4c 4e 4b 86 5c B_PCI0SMB_BLNK.\ + 0650: 2e 5f 53 42 5f 50 43 49 30 0a 00 5b 23 5c 2f 05 ._SB_PCI0..[#\/. + 0660: 5f 53 42 5f 50 43 49 30 4c 50 43 30 45 43 30 5f _SB_PCI0LPC0EC0_ + 0670: 4d 55 54 30 ff ff 70 5c 2f 05 5f 53 42 5f 50 43 MUT0..p\/._SB_PC + 0680: 49 30 4c 50 43 30 45 43 30 5f 41 43 49 4e 50 57 I0LPC0EC0_ACINPW + 0690: 52 53 5b 27 5c 2f 05 5f 53 42 5f 50 43 49 30 4c RS['\/._SB_PCI0L + 06a0: 50 43 30 45 43 30 5f 4d 55 54 30 86 5c 2e 5f 53 PC0EC0_MUT0.\._S + 06b0: 42 5f 41 43 41 44 0a 80 5b 23 5c 2f 05 5f 53 42 B_ACAD..[#\/._SB + 06c0: 5f 50 43 49 30 4c 50 43 30 45 43 30 5f 4d 55 54 _PCI0LPC0EC0_MUT + 06d0: 30 ff ff 70 5c 2f 05 5f 53 42 5f 50 43 49 30 4c 0..p\/._SB_PCI0L + 06e0: 50 43 30 45 43 30 5f 42 30 49 4e 5c 2f 03 5f 53 PC0EC0_B0IN\/._S + 06f0: 42 5f 42 41 54 54 42 53 54 41 5b 27 5c 2f 05 5f B_BATTBSTA['\/._ + 0700: 53 42 5f 50 43 49 30 4c 50 43 30 45 43 30 5f 4d SB_PCI0LPC0EC0_M + 0710: 55 54 30 86 5c 2e 5f 53 42 5f 42 41 54 54 0a 80 UT0.\._SB_BATT.. + 0720: 70 0a 00 5c 2e 5f 53 42 5f 57 43 41 31 5c 2e 5f p..\._SB_WCA1\._ + 0730: 53 42 5f 46 4f 57 4d 0a 11 0a 0b 10 4a 09 5f 53 SB_FOWM.....J._S + 0740: 49 5f 14 43 09 5f 53 53 54 01 a0 21 93 68 0a 01 I_.C._SST..!.h.. + 0750: 70 0d 3d 3d 3d 3d 3d 20 53 53 54 20 57 6f 72 6b p.===== SST Work + 0760: 69 6e 67 20 3d 3d 3d 3d 3d 00 5b 31 a0 20 93 68 ing =====.[1. .h + 0770: 0a 02 70 0d 3d 3d 3d 3d 3d 20 53 53 54 20 57 61 ..p.===== SST Wa + 0780: 6b 69 6e 67 20 3d 3d 3d 3d 3d 00 5b 31 a0 22 93 king =====.[1.". + 0790: 68 0a 03 70 0d 3d 3d 3d 3d 3d 20 53 53 54 20 53 h..p.===== SST S + 07a0: 6c 65 65 70 69 6e 67 20 3d 3d 3d 3d 3d 00 5b 31 leeping =====.[1 + 07b0: a0 25 93 68 0a 04 70 0d 3d 3d 3d 3d 3d 20 53 53 .%.h..p.===== SS + 07c0: 54 20 53 6c 65 65 70 69 6e 67 20 53 34 20 3d 3d T Sleeping S4 == + 07d0: 3d 3d 3d 00 5b 31 08 47 50 49 43 0a 00 14 22 5f ===.[1.GPIC..."_ + 07e0: 50 49 43 01 70 68 47 50 49 43 a0 15 68 5c 2f 04 PIC.phGPIC..h\/. + 07f0: 5f 53 42 5f 50 43 49 30 4c 50 43 30 44 53 50 49 _SB_PCI0LPC0DSPI + 0800: 10 83 16 0e 5f 53 42 5f 5b 82 4a 7d 41 4d 57 30 ...._SB_[.J}AMW0 + 0810: 5b 01 57 4d 49 58 01 08 5f 48 49 44 0d 50 4e 50 [.WMIX.._HID.PNP + 0820: 30 43 31 34 00 08 5f 55 49 44 0a 00 14 13 53 54 0C14.._UID....ST + 0830: 42 59 03 8c 68 69 54 4d 50 5f 70 6a 54 4d 50 5f BY..hiTMP_pjTMP_ + 0840: 14 13 53 54 57 44 03 8b 68 69 54 4d 50 5f 70 6a ..STWD..hiTMP_pj + 0850: 54 4d 50 5f 14 13 53 54 44 57 03 8a 68 69 54 4d TMP_..STDW..hiTM + 0860: 50 5f 70 6a 54 4d 50 5f 14 1a 43 4c 42 59 01 70 P_pjTMP_..CLBY.p + 0870: 0a 00 60 a2 0f 95 60 87 68 53 54 42 59 68 60 0a ..`...`.hSTBYh`. + 0880: 00 75 60 08 5f 57 44 47 11 4c 07 0a 78 bc dc 9d .u`._WDG.L..x... + 0890: 8d 97 a9 da 11 b0 12 b6 22 a1 ef 54 92 41 41 01 ........"..T.AA. + 08a0: 00 ce 93 05 a8 97 a9 da 11 b0 12 b6 22 a1 ef 54 ............"..T + 08b0: 92 42 41 01 02 70 76 8c dd b5 1c db 11 a9 8b 66 .BA..pv........f + 08c0: 9a 0c 20 00 08 42 43 01 02 94 59 bb 9d 97 a9 da .. ..BC...Y..... + 08d0: 11 b0 12 b6 22 a1 ef 54 92 d0 00 01 08 e0 6c 77 ...."..T......lw + 08e0: a3 88 1e db 11 a9 8b 08 00 20 0c 9a 66 42 43 01 ......... ..fBC. + 08f0: 00 21 12 90 05 66 d5 d1 11 b2 f0 00 a0 c9 06 29 .!...f.........) + 0900: 10 4d 4f 01 00 08 49 4e 46 4f 11 03 0a 80 8b 49 .MO...INFO.....I + 0910: 4e 46 4f 0a 00 49 4e 46 30 8b 49 4e 46 4f 0a 02 NFO..INF0.INFO.. + 0920: 49 4e 46 31 8b 49 4e 46 4f 0a 04 49 4e 46 32 8b INF1.INFO..INF2. + 0930: 49 4e 46 4f 0a 06 49 4e 46 33 8b 49 4e 46 4f 0a INFO..INF3.INFO. + 0940: 08 49 4e 46 34 8b 49 4e 46 4f 0a 0a 49 4e 46 35 .INF4.INFO..INF5 + 0950: 8b 49 4e 46 4f 0a 0c 49 4e 46 36 8b 49 4e 46 4f .INFO..INF6.INFO + 0960: 0a 0e 49 4e 46 37 08 45 43 44 30 0a 00 14 0e 57 ..INF7.ECD0....W + 0970: 45 44 30 01 70 68 45 43 44 30 a4 68 14 08 57 43 ED0.phECD0.h..WC + 0980: 41 41 01 a4 68 14 4b 06 57 51 41 41 01 5b 23 57 AA..h.K.WQAA.[#W + 0990: 4d 49 58 ff ff 43 4c 42 59 49 4e 46 4f a0 0c 92 MIX..CLBYINFO... + 09a0: 93 68 0a 00 70 49 4e 46 4f 61 a1 3e 53 54 44 57 .h..pINFOa.>STDW + 09b0: 49 4e 46 4f 0a 00 0c 44 45 4c 4c 53 54 44 57 49 INFO...DELLSTDWI + 09c0: 4e 46 4f 0a 04 0c 20 57 4d 49 53 54 44 57 49 4e NFO... WMISTDWIN + 09d0: 46 4f 0a 08 0a 00 53 54 44 57 49 4e 46 4f 0a 0c FO....STDWINFO.. + 09e0: 0b 00 10 70 49 4e 46 4f 61 5b 27 57 4d 49 58 a4 ...pINFOa['WMIX. + 09f0: 61 14 08 57 53 41 41 02 a4 69 14 0d 57 4d 49 5f a..WSAA..i..WMI_ + 0a00: 02 a4 50 48 57 4d 68 69 14 28 57 4d 42 41 03 8a ..PHWMhi.(WMBA.. + 0a10: 6a 0a 28 57 42 55 46 72 57 42 55 46 0a 2c 61 a0 j.(WBUFrWBUF.,a. + 0a20: 0f 92 94 61 0b 00 10 70 57 4d 49 5f 6a 61 60 a4 ...a...pWMI_ja`. + 0a30: 60 14 08 57 4d 42 43 03 a4 6a 14 24 5f 57 45 44 `..WMBC..j.$_WED + 0a40: 01 a0 0a 93 68 0a d0 a4 49 4e 46 4f 43 4c 42 59 ....h...INFOCLBY + 0a50: 49 4e 46 4f 70 68 49 4e 46 4f a4 49 4e 46 4f 08 INFOphINFO.INFO. + 0a60: 57 51 4d 4f 11 4f 57 0b 7a 05 46 4f 4d 42 01 00 WQMO.OW.z.FOMB.. + 0a70: 00 00 6a 05 00 00 98 1c 00 00 44 53 00 01 1a 7d ..j.......DS...} + 0a80: da 54 18 d9 8d 00 01 06 18 42 10 0f 10 22 21 04 .T.......B..."!. + 0a90: 12 01 a1 c8 2c 0c 86 10 38 2e 84 1c 40 48 1c 14 ....,...8...@H.. + 0aa0: 4a 08 84 fa 13 c8 af 00 84 0e 05 c8 14 60 50 80 J............`P. + 0ab0: 53 04 11 f4 2a c0 a6 00 93 02 2c 0a d0 2e c0 b2 S...*.....,..... + 0ac0: 00 dd 02 a4 c3 12 91 e0 28 31 e0 28 9d d8 c2 0d ........(1.(.... + 0ad0: 1b bc 50 14 cd 20 4a 82 ca 05 f8 46 10 78 b9 02 ..P.. J....F.x.. + 0ae0: 24 4f 40 9a 05 18 16 60 5d 80 ec 21 50 a9 43 40 $O@....`]..!P.C@ + 0af0: c9 19 02 6a 00 ad 4e 40 f8 95 4e 09 49 10 ce 58 ...j..N@..N.I..X + 0b00: c5 e3 6b 16 4d cf 49 ce 31 e4 78 5c e8 41 f0 40 ..k.M.I.1.x\.A.@ + 0b10: 0a 40 58 78 08 45 80 41 49 18 0b 75 31 6a d4 48 .@Xx.E.AI..u1j.H + 0b20: d9 80 0c 51 da a8 d1 03 3a bf 23 39 bb a3 3b 92 ...Q....:.#9..;. + 0b30: 04 46 3d a6 63 2c 6c 46 42 8d d1 1c 14 81 c6 0d .F=.c,lFB....... + 0b40: da 12 61 35 ae d8 67 66 e1 c3 12 c6 11 1c 58 82 ..a5..gf......X. + 0b50: 46 d1 34 c7 b3 0d 91 e0 20 42 63 64 40 c8 f3 b0 F.4..... Bcd@... + 0b60: 05 7a e4 09 ec 1e 51 0a 11 34 df 13 a9 51 80 36 .z....Q..4...Q.6 + 0b70: 0c d9 3a 1b 68 a8 b1 1a 43 11 44 84 a0 51 0c 16 ..:.h...C.D..Q.. + 0b80: 21 54 88 ff 7f 94 a8 a7 14 24 6a 65 20 42 0b 66 !T.......$je B.f + 0b90: 04 66 7f 10 24 c6 99 41 87 05 cb 00 91 11 41 a3 .f..$..A......A. + 0ba0: 61 67 01 0f c7 33 69 7e 62 1a 9c 09 c6 86 90 06 ag...3i~b....... + 0bb0: 08 89 3a 38 50 02 4b 19 38 b1 3d 2e 8d ef 8c a3 ..:8P.K.8.=..... + 0bc0: 86 38 f5 33 f3 3f c2 5b f0 11 80 8f c1 83 3d 84 .8.3.?.[......=. + 0bd0: 80 47 c8 ce 00 06 c4 7b 9f 34 99 8b cf 02 30 86 .G.....{.4....0. + 0be0: 0f d7 f8 28 34 1e 76 3e 60 e3 e2 f0 3e 14 9c 70 ...(4.v>`...>..p + 0bf0: b1 20 0a 00 21 59 e7 03 f4 ac 8f 2d e0 c3 40 b3 . ..!Y.....-..@. + 0c00: 77 08 42 f0 22 e0 a3 83 8f 1b 1e f7 f3 06 18 0e w.B."........... + 0c10: 07 1e 8e 4f 1b c0 65 04 5c da 93 c2 04 92 fc 04 ...O..e.\....... + 0c20: 90 18 18 d4 81 c0 07 0b b8 92 e0 50 c3 f3 c4 1e ...........P.... + 0c30: 10 fe ff 47 79 22 2f 06 9e fe 63 00 8c 03 82 a7 ...Gy"/...c..... + 0c40: 75 52 be 79 3c 48 78 50 61 12 f8 94 c0 d0 f8 71 uR.y + 0cc0: 4e f8 5c 80 77 0d a8 19 fa b0 01 e7 d0 81 3f 4d N.\.w.........?M + 0cd0: e0 0f 16 f8 f1 f8 9a c3 26 9c c0 f2 07 81 1a 99 ........&....... + 0ce0: a1 3d cb d3 7a 0d f0 69 c7 04 3e 6f f8 ff ff cf .=..z..i..>o.... + 0cf0: f1 78 c0 af f8 74 41 ee 0a 9e af cf 2e cc c6 78 .x...tA........x + 0d00: 50 a3 f0 01 07 77 76 f1 11 c0 67 17 e0 39 89 67 P....wv...g..9.g + 0d10: 09 f0 1e 02 7c 22 89 f7 b0 05 63 c4 78 c8 33 ae ....|"....c.x.3. + 0d20: 7a 18 ba 08 58 dd 7d 05 75 f4 02 13 d4 6b 06 ee z...X.}.u....k.. + 0d30: f4 02 7c 4e 59 f0 fe ff a7 2c e0 7e 55 e0 47 14 ..|NY....,.~U.G. + 0d40: 30 40 76 76 3a 11 c2 7b c9 73 88 6f 57 3e 98 04 0@vv:..{.s.oW>.. + 0d50: 79 0e 88 f0 94 c5 ef 03 51 62 1e 50 a4 28 46 0c y.......Qb.P.(F. + 0d60: f2 84 e5 eb 49 0c 43 07 0b 17 3e c2 53 16 60 f1 ....I.C...>.S.`. + 0d70: 92 85 39 65 c1 7c 1b f8 94 05 8e ff ff 29 0b 5c ..9e.|.......).\ + 0d80: e3 7e ca 02 66 d2 9f 02 3e d5 f8 09 a0 e8 07 0b .~..f...>....... + 0d90: 0a e3 53 16 e0 4a de 01 01 34 67 27 df 16 0c 76 ..S..J...4g'...v + 0da0: cc be 64 f8 94 08 86 43 86 ef 54 87 f2 c8 f1 14 ..d....C..T..... + 0db0: e0 23 16 d8 e3 1c 03 74 5c f1 11 cb ff ff 23 16 .#.....t\.....#. + 0dc0: c0 8d 03 08 fe d4 01 eb 1e 10 d6 87 0e e0 21 fb ..............!. + 0dd0: 21 a0 33 8c 25 83 c8 c6 b9 86 8e d1 e2 17 aa 9b !.3.%........... + 0de0: 42 ec 83 e1 b2 81 04 ea e1 5a 30 85 44 d1 68 34 B........Z0.D.h4 + 0df0: 06 26 30 82 33 88 01 9d 11 42 87 32 9c 8a f3 10 .&0.3....B.2.... + 0e00: ea ff 4f 30 d4 8d 89 ce ce f3 e7 b7 11 9f 08 0c ..O0............ + 0e10: ec 2b c4 5b 06 58 86 e5 c5 3d 01 1c e3 49 26 a8 .+.[.X...=...I&. + 0e20: e6 58 83 9a 83 af 02 6f 64 26 f0 15 0c 6c a7 19 .X.....od&...l.. + 0e30: 8c be 3b 01 28 80 7c 14 f0 7d f9 6d 80 cd e2 95 ..;.(.|..}.m.... + 0e40: d9 68 3e 7f 22 86 8e 12 33 74 0a e2 a1 3b e8 d0 .h>."...3t...;.. + 0e50: d1 c7 01 9f ac 70 c1 0e 5f d0 26 77 b4 27 e6 59 .....p.._.&w.'.Y + 0e60: 78 9e b8 b9 83 e9 88 04 63 f0 98 c9 83 59 e0 e4 x.......c....Y.. + 0e70: 41 f1 ff 9f 3c 4c 78 4c d8 c3 21 3d 74 78 64 7c A....0..9..g.;.3.. + 0e90: d6 23 e7 b0 46 0b 7b c0 cf 21 be c3 f8 c0 c3 60 .#..F.{..!.....` + 0ea0: 7d 7a 01 c7 f1 0b fe 69 00 3c 07 10 8f e1 05 84 }z.....i.<...... + 0eb0: 13 14 7d fe a5 42 17 27 99 30 a8 d3 14 e0 ea f4 ..}..B.'.0...... + 0ec0: 06 9e ab 3e ee 2c 85 fb ff 9f a5 60 1c 7e 7d 81 ...>.,.....`.~}. + 0ed0: f7 5d ca 08 07 f2 2c 05 f6 f8 cf 10 1d 02 7c 96 .]....,.......|. + 0ee0: 02 f8 21 e4 4c 09 e5 3c 83 0b 7e a6 04 5a ff ff ..!.L..<..~..Z.. + 0ef0: 53 08 f8 8f 11 3e e2 c0 3d 54 f2 00 87 30 28 87 S....>..=T...0(. + 0f00: 4a b8 c7 5f 70 1c 8e f9 39 03 77 24 03 1e a7 67 J.._p...9.w$...g + 0f10: dc 28 3d 04 3e 80 56 e7 46 4e 3e a7 84 3b 12 f0 .(=.>.V.FN>..;.. + 0f20: 29 e1 06 80 09 70 ce 04 d4 fc ff cf 99 80 01 90 )....p.......... + 0f30: 08 ef 0a 51 df 93 0d f1 9c cc 70 5e 22 1e 61 9e ...Q......p^".a. + 0f40: 93 c1 79 ce 04 f8 f2 ff 3f d6 c3 be 29 04 7f 0a ..y.....?...)... + 0f50: 01 26 e2 cf 99 54 f8 39 13 da 5c 3c 6d 9f 33 01 .&...T.9..\..>.p.. + 6830: 50 49 30 5f 70 50 49 5f 5f 60 70 0a 00 61 a2 10 PI0_pPI__`p..a.. + 6840: 60 a0 08 7b 60 0a 01 00 75 61 7a 60 0a 01 60 70 `..{`...uaz`..`p + 6850: 76 61 4e 50 4f 54 70 0a 00 57 52 45 4e 5b 82 46 vaNPOTp..WREN[.F + 6860: 06 50 52 54 31 08 5f 41 44 52 0a 01 14 22 5f 53 .PRT1._ADR..."_S + 6870: 54 41 00 a0 16 93 5e 5e 5e 2e 41 46 44 5f 4f 44 TA....^^^.AFD_OD + 6880: 5a 50 0c 01 00 00 80 a4 0a 00 a1 04 a4 0a 0f 14 ZP.............. + 6890: 0e 44 49 53 5f 00 45 4e 50 5f 0a 01 0a 00 14 0e .DIS_.ENP_...... + 68a0: 45 4e 41 5f 00 45 4e 50 5f 0a 01 0a 01 5b 82 16 ENA_.ENP_....[.. + 68b0: 4f 44 44 5f 08 5f 41 44 52 0a 00 14 09 5f 52 4d ODD_._ADR...._RM + 68c0: 56 00 a4 0a 01 5b 82 24 50 52 54 32 08 5f 41 44 V....[.$PRT2._AD + 68d0: 52 0a 02 5b 82 16 45 53 41 54 08 5f 41 44 52 0a R..[..ESAT._ADR. + 68e0: 00 14 09 5f 52 4d 56 00 a4 0a 01 5b 82 24 50 52 ..._RMV....[.$PR + 68f0: 54 33 08 5f 41 44 52 0a 03 5b 82 16 45 53 41 54 T3._ADR..[..ESAT + 6900: 08 5f 41 44 52 0a 00 14 09 5f 52 4d 56 00 a4 0a ._ADR...._RMV... + 6910: 01 5b 82 24 50 52 54 34 08 5f 41 44 52 0a 04 5b .[.$PRT4._ADR..[ + 6920: 82 16 45 53 41 54 08 5f 41 44 52 0a 00 14 09 5f ..ESAT._ADR...._ + 6930: 52 4d 56 00 a4 0a 01 5b 82 24 50 52 54 35 08 5f RMV....[.$PRT5._ + 6940: 41 44 52 0a 05 5b 82 16 45 53 41 54 08 5f 41 44 ADR..[..ESAT._AD + 6950: 52 0a 00 14 09 5f 52 4d 56 00 a4 0a 01 5b 82 48 R...._RMV....[.H + 6960: 87 53 4d 42 5f 08 5f 41 44 52 0c 00 00 14 00 5b .SMB_._ADR.....[ + 6970: 80 53 42 52 56 02 0a 08 0b 00 01 5b 81 48 04 53 .SBRV......[.H.S + 6980: 42 52 56 00 52 56 49 44 08 00 48 05 48 50 42 53 BRV.RVID..H.HPBS + 6990: 20 00 48 15 00 03 48 49 48 50 01 00 44 0f 49 31 .H...HIHP..D.I1 + 69a0: 46 5f 01 49 31 32 46 01 00 0e 00 0a 48 50 45 54 F_.I12F.....HPET + 69b0: 01 00 45 0e 00 02 47 33 31 4f 01 00 45 2f 00 06 ..E...G31O..E/.. + 69c0: 41 43 49 52 01 5b 80 50 4d 49 4f 01 0b d6 0c 0a ACIR.[.PMIO..... + 69d0: 02 5b 81 10 50 4d 49 4f 01 49 4e 50 4d 08 44 41 .[..PMIO.INPM.DA + 69e0: 50 4d 08 5b 86 1a 49 4e 50 4d 44 41 50 4d 01 00 PM.[..INPMDAPM.. + 69f0: 40 12 4d 4d 53 4f 20 00 40 1c 50 31 45 42 10 5b @.MMSO .@.P1EB.[ + 6a00: 80 45 52 4d 4d 00 4d 4d 53 4f 0b 00 10 5b 81 45 .ERMM.MMSO...[.E + 6a10: 71 45 52 4d 4d 00 00 40 80 00 05 50 30 31 45 01 qERMM..@...P01E. + 6a20: 50 30 31 4f 01 50 30 31 49 01 00 20 00 05 50 30 P01O.P01I.. ..P0 + 6a30: 36 45 01 50 30 36 4f 01 50 30 36 49 01 00 05 50 6E.P06O.P06I...P + 6a40: 30 37 45 01 50 30 37 4f 01 50 30 37 49 01 00 18 07E.P07O.P07I... + 6a50: 00 05 50 30 42 45 01 50 30 42 4f 01 50 30 42 49 ..P0BE.P0BO.P0BI + 6a60: 01 00 05 50 30 43 45 01 50 30 43 4f 01 50 30 43 ...P0CE.P0CO.P0C + 6a70: 49 01 00 05 50 30 44 45 01 50 30 44 4f 01 50 30 I...P0DE.P0DO.P0 + 6a80: 44 49 01 00 05 50 30 45 45 01 50 30 45 4f 01 50 DI...P0EE.P0EO.P + 6a90: 30 45 49 01 00 05 50 30 46 45 01 50 30 46 4f 01 0EI...P0FE.P0FO. + 6aa0: 50 30 46 49 01 00 05 50 31 30 45 01 50 31 30 4f P0FI...P10E.P10O + 6ab0: 01 50 31 30 49 01 00 18 00 05 50 31 34 45 01 50 .P10I.....P14E.P + 6ac0: 31 34 4f 01 50 31 34 49 01 00 05 50 31 35 45 01 14O.P14I...P15E. + 6ad0: 50 31 35 4f 01 50 31 35 49 01 00 05 50 31 36 45 P15O.P15I...P16E + 6ae0: 01 50 31 36 4f 01 50 31 36 49 01 00 05 50 31 37 .P16O.P16I...P17 + 6af0: 45 01 50 31 37 4f 01 50 31 37 49 01 00 18 00 05 E.P17O.P17I..... + 6b00: 50 31 42 45 01 50 31 42 4f 01 50 31 42 49 01 00 P1BE.P1BO.P1BI.. + 6b10: 05 50 31 43 45 01 50 31 43 4f 01 50 31 43 49 01 .P1CE.P1CO.P1CI. + 6b20: 00 18 00 05 50 32 30 45 01 50 32 30 4f 01 50 32 ....P20E.P20O.P2 + 6b30: 30 49 01 00 05 50 32 31 45 01 50 32 31 4f 01 50 0I...P21E.P21O.P + 6b40: 32 31 49 01 00 05 50 32 32 45 01 50 32 32 4f 01 21I...P22E.P22O. + 6b50: 50 32 32 49 01 00 05 50 32 33 45 01 50 32 33 4f P22I...P23E.P23O + 6b60: 01 50 32 33 49 01 00 28 00 01 50 32 39 48 01 50 .P23I..(..P29H.P + 6b70: 32 39 53 01 50 32 39 55 01 50 32 39 44 01 50 32 29S.P29U.P29D.P2 + 6b80: 39 45 01 50 32 39 4f 01 50 32 39 49 01 00 10 00 9E.P29O.P29I.... + 6b90: 05 50 32 43 45 01 50 32 43 4f 01 50 32 43 49 01 .P2CE.P2CO.P2CI. + 6ba0: 00 05 50 32 44 45 01 50 32 44 4f 01 50 32 44 49 ..P2DE.P2DO.P2DI + 6bb0: 01 00 01 50 32 45 48 01 50 32 45 53 01 50 32 45 ...P2EH.P2ES.P2E + 6bc0: 55 01 50 32 45 44 01 50 32 45 45 01 50 32 45 4f U.P2ED.P2EE.P2EO + 6bd0: 01 50 32 45 49 01 00 20 00 05 50 33 33 45 01 50 .P2EI.. ..P33E.P + 6be0: 33 33 4f 01 50 33 33 49 01 00 08 00 05 50 33 35 33O.P33I.....P35 + 6bf0: 45 01 50 33 35 4f 01 50 33 35 49 01 00 08 00 05 E.P35O.P35I..... + 6c00: 50 33 37 45 01 50 33 37 4f 01 50 33 37 49 01 00 P37E.P37O.P37I.. + 6c10: 08 00 05 50 33 39 45 01 50 33 39 4f 01 50 33 39 ...P39E.P39O.P39 + 6c20: 49 01 00 08 00 05 50 33 42 45 01 50 33 42 4f 01 I.....P3BE.P3BO. + 6c30: 50 33 42 49 01 00 08 50 4f 33 44 08 00 01 50 33 P3BI...PO3D...P3 + 6c40: 45 48 01 50 33 45 53 01 50 33 45 55 01 50 33 45 EH.P3ES.P3EU.P3E + 6c50: 44 01 50 33 45 45 01 50 33 45 4f 01 50 33 45 49 D.P3EE.P3EO.P3EI + 6c60: 01 00 01 50 33 46 48 01 50 33 46 53 01 50 33 46 ...P3FH.P3FS.P3F + 6c70: 55 01 50 33 46 44 01 50 33 46 45 01 50 33 46 4f U.P3FD.P3FE.P3FO + 6c80: 01 50 33 46 49 01 00 01 50 34 30 48 01 50 34 30 .P3FI...P40H.P40 + 6c90: 53 01 50 34 30 55 01 50 34 30 44 01 50 34 30 45 S.P40U.P40D.P40E + 6ca0: 01 50 34 30 4f 01 50 34 30 49 01 00 08 00 05 50 .P40O.P40I.....P + 6cb0: 34 32 45 01 50 34 32 4f 01 50 34 32 49 01 00 40 42E.P42O.P42I..@ + 6cc0: 11 00 07 47 45 30 35 01 00 05 50 36 36 45 01 50 ...GE05...P66E.P + 6cd0: 36 36 4f 01 50 36 36 49 01 00 20 47 45 31 31 08 66O.P66I.. GE11. + 6ce0: 00 05 50 36 43 45 01 50 36 43 4f 01 50 36 43 49 ..P6CE.P6CO.P6CI + 6cf0: 01 00 10 00 07 47 45 31 35 01 00 07 47 45 31 36 .....GE15...GE16 + 6d00: 01 00 20 47 45 32 31 08 00 07 47 45 32 32 01 00 .. GE21...GE22.. + 6d10: 48 17 50 4f 41 36 08 00 18 00 05 50 41 41 45 01 H.POA6.....PAAE. + 6d20: 50 41 41 4f 01 50 41 41 49 01 00 20 00 05 50 41 PAAO.PAAI.. ..PA + 6d30: 46 45 01 50 41 46 4f 01 50 41 46 49 01 00 05 50 FE.PAFO.PAFI...P + 6d40: 42 30 45 01 50 42 30 4f 01 50 42 30 49 01 00 05 B0E.PB0O.PB0I... + 6d50: 50 42 31 45 01 50 42 31 4f 01 50 42 31 49 01 00 PB1E.PB1O.PB1I.. + 6d60: 05 50 42 32 45 01 50 42 32 4f 01 50 42 32 49 01 .PB2E.PB2O.PB2I. + 6d70: 00 05 50 42 33 45 01 50 42 33 4f 01 50 42 33 49 ..PB3E.PB3O.PB3I + 6d80: 01 00 05 50 42 34 45 01 50 42 34 4f 01 50 42 34 ...PB4E.PB4O.PB4 + 6d90: 49 01 00 05 50 42 35 45 01 50 42 35 4f 01 50 42 I...PB5E.PB5O.PB + 6da0: 35 49 01 00 05 50 42 36 45 01 50 42 36 4f 01 50 5I...PB6E.PB6O.P + 6db0: 42 36 49 01 00 40 07 00 05 50 43 35 45 01 50 43 B6I..@...PC5E.PC + 6dc0: 35 4f 01 50 43 35 49 01 00 08 00 05 50 43 37 45 5O.PC5I.....PC7E + 6dd0: 01 50 43 37 4f 01 50 43 37 49 01 00 05 50 43 38 .PC7O.PC7I...PC8 + 6de0: 45 01 50 43 38 4f 01 50 43 38 49 01 00 48 1b 00 E.PC8O.PC8I..H.. + 6df0: 01 45 30 31 53 01 00 03 45 30 35 53 01 00 09 45 .E01S...E05S...E + 6e00: 31 35 53 01 45 31 36 53 01 00 05 45 32 32 53 01 15S.E16S...E22S. + 6e10: 00 09 00 01 45 30 31 45 01 00 03 45 30 35 45 01 ....E01E...E05E. + 6e20: 00 09 45 31 35 45 01 45 31 36 45 01 00 05 45 32 ..E15E.E16E...E2 + 6e30: 32 45 01 00 09 00 01 45 30 31 43 01 00 03 45 30 2E.....E01C...E0 + 6e40: 35 43 01 00 09 45 31 35 43 01 45 31 36 43 01 00 5C...E15C.E16C.. + 6e50: 05 45 32 32 43 01 00 03 45 32 36 43 01 00 05 00 .E22C...E26C.... + 6e60: 01 45 30 31 4c 01 00 03 45 30 35 4c 01 00 09 45 .E01L...E05L...E + 6e70: 31 35 4c 01 45 31 36 4c 01 00 05 45 32 32 4c 01 15L.E16L...E22L. + 6e80: 00 49 3c 00 01 43 4c 50 53 01 00 46 08 00 07 47 .I<..CLPS..F...G + 6e90: 31 35 41 01 00 40 09 00 06 53 52 42 54 02 00 18 15A..@...SRBT... + 6ea0: 00 02 53 4c 50 53 02 00 0c 00 04 53 50 42 54 02 ..SLPS.....SPBT. + 6eb0: 00 4a 57 00 06 4d 54 33 41 01 00 41 0a 45 50 4e .JW..MT3A..A.EPN + 6ec0: 4d 01 44 50 50 46 01 00 4e 21 00 06 50 57 44 45 M.DPPF..N!..PWDE + 6ed0: 01 00 11 00 05 41 4c 4c 53 01 00 4a 04 00 02 54 .....ALLS..J...T + 6ee0: 46 54 45 01 00 45 0b 42 4c 4e 4b 02 00 46 08 50 FTE..E.BLNK..F.P + 6ef0: 48 59 44 01 00 01 52 53 54 55 01 55 53 35 52 01 HYD...RSTU.US5R. + 6f00: 00 4c 07 46 30 43 54 08 46 30 4d 53 08 46 30 46 .L.F0CT.F0MS.F0F + 6f10: 51 08 46 30 4c 44 08 46 30 4d 44 08 46 30 4d 50 Q.F0LD.F0MD.F0MP + 6f20: 08 4c 54 30 4c 08 4c 54 30 48 08 4d 54 30 4c 08 .LT0L.LT0H.MT0L. + 6f30: 4d 54 30 48 08 48 54 30 4c 08 48 54 30 48 08 4c MT0H.HT0L.HT0H.L + 6f40: 52 47 30 08 4c 48 43 30 08 00 10 46 31 43 54 08 RG0.LHC0...F1CT. + 6f50: 46 31 4d 53 08 46 31 46 51 08 46 31 4c 44 08 46 F1MS.F1FQ.F1LD.F + 6f60: 31 4d 44 08 46 31 4d 50 08 4c 54 31 4c 08 4c 54 1MD.F1MP.LT1L.LT + 6f70: 31 48 08 4d 54 31 4c 08 4d 54 31 48 08 48 54 31 1H.MT1L.MT1H.HT1 + 6f80: 4c 08 48 54 31 48 08 4c 52 47 31 08 4c 48 43 31 L.HT1H.LRG1.LHC1 + 6f90: 08 00 10 46 32 43 54 08 46 32 4d 53 08 46 32 46 ...F2CT.F2MS.F2F + 6fa0: 51 08 46 32 4c 44 08 46 32 4d 44 08 46 32 4d 50 Q.F2LD.F2MD.F2MP + 6fb0: 08 4c 54 32 4c 08 4c 54 32 48 08 4d 54 32 4c 08 .LT2L.LT2H.MT2L. + 6fc0: 4d 54 32 48 08 48 54 32 4c 08 48 54 32 48 08 4c MT2H.HT2L.HT2H.L + 6fd0: 52 47 32 08 4c 48 43 32 08 00 10 46 33 43 54 08 RG2.LHC2...F3CT. + 6fe0: 46 33 4d 53 08 46 33 46 51 08 46 33 4c 44 08 46 F3MS.F3FQ.F3LD.F + 6ff0: 33 4d 44 08 46 33 4d 50 08 4c 54 33 4c 08 4c 54 3MD.F3MP.LT3L.LT + 7000: 33 48 08 4d 54 33 4c 08 4d 54 33 48 08 48 54 33 3H.MT3L.MT3H.HT3 + 7010: 4c 08 48 54 33 48 08 4c 52 47 33 08 4c 48 43 33 L.HT3H.LRG3.LHC3 + 7020: 08 00 80 61 01 53 45 43 5f 08 00 08 4d 49 4e 5f ...a.SEC_...MIN_ + 7030: 08 00 80 ff 02 4d 58 30 31 08 00 28 4d 58 30 37 .....MX01..(MX07 + 7040: 08 00 30 4d 58 31 34 08 4d 58 31 35 08 4d 58 31 ..0MX14.MX15.MX1 + 7050: 36 08 00 20 4d 58 32 31 08 4d 58 32 32 08 4d 58 6.. MX21.MX22.MX + 7060: 32 33 08 00 18 4d 58 32 37 08 4d 58 32 38 08 00 23...MX27.MX28.. + 7070: 18 4d 58 33 32 08 4d 58 33 33 08 4d 58 33 34 08 .MX32.MX33.MX34. + 7080: 00 30 4d 58 34 31 08 00 10 4d 58 34 34 08 00 40 .0MX41...MX44..@ + 7090: 04 4d 58 35 33 08 00 18 4d 58 35 37 08 4d 58 35 .MX53...MX57.MX5 + 70a0: 38 08 4d 58 35 39 08 00 30 4d 58 36 36 08 00 48 8.MX59..0MX66..H + 70b0: 11 4d 31 30 32 08 00 28 4d 31 30 38 08 00 48 1e .M102..(M108..H. + 70c0: 4d 31 37 30 08 00 20 4d 31 37 35 08 4d 31 37 36 M170.. M175.M176 + 70d0: 08 00 18 4d 31 38 30 08 4d 31 38 31 08 4d 31 38 ...M180.M181.M18 + 70e0: 32 08 00 40 07 4d 31 39 37 08 00 08 4d 31 39 39 2..@.M197...M199 + 70f0: 08 4d 32 30 30 08 00 48 1b 4d 53 30 30 08 4d 53 .M200..H.MS00.MS + 7100: 30 31 08 4d 53 30 32 08 4d 53 30 33 08 4d 53 30 01.MS02.MS03.MS0 + 7110: 34 08 00 48 1d 4d 53 34 30 08 00 40 20 00 02 45 4..H.MS40..@ ..E + 7120: 43 45 53 01 5b 80 50 31 45 30 01 50 31 45 42 0a CES.[.P1E0.P1EB. + 7130: 04 5b 81 19 50 31 45 30 01 00 0e 50 45 57 53 01 .[..P1E0...PEWS. + 7140: 57 53 54 41 01 00 0e 50 45 57 44 01 14 0c 54 52 WSTA...PEWD...TR + 7150: 4d 44 00 70 00 54 46 54 45 14 06 48 54 43 44 00 MD.p.TFTE..HTCD. + 7160: 5b 80 41 42 49 4f 01 0b d8 0c 0a 08 5b 81 10 41 [.ABIO......[..A + 7170: 42 49 4f 03 49 4e 41 42 20 44 41 41 42 20 14 11 BIO.INAB DAAB .. + 7180: 52 44 41 42 01 70 68 49 4e 41 42 a4 44 41 41 42 RDAB.phINAB.DAAB + 7190: 14 12 57 54 41 42 02 70 68 49 4e 41 42 70 69 44 ..WTAB.phINABpiD + 71a0: 41 41 42 14 18 52 57 41 42 03 7b 52 44 41 42 68 AAB..RWAB.{RDABh + 71b0: 69 60 7d 60 6a 61 57 54 41 42 68 61 14 1a 43 41 i`}`jaWTABha..CA + 71c0: 42 52 03 79 68 0a 05 60 72 60 69 61 79 61 0a 18 BR.yh..`r`iaya.. + 71d0: 62 72 62 6a 63 a4 63 5b 82 81 c5 01 4c 50 43 30 brbjc.c[....LPC0 + 71e0: 08 5f 41 44 52 0c 03 00 14 00 5b 80 50 49 52 51 ._ADR.....[.PIRQ + 71f0: 01 0b 00 0c 0a 02 5b 81 10 50 49 52 51 01 50 49 ......[..PIRQ.PI + 7200: 49 44 08 50 49 44 41 08 5b 86 43 09 50 49 49 44 ID.PIDA.[.C.PIID + 7210: 50 49 44 41 01 50 49 52 41 08 50 49 52 42 08 50 PIDA.PIRA.PIRB.P + 7220: 49 52 43 08 50 49 52 44 08 50 49 52 45 08 50 49 IRC.PIRD.PIRE.PI + 7230: 52 46 08 50 49 52 47 08 50 49 52 48 08 00 40 04 RF.PIRG.PIRH..@. + 7240: 50 49 52 53 08 00 10 48 44 41 44 08 00 08 47 45 PIRS...HDAD...GE + 7250: 43 5f 08 00 40 0d 55 53 42 31 08 55 53 42 32 08 C_..@.USB1.USB2. + 7260: 55 53 42 33 08 55 53 42 34 08 55 53 42 35 08 55 USB3.USB4.USB5.U + 7270: 53 42 36 08 55 53 42 37 08 00 48 04 49 44 45 5f SB6.USB7..H.IDE_ + 7280: 08 53 41 54 41 08 00 40 07 47 50 50 30 08 47 50 .SATA..@.GPP0.GP + 7290: 50 31 08 47 50 50 32 08 47 50 50 33 08 08 49 50 P1.GPP2.GPP3..IP + 72a0: 52 53 11 09 0a 06 23 00 0c 18 79 00 08 55 50 52 RS....#...y..UPR + 72b0: 53 11 09 0a 06 23 b8 00 08 79 00 14 3a 44 53 50 S....#...y..:DSP + 72c0: 49 00 49 4e 54 41 0a 1f 49 4e 54 42 0a 1f 49 4e I.INTA..INTB..IN + 72d0: 54 43 0a 1f 49 4e 54 44 0a 1f 70 0a 1f 50 49 52 TC..INTD..p..PIR + 72e0: 45 70 0a 1f 50 49 52 46 70 0a 1f 50 49 52 47 70 Ep..PIRFp..PIRGp + 72f0: 0a 1f 50 49 52 48 14 1e 49 4e 54 41 01 70 68 50 ..PIRH..INTA.phP + 7300: 49 52 41 70 68 48 44 41 44 70 68 47 45 43 5f 70 IRAphHDADphGEC_p + 7310: 68 47 50 50 30 14 2a 49 4e 54 42 01 70 68 50 49 hGPP0.*INTB.phPI + 7320: 52 42 70 68 55 53 42 32 70 68 55 53 42 34 70 68 RBphUSB2phUSB4ph + 7330: 55 53 42 36 70 68 47 50 50 31 70 68 49 44 45 5f USB6phGPP1phIDE_ + 7340: 14 2a 49 4e 54 43 01 70 68 50 49 52 43 70 68 55 .*INTC.phPIRCphU + 7350: 53 42 31 70 68 55 53 42 33 70 68 55 53 42 35 70 SB1phUSB3phUSB5p + 7360: 68 55 53 42 37 70 68 47 50 50 32 14 18 49 4e 54 hUSB7phGPP2..INT + 7370: 44 01 70 68 50 49 52 44 70 68 53 41 54 41 70 68 D.phPIRDphSATAph + 7380: 47 50 50 33 5b 82 43 08 4c 4e 4b 41 08 5f 48 49 GPP3[.C.LNKA._HI + 7390: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 01 14 14 5f D.A...._UID...._ + 73a0: 53 54 41 00 a0 08 50 49 52 41 a4 0a 0b a1 04 a4 STA...PIRA...... + 73b0: 0a 09 14 0b 5f 50 52 53 00 a4 49 50 52 53 14 0c ...._PRS..IPRS.. + 73c0: 5f 44 49 53 00 49 4e 54 41 0a 1f 14 21 5f 43 52 _DIS.INTA...!_CR + 73d0: 53 00 70 49 50 52 53 60 8b 60 0a 01 49 52 51 30 S.pIPRS`.`..IRQ0 + 73e0: 79 0a 01 50 49 52 41 49 52 51 30 a4 60 14 1b 5f y..PIRAIRQ0.`.._ + 73f0: 53 52 53 01 8b 68 0a 01 49 52 51 30 82 49 52 51 SRS..h..IRQ0.IRQ + 7400: 30 60 76 60 49 4e 54 41 60 5b 82 43 08 4c 4e 4b 0`v`INTA`[.C.LNK + 7410: 42 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 B._HID.A...._UID + 7420: 0a 02 14 14 5f 53 54 41 00 a0 08 50 49 52 42 a4 ...._STA...PIRB. + 7430: 0a 0b a1 04 a4 0a 09 14 0b 5f 50 52 53 00 a4 49 ........._PRS..I + 7440: 50 52 53 14 0c 5f 44 49 53 00 49 4e 54 42 0a 1f PRS.._DIS.INTB.. + 7450: 14 21 5f 43 52 53 00 70 49 50 52 53 60 8b 60 0a .!_CRS.pIPRS`.`. + 7460: 01 49 52 51 30 79 0a 01 50 49 52 42 49 52 51 30 .IRQ0y..PIRBIRQ0 + 7470: a4 60 14 1b 5f 53 52 53 01 8b 68 0a 01 49 52 51 .`.._SRS..h..IRQ + 7480: 30 82 49 52 51 30 60 76 60 49 4e 54 42 60 5b 82 0.IRQ0`v`INTB`[. + 7490: 43 08 4c 4e 4b 43 08 5f 48 49 44 0c 41 d0 0c 0f C.LNKC._HID.A... + 74a0: 08 5f 55 49 44 0a 03 14 14 5f 53 54 41 00 a0 08 ._UID...._STA... + 74b0: 50 49 52 43 a4 0a 0b a1 04 a4 0a 09 14 0b 5f 50 PIRC.........._P + 74c0: 52 53 00 a4 49 50 52 53 14 0c 5f 44 49 53 00 49 RS..IPRS.._DIS.I + 74d0: 4e 54 43 0a 1f 14 21 5f 43 52 53 00 70 49 50 52 NTC...!_CRS.pIPR + 74e0: 53 60 8b 60 0a 01 49 52 51 30 79 0a 01 50 49 52 S`.`..IRQ0y..PIR + 74f0: 43 49 52 51 30 a4 60 14 1b 5f 53 52 53 01 8b 68 CIRQ0.`.._SRS..h + 7500: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 49 4e ..IRQ0.IRQ0`v`IN + 7510: 54 43 60 5b 82 43 08 4c 4e 4b 44 08 5f 48 49 44 TC`[.C.LNKD._HID + 7520: 0c 41 d0 0c 0f 08 5f 55 49 44 0a 04 14 14 5f 53 .A...._UID...._S + 7530: 54 41 00 a0 08 50 49 52 44 a4 0a 0b a1 04 a4 0a TA...PIRD....... + 7540: 09 14 0b 5f 50 52 53 00 a4 49 50 52 53 14 0c 5f ..._PRS..IPRS.._ + 7550: 44 49 53 00 49 4e 54 44 0a 1f 14 21 5f 43 52 53 DIS.INTD...!_CRS + 7560: 00 70 49 50 52 53 60 8b 60 0a 01 49 52 51 30 79 .pIPRS`.`..IRQ0y + 7570: 0a 01 50 49 52 44 49 52 51 30 a4 60 14 1b 5f 53 ..PIRDIRQ0.`.._S + 7580: 52 53 01 8b 68 0a 01 49 52 51 30 82 49 52 51 30 RS..h..IRQ0.IRQ0 + 7590: 60 76 60 49 4e 54 44 60 5b 82 45 08 4c 4e 4b 45 `v`INTD`[.E.LNKE + 75a0: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. + 75b0: 05 14 14 5f 53 54 41 00 a0 08 50 49 52 45 a4 0a ..._STA...PIRE.. + 75c0: 0b a1 04 a4 0a 09 14 0b 5f 50 52 53 00 a4 49 50 ........_PRS..IP + 75d0: 52 53 14 0d 5f 44 49 53 00 70 0a 1f 50 49 52 45 RS.._DIS.p..PIRE + 75e0: 14 21 5f 43 52 53 00 70 49 50 52 53 60 8b 60 0a .!_CRS.pIPRS`.`. + 75f0: 01 49 52 51 30 79 0a 01 50 49 52 45 49 52 51 30 .IRQ0y..PIREIRQ0 + 7600: a4 60 14 1c 5f 53 52 53 01 8b 68 0a 01 49 52 51 .`.._SRS..h..IRQ + 7610: 30 82 49 52 51 30 60 76 60 70 60 50 49 52 45 5b 0.IRQ0`v`p`PIRE[ + 7620: 82 45 08 4c 4e 4b 46 08 5f 48 49 44 0c 41 d0 0c .E.LNKF._HID.A.. + 7630: 0f 08 5f 55 49 44 0a 06 14 14 5f 53 54 41 00 a0 .._UID...._STA.. + 7640: 08 50 49 52 46 a4 0a 0b a1 04 a4 0a 09 14 0b 5f .PIRF.........._ + 7650: 50 52 53 00 a4 49 50 52 53 14 0d 5f 44 49 53 00 PRS..IPRS.._DIS. + 7660: 70 0a 1f 50 49 52 46 14 21 5f 43 52 53 00 70 49 p..PIRF.!_CRS.pI + 7670: 50 52 53 60 8b 60 0a 01 49 52 51 30 79 0a 01 50 PRS`.`..IRQ0y..P + 7680: 49 52 46 49 52 51 30 a4 60 14 1c 5f 53 52 53 01 IRFIRQ0.`.._SRS. + 7690: 8b 68 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 .h..IRQ0.IRQ0`v` + 76a0: 70 60 50 49 52 46 5b 82 45 08 4c 4e 4b 47 08 5f p`PIRF[.E.LNKG._ + 76b0: 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 HID.A...._UID... + 76c0: 14 5f 53 54 41 00 a0 08 50 49 52 47 a4 0a 0b a1 ._STA...PIRG.... + 76d0: 04 a4 0a 09 14 0b 5f 50 52 53 00 a4 49 50 52 53 ......_PRS..IPRS + 76e0: 14 0d 5f 44 49 53 00 70 0a 1f 50 49 52 47 14 21 .._DIS.p..PIRG.! + 76f0: 5f 43 52 53 00 70 49 50 52 53 60 8b 60 0a 01 49 _CRS.pIPRS`.`..I + 7700: 52 51 30 79 0a 01 50 49 52 47 49 52 51 30 a4 60 RQ0y..PIRGIRQ0.` + 7710: 14 1c 5f 53 52 53 01 8b 68 0a 01 49 52 51 30 82 .._SRS..h..IRQ0. + 7720: 49 52 51 30 60 76 60 70 60 50 49 52 47 5b 82 45 IRQ0`v`p`PIRG[.E + 7730: 08 4c 4e 4b 48 08 5f 48 49 44 0c 41 d0 0c 0f 08 .LNKH._HID.A.... + 7740: 5f 55 49 44 0a 08 14 14 5f 53 54 41 00 a0 08 50 _UID...._STA...P + 7750: 49 52 48 a4 0a 0b a1 04 a4 0a 09 14 0b 5f 50 52 IRH.........._PR + 7760: 53 00 a4 49 50 52 53 14 0d 5f 44 49 53 00 70 0a S..IPRS.._DIS.p. + 7770: 1f 50 49 52 48 14 21 5f 43 52 53 00 70 49 50 52 .PIRH.!_CRS.pIPR + 7780: 53 60 8b 60 0a 01 49 52 51 30 79 0a 01 50 49 52 S`.`..IRQ0y..PIR + 7790: 48 49 52 51 30 a4 60 14 1c 5f 53 52 53 01 8b 68 HIRQ0.`.._SRS..h + 77a0: 0a 01 49 52 51 30 82 49 52 51 30 60 76 60 70 60 ..IRQ0.IRQ0`v`p` + 77b0: 50 49 52 48 5b 80 4c 50 43 52 02 0a 04 0a 42 5b PIRH[.LPCR....B[ + 77c0: 81 4f 05 4c 50 43 52 01 50 43 4d 44 02 00 4e 1f .O.LPCR.PCMD..N. + 77d0: 43 4d 41 30 01 43 4d 41 31 01 43 4d 41 32 01 43 CMA0.CMA1.CMA2.C + 77e0: 4d 41 33 01 43 4d 41 34 01 43 4d 41 35 01 43 4d MA3.CMA4.CMA5.CM + 77f0: 41 36 01 43 4d 41 37 01 43 4d 42 30 01 43 4d 42 A6.CMA7.CMB0.CMB + 7800: 31 01 43 4d 42 32 01 43 4d 42 33 01 43 4d 42 34 1.CMB2.CMB3.CMB4 + 7810: 01 43 4d 42 35 01 43 4d 42 36 01 43 4d 42 37 01 .CMB5.CMB6.CMB7. + 7820: 5b 82 46 04 44 4d 41 43 08 5f 48 49 44 0c 41 d0 [.F.DMAC._HID.A. + 7830: 02 00 08 5f 43 52 53 11 30 0a 2d 47 01 00 00 00 ..._CRS.0.-G.... + 7840: 00 01 20 47 01 81 00 81 00 01 0f 47 01 c0 00 c0 .. G.......G.... + 7850: 00 01 1f 47 01 0b 04 0b 04 01 01 47 01 d6 04 d6 ...G.......G.... + 7860: 04 01 01 2a 10 01 79 00 5b 82 26 4d 41 54 48 08 ...*..y.[.&MATH. + 7870: 5f 48 49 44 0c 41 d0 0c 04 08 5f 43 52 53 11 11 _HID.A...._CRS.. + 7880: 0a 0e 47 01 f0 00 f0 00 01 0f 23 00 20 01 79 00 ..G.......#. .y. + 7890: 5b 82 2c 50 49 43 5f 08 5f 48 49 44 0b 41 d0 08 [.,PIC_._HID.A.. + 78a0: 5f 43 52 53 11 19 0a 16 47 01 20 00 20 00 01 02 _CRS....G. . ... + 78b0: 47 01 a0 00 a0 00 01 02 23 04 00 01 79 00 5b 82 G.......#...y.[. + 78c0: 26 52 54 43 5f 08 5f 48 49 44 0c 41 d0 0b 00 08 &RTC_._HID.A.... + 78d0: 5f 43 52 53 11 11 0a 0e 47 01 70 00 70 00 01 02 _CRS....G.p.p... + 78e0: 23 00 01 01 79 00 5b 82 22 53 50 4b 52 08 5f 48 #...y.[."SPKR._H + 78f0: 49 44 0c 41 d0 08 00 08 5f 43 52 53 11 0d 0a 0a ID.A...._CRS.... + 7900: 47 01 61 00 61 00 01 01 79 00 5b 82 26 54 49 4d G.a.a...y.[.&TIM + 7910: 45 08 5f 48 49 44 0c 41 d0 01 00 08 5f 43 52 53 E._HID.A...._CRS + 7920: 11 11 0a 0e 47 01 40 00 40 00 01 04 23 01 00 01 ....G.@.@...#... + 7930: 79 00 5b 82 35 4b 42 43 30 08 5f 48 49 44 0c 41 y.[.5KBC0._HID.A + 7940: d0 03 03 08 5f 43 52 53 11 19 0a 16 47 01 60 00 ...._CRS....G.`. + 7950: 60 00 01 01 47 01 64 00 64 00 01 01 23 02 00 01 `...G.d.d...#... + 7960: 79 00 14 06 5f 50 53 57 01 5b 80 50 4b 42 53 01 y..._PSW.[.PKBS. + 7970: 0a 60 0a 05 5b 81 16 50 4b 42 53 11 50 4b 42 44 .`..[..PKBS.PKBD + 7980: 08 00 08 00 08 00 08 50 4b 42 43 08 5b 82 4d 06 .......PKBC.[.M. + 7990: 50 53 32 4d 14 1d 5f 48 49 44 00 a0 0e 93 42 52 PS2M.._HID....BR + 79a0: 49 44 0a 01 a4 0c 11 8c 04 c3 a1 07 a4 0c 11 8c ID.............. + 79b0: 04 c2 08 5f 43 49 44 0c 41 d0 0f 13 14 1e 5f 53 ..._CID.A....._S + 79c0: 54 41 00 a0 14 7b 93 50 4b 42 44 0a ff 93 50 4b TA...{.PKBD...PK + 79d0: 42 43 0a ff 00 a4 0a 00 a4 0a 0f 08 5f 43 52 53 BC.........._CRS + 79e0: 11 09 0a 06 23 00 10 01 79 00 08 5f 50 52 53 11 ....#...y.._PRS. + 79f0: 0b 0a 08 31 00 22 00 10 38 79 00 5b 82 4c 10 53 ...1."..8y.[.L.S + 7a00: 59 53 52 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 43 YSR._HID.A...._C + 7a10: 52 53 11 46 0f 0a f2 47 01 22 00 22 00 01 02 47 RS.F...G."."...G + 7a20: 01 2e 00 2e 00 01 02 47 01 72 00 72 00 01 02 47 .......G.r.r...G + 7a30: 01 80 00 80 00 01 01 47 01 92 00 92 00 01 01 47 .......G.......G + 7a40: 01 b0 00 b0 00 01 02 47 01 b2 00 b2 00 01 01 47 .......G.......G + 7a50: 01 b8 00 b8 00 01 01 47 01 bc 00 bc 00 01 01 47 .......G.......G + 7a60: 01 f0 00 f0 00 01 01 47 01 d0 04 d0 04 01 02 47 .......G.......G + 7a70: 01 30 05 30 05 01 08 47 01 00 08 00 08 01 28 47 .0.0...G......(G + 7a80: 01 30 08 30 08 01 01 47 01 40 08 40 08 01 08 47 .0.0...G.@.@...G + 7a90: 01 00 0b 00 0b 01 20 47 01 20 0b 20 0b 01 20 47 ...... G. . .. G + 7aa0: 01 00 0c 00 0c 01 02 47 01 14 0c 14 0c 01 01 47 .......G.......G + 7ab0: 01 50 0c 50 0c 01 03 47 01 d0 0c d0 0c 01 02 47 .P.P...G.......G + 7ac0: 01 d2 0c d2 0c 01 02 47 01 d4 0c d4 0c 01 02 47 .......G.......G + 7ad0: 01 d6 0c d6 0c 01 02 47 01 d8 0c d8 0c 01 08 47 .......G.......G + 7ae0: 01 f9 0c f9 0c 01 01 88 0d 00 01 0c 03 00 00 00 ................ + 7af0: 81 ff 81 00 00 00 01 88 0d 00 01 0c 03 00 00 00 ................ + 7b00: 82 ff 82 00 00 00 01 79 00 5b 80 4c 50 43 53 02 .......y.[.LPCS. + 7b10: 0a a0 0a 04 5b 81 0b 4c 50 43 53 03 53 50 42 41 ....[..LPCS.SPBA + 7b20: 20 5b 82 40 0e 4d 45 4d 5f 08 5f 48 49 44 0c 41 [.@.MEM_._HID.A + 7b30: d0 0c 01 08 4d 53 52 43 11 4a 05 0a 56 86 09 00 ....MSRC.J..V... + 7b40: 00 00 00 0e 00 00 00 02 00 86 09 00 00 00 00 e0 ................ + 7b50: ff 00 00 20 00 86 09 00 01 00 00 00 00 00 00 00 ... ............ + 7b60: 00 86 09 00 01 00 00 c1 fe 20 00 00 00 86 09 00 ......... ...... + 7b70: 00 00 00 d0 fe 00 04 00 00 86 09 00 01 00 10 d6 ................ + 7b80: fe 00 04 00 00 86 09 00 01 00 00 d8 fe 00 10 00 ................ + 7b90: 00 79 00 14 45 06 5f 43 52 53 00 8a 4d 53 52 43 .y..E._CRS..MSRC + 7ba0: 0a 1c 42 41 52 58 8a 4d 53 52 43 0a 20 47 41 4c ..BARX.MSRC. GAL + 7bb0: 4e 8a 4d 53 52 43 0a 28 4d 42 30 31 8a 4d 53 52 N.MSRC.(MB01.MSR + 7bc0: 43 0a 2c 4d 4c 30 31 70 53 50 42 41 60 7b 60 0c C.,ML01pSPBA`{`. + 7bd0: e0 ff ff ff 4d 42 30 31 70 4e 42 42 41 60 a0 15 ....MB01pNBBA`.. + 7be0: 60 70 0b 00 10 47 41 4c 4e 7b 60 0c f0 ff ff ff `p...GALN{`..... + 7bf0: 42 41 52 58 a4 4d 53 52 43 14 09 5f 53 54 41 00 BARX.MSRC.._STA. + 7c00: a4 0a 0f 5b 01 50 53 4d 58 00 5b 80 53 4d 49 30 ...[.PSMX.[.SMI0 + 7c10: 01 0a b0 0a 01 5b 81 0b 53 4d 49 30 00 53 4d 49 .....[..SMI0.SMI + 7c20: 43 08 5b 80 53 4d 49 31 00 0c 18 a0 0c 5e 0c 00 C.[.SMI1.....^.. + 7c30: 10 00 00 5b 81 16 53 4d 49 31 00 42 43 4d 44 10 ...[..SMI1.BCMD. + 7c40: 44 49 44 5f 20 49 4e 46 4f 40 40 5b 81 30 53 4d DID_ INFO@@[.0SM + 7c50: 49 31 00 00 30 49 4e 46 30 08 49 4e 46 31 08 49 I1..0INF0.INF1.I + 7c60: 4e 46 32 08 49 4e 46 33 08 49 4e 46 34 08 49 4e NF2.INF3.INF4.IN + 7c70: 46 35 08 49 4e 46 36 08 49 4e 46 37 08 5b 81 0d F5.INF6.INF7.[.. + 7c80: 53 4d 49 31 00 00 30 49 4e 46 44 20 14 13 50 48 SMI1..0INFD ..PH + 7c90: 53 31 01 70 68 42 43 4d 44 70 0a ab 53 4d 49 43 S1.phBCMDp..SMIC + 7ca0: 14 3d 50 48 53 32 02 5b 23 50 53 4d 58 ff ff 70 .=PHS2.[#PSMX..p + 7cb0: 0a 00 44 49 44 5f 70 69 49 4e 46 4f 70 68 42 43 ..DID_piINFOphBC + 7cc0: 4d 44 70 0a ab 53 4d 49 43 70 49 4e 46 4f 60 5b MDp..SMICpINFO`[ + 7cd0: 27 50 53 4d 58 70 0a 00 42 43 4d 44 a4 60 14 2d 'PSMXp..BCMD.`.- + 7ce0: 50 48 53 33 03 5b 23 50 53 4d 58 ff ff 70 68 42 PHS3.[#PSMX..phB + 7cf0: 43 4d 44 70 69 44 49 44 5f 70 6a 49 4e 46 4f 70 CMDpiDID_pjINFOp + 7d00: 0a ab 53 4d 49 43 5b 27 50 53 4d 58 5b 82 1c 4d ..SMIC['PSMX[..M + 7d10: 42 54 5f 08 5f 48 49 44 0c 41 d0 0c 32 14 0c 47 BT_._HID.A..2..G + 7d20: 48 49 44 00 a4 11 04 0a 01 02 5b 82 8e 0f 01 45 HID.......[....E + 7d30: 43 30 5f 08 5f 48 49 44 0c 41 d0 0c 09 14 26 5f C0_._HID.A....&_ + 7d40: 43 52 53 00 08 42 46 46 52 11 15 0a 12 47 01 62 CRS..BFFR....G.b + 7d50: 00 62 00 00 01 47 01 66 00 66 00 00 01 79 00 a4 .b...G.f.f...y.. + 7d60: 42 46 46 52 14 43 13 5f 52 45 47 02 a0 4b 12 90 BFFR.C._REG..K.. + 7d70: 93 68 0a 03 93 69 0a 01 70 0a 01 45 43 4f 4e 5b .h...i..p..ECON[ + 7d80: 23 4d 55 54 30 ff ff 70 41 43 49 4e 50 57 52 53 #MUT0..pACINPWRS + 7d90: 70 42 30 49 4e 5e 5e 5e 5e 2e 42 41 54 54 42 53 pB0IN^^^^.BATTBS + 7da0: 54 41 5b 27 4d 55 54 30 a0 1d 93 54 50 4f 53 0a TA['MUT0...TPOS. + 7db0: 80 5b 23 4d 55 54 30 ff ff 70 0a 40 41 43 4f 53 .[#MUT0..p.@ACOS + 7dc0: 5b 27 4d 55 54 30 a0 1d 93 54 50 4f 53 0a 04 5b ['MUT0...TPOS..[ + 7dd0: 23 4d 55 54 30 ff ff 70 0a 08 41 43 4f 53 5b 27 #MUT0..p..ACOS[' + 7de0: 4d 55 54 30 a0 1d 93 54 50 4f 53 0a 08 5b 23 4d MUT0...TPOS..[#M + 7df0: 55 54 30 ff ff 70 0a 10 41 43 4f 53 5b 27 4d 55 UT0..p..ACOS['MU + 7e00: 54 30 a0 1d 93 54 50 4f 53 0a 10 5b 23 4d 55 54 T0...TPOS..[#MUT + 7e10: 30 ff ff 70 0a 10 41 43 4f 53 5b 27 4d 55 54 30 0..p..ACOS['MUT0 + 7e20: a0 1d 93 54 50 4f 53 0a 11 5b 23 4d 55 54 30 ff ...TPOS..[#MUT0. + 7e30: ff 70 0a 10 41 43 4f 53 5b 27 4d 55 54 30 a0 1d .p..ACOS['MUT0.. + 7e40: 93 54 50 4f 53 0a 12 5b 23 4d 55 54 30 ff ff 70 .TPOS..[#MUT0..p + 7e50: 0a 10 41 43 4f 53 5b 27 4d 55 54 30 a0 1d 93 54 ..ACOS['MUT0...T + 7e60: 50 4f 53 0a 40 5b 23 4d 55 54 30 ff ff 70 0a 20 POS.@[#MUT0..p. + 7e70: 41 43 4f 53 5b 27 4d 55 54 30 a0 1d 93 54 50 4f ACOS['MUT0...TPO + 7e80: 53 0a 50 5b 23 4d 55 54 30 ff ff 70 0a 80 41 43 S.P[#MUT0..p..AC + 7e90: 4f 53 5b 27 4d 55 54 30 08 5f 47 50 45 0a 03 5b OS['MUT0._GPE..[ + 7ea0: 80 45 43 52 4d 03 0a 00 0b 00 01 5b 81 42 42 45 .ECRM......[.BBE + 7eb0: 43 52 4d 11 57 4b 45 56 08 00 48 0b 50 52 54 43 CRM.WKEV..H.PRTC + 7ec0: 08 53 53 54 41 08 53 41 44 52 08 53 43 4d 44 08 .SSTA.SADR.SCMD. + 7ed0: 53 4d 49 44 08 53 44 41 54 08 53 44 54 31 08 00 SMID.SDAT.SDT1.. + 7ee0: 48 0e 42 43 4e 54 08 41 4c 52 41 08 41 4c 44 30 H.BCNT.ALRA.ALD0 + 7ef0: 08 41 4c 44 31 08 41 43 49 4e 01 50 57 4f 4e 01 .ALD1.ACIN.PWON. + 7f00: 49 4e 53 33 01 57 50 53 57 01 49 4e 53 34 01 53 INS3.WPSW.INS4.S + 7f10: 4d 4f 4e 01 57 50 57 47 01 52 56 43 4f 01 53 55 MON.WPWG.RVCO.SU + 7f20: 53 42 01 53 55 53 43 01 46 41 4e 4f 01 53 4e 49 SB.SUSC.FANO.SNI + 7f30: 46 01 4c 49 44 41 01 00 03 4b 42 42 50 01 44 41 F.LIDA...KBBP.DA + 7f40: 44 50 01 4d 4d 42 54 01 4b 42 53 4f 01 4b 42 45 DP.MMBT.KBSO.KBE + 7f50: 52 01 45 43 43 42 01 43 49 52 42 01 4d 55 54 45 R.ECCB.CIRB.MUTE + 7f60: 01 54 53 4e 30 01 54 53 4e 31 01 4f 53 54 50 01 .TSN0.TSN1.OSTP. + 7f70: 54 53 4e 32 01 45 42 4b 30 01 45 42 4b 31 01 45 TSN2.EBK0.EBK1.E + 7f80: 42 4b 32 01 45 42 4b 33 01 00 08 00 04 51 41 33 BK2.EBK3.....QA3 + 7f90: 45 01 00 43 05 54 4f 46 53 08 00 10 54 54 52 54 E..C.TOFS...TTRT + 7fa0: 01 43 43 50 55 01 00 0e 4f 54 50 43 08 56 47 41 .CCPU...OTPC.VGA + 7fb0: 54 08 43 48 50 54 08 43 50 55 54 08 53 59 53 54 T.CHPT.CPUT.SYST + 7fc0: 08 44 54 53 31 08 44 54 53 32 08 00 10 48 57 53 .DTS1.DTS2...HWS + 7fd0: 4e 08 43 54 59 50 08 46 43 4e 54 01 46 54 53 54 N.CTYP.FCNT.FTST + 7fe0: 01 00 03 46 41 44 4a 01 54 43 54 4c 01 46 41 54 ...FADJ.TCTL.FAT + 7ff0: 4f 01 44 41 43 31 08 44 41 43 32 08 46 4c 56 4c O.DAC1.DAC2.FLVL + 8000: 08 43 54 4c 31 10 43 54 4c 32 10 46 41 4e 48 08 .CTL1.CTL2.FANH. + 8010: 46 41 4e 4c 08 52 50 4d 32 10 46 54 41 43 10 46 FANL.RPM2.FTAC.F + 8020: 53 50 44 10 53 4c 45 44 01 4e 4c 45 44 01 43 4c SPD.SLED.NLED.CL + 8030: 45 44 01 00 05 42 54 31 4c 01 42 54 32 4c 01 53 ED...BT1L.BT2L.S + 8040: 4e 49 4c 01 00 15 42 4c 42 55 01 42 4c 42 44 01 NIL...BLBU.BLBD. + 8050: 42 4c 42 48 01 00 05 42 48 4c 4c 08 42 54 4c 4c BLBH...BHLL.BTLL + 8060: 08 42 54 4c 49 08 00 08 53 56 50 4c 08 44 49 41 .BTLI...SVPL.DIA + 8070: 47 08 4b 4c 45 44 08 00 20 41 43 54 50 08 00 08 G.KLED.. ACTP... + 8080: 4e 4f 53 30 08 00 30 41 43 4f 53 08 00 08 4b 42 NOS0..0ACOS...KB + 8090: 54 4c 08 4b 42 42 4c 08 42 52 53 4c 08 50 4c 47 TL.KBBL.BRSL.PLG + 80a0: 48 08 50 4c 47 4c 08 00 48 06 53 42 46 30 08 00 H.PLGL..H.SBF0.. + 80b0: 10 43 41 50 30 10 52 43 50 30 10 56 4f 54 30 10 .CAP0.RCP0.VOT0. + 80c0: 43 52 54 30 10 42 54 4d 30 10 42 53 54 30 10 42 CRT0.BTM0.BST0.B + 80d0: 52 43 30 10 46 43 50 30 10 44 43 50 30 10 44 56 RC0.FCP0.DCP0.DV + 80e0: 54 30 10 4d 45 52 30 10 4d 46 44 30 10 42 53 4e T0.MER0.MFD0.BSN + 80f0: 30 10 4d 41 53 30 10 00 38 42 43 53 30 08 4d 4e 0.MAS0..8BCS0.MN + 8100: 4e 30 08 44 4e 4e 30 08 42 43 4e 30 08 42 4f 43 N0.DNN0.BCN0.BOC + 8110: 30 08 42 46 43 30 08 42 4d 44 30 08 43 50 4c 30 0.BFC0.BMD0.CPL0 + 8120: 08 42 30 49 4e 01 42 30 44 59 01 42 30 50 46 01 .B0IN.B0DY.B0PF. + 8130: 42 30 54 46 01 42 30 43 4c 01 42 30 4c 57 01 42 B0TF.B0CL.B0LW.B + 8140: 30 44 43 01 42 30 44 44 01 42 30 46 43 01 42 30 0DC.B0DD.B0FC.B0 + 8150: 50 43 01 42 30 4f 54 01 00 01 42 30 57 4b 01 42 PC.B0OT...B0WK.B + 8160: 30 49 43 01 42 30 57 43 01 42 30 4c 33 01 42 30 0IC.B0WC.B0L3.B0 + 8170: 46 47 01 42 30 44 47 01 42 30 56 4c 01 42 30 52 FG.B0DG.B0VL.B0R + 8180: 59 01 42 30 41 4c 01 42 30 41 46 01 42 30 4e 49 Y.B0AL.B0AF.B0NI + 8190: 01 42 30 4c 49 01 53 4d 45 30 01 53 4d 45 31 01 .B0LI.SME0.SME1. + 81a0: 53 4d 45 32 01 53 4d 45 33 01 46 4c 44 47 01 46 SME2.SME3.FLDG.F + 81b0: 4c 43 47 01 44 53 47 30 01 49 4e 49 54 01 52 54 LCG.DSG0.INIT.RT + 81c0: 41 4d 01 52 43 41 4d 01 00 01 54 44 41 4d 01 4f AM.RCAM...TDAM.O + 81d0: 54 41 4d 01 00 01 54 43 41 4d 01 4f 43 41 4d 01 TAM...TCAM.OCAM. + 81e0: 43 41 50 31 10 52 43 50 31 10 56 4f 54 31 10 43 CAP1.RCP1.VOT1.C + 81f0: 52 54 31 10 42 54 4d 31 10 42 53 54 31 10 42 52 RT1.BTM1.BST1.BR + 8200: 43 31 10 46 43 50 31 10 44 43 50 31 10 44 56 54 C1.FCP1.DCP1.DVT + 8210: 31 10 4d 45 52 31 10 4d 46 44 31 10 42 53 4e 31 1.MER1.MFD1.BSN1 + 8220: 10 4d 41 53 31 10 00 38 42 43 53 31 08 4d 4e 4e .MAS1..8BCS1.MNN + 8230: 31 08 44 4e 4e 31 08 42 43 4e 31 08 42 4f 43 31 1.DNN1.BCN1.BOC1 + 8240: 08 42 46 43 31 08 42 4d 44 31 08 43 50 4c 31 08 .BFC1.BMD1.CPL1. + 8250: 42 31 49 4e 01 42 31 44 59 01 42 31 50 46 01 42 B1IN.B1DY.B1PF.B + 8260: 31 54 46 01 42 31 43 4c 01 42 31 4c 57 01 42 31 1TF.B1CL.B1LW.B1 + 8270: 44 43 01 42 31 44 44 01 42 31 46 43 01 42 31 50 DC.B1DD.B1FC.B1P + 8280: 43 01 42 31 4f 54 01 00 01 42 31 57 4b 01 42 31 C.B1OT...B1WK.B1 + 8290: 49 43 01 42 31 57 43 01 42 31 4c 33 01 42 31 46 IC.B1WC.B1L3.B1F + 82a0: 47 01 42 31 44 47 01 42 31 56 4c 01 42 31 52 59 G.B1DG.B1VL.B1RY + 82b0: 01 42 31 41 4c 01 42 31 41 46 01 42 31 4e 49 01 .B1AL.B1AF.B1NI. + 82c0: 42 31 4c 49 01 53 4c 4d 31 08 53 4c 4d 32 08 5b B1LI.SLM1.SLM2.[ + 82d0: 01 4d 55 54 30 00 14 0d 5f 51 42 31 00 70 0a b1 .MUT0..._QB1.p.. + 82e0: 50 38 30 48 14 43 0b 5f 51 38 30 00 70 0a 80 50 P80H.C._Q80.p..P + 82f0: 38 30 48 a0 0b 50 57 52 53 70 42 52 47 41 60 a1 80H..PWRSpBRGA`. + 8300: 07 70 42 52 47 44 60 a0 36 92 95 54 50 4f 53 0a .pBRGD`.6..TPOS. + 8310: 40 70 0a 00 60 86 5e 5e 5e 2e 56 47 41 5f 4c 43 @p..`.^^^.VGA_LC + 8320: 44 5f 0a 86 86 5e 5e 5e 2f 03 50 42 33 5f 56 47 D_...^^^/.PB3_VG + 8330: 41 5f 4c 43 44 5f 0a 86 70 42 52 54 4c 60 a1 09 A_LCD_..pBRTL`.. + 8340: 50 48 53 32 0a 8a 0a 02 a0 08 92 93 60 0a 0f 75 PHS2........`..u + 8350: 60 70 0a 03 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 `p..^^^^.AMW0INF + 8360: 30 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 0p..^^^^.AMW0INF + 8370: 31 70 0b 06 e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 1p...^^^^.AMW0IN + 8380: 46 32 70 60 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 F2p`^^^^.AMW0INF + 8390: 33 86 41 4d 57 30 0a d0 14 43 0b 5f 51 38 31 00 3.AMW0...C._Q81. + 83a0: 70 0a 81 50 38 30 48 a0 0b 50 57 52 53 70 42 52 p..P80H..PWRSpBR + 83b0: 47 41 60 a1 07 70 42 52 47 44 60 a0 36 92 95 54 GA`..pBRGD`.6..T + 83c0: 50 4f 53 0a 40 70 0a 00 60 86 5e 5e 5e 2e 56 47 POS.@p..`.^^^.VG + 83d0: 41 5f 4c 43 44 5f 0a 87 86 5e 5e 5e 2f 03 50 42 A_LCD_...^^^/.PB + 83e0: 33 5f 56 47 41 5f 4c 43 44 5f 0a 87 70 42 52 54 3_VGA_LCD_..pBRT + 83f0: 4c 60 a1 09 50 48 53 32 0a 8a 0a 03 a0 08 92 93 L`..PHS2........ + 8400: 60 0a 00 76 60 70 0a 03 5e 5e 5e 5e 2e 41 4d 57 `..v`p..^^^^.AMW + 8410: 30 49 4e 46 30 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 0INF0p..^^^^.AMW + 8420: 30 49 4e 46 31 70 0b 05 e0 5e 5e 5e 5e 2e 41 4d 0INF1p...^^^^.AM + 8430: 57 30 49 4e 46 32 70 60 5e 5e 5e 5e 2e 41 4d 57 W0INF2p`^^^^.AMW + 8440: 30 49 4e 46 33 86 41 4d 57 30 0a d0 14 14 5f 51 0INF3.AMW0...._Q + 8450: 38 32 00 70 0a 82 50 38 30 48 86 4c 49 44 5f 0a 82.p..P80H.LID_. + 8460: 80 14 44 06 5f 51 38 33 00 70 0a 83 50 38 30 48 ..D._Q83.p..P80H + 8470: 5b 23 4d 55 54 30 ff ff 70 41 43 49 4e 50 57 52 [#MUT0..pACINPWR + 8480: 53 5b 27 4d 55 54 30 86 41 43 41 44 0a 80 a0 26 S['MUT0.ACAD...& + 8490: 93 45 43 4f 4e 0a 01 86 5c 2e 5f 50 52 5f 43 30 .ECON...\._PR_C0 + 84a0: 30 30 0a 80 5b 22 0a 64 86 5c 2e 5f 50 52 5f 43 00..[".d.\._PR_C + 84b0: 30 30 30 0a 81 a0 10 95 54 50 4f 53 0a 40 50 48 000.....TPOS.@PH + 84c0: 53 32 0a 8a 0a 01 14 44 06 5f 51 38 34 00 70 0a S2.....D._Q84.p. + 84d0: 84 50 38 30 48 5b 23 4d 55 54 30 ff ff 70 41 43 .P80H[#MUT0..pAC + 84e0: 49 4e 50 57 52 53 5b 27 4d 55 54 30 86 41 43 41 INPWRS['MUT0.ACA + 84f0: 44 0a 80 a0 26 93 45 43 4f 4e 0a 01 86 5c 2e 5f D...&.ECON...\._ + 8500: 50 52 5f 43 30 30 30 0a 80 5b 22 0a 64 86 5c 2e PR_C000..[".d.\. + 8510: 5f 50 52 5f 43 30 30 30 0a 81 a0 10 95 54 50 4f _PR_C000.....TPO + 8520: 53 0a 40 50 48 53 32 0a 8a 0a 00 14 43 09 5f 51 S.@PHS2.....C._Q + 8530: 38 35 00 70 0a 85 50 38 30 48 5b 23 4d 55 54 30 85.p..P80H[#MUT0 + 8540: ff ff 5e 5e 5e 5e 2e 42 41 54 54 42 54 53 54 86 ..^^^^.BATTBTST. + 8550: 42 41 54 54 0a 80 5b 22 0b f4 01 a0 25 5e 5e 5e BATT..["....%^^^ + 8560: 5e 2e 42 41 54 54 42 54 43 48 86 42 41 54 54 0a ^.BATTBTCH.BATT. + 8570: 81 70 0a 00 5e 5e 5e 5e 2e 42 41 54 54 42 54 43 .p..^^^^.BATTBTC + 8580: 48 70 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 Hp..^^^^.AMW0INF + 8590: 30 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 0p..^^^^.AMW0INF + 85a0: 31 70 0b 0e e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 1p...^^^^.AMW0IN + 85b0: 46 32 86 41 4d 57 30 0a d0 5b 27 4d 55 54 30 14 F2.AMW0..['MUT0. + 85c0: 47 08 5f 51 38 36 00 70 0a 86 50 38 30 48 5b 23 G._Q86.p..P80H[# + 85d0: 4d 55 54 30 ff ff 70 0a 00 5e 5e 5e 5e 2e 42 41 MUT0..p..^^^^.BA + 85e0: 54 54 42 53 54 41 86 42 41 54 54 0a 80 5b 22 0b TTBSTA.BATT..[". + 85f0: f4 01 86 42 41 54 54 0a 81 70 0a 00 5e 5e 5e 5e ...BATT..p..^^^^ + 8600: 2e 42 41 54 54 42 54 50 5f 5b 27 4d 55 54 30 70 .BATTBTP_['MUT0p + 8610: 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 30 70 ..^^^^.AMW0INF0p + 8620: 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 31 70 ..^^^^.AMW0INF1p + 8630: 0b 0e e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 32 ...^^^^.AMW0INF2 + 8640: 86 41 4d 57 30 0a d0 14 0d 5f 51 38 37 00 70 0a .AMW0...._Q87.p. + 8650: 87 50 38 30 48 14 0d 5f 51 38 38 00 70 0a 88 50 .P80H.._Q88.p..P + 8660: 38 30 48 14 0d 5f 51 38 39 00 70 0a 89 50 38 30 80H.._Q89.p..P80 + 8670: 48 14 0d 5f 51 38 41 00 70 0a 8a 50 38 30 48 14 H.._Q8A.p..P80H. + 8680: 4d 0b 5f 51 38 43 00 70 0a 8c 50 38 30 48 70 0a M._Q8C.p..P80Hp. + 8690: 00 60 70 0a 00 61 70 0a 00 62 70 0a 00 63 70 0a .`p..ap..bp..cp. + 86a0: f2 57 43 41 31 46 4f 57 4d 0a 11 0a 0b 70 57 46 .WCA1FOWM....pWF + 86b0: 49 31 60 70 57 46 49 32 61 70 0b 00 01 62 70 0a I1`pWFI2ap...bp. + 86c0: 01 63 a0 4a 07 57 49 46 53 70 0a 06 5e 5e 5e 5e .c.J.WIFSp..^^^^ + 86d0: 2e 41 4d 57 30 49 4e 46 30 70 0a 00 5e 5e 5e 5e .AMW0INF0p..^^^^ + 86e0: 2e 41 4d 57 30 49 4e 46 31 70 0b 08 e0 5e 5e 5e .AMW0INF1p...^^^ + 86f0: 5e 2e 41 4d 57 30 49 4e 46 32 70 60 5e 5e 5e 5e ^.AMW0INF2p`^^^^ + 8700: 2e 41 4d 57 30 49 4e 46 33 70 61 5e 5e 5e 5e 2e .AMW0INF3pa^^^^. + 8710: 41 4d 57 30 49 4e 46 34 70 62 5e 5e 5e 5e 2e 41 AMW0INF4pb^^^^.A + 8720: 4d 57 30 49 4e 46 35 70 63 5e 5e 5e 5e 2e 41 4d MW0INF5pc^^^^.AM + 8730: 57 30 49 4e 46 36 86 41 4d 57 30 0a d0 14 0d 5f W0INF6.AMW0...._ + 8740: 51 38 44 00 70 0a 8d 50 38 30 48 14 14 5f 51 38 Q8D.p..P80H.._Q8 + 8750: 45 00 70 0a 8e 50 38 30 48 86 53 4c 50 42 0a 80 E.p..P80H.SLPB.. + 8760: 14 14 5f 51 38 46 00 70 0a 8f 50 38 30 48 86 42 .._Q8F.p..P80H.B + 8770: 41 54 54 0a 80 14 14 5f 51 39 30 00 70 0a 90 50 ATT...._Q90.p..P + 8780: 38 30 48 86 42 41 54 54 0a 80 14 1b 5f 51 39 31 80H.BATT...._Q91 + 8790: 00 70 0a 91 50 38 30 48 70 0a 91 53 53 4d 44 70 .p..P80Hp..SSMDp + 87a0: 0a 77 53 53 4d 50 14 14 5f 51 39 32 00 70 0a 92 .wSSMP.._Q92.p.. + 87b0: 53 53 4d 44 70 0a 77 53 53 4d 50 14 14 5f 51 39 SSMDp.wSSMP.._Q9 + 87c0: 33 00 70 0a 93 53 53 4d 44 70 0a 77 53 53 4d 50 3.p..SSMDp.wSSMP + 87d0: 14 14 5f 51 39 34 00 70 0a 94 53 53 4d 44 70 0a .._Q94.p..SSMDp. + 87e0: 77 53 53 4d 50 14 14 5f 51 39 35 00 70 0a 95 53 wSSMP.._Q95.p..S + 87f0: 53 4d 44 70 0a 77 53 53 4d 50 14 14 5f 51 39 36 SMDp.wSSMP.._Q96 + 8800: 00 70 0a 96 53 53 4d 44 70 0a 77 53 53 4d 50 14 .p..SSMDp.wSSMP. + 8810: 14 5f 51 39 37 00 70 0a 97 53 53 4d 44 70 0a 77 ._Q97.p..SSMDp.w + 8820: 53 53 4d 50 14 14 5f 51 39 38 00 70 0a 98 53 53 SSMP.._Q98.p..SS + 8830: 4d 44 70 0a 77 53 53 4d 50 14 31 5f 51 39 41 00 MDp.wSSMP.1_Q9A. + 8840: 70 0a 9a 50 38 30 48 70 4e 4f 53 30 60 70 60 5c p..P80HpNOS0`p`\ + 8850: 2f 03 5f 50 52 5f 43 30 30 30 5f 50 50 43 86 5c /._PR_C000_PPC.\ + 8860: 2e 5f 50 52 5f 43 30 30 30 0a 80 14 06 5f 51 41 ._PR_C000...._QA + 8870: 30 00 14 06 5f 51 41 31 00 14 06 5f 51 41 32 00 0..._QA1..._QA2. + 8880: 14 06 5f 51 41 33 00 14 06 5f 51 41 34 00 14 06 .._QA3..._QA4... + 8890: 5f 51 41 36 00 14 06 5f 51 41 37 00 14 06 5f 51 _QA6..._QA7..._Q + 88a0: 41 38 00 14 06 5f 51 41 39 00 14 06 5f 51 41 41 A8..._QA9..._QAA + 88b0: 00 14 4a 04 5f 51 41 43 00 5b 22 0a 32 70 0a ac ..J._QAC.[".2p.. + 88c0: 50 38 30 48 70 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 P80Hp..^^^^.AMW0 + 88d0: 49 4e 46 30 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 INF0p..^^^^.AMW0 + 88e0: 49 4e 46 31 70 0b 27 e0 5e 5e 5e 5e 2e 41 4d 57 INF1p.'.^^^^.AMW + 88f0: 30 49 4e 46 32 86 41 4d 57 30 0a d0 14 14 5f 51 0INF2.AMW0...._Q + 8900: 41 46 00 70 0a af 50 38 30 48 86 4d 42 54 5f 0a AF.p..P80H.MBT_. + 8910: 80 14 46 04 5f 51 41 44 00 70 0a ad 50 38 30 48 ..F._QAD.p..P80H + 8920: 70 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 30 p..^^^^.AMW0INF0 + 8930: 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 31 p..^^^^.AMW0INF1 + 8940: 70 0b 25 e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 p.%.^^^^.AMW0INF + 8950: 32 86 41 4d 57 30 0a d0 14 46 04 5f 51 41 45 00 2.AMW0...F._QAE. + 8960: 70 0a ae 50 38 30 48 70 0a 02 5e 5e 5e 5e 2e 41 p..P80Hp..^^^^.A + 8970: 4d 57 30 49 4e 46 30 70 0a 00 5e 5e 5e 5e 2e 41 MW0INF0p..^^^^.A + 8980: 4d 57 30 49 4e 46 31 70 0b 28 e0 5e 5e 5e 5e 2e MW0INF1p.(.^^^^. + 8990: 41 4d 57 30 49 4e 46 32 86 41 4d 57 30 0a d0 14 AMW0INF2.AMW0... + 89a0: 06 5f 51 42 30 00 14 06 5f 51 44 30 00 14 06 5f ._QB0..._QD0..._ + 89b0: 51 44 31 00 14 3d 5f 51 45 30 00 70 0a e0 50 38 QD1..=_QE0.p..P8 + 89c0: 30 48 70 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 0Hp..^^^^.AMW0IN + 89d0: 46 30 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e F0p..^^^^.AMW0IN + 89e0: 46 31 70 0a 3a 5e 5e 5e 5e 2e 41 4d 57 30 49 4e F1p.:^^^^.AMW0IN + 89f0: 46 32 14 3e 5f 51 45 31 00 70 0a e1 50 38 30 48 F2.>_QE1.p..P80H + 8a00: 70 0a 02 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 30 p..^^^^.AMW0INF0 + 8a10: 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 31 p..^^^^.AMW0INF1 + 8a20: 70 0b 45 e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 p.E.^^^^.AMW0INF + 8a30: 32 14 47 22 5f 51 45 33 00 70 0a e3 50 38 30 48 2.G"_QE3.p..P80H + 8a40: 70 0a 00 57 43 41 33 70 0a 00 57 43 41 34 46 4f p..WCA3p..WCA4FO + 8a50: 57 4d 0a 11 0a 05 5b 23 4d 55 54 30 ff ff 70 41 WM....[#MUT0..pA + 8a60: 43 49 4e 60 70 44 41 44 50 61 70 41 43 54 50 62 CIN`pDADPapACTPb + 8a70: 70 0a 06 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 30 p..^^^^.AMW0INF0 + 8a80: 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 31 p..^^^^.AMW0INF1 + 8a90: 70 0b 0d e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 p...^^^^.AMW0INF + 8aa0: 32 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 2p..^^^^.AMW0INF + 8ab0: 33 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 3p..^^^^.AMW0INF + 8ac0: 34 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 4p..^^^^.AMW0INF + 8ad0: 35 70 0a 00 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 5p..^^^^.AMW0INF + 8ae0: 36 a0 0c 93 54 59 50 45 0a 00 70 0a 41 67 a0 0c 6...TYPE..p.Ag.. + 8af0: 93 54 59 50 45 0a 01 70 0a 5a 67 a0 49 07 93 42 .TYPE..p.Zg.I..B + 8b00: 45 4d 51 0a 02 a0 4f 06 93 42 30 49 4e 0a 01 a0 EMQ...O..B0IN... + 8b10: 20 92 93 44 4e 4e 30 0a ff 70 0a 12 5e 5e 5e 5e ..DNN0..p..^^^^ + 8b20: 2e 41 4d 57 30 49 4e 46 33 86 41 4d 57 30 0a d0 .AMW0INF3.AMW0.. + 8b30: a1 44 04 a0 1f 93 42 30 50 46 0a 01 70 0a 16 5e .D....B0PF..p..^ + 8b40: 5e 5e 5e 2e 41 4d 57 30 49 4e 46 33 86 41 4d 57 ^^^.AMW0INF3.AMW + 8b50: 30 0a d0 a1 21 a0 1f 93 42 30 54 46 0a 01 70 0a 0...!...B0TF..p. + 8b60: 15 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 33 86 41 .^^^^.AMW0INF3.A + 8b70: 4d 57 30 0a d0 a0 4d 0d 93 42 45 4d 51 0a 01 70 MW0...M..BEMQ..p + 8b80: 0a 01 50 38 30 48 a0 47 04 93 60 0a 01 79 67 0a ..P80H.G..`..yg. + 8b90: 08 67 a0 3b 93 62 0a 00 70 0a 01 5e 5e 5e 5e 2e .g.;.b..p..^^^^. + 8ba0: 41 4d 57 30 49 4e 46 33 70 0a 01 5e 5e 5e 5e 2e AMW0INF3p..^^^^. + 8bb0: 41 4d 57 30 49 4e 46 35 70 67 5e 5e 5e 5e 2e 41 AMW0INF5pg^^^^.A + 8bc0: 4d 57 30 49 4e 46 36 86 41 4d 57 30 0a d0 a0 44 MW0INF6.AMW0...D + 8bd0: 08 95 62 67 70 0a 02 50 38 30 48 a0 3b 93 62 0a ..bgp..P80H.;.b. + 8be0: 2d 70 0a 03 50 38 30 48 70 0a 05 5e 5e 5e 5e 2e -p..P80Hp..^^^^. + 8bf0: 41 4d 57 30 49 4e 46 33 70 0a 01 5e 5e 5e 5e 2e AMW0INF3p..^^^^. + 8c00: 41 4d 57 30 49 4e 46 35 70 67 5e 5e 5e 5e 2e 41 AMW0INF5pg^^^^.A + 8c10: 4d 57 30 49 4e 46 36 a0 34 93 62 0a 41 70 0a 02 MW0INF6.4.b.Ap.. + 8c20: 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 33 70 0a 04 ^^^^.AMW0INF3p.. + 8c30: 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 35 70 67 5e ^^^^.AMW0INF5pg^ + 8c40: 5e 5e 5e 2e 41 4d 57 30 49 4e 46 36 86 41 4d 57 ^^^.AMW0INF6.AMW + 8c50: 30 0a d0 5b 27 4d 55 54 30 14 41 06 5f 51 45 35 0..['MUT0.A._QE5 + 8c60: 00 70 0a e5 50 38 30 48 5b 23 4d 55 54 30 ff ff .p..P80H[#MUT0.. + 8c70: 5e 5e 5e 5e 2e 42 41 54 54 42 54 53 54 70 0a 02 ^^^^.BATTBTSTp.. + 8c80: 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 30 70 0a 00 ^^^^.AMW0INF0p.. + 8c90: 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 31 70 0b 0e ^^^^.AMW0INF1p.. + 8ca0: e0 5e 5e 5e 5e 2e 41 4d 57 30 49 4e 46 32 86 41 .^^^^.AMW0INF2.A + 8cb0: 4d 57 30 0a d0 5b 27 4d 55 54 30 14 0d 5f 51 46 MW0..['MUT0.._QF + 8cc0: 31 00 70 0a f1 50 38 30 48 14 0d 5f 51 46 32 00 1.p..P80H.._QF2. + 8cd0: 70 0a f2 50 38 30 48 14 0d 5f 51 46 33 00 70 0a p..P80H.._QF3.p. + 8ce0: f3 50 38 30 48 14 0d 5f 51 46 34 00 70 0a f4 50 .P80H.._QF4.p..P + 8cf0: 38 30 48 14 0d 5f 51 46 35 00 70 0a f5 50 38 30 80H.._QF5.p..P80 + 8d00: 48 14 0d 5f 51 46 36 00 70 0a f6 50 38 30 48 14 H.._QF6.p..P80H. + 8d10: 0d 5f 51 46 37 00 70 0a f7 50 38 30 48 14 0d 5f ._QF7.p..P80H.._ + 8d20: 51 46 38 00 70 0a f8 50 38 30 48 14 0d 5f 51 46 QF8.p..P80H.._QF + 8d30: 39 00 70 0a f9 50 38 30 48 14 0d 5f 51 46 41 00 9.p..P80H.._QFA. + 8d40: 70 0a fa 50 38 30 48 14 0d 5f 51 46 42 00 70 0a p..P80H.._QFB.p. + 8d50: fb 50 38 30 48 14 0d 5f 51 46 43 00 70 0a fc 50 .P80H.._QFC.p..P + 8d60: 38 30 48 14 46 0c 5f 51 39 46 00 70 0a 9f 50 38 80H.F._Q9F.p..P8 + 8d70: 30 48 70 0a 00 60 70 0a 00 61 70 0a 00 62 70 0a 0Hp..`p..ap..bp. + 8d80: 00 63 a0 17 93 51 43 4b 53 0a 00 70 0a f2 57 43 .c...QCKS..p..WC + 8d90: 41 31 46 4f 57 4d 0a 11 0a 0b 70 57 46 49 31 60 A1FOWM....pWFI1` + 8da0: 70 57 46 49 32 61 70 0b 00 01 62 70 0a 01 63 a0 pWFI2ap...bp..c. + 8db0: 4a 07 57 49 46 53 70 0a 06 5e 5e 5e 5e 2e 41 4d J.WIFSp..^^^^.AM + 8dc0: 57 30 49 4e 46 30 70 0a 00 5e 5e 5e 5e 2e 41 4d W0INF0p..^^^^.AM + 8dd0: 57 30 49 4e 46 31 70 0b 08 e0 5e 5e 5e 5e 2e 41 W0INF1p...^^^^.A + 8de0: 4d 57 30 49 4e 46 32 70 60 5e 5e 5e 5e 2e 41 4d MW0INF2p`^^^^.AM + 8df0: 57 30 49 4e 46 33 70 61 5e 5e 5e 5e 2e 41 4d 57 W0INF3pa^^^^.AMW + 8e00: 30 49 4e 46 34 70 62 5e 5e 5e 5e 2e 41 4d 57 30 0INF4pb^^^^.AMW0 + 8e10: 49 4e 46 35 70 63 5e 5e 5e 5e 2e 41 4d 57 30 49 INF5pc^^^^.AMW0I + 8e20: 4e 46 36 86 41 4d 57 30 0a d0 5b 82 40 16 50 32 NF6.AMW0..[.@.P2 + 8e30: 50 5f 08 5f 41 44 52 0c 04 00 14 00 08 5f 50 52 P_._ADR......_PR + 8e40: 57 12 06 02 0a 04 0a 05 14 43 14 5f 50 52 54 00 W........C._PRT. + 8e50: a0 4b 07 47 50 49 43 a4 12 43 07 08 12 0d 04 0c .K.GPIC..C...... + 8e60: ff ff 04 00 0a 00 0a 00 0a 15 12 0d 04 0c ff ff ................ + 8e70: 04 00 0a 01 0a 00 0a 16 12 0d 04 0c ff ff 04 00 ................ + 8e80: 0a 02 0a 00 0a 17 12 0d 04 0c ff ff 04 00 0a 03 ................ + 8e90: 0a 00 0a 14 12 0d 04 0c ff ff 05 00 0a 00 0a 00 ................ + 8ea0: 0a 14 12 0d 04 0c ff ff 05 00 0a 01 0a 00 0a 15 ................ + 8eb0: 12 0d 04 0c ff ff 05 00 0a 02 0a 00 0a 16 12 0d ................ + 8ec0: 04 0c ff ff 05 00 0a 03 0a 00 0a 17 a1 4f 0b a4 .............O.. + 8ed0: 12 4b 0b 08 12 16 04 0c ff ff 04 00 0a 00 5e 5e .K............^^ + 8ee0: 2e 4c 50 43 30 4c 4e 4b 46 0a 00 12 16 04 0c ff .LPC0LNKF....... + 8ef0: ff 04 00 0a 01 5e 5e 2e 4c 50 43 30 4c 4e 4b 47 .....^^.LPC0LNKG + 8f00: 0a 00 12 16 04 0c ff ff 04 00 0a 02 5e 5e 2e 4c ............^^.L + 8f10: 50 43 30 4c 4e 4b 48 0a 00 12 16 04 0c ff ff 04 PC0LNKH......... + 8f20: 00 0a 03 5e 5e 2e 4c 50 43 30 4c 4e 4b 45 0a 00 ...^^.LPC0LNKE.. + 8f30: 12 16 04 0c ff ff 05 00 0a 00 5e 5e 2e 4c 50 43 ..........^^.LPC + 8f40: 30 4c 4e 4b 45 0a 00 12 16 04 0c ff ff 05 00 0a 0LNKE........... + 8f50: 01 5e 5e 2e 4c 50 43 30 4c 4e 4b 46 0a 00 12 16 .^^.LPC0LNKF.... + 8f60: 04 0c ff ff 05 00 0a 02 5e 5e 2e 4c 50 43 30 4c ........^^.LPC0L + 8f70: 4e 4b 47 0a 00 12 16 04 0c ff ff 05 00 0a 03 5e NKG............^ + 8f80: 5e 2e 4c 50 43 30 4c 4e 4b 48 0a 00 5b 82 45 57 ^.LPC0LNKH..[.EW + 8f90: 53 50 42 30 08 5f 41 44 52 0c 00 00 15 00 08 5f SPB0._ADR......_ + 8fa0: 50 52 57 12 06 02 0a 08 0a 04 14 4d 09 5f 50 52 PRW........M._PR + 8fb0: 54 00 a0 39 47 50 49 43 a4 12 32 04 12 0b 04 0b T..9GPIC..2..... + 8fc0: ff ff 0a 00 0a 00 0a 10 12 0b 04 0b ff ff 0a 01 ................ + 8fd0: 0a 00 0a 11 12 0b 04 0b ff ff 0a 02 0a 00 0a 12 ................ + 8fe0: 12 0b 04 0b ff ff 0a 03 0a 00 0a 13 a1 4b 05 a4 .............K.. + 8ff0: 12 47 05 04 12 14 04 0b ff ff 0a 00 5e 5e 2e 4c .G..........^^.L + 9000: 50 43 30 4c 4e 4b 41 0a 00 12 14 04 0b ff ff 0a PC0LNKA......... + 9010: 01 5e 5e 2e 4c 50 43 30 4c 4e 4b 42 0a 00 12 14 .^^.LPC0LNKB.... + 9020: 04 0b ff ff 0a 02 5e 5e 2e 4c 50 43 30 4c 4e 4b ......^^.LPC0LNK + 9030: 43 0a 00 12 14 04 0b ff ff 0a 03 5e 5e 2e 4c 50 C..........^^.LP + 9040: 43 30 4c 4e 4b 44 0a 00 5b 80 50 43 46 47 02 0a C0LNKD..[.PCFG.. + 9050: 00 0a 20 5b 81 18 50 43 46 47 03 44 56 49 44 20 .. [..PCFG.DVID + 9060: 50 43 4d 53 20 00 40 08 53 42 55 53 20 5b 80 58 PCMS .@.SBUS [.X + 9070: 50 43 42 02 0a 58 0a 40 5b 81 39 58 50 43 42 00 PCB..X.@[.9XPCB. + 9080: 00 40 08 4c 4b 43 4e 10 4c 4b 53 54 10 00 30 00 .@.LKCN.LKST..0. + 9090: 03 50 53 44 43 01 00 02 50 53 44 53 01 00 01 48 .PSDC...PSDS...H + 90a0: 50 43 53 01 00 37 50 4d 45 53 01 00 4f 06 54 47 PCS..7PMES..O.TG + 90b0: 4c 53 04 14 0f 47 50 50 42 00 a4 7b 5f 41 44 52 LS...GPPB..{_ADR + 90c0: 0a 07 00 14 48 30 47 48 50 53 02 70 47 50 50 42 ....H0GHPS.pGPPB + 90d0: 60 a0 4e 13 93 68 0a 00 a0 4c 04 93 60 0a 00 5e `.N..h...L..`..^ + 90e0: 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 ^.SMB_RWAB^^.SMB + 90f0: 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff ef ff ff _CABR........... + 9100: 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e ..^^.SMB_RWAB^^. + 9110: 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fe SMB_CABR.....e.. + 9120: fe ff ff 0a 00 a0 4c 04 93 60 0a 01 5e 5e 2e 53 ......L..`..^^.S + 9130: 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 MB_RWAB^^.SMB_CA + 9140: 42 52 0a 06 0a 00 0a c0 0c ff df ff ff 0a 00 5e BR.............^ + 9150: 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 ^.SMB_RWAB^^.SMB + 9160: 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fd fd ff ff _CABR.....e..... + 9170: 0a 00 a0 4c 04 93 60 0a 02 5e 5e 2e 53 4d 42 5f ...L..`..^^.SMB_ + 9180: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9190: 06 0a 00 0a c0 0c ff bf ff ff 0a 00 5e 5e 2e 53 ............^^.S + 91a0: 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 MB_RWAB^^.SMB_CA + 91b0: 42 52 0a 01 0a 00 0a 65 0c fb fb ff ff 0a 00 a0 BR.....e........ + 91c0: 4c 04 93 60 0a 03 5e 5e 2e 53 4d 42 5f 52 57 41 L..`..^^.SMB_RWA + 91d0: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 B^^.SMB_CABR.... + 91e0: 0a c0 0c ff 7f ff ff 0a 00 5e 5e 2e 53 4d 42 5f .........^^.SMB_ + 91f0: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9200: 01 0a 00 0a 65 0c f7 f7 ff ff 0a 00 5b 21 0a c8 ....e.......[!.. + 9210: a0 46 14 93 68 0a 01 a0 4e 04 93 60 0a 00 5e 5e .F..h...N..`..^^ + 9220: 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f .SMB_RWAB^^.SMB_ + 9230: 43 41 42 52 0a 06 0a 00 0a c0 0c ff ef ff ff 0b CABR............ + 9240: 00 10 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e ..^^.SMB_RWAB^^. + 9250: 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fe SMB_CABR.....e.. + 9260: fe ff ff 0b 01 01 a0 4e 04 93 60 0a 01 5e 5e 2e .......N..`..^^. + 9270: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 9280: 41 42 52 0a 06 0a 00 0a c0 0c ff df ff ff 0b 00 ABR............. + 9290: 20 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 ^^.SMB_RWAB^^.S + 92a0: 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fd fd MB_CABR.....e... + 92b0: ff ff 0b 02 02 a0 4e 04 93 60 0a 02 5e 5e 2e 53 ......N..`..^^.S + 92c0: 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 MB_RWAB^^.SMB_CA + 92d0: 42 52 0a 06 0a 00 0a c0 0c ff bf ff ff 0b 00 40 BR.............@ + 92e0: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 92f0: 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fb fb ff B_CABR.....e.... + 9300: ff 0b 04 04 a0 4e 04 93 60 0a 03 5e 5e 2e 53 4d .....N..`..^^.SM + 9310: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + 9320: 52 0a 06 0a 00 0a c0 0c ff 7f ff ff 0b 00 80 5e R..............^ + 9330: 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 ^.SMB_RWAB^^.SMB + 9340: 5f 43 41 42 52 0a 01 0a 00 0a 65 0c f7 f7 ff ff _CABR.....e..... + 9350: 0b 08 08 5b 21 0a c8 a0 44 07 93 68 0a 00 47 45 ...[!...D..h..GE + 9360: 4e 32 70 5e 5e 2e 53 4d 42 5f 52 44 41 42 5e 5e N2p^^.SMB_RDAB^^ + 9370: 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a a5 61 7b .SMB_CABR..`..a{ + 9380: 61 0a ff 61 70 0b f4 01 62 a2 37 90 92 93 61 0a a..ap...b.7...a. + 9390: 10 94 62 0a 00 76 62 5b 21 0a c8 5b 21 0a c8 70 ..b..vb[!..[!..p + 93a0: 5e 5e 2e 53 4d 42 5f 52 44 41 42 5e 5e 2e 53 4d ^^.SMB_RDAB^^.SM + 93b0: 42 5f 43 41 42 52 0a 03 60 0a a5 61 7b 61 0a ff B_CABR..`..a{a.. + 93c0: 61 a0 0a 92 93 61 0a 10 47 45 4e 31 14 49 0a 47 a....a..GEN1.I.G + 93d0: 45 4e 32 00 70 0a 02 54 47 4c 53 70 47 50 50 42 EN2.p..TGLSpGPPB + 93e0: 60 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 `^^.SMB_RWAB^^.S + 93f0: 4d 42 5f 43 41 42 52 0a 03 60 0a a4 0c fe ff ff MB_CABR..`...... + 9400: ff 0a 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e ...^^.SMB_RWAB^^ + 9410: 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a a2 0c ff .SMB_CABR..`.... + 9420: df ff ff 0b 00 20 5e 5e 2e 53 4d 42 5f 52 57 41 ..... ^^.SMB_RWA + 9430: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a B^^.SMB_CABR..`. + 9440: c0 0c ff 7f ff ff 0b 00 80 5e 5e 2e 53 4d 42 5f .........^^.SMB_ + 9450: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9460: 03 60 0a a4 0c ff ff ff df 0c 00 00 00 20 5b 21 .`........... [! + 9470: 0a c8 5b 21 0a c8 14 41 06 47 45 4e 31 00 70 0a ..[!...A.GEN1.p. + 9480: 01 54 47 4c 53 70 47 50 50 42 60 5e 5e 2e 53 4d .TGLSpGPPB`^^.SM + 9490: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + 94a0: 52 0a 03 60 0a a4 0c fe ff ff ff 0a 00 5e 5e 2e R..`.........^^. + 94b0: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 94c0: 41 42 52 0a 03 60 0a a2 0c ff df ff ff 0b 00 20 ABR..`......... + 94d0: 5b 21 0a c8 5b 21 0a c8 5b 82 29 58 50 44 56 08 [!..[!..[.)XPDV. + 94e0: 5f 41 44 52 0a 00 5b 80 50 43 46 47 02 0a 00 0a _ADR..[.PCFG.... + 94f0: 08 5b 81 10 50 43 46 47 03 44 56 49 44 20 50 43 .[..PCFG.DVID PC + 9500: 4d 53 20 5b 82 45 57 53 50 42 31 08 5f 41 44 52 MS [.EWSPB1._ADR + 9510: 0c 01 00 15 00 08 5f 50 52 57 12 06 02 0a 08 0a ......_PRW...... + 9520: 04 14 4d 09 5f 50 52 54 00 a0 39 47 50 49 43 a4 ..M._PRT..9GPIC. + 9530: 12 32 04 12 0b 04 0b ff ff 0a 00 0a 00 0a 11 12 .2.............. + 9540: 0b 04 0b ff ff 0a 01 0a 00 0a 12 12 0b 04 0b ff ................ + 9550: ff 0a 02 0a 00 0a 13 12 0b 04 0b ff ff 0a 03 0a ................ + 9560: 00 0a 10 a1 4b 05 a4 12 47 05 04 12 14 04 0b ff ....K...G....... + 9570: ff 0a 00 5e 5e 2e 4c 50 43 30 4c 4e 4b 42 0a 00 ...^^.LPC0LNKB.. + 9580: 12 14 04 0b ff ff 0a 01 5e 5e 2e 4c 50 43 30 4c ........^^.LPC0L + 9590: 4e 4b 43 0a 00 12 14 04 0b ff ff 0a 02 5e 5e 2e NKC..........^^. + 95a0: 4c 50 43 30 4c 4e 4b 44 0a 00 12 14 04 0b ff ff LPC0LNKD........ + 95b0: 0a 03 5e 5e 2e 4c 50 43 30 4c 4e 4b 41 0a 00 5b ..^^.LPC0LNKA..[ + 95c0: 80 50 43 46 47 02 0a 00 0a 20 5b 81 18 50 43 46 .PCFG.... [..PCF + 95d0: 47 03 44 56 49 44 20 50 43 4d 53 20 00 40 08 53 G.DVID PCMS .@.S + 95e0: 42 55 53 20 5b 80 58 50 43 42 02 0a 58 0a 40 5b BUS [.XPCB..X.@[ + 95f0: 81 39 58 50 43 42 00 00 40 08 4c 4b 43 4e 10 4c .9XPCB..@.LKCN.L + 9600: 4b 53 54 10 00 30 00 03 50 53 44 43 01 00 02 50 KST..0..PSDC...P + 9610: 53 44 53 01 00 01 48 50 43 53 01 00 37 50 4d 45 SDS...HPCS..7PME + 9620: 53 01 00 4f 06 54 47 4c 53 04 14 0f 47 50 50 42 S..O.TGLS...GPPB + 9630: 00 a4 7b 5f 41 44 52 0a 07 00 14 48 30 47 48 50 ..{_ADR....H0GHP + 9640: 53 02 70 47 50 50 42 60 a0 4e 13 93 68 0a 00 a0 S.pGPPB`.N..h... + 9650: 4c 04 93 60 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 L..`..^^.SMB_RWA + 9660: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 B^^.SMB_CABR.... + 9670: 0a c0 0c ff ef ff ff 0a 00 5e 5e 2e 53 4d 42 5f .........^^.SMB_ + 9680: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9690: 01 0a 00 0a 65 0c fe fe ff ff 0a 00 a0 4c 04 93 ....e........L.. + 96a0: 60 0a 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e `..^^.SMB_RWAB^^ + 96b0: 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c .SMB_CABR....... + 96c0: ff df ff ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 ......^^.SMB_RWA + 96d0: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 B^^.SMB_CABR.... + 96e0: 0a 65 0c fd fd ff ff 0a 00 a0 4c 04 93 60 0a 02 .e........L..`.. + 96f0: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 9700: 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff bf ff B_CABR.......... + 9710: ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e ...^^.SMB_RWAB^^ + 9720: 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c .SMB_CABR.....e. + 9730: fb fb ff ff 0a 00 a0 4c 04 93 60 0a 03 5e 5e 2e .......L..`..^^. + 9740: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 9750: 41 42 52 0a 06 0a 00 0a c0 0c ff 7f ff ff 0a 00 ABR............. + 9760: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 9770: 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c f7 f7 ff B_CABR.....e.... + 9780: ff 0a 00 5b 21 0a c8 a0 46 14 93 68 0a 01 a0 4e ...[!...F..h...N + 9790: 04 93 60 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 ..`..^^.SMB_RWAB + 97a0: 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a ^^.SMB_CABR..... + 97b0: c0 0c ff ef ff ff 0b 00 10 5e 5e 2e 53 4d 42 5f .........^^.SMB_ + 97c0: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 97d0: 01 0a 00 0a 65 0c fe fe ff ff 0b 01 01 a0 4e 04 ....e.........N. + 97e0: 93 60 0a 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e .`..^^.SMB_RWAB^ + 97f0: 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 ^.SMB_CABR...... + 9800: 0c ff df ff ff 0b 00 20 5e 5e 2e 53 4d 42 5f 52 ....... ^^.SMB_R + 9810: 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 WAB^^.SMB_CABR.. + 9820: 0a 00 0a 65 0c fd fd ff ff 0b 02 02 a0 4e 04 93 ...e.........N.. + 9830: 60 0a 02 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e `..^^.SMB_RWAB^^ + 9840: 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c .SMB_CABR....... + 9850: ff bf ff ff 0b 00 40 5e 5e 2e 53 4d 42 5f 52 57 ......@^^.SMB_RW + 9860: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a AB^^.SMB_CABR... + 9870: 00 0a 65 0c fb fb ff ff 0b 04 04 a0 4e 04 93 60 ..e.........N..` + 9880: 0a 03 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e ..^^.SMB_RWAB^^. + 9890: 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff SMB_CABR........ + 98a0: 7f ff ff 0b 00 80 5e 5e 2e 53 4d 42 5f 52 57 41 ......^^.SMB_RWA + 98b0: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 B^^.SMB_CABR.... + 98c0: 0a 65 0c f7 f7 ff ff 0b 08 08 5b 21 0a c8 a0 44 .e........[!...D + 98d0: 07 93 68 0a 00 47 45 4e 32 70 5e 5e 2e 53 4d 42 ..h..GEN2p^^.SMB + 98e0: 5f 52 44 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 _RDAB^^.SMB_CABR + 98f0: 0a 03 60 0a a5 61 7b 61 0a ff 61 70 0b f4 01 62 ..`..a{a..ap...b + 9900: a2 37 90 92 93 61 0a 10 94 62 0a 00 76 62 5b 21 .7...a...b..vb[! + 9910: 0a c8 5b 21 0a c8 70 5e 5e 2e 53 4d 42 5f 52 44 ..[!..p^^.SMB_RD + 9920: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 AB^^.SMB_CABR..` + 9930: 0a a5 61 7b 61 0a ff 61 a0 0a 92 93 61 0a 10 47 ..a{a..a....a..G + 9940: 45 4e 31 14 49 0a 47 45 4e 32 00 70 0a 02 54 47 EN1.I.GEN2.p..TG + 9950: 4c 53 70 47 50 50 42 60 5e 5e 2e 53 4d 42 5f 52 LSpGPPB`^^.SMB_R + 9960: 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 WAB^^.SMB_CABR.. + 9970: 60 0a a4 0c fe ff ff ff 0a 01 5e 5e 2e 53 4d 42 `.........^^.SMB + 9980: 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 _RWAB^^.SMB_CABR + 9990: 0a 03 60 0a a2 0c ff df ff ff 0b 00 20 5e 5e 2e ..`......... ^^. + 99a0: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 99b0: 41 42 52 0a 03 60 0a c0 0c ff 7f ff ff 0b 00 80 ABR..`.......... + 99c0: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 99d0: 42 5f 43 41 42 52 0a 03 60 0a a4 0c ff ff ff df B_CABR..`....... + 99e0: 0c 00 00 00 20 5b 21 0a c8 5b 21 0a c8 14 41 06 .... [!..[!...A. + 99f0: 47 45 4e 31 00 70 0a 01 54 47 4c 53 70 47 50 50 GEN1.p..TGLSpGPP + 9a00: 42 60 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e B`^^.SMB_RWAB^^. + 9a10: 53 4d 42 5f 43 41 42 52 0a 03 60 0a a4 0c fe ff SMB_CABR..`..... + 9a20: ff ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e ....^^.SMB_RWAB^ + 9a30: 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a a2 0c ^.SMB_CABR..`... + 9a40: ff df ff ff 0b 00 20 5b 21 0a c8 5b 21 0a c8 5b ...... [!..[!..[ + 9a50: 82 29 58 50 44 56 08 5f 41 44 52 0a 00 5b 80 50 .)XPDV._ADR..[.P + 9a60: 43 46 47 02 0a 00 0a 08 5b 81 10 50 43 46 47 03 CFG.....[..PCFG. + 9a70: 44 56 49 44 20 50 43 4d 53 20 5b 82 45 57 53 50 DVID PCMS [.EWSP + 9a80: 42 32 08 5f 41 44 52 0c 02 00 15 00 08 5f 50 52 B2._ADR......_PR + 9a90: 57 12 06 02 0a 08 0a 04 14 4d 09 5f 50 52 54 00 W........M._PRT. + 9aa0: a0 39 47 50 49 43 a4 12 32 04 12 0b 04 0b ff ff .9GPIC..2....... + 9ab0: 0a 00 0a 00 0a 12 12 0b 04 0b ff ff 0a 01 0a 00 ................ + 9ac0: 0a 13 12 0b 04 0b ff ff 0a 02 0a 00 0a 10 12 0b ................ + 9ad0: 04 0b ff ff 0a 03 0a 00 0a 11 a1 4b 05 a4 12 47 ...........K...G + 9ae0: 05 04 12 14 04 0b ff ff 0a 00 5e 5e 2e 4c 50 43 ..........^^.LPC + 9af0: 30 4c 4e 4b 43 0a 00 12 14 04 0b ff ff 0a 01 5e 0LNKC..........^ + 9b00: 5e 2e 4c 50 43 30 4c 4e 4b 44 0a 00 12 14 04 0b ^.LPC0LNKD...... + 9b10: ff ff 0a 02 5e 5e 2e 4c 50 43 30 4c 4e 4b 41 0a ....^^.LPC0LNKA. + 9b20: 00 12 14 04 0b ff ff 0a 03 5e 5e 2e 4c 50 43 30 .........^^.LPC0 + 9b30: 4c 4e 4b 42 0a 00 5b 80 50 43 46 47 02 0a 00 0a LNKB..[.PCFG.... + 9b40: 20 5b 81 18 50 43 46 47 03 44 56 49 44 20 50 43 [..PCFG.DVID PC + 9b50: 4d 53 20 00 40 08 53 42 55 53 20 5b 80 58 50 43 MS .@.SBUS [.XPC + 9b60: 42 02 0a 58 0a 40 5b 81 39 58 50 43 42 00 00 40 B..X.@[.9XPCB..@ + 9b70: 08 4c 4b 43 4e 10 4c 4b 53 54 10 00 30 00 03 50 .LKCN.LKST..0..P + 9b80: 53 44 43 01 00 02 50 53 44 53 01 00 01 48 50 43 SDC...PSDS...HPC + 9b90: 53 01 00 37 50 4d 45 53 01 00 4f 06 54 47 4c 53 S..7PMES..O.TGLS + 9ba0: 04 14 0f 47 50 50 42 00 a4 7b 5f 41 44 52 0a 07 ...GPPB..{_ADR.. + 9bb0: 00 14 48 30 47 48 50 53 02 70 47 50 50 42 60 a0 ..H0GHPS.pGPPB`. + 9bc0: 4e 13 93 68 0a 00 a0 4c 04 93 60 0a 00 5e 5e 2e N..h...L..`..^^. + 9bd0: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 9be0: 41 42 52 0a 06 0a 00 0a c0 0c ff ef ff ff 0a 00 ABR............. + 9bf0: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 9c00: 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fe fe ff B_CABR.....e.... + 9c10: ff 0a 00 a0 4c 04 93 60 0a 01 5e 5e 2e 53 4d 42 ....L..`..^^.SMB + 9c20: 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 _RWAB^^.SMB_CABR + 9c30: 0a 06 0a 00 0a c0 0c ff df ff ff 0a 00 5e 5e 2e .............^^. + 9c40: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 9c50: 41 42 52 0a 01 0a 00 0a 65 0c fd fd ff ff 0a 00 ABR.....e....... + 9c60: a0 4c 04 93 60 0a 02 5e 5e 2e 53 4d 42 5f 52 57 .L..`..^^.SMB_RW + 9c70: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a AB^^.SMB_CABR... + 9c80: 00 0a c0 0c ff bf ff ff 0a 00 5e 5e 2e 53 4d 42 ..........^^.SMB + 9c90: 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 _RWAB^^.SMB_CABR + 9ca0: 0a 01 0a 00 0a 65 0c fb fb ff ff 0a 00 a0 4c 04 .....e........L. + 9cb0: 93 60 0a 03 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e .`..^^.SMB_RWAB^ + 9cc0: 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 ^.SMB_CABR...... + 9cd0: 0c ff 7f ff ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 .......^^.SMB_RW + 9ce0: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a AB^^.SMB_CABR... + 9cf0: 00 0a 65 0c f7 f7 ff ff 0a 00 5b 21 0a c8 a0 46 ..e.......[!...F + 9d00: 14 93 68 0a 01 a0 4e 04 93 60 0a 00 5e 5e 2e 53 ..h...N..`..^^.S + 9d10: 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 MB_RWAB^^.SMB_CA + 9d20: 42 52 0a 06 0a 00 0a c0 0c ff ef ff ff 0b 00 10 BR.............. + 9d30: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + 9d40: 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fe fe ff B_CABR.....e.... + 9d50: ff 0b 01 01 a0 4e 04 93 60 0a 01 5e 5e 2e 53 4d .....N..`..^^.SM + 9d60: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + 9d70: 52 0a 06 0a 00 0a c0 0c ff df ff ff 0b 00 20 5e R............. ^ + 9d80: 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 ^.SMB_RWAB^^.SMB + 9d90: 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fd fd ff ff _CABR.....e..... + 9da0: 0b 02 02 a0 4e 04 93 60 0a 02 5e 5e 2e 53 4d 42 ....N..`..^^.SMB + 9db0: 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 _RWAB^^.SMB_CABR + 9dc0: 0a 06 0a 00 0a c0 0c ff bf ff ff 0b 00 40 5e 5e .............@^^ + 9dd0: 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f .SMB_RWAB^^.SMB_ + 9de0: 43 41 42 52 0a 01 0a 00 0a 65 0c fb fb ff ff 0b CABR.....e...... + 9df0: 04 04 a0 4e 04 93 60 0a 03 5e 5e 2e 53 4d 42 5f ...N..`..^^.SMB_ + 9e00: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9e10: 06 0a 00 0a c0 0c ff 7f ff ff 0b 00 80 5e 5e 2e .............^^. + 9e20: 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 SMB_RWAB^^.SMB_C + 9e30: 41 42 52 0a 01 0a 00 0a 65 0c f7 f7 ff ff 0b 08 ABR.....e....... + 9e40: 08 5b 21 0a c8 a0 44 07 93 68 0a 00 47 45 4e 32 .[!...D..h..GEN2 + 9e50: 70 5e 5e 2e 53 4d 42 5f 52 44 41 42 5e 5e 2e 53 p^^.SMB_RDAB^^.S + 9e60: 4d 42 5f 43 41 42 52 0a 03 60 0a a5 61 7b 61 0a MB_CABR..`..a{a. + 9e70: ff 61 70 0b f4 01 62 a2 37 90 92 93 61 0a 10 94 .ap...b.7...a... + 9e80: 62 0a 00 76 62 5b 21 0a c8 5b 21 0a c8 70 5e 5e b..vb[!..[!..p^^ + 9e90: 2e 53 4d 42 5f 52 44 41 42 5e 5e 2e 53 4d 42 5f .SMB_RDAB^^.SMB_ + 9ea0: 43 41 42 52 0a 03 60 0a a5 61 7b 61 0a ff 61 a0 CABR..`..a{a..a. + 9eb0: 0a 92 93 61 0a 10 47 45 4e 31 14 49 0a 47 45 4e ...a..GEN1.I.GEN + 9ec0: 32 00 70 0a 02 54 47 4c 53 70 47 50 50 42 60 5e 2.p..TGLSpGPPB`^ + 9ed0: 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 ^.SMB_RWAB^^.SMB + 9ee0: 5f 43 41 42 52 0a 03 60 0a a4 0c fe ff ff ff 0a _CABR..`........ + 9ef0: 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 .^^.SMB_RWAB^^.S + 9f00: 4d 42 5f 43 41 42 52 0a 03 60 0a a2 0c ff df ff MB_CABR..`...... + 9f10: ff 0b 00 20 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e ... ^^.SMB_RWAB^ + 9f20: 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a c0 0c ^.SMB_CABR..`... + 9f30: ff 7f ff ff 0b 00 80 5e 5e 2e 53 4d 42 5f 52 57 .......^^.SMB_RW + 9f40: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 AB^^.SMB_CABR..` + 9f50: 0a a4 0c ff ff ff df 0c 00 00 00 20 5b 21 0a c8 ........... [!.. + 9f60: 5b 21 0a c8 14 41 06 47 45 4e 31 00 70 0a 01 54 [!...A.GEN1.p..T + 9f70: 47 4c 53 70 47 50 50 42 60 5e 5e 2e 53 4d 42 5f GLSpGPPB`^^.SMB_ + 9f80: 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a RWAB^^.SMB_CABR. + 9f90: 03 60 0a a4 0c fe ff ff ff 0a 00 5e 5e 2e 53 4d .`.........^^.SM + 9fa0: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + 9fb0: 52 0a 03 60 0a a2 0c ff df ff ff 0b 00 20 5b 21 R..`......... [! + 9fc0: 0a c8 5b 21 0a c8 5b 82 29 58 50 44 56 08 5f 41 ..[!..[.)XPDV._A + 9fd0: 44 52 0a 00 5b 80 50 43 46 47 02 0a 00 0a 08 5b DR..[.PCFG.....[ + 9fe0: 81 10 50 43 46 47 03 44 56 49 44 20 50 43 4d 53 ..PCFG.DVID PCMS + 9ff0: 20 5b 82 45 57 53 50 42 33 08 5f 41 44 52 0c 03 [.EWSPB3._ADR.. + a000: 00 15 00 08 5f 50 52 57 12 06 02 0a 08 0a 04 14 ...._PRW........ + a010: 4d 09 5f 50 52 54 00 a0 39 47 50 49 43 a4 12 32 M._PRT..9GPIC..2 + a020: 04 12 0b 04 0b ff ff 0a 00 0a 00 0a 13 12 0b 04 ................ + a030: 0b ff ff 0a 01 0a 00 0a 10 12 0b 04 0b ff ff 0a ................ + a040: 02 0a 00 0a 11 12 0b 04 0b ff ff 0a 03 0a 00 0a ................ + a050: 12 a1 4b 05 a4 12 47 05 04 12 14 04 0b ff ff 0a ..K...G......... + a060: 00 5e 5e 2e 4c 50 43 30 4c 4e 4b 44 0a 00 12 14 .^^.LPC0LNKD.... + a070: 04 0b ff ff 0a 01 5e 5e 2e 4c 50 43 30 4c 4e 4b ......^^.LPC0LNK + a080: 41 0a 00 12 14 04 0b ff ff 0a 02 5e 5e 2e 4c 50 A..........^^.LP + a090: 43 30 4c 4e 4b 42 0a 00 12 14 04 0b ff ff 0a 03 C0LNKB.......... + a0a0: 5e 5e 2e 4c 50 43 30 4c 4e 4b 43 0a 00 5b 80 50 ^^.LPC0LNKC..[.P + a0b0: 43 46 47 02 0a 00 0a 20 5b 81 18 50 43 46 47 03 CFG.... [..PCFG. + a0c0: 44 56 49 44 20 50 43 4d 53 20 00 40 08 53 42 55 DVID PCMS .@.SBU + a0d0: 53 20 5b 80 58 50 43 42 02 0a 58 0a 40 5b 81 39 S [.XPCB..X.@[.9 + a0e0: 58 50 43 42 00 00 40 08 4c 4b 43 4e 10 4c 4b 53 XPCB..@.LKCN.LKS + a0f0: 54 10 00 30 00 03 50 53 44 43 01 00 02 50 53 44 T..0..PSDC...PSD + a100: 53 01 00 01 48 50 43 53 01 00 37 50 4d 45 53 01 S...HPCS..7PMES. + a110: 00 4f 06 54 47 4c 53 04 14 0f 47 50 50 42 00 a4 .O.TGLS...GPPB.. + a120: 7b 5f 41 44 52 0a 07 00 14 48 30 47 48 50 53 02 {_ADR....H0GHPS. + a130: 70 47 50 50 42 60 a0 4e 13 93 68 0a 00 a0 4c 04 pGPPB`.N..h...L. + a140: 93 60 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e .`..^^.SMB_RWAB^ + a150: 5e 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 ^.SMB_CABR...... + a160: 0c ff ef ff ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 .......^^.SMB_RW + a170: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a AB^^.SMB_CABR... + a180: 00 0a 65 0c fe fe ff ff 0a 00 a0 4c 04 93 60 0a ..e........L..`. + a190: 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 .^^.SMB_RWAB^^.S + a1a0: 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff df MB_CABR......... + a1b0: ff ff 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e ....^^.SMB_RWAB^ + a1c0: 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 ^.SMB_CABR.....e + a1d0: 0c fd fd ff ff 0a 00 a0 4c 04 93 60 0a 02 5e 5e ........L..`..^^ + a1e0: 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f .SMB_RWAB^^.SMB_ + a1f0: 43 41 42 52 0a 06 0a 00 0a c0 0c ff bf ff ff 0a CABR............ + a200: 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 .^^.SMB_RWAB^^.S + a210: 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 0c fb fb MB_CABR.....e... + a220: ff ff 0a 00 a0 4c 04 93 60 0a 03 5e 5e 2e 53 4d .....L..`..^^.SM + a230: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + a240: 52 0a 06 0a 00 0a c0 0c ff 7f ff ff 0a 00 5e 5e R.............^^ + a250: 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f .SMB_RWAB^^.SMB_ + a260: 43 41 42 52 0a 01 0a 00 0a 65 0c f7 f7 ff ff 0a CABR.....e...... + a270: 00 5b 21 0a c8 a0 46 14 93 68 0a 01 a0 4e 04 93 .[!...F..h...N.. + a280: 60 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e `..^^.SMB_RWAB^^ + a290: 2e 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c .SMB_CABR....... + a2a0: ff ef ff ff 0b 00 10 5e 5e 2e 53 4d 42 5f 52 57 .......^^.SMB_RW + a2b0: 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a AB^^.SMB_CABR... + a2c0: 00 0a 65 0c fe fe ff ff 0b 01 01 a0 4e 04 93 60 ..e.........N..` + a2d0: 0a 01 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e ..^^.SMB_RWAB^^. + a2e0: 53 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff SMB_CABR........ + a2f0: df ff ff 0b 00 20 5e 5e 2e 53 4d 42 5f 52 57 41 ..... ^^.SMB_RWA + a300: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 B^^.SMB_CABR.... + a310: 0a 65 0c fd fd ff ff 0b 02 02 a0 4e 04 93 60 0a .e.........N..`. + a320: 02 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 .^^.SMB_RWAB^^.S + a330: 4d 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff bf MB_CABR......... + a340: ff ff 0b 00 40 5e 5e 2e 53 4d 42 5f 52 57 41 42 ....@^^.SMB_RWAB + a350: 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a ^^.SMB_CABR..... + a360: 65 0c fb fb ff ff 0b 04 04 a0 4e 04 93 60 0a 03 e.........N..`.. + a370: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + a380: 42 5f 43 41 42 52 0a 06 0a 00 0a c0 0c ff 7f ff B_CABR.......... + a390: ff 0b 00 80 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e ....^^.SMB_RWAB^ + a3a0: 5e 2e 53 4d 42 5f 43 41 42 52 0a 01 0a 00 0a 65 ^.SMB_CABR.....e + a3b0: 0c f7 f7 ff ff 0b 08 08 5b 21 0a c8 a0 44 07 93 ........[!...D.. + a3c0: 68 0a 00 47 45 4e 32 70 5e 5e 2e 53 4d 42 5f 52 h..GEN2p^^.SMB_R + a3d0: 44 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 DAB^^.SMB_CABR.. + a3e0: 60 0a a5 61 7b 61 0a ff 61 70 0b f4 01 62 a2 37 `..a{a..ap...b.7 + a3f0: 90 92 93 61 0a 10 94 62 0a 00 76 62 5b 21 0a c8 ...a...b..vb[!.. + a400: 5b 21 0a c8 70 5e 5e 2e 53 4d 42 5f 52 44 41 42 [!..p^^.SMB_RDAB + a410: 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a a5 ^^.SMB_CABR..`.. + a420: 61 7b 61 0a ff 61 a0 0a 92 93 61 0a 10 47 45 4e a{a..a....a..GEN + a430: 31 14 49 0a 47 45 4e 32 00 70 0a 02 54 47 4c 53 1.I.GEN2.p..TGLS + a440: 70 47 50 50 42 60 5e 5e 2e 53 4d 42 5f 52 57 41 pGPPB`^^.SMB_RWA + a450: 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 60 0a B^^.SMB_CABR..`. + a460: a4 0c fe ff ff ff 0a 01 5e 5e 2e 53 4d 42 5f 52 ........^^.SMB_R + a470: 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 52 0a 03 WAB^^.SMB_CABR.. + a480: 60 0a a2 0c ff df ff ff 0b 00 20 5e 5e 2e 53 4d `......... ^^.SM + a490: 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f 43 41 42 B_RWAB^^.SMB_CAB + a4a0: 52 0a 03 60 0a c0 0c ff 7f ff ff 0b 00 80 5e 5e R..`..........^^ + a4b0: 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d 42 5f .SMB_RWAB^^.SMB_ + a4c0: 43 41 42 52 0a 03 60 0a a4 0c ff ff ff df 0c 00 CABR..`......... + a4d0: 00 00 20 5b 21 0a c8 5b 21 0a c8 14 41 06 47 45 .. [!..[!...A.GE + a4e0: 4e 31 00 70 0a 01 54 47 4c 53 70 47 50 50 42 60 N1.p..TGLSpGPPB` + a4f0: 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e 53 4d ^^.SMB_RWAB^^.SM + a500: 42 5f 43 41 42 52 0a 03 60 0a a4 0c fe ff ff ff B_CABR..`....... + a510: 0a 00 5e 5e 2e 53 4d 42 5f 52 57 41 42 5e 5e 2e ..^^.SMB_RWAB^^. + a520: 53 4d 42 5f 43 41 42 52 0a 03 60 0a a2 0c ff df SMB_CABR..`..... + a530: ff ff 0b 00 20 5b 21 0a c8 5b 21 0a c8 5b 82 29 .... [!..[!..[.) + a540: 58 50 44 56 08 5f 41 44 52 0a 00 5b 80 50 43 46 XPDV._ADR..[.PCF + a550: 47 02 0a 00 0a 08 5b 81 10 50 43 46 47 03 44 56 G.....[..PCFG.DV + a560: 49 44 20 50 43 4d 53 20 5b 82 4d a2 56 47 41 5f ID PCMS [.M.VGA_ + a570: 08 5f 41 44 52 0c 00 00 01 00 08 50 58 45 4e 0c ._ADR......PXEN. + a580: 01 00 00 80 08 50 58 49 44 0c 00 00 03 00 08 50 .....PXID......P + a590: 58 4d 58 0c 01 00 00 80 08 4c 43 44 54 0c 00 00 XMX......LCDT... + a5a0: 00 80 08 44 53 43 54 0c 00 00 00 80 08 50 58 46 ...DSCT......PXF + a5b0: 58 0c 00 00 00 80 08 50 58 44 59 0c 01 00 00 80 X......PXDY..... + a5c0: 08 41 46 37 45 0c 00 00 00 80 08 42 4c 56 4c 11 .AF7E......BLVL. + a5d0: 13 0a 10 00 20 30 40 50 58 60 70 80 90 a0 b0 c0 .... 0@PX`p..... + a5e0: d0 e0 ff 08 44 4f 53 50 0a 00 14 09 5f 53 54 41 ....DOSP...._STA + a5f0: 00 a4 0a 0f 14 0c 5f 44 4f 53 01 70 68 44 4f 53 ......_DOS.phDOS + a600: 50 14 21 5f 44 4f 44 00 a4 12 19 05 0c 00 01 01 P.!_DOD......... + a610: 00 0c 10 01 01 00 0b 00 02 0c 10 02 01 00 0c 20 ............... + a620: 02 01 00 5b 82 4a 0d 4c 43 44 5f 14 0a 5f 41 44 ...[.J.LCD_.._AD + a630: 52 00 a4 0b 10 01 14 2e 5f 42 43 4c 00 a4 12 26 R......._BCL...& + a640: 12 0a 64 0a 1e 0a 06 0a 0c 0a 12 0a 18 0a 1e 0a ..d............. + a650: 24 0a 2a 0a 30 0a 36 0a 3c 0a 42 0a 48 0a 4e 0a $.*.0.6.<.B.H.N. + a660: 54 0a 5a 0a 64 14 49 09 5f 42 43 4d 01 a0 2b 93 T.Z.d.I._BCM..+. + a670: 41 46 37 45 0c 01 00 00 80 78 72 77 68 0a 03 00 AF7E.....xrwh... + a680: 0a 13 00 0a 14 61 60 70 83 88 42 4c 56 4c 60 00 .....a`p..BLVL`. + a690: 63 5e 5e 5e 41 46 4e 37 63 a1 4b 04 5b 23 5e 5e c^^^AFN7c.K.[#^^ + a6a0: 5e 2e 4c 50 43 30 50 53 4d 58 ff ff 70 0a 01 5e ^.LPC0PSMX..p..^ + a6b0: 5e 5e 2e 4c 50 43 30 49 4e 46 30 70 68 5e 5e 5e ^^.LPC0INF0ph^^^ + a6c0: 2e 4c 50 43 30 49 4e 46 31 5e 5e 5e 2e 4c 50 43 .LPC0INF1^^^.LPC + a6d0: 30 50 48 53 31 0a 8a 5b 27 5e 5e 5e 2e 4c 50 43 0PHS1..['^^^.LPC + a6e0: 30 50 53 4d 58 a0 0e 50 57 52 53 70 42 52 47 41 0PSMX..PWRSpBRGA + a6f0: 42 52 54 4c a1 0a 70 42 52 47 44 42 52 54 4c 08 BRTL..pBRGDBRTL. + a700: 41 54 49 42 11 04 0b 00 01 14 4a 09 41 54 49 46 ATIB......J.ATIF + a710: 0a a0 0a 93 68 0a 00 a4 41 46 30 30 a0 0a 93 68 ....h...AF00...h + a720: 0a 01 a4 41 46 30 31 a0 0a 93 68 0a 02 a4 41 46 ...AF01...h...AF + a730: 30 32 a0 16 93 68 0a 03 a4 41 46 30 33 83 88 69 02...h...AF03..i + a740: 0a 02 00 83 88 69 0a 04 00 a0 0a 93 68 0a 0f a4 .....i......h... + a750: 41 46 31 35 a1 4f 04 8b 41 54 49 42 0a 00 53 53 AF15.O..ATIB..SS + a760: 5a 45 8b 41 54 49 42 0a 02 56 45 52 4e 8a 41 54 ZE.ATIB..VERN.AT + a770: 49 42 0a 04 4e 4d 53 4b 8a 41 54 49 42 0a 08 53 IB..NMSK.ATIB..S + a780: 46 55 4e 70 0a 00 53 53 5a 45 70 0a 00 56 45 52 FUNp..SSZEp..VER + a790: 4e 70 0a 00 4e 4d 53 4b 70 0a 00 53 46 55 4e a4 Np..NMSKp..SFUN. + a7a0: 41 54 49 42 14 41 09 41 46 30 30 00 70 0a f0 50 ATIB.A.AF00.p..P + a7b0: 38 30 48 8b 41 54 49 42 0a 00 53 53 5a 45 8b 41 80H.ATIB..SSZE.A + a7c0: 54 49 42 0a 02 56 45 52 4e 8a 41 54 49 42 0a 04 TIB..VERN.ATIB.. + a7d0: 4e 4d 53 4b 8a 41 54 49 42 0a 08 53 46 55 4e 70 NMSK.ATIB..SFUNp + a7e0: 0a 0c 53 53 5a 45 70 0a 01 56 45 52 4e a0 12 93 ..SSZEp..VERN... + a7f0: 50 58 45 4e 0c 00 00 00 80 70 0a 11 4e 4d 53 4b PXEN.....p..NMSK + a800: a1 08 70 0a 51 4e 4d 53 4b a0 16 93 41 46 37 45 ..p.QNMSK...AF7E + a810: 0c 01 00 00 80 7d 4e 4d 53 4b 0a 80 4e 4d 53 4b .....}NMSK..NMSK + a820: 70 4e 4d 53 4b 4d 53 4b 4e 70 0b 07 40 53 46 55 pNMSKMSKNp..@SFU + a830: 4e a4 41 54 49 42 08 4e 43 4f 44 0a 81 14 47 05 N.ATIB.NCOD...G. + a840: 41 46 30 31 00 70 0a f1 50 38 30 48 8b 41 54 49 AF01.p..P80H.ATI + a850: 42 0a 00 53 53 5a 45 8a 41 54 49 42 0a 02 56 4d B..SSZE.ATIB..VM + a860: 53 4b 8a 41 54 49 42 0a 06 46 4c 47 53 70 0a 0b SK.ATIB..FLGSp.. + a870: 56 4d 53 4b 70 0a 0a 53 53 5a 45 70 0a 03 56 4d VMSKp..SSZEp..VM + a880: 53 4b 70 0a 01 46 4c 47 53 70 0a 81 4e 43 4f 44 SKp..FLGSp..NCOD + a890: a4 41 54 49 42 08 50 53 42 52 11 07 0a 04 00 00 .ATIB.PSBR...... + a8a0: 00 00 08 4d 53 4b 4e 0a 00 08 53 45 58 4d 0a 00 ...MSKN...SEXM.. + a8b0: 08 53 54 48 47 0a 00 08 53 54 48 49 0a 00 08 53 .STHG...STHI...S + a8c0: 46 50 47 0a 00 08 53 46 50 49 0a 00 08 53 53 50 FPG...SFPI...SSP + a8d0: 53 0a 00 08 53 53 44 4d 0a 0a 08 53 43 44 59 0a S...SSDM...SCDY. + a8e0: 00 08 53 41 43 54 11 0a 0a 07 01 02 08 80 03 09 ..SACT.......... + a8f0: 81 14 4b 19 41 46 30 32 00 70 0a f2 50 38 30 48 ..K.AF02.p..P80H + a900: 8d 50 53 42 52 0a 00 50 44 53 57 8d 50 53 42 52 .PSBR..PDSW.PSBR + a910: 0a 01 50 45 58 4d 8d 50 53 42 52 0a 02 50 54 48 ..PEXM.PSBR..PTH + a920: 52 8d 50 53 42 52 0a 03 50 46 50 53 8d 50 53 42 R.PSBR..PFPS.PSB + a930: 52 0a 04 50 53 50 53 8d 50 53 42 52 0a 05 50 44 R..PSPS.PSBR..PD + a940: 43 43 8d 50 53 42 52 0a 06 50 58 50 53 8d 50 53 CC.PSBR..PXPS.PS + a950: 42 52 0a 07 50 42 52 54 8b 41 54 49 42 0a 00 53 BR..PBRT.ATIB..S + a960: 53 5a 45 8a 41 54 49 42 0a 02 50 53 42 49 8c 41 SZE.ATIB..PSBI.A + a970: 54 49 42 0a 06 45 58 50 4d 8c 41 54 49 42 0a 07 TIB..EXPM.ATIB.. + a980: 54 48 52 4d 8c 41 54 49 42 0a 08 54 48 49 44 8c THRM.ATIB..THID. + a990: 41 54 49 42 0a 09 46 50 57 52 8c 41 54 49 42 0a ATIB..FPWR.ATIB. + a9a0: 0a 46 50 49 44 8c 41 54 49 42 0a 0b 53 50 57 52 .FPID.ATIB..SPWR + a9b0: 8c 41 54 49 42 0a 0c 42 52 54 4c 70 0a 0d 53 53 .ATIB..BRTLp..SS + a9c0: 5a 45 70 50 53 42 52 50 53 42 49 a0 12 50 44 53 ZEpPSBRPSBI..PDS + a9d0: 57 70 0a 82 50 38 30 48 70 00 50 44 53 57 a0 1a Wp..P80Hp.PDSW.. + a9e0: 50 45 58 4d 70 53 45 58 4d 45 58 50 4d 70 00 53 PEXMpSEXMEXPMp.S + a9f0: 45 58 4d 70 00 50 45 58 4d a0 29 50 54 48 52 70 EXMp.PEXM.)PTHRp + aa00: 53 54 48 47 54 48 52 4d 70 53 54 48 49 54 48 49 STHGTHRMpSTHITHI + aa10: 44 70 00 53 54 48 47 70 00 53 54 48 49 70 00 50 Dp.STHGp.STHIp.P + aa20: 54 48 52 a0 29 50 46 50 53 70 53 46 50 47 46 50 THR.)PFPSpSFPGFP + aa30: 57 52 70 53 46 50 49 46 50 57 52 70 00 53 46 50 WRpSFPIFPWRp.SFP + aa40: 47 70 00 53 46 50 49 70 00 50 46 50 53 a0 14 50 Gp.SFPIp.PFPS..P + aa50: 53 50 53 70 53 53 50 53 53 50 57 52 70 00 50 53 SPSpSSPSSPWRp.PS + aa60: 50 53 a0 12 50 58 50 53 70 0a a2 50 38 30 48 70 PS..PXPSp..P80Hp + aa70: 00 50 58 50 53 a0 12 50 42 52 54 70 0a f7 50 38 .PXPS..PBRTp..P8 + aa80: 30 48 70 00 50 42 52 54 a4 41 54 49 42 14 49 14 0Hp.PBRT.ATIB.I. + aa90: 41 46 30 33 02 70 0a f3 50 38 30 48 8b 41 54 49 AF03.p..P80H.ATI + aaa0: 42 0a 00 53 53 5a 45 8b 41 54 49 42 0a 02 53 53 B..SSZE.ATIB..SS + aab0: 44 50 8b 41 54 49 42 0a 04 53 43 44 50 70 68 53 DP.ATIB..SCDPphS + aac0: 53 44 50 70 69 53 43 44 50 08 4e 58 54 44 0a 06 SDPpiSCDP.NXTD.. + aad0: 08 43 49 44 58 0a 06 70 53 53 44 50 61 7b 61 0a .CIDX..pSSDPa{a. + aae0: 8b 61 70 53 43 44 50 62 a0 27 5b 12 5e 5e 5e 2e .apSCDPb.'[.^^^. + aaf0: 4c 49 44 5f 5f 4c 49 44 64 7b 62 0c fe ff ff ff LID__LIDd{b..... + ab00: 62 7d 62 5e 5e 5e 2e 4c 49 44 5f 5f 4c 49 44 62 b}b^^^.LID__LIDb + ab10: a1 06 7d 62 0a 01 62 70 62 50 38 30 48 70 00 60 ..}b..bpbP80Hp.` + ab20: a2 28 95 60 87 53 41 43 54 70 83 88 53 41 43 54 .(.`.SACTp..SACT + ab30: 60 00 63 a0 11 93 63 61 70 60 43 49 44 58 70 87 `.c...cap`CIDXp. + ab40: 53 41 43 54 60 a1 03 75 60 70 43 49 44 58 60 a2 SACT`..u`pCIDX`. + ab50: 36 95 60 87 53 41 43 54 75 60 a0 0c 93 60 87 53 6.`.SACTu`...`.S + ab60: 41 43 54 70 0a 00 60 70 83 88 53 41 43 54 60 00 ACTp..`p..SACT`. + ab70: 63 a0 14 93 7b 63 62 00 63 70 60 4e 58 54 44 70 c...{cb.cp`NXTDp + ab80: 87 53 41 43 54 60 a0 11 93 4e 58 54 44 87 53 41 .SACT`...NXTD.SA + ab90: 43 54 70 00 53 53 44 50 a1 29 70 4e 58 54 44 60 CTp.SSDP.)pNXTD` + aba0: 70 83 88 53 41 43 54 60 00 63 7b 53 53 44 50 0c p..SACT`.c{SSDP. + abb0: 74 ff ff ff 53 53 44 50 7d 53 53 44 50 63 53 53 t...SSDP}SSDPcSS + abc0: 44 50 70 0a 04 53 53 5a 45 70 53 53 44 50 50 38 DPp..SSZEpSSDPP8 + abd0: 30 48 a4 41 54 49 42 14 2a 41 46 4e 30 08 a0 23 0H.ATIB.*AFN0..# + abe0: 7b 4d 53 4b 4e 0a 01 00 8d 50 53 42 52 0a 00 50 {MSKN....PSBR..P + abf0: 44 53 57 70 01 50 44 53 57 86 56 47 41 5f 4e 43 DSWp.PDSW.VGA_NC + ac00: 4f 44 14 41 04 41 46 4e 33 0a a0 39 7b 4d 53 4b OD.A.AFN3..9{MSK + ac10: 4e 0a 08 00 70 68 60 70 60 53 46 50 49 70 69 60 N...ph`p`SFPIpi` + ac20: 70 7b 60 0a 03 60 53 46 50 47 8d 50 53 42 52 0a p{`..`SFPG.PSBR. + ac30: 03 50 46 50 53 70 01 50 46 50 53 86 56 47 41 5f .PFPSp.PFPS.VGA_ + ac40: 4e 43 4f 44 14 41 04 41 46 4e 34 09 a0 39 7b 4d NCOD.A.AFN4..9{M + ac50: 53 4b 4e 0a 10 00 70 68 60 70 53 53 50 53 61 70 SKN...ph`pSSPSap + ac60: 60 53 53 50 53 a0 04 93 60 61 a1 1b 8d 50 53 42 `SSPS...`a...PSB + ac70: 52 0a 04 50 53 50 53 70 01 50 53 50 53 86 56 47 R..PSPSp.PSPS.VG + ac80: 41 5f 4e 43 4f 44 14 2a 41 46 4e 35 08 a0 23 7b A_NCOD.*AFN5..#{ + ac90: 4d 53 4b 4e 0a 20 00 8d 50 53 42 52 0a 05 50 44 MSKN. ..PSBR..PD + aca0: 43 43 70 01 50 44 43 43 86 56 47 41 5f 4e 43 4f CCp.PDCC.VGA_NCO + acb0: 44 14 2a 41 46 4e 36 08 a0 23 7b 4d 53 4b 4e 0a D.*AFN6..#{MSKN. + acc0: 40 00 8d 50 53 42 52 0a 06 50 58 50 53 70 01 50 @..PSBR..PXPSp.P + acd0: 58 50 53 86 56 47 41 5f 4e 43 4f 44 14 3b 41 46 XPS.VGA_NCOD.;AF + ace0: 4e 37 09 a0 34 7b 4d 53 4b 4e 0a 80 00 8d 50 53 N7..4{MSKN....PS + acf0: 42 52 0a 07 50 42 52 54 70 01 50 42 52 54 8c 41 BR..PBRTp.PBRT.A + ad00: 54 49 42 0a 0c 42 52 54 4c 70 68 42 52 54 4c 86 TIB..BRTLphBRTL. + ad10: 56 47 41 5f 4e 43 4f 44 14 43 05 41 46 31 35 00 VGA_NCOD.C.AF15. + ad20: 70 0a ff 50 38 30 48 8b 41 54 49 42 0a 00 44 4e p..P80H.ATIB..DN + ad30: 55 4d 8b 41 54 49 42 0a 02 44 53 5a 45 70 0a 08 UM.ATIB..DSZEp.. + ad40: 44 53 5a 45 5e 5e 2e 4c 50 43 30 50 48 53 33 0a DSZE^^.LPC0PHS3. + ad50: 8d 0a 0f 41 54 49 42 70 5e 5e 2e 4c 50 43 30 49 ...ATIBp^^.LPC0I + ad60: 4e 46 4f 41 54 49 42 a4 41 54 49 42 08 41 54 30 NFOATIB.ATIB.AT0 + ad70: 30 11 03 0a ff 08 41 54 30 31 11 03 0a 03 14 3f 0.....AT01.....? + ad80: 41 54 43 53 0a a0 09 93 68 0a 00 41 54 43 30 a0 ATCS....h..ATC0. + ad90: 09 93 68 0a 01 41 54 43 31 a0 0a 93 68 0a 02 41 ..h..ATC1...h..A + ada0: 54 43 32 69 a0 09 93 68 0a 03 41 54 43 33 a0 0a TC2i...h..ATC3.. + adb0: 93 68 0a 04 41 54 43 34 69 a4 41 54 30 30 14 3c .h..ATC4i.AT00.< + adc0: 41 54 43 30 00 8b 41 54 30 30 0a 00 53 5a 5a 45 ATC0..AT00..SZZE + add0: 8b 41 54 30 30 0a 02 49 4e 54 46 8a 41 54 30 30 .AT00..INTF.AT00 + ade0: 0a 04 53 55 50 50 70 0a 08 53 5a 5a 45 70 0a 01 ..SUPPp..SZZEp.. + adf0: 49 4e 54 46 70 0a 0f 53 55 50 50 14 42 05 41 54 INTFp..SUPP.B.AT + ae00: 43 31 08 8b 41 54 30 30 0a 00 53 5a 5a 45 8a 41 C1..AT00..SZZE.A + ae10: 54 30 30 0a 02 56 46 4d 4b 8a 41 54 30 30 0a 06 T00..VFMK.AT00.. + ae20: 46 4c 41 47 5b 13 41 54 30 30 0a 30 0a 01 44 4f FLAG[.AT00.0..DO + ae30: 43 4b 70 0a 0a 53 5a 5a 45 70 0a 01 56 46 4d 4b CKp..SZZEp..VFMK + ae40: 70 0a 00 46 4c 41 47 70 0a 01 44 4f 43 4b 14 4b p..FLAGp..DOCK.K + ae50: 08 41 54 43 32 09 5b 13 68 0a 10 0a 03 46 55 43 .ATC2.[.h....FUC + ae60: 43 5b 13 68 0a 13 0a 06 44 45 56 56 8c 68 0a 03 C[.h....DEVV.h.. + ae70: 42 55 53 53 8a 68 0a 04 56 46 4d 4b 8a 68 0a 06 BUSS.h..VFMK.h.. + ae80: 46 4c 41 47 5b 13 68 0a 30 0a 01 41 44 56 43 5b FLAG[.h.0..ADVC[ + ae90: 13 68 0a 31 0a 01 57 46 43 4d 8c 68 0a 08 52 51 .h.1..WFCM.h..RQ + aea0: 53 54 8c 68 0a 09 50 46 52 51 8b 41 54 30 30 0a ST.h..PFRQ.AT00. + aeb0: 00 53 5a 5a 45 8c 41 54 30 30 0a 02 52 45 54 56 .SZZE.AT00..RETV + aec0: 70 0a 03 53 5a 5a 45 70 0a 01 52 45 54 56 70 41 p..SZZEp..RETVpA + aed0: 4c 49 42 0a 02 68 41 54 30 30 14 4e 05 41 54 43 LIB..hAT00.N.ATC + aee0: 33 08 8b 41 54 30 30 0a 00 53 5a 5a 45 8c 41 54 3..AT00..SZZE.AT + aef0: 30 30 0a 02 52 45 54 56 8b 41 54 30 31 0a 00 53 00..RETV.AT01..S + af00: 5a 5a 42 8c 41 54 30 31 0a 02 50 53 50 50 70 0a ZZB.AT01..PSPPp. + af10: 03 53 5a 5a 45 70 0a 01 52 45 54 56 70 0a 03 53 .SZZEp..RETVp..S + af20: 5a 5a 42 70 0a 01 50 53 50 50 70 41 4c 49 42 0a ZZBp..PSPPpALIB. + af30: 03 41 54 30 31 41 54 30 30 14 4d 05 41 54 43 34 .AT01AT00.M.ATC4 + af40: 09 5b 13 68 0a 10 0a 03 46 55 43 43 5b 13 68 0a .[.h....FUCC[.h. + af50: 13 0a 06 44 45 56 56 8c 68 0a 03 42 55 53 53 8c ...DEVV.h..BUSS. + af60: 68 0a 04 4e 55 4c 4e 8b 41 54 30 30 0a 00 53 5a h..NULN.AT00..SZ + af70: 5a 45 8c 41 54 30 30 0a 02 4e 55 4c 4d 70 0a 03 ZE.AT00..NULMp.. + af80: 53 5a 5a 45 70 0a 01 4e 55 4c 4d 70 41 4c 49 42 SZZEp..NULMpALIB + af90: 0a 04 68 41 54 30 30 10 4d b8 56 47 41 5f 08 41 ..hAT00.M.VGA_.A + afa0: 54 50 42 11 04 0b 00 01 08 44 53 49 44 0c ff ff TPB......DSID... + afb0: ff ff 08 47 50 46 41 0c ff ff ff ff 08 48 53 49 ...GPFA......HSI + afc0: 44 0c ff ff ff ff 08 43 4e 54 30 11 08 0a 05 05 D......CNT0..... + afd0: 00 00 10 01 08 43 4e 54 31 11 08 0a 05 05 01 00 .....CNT1....... + afe0: 00 01 08 43 4e 54 32 11 08 0a 05 07 03 00 10 02 ...CNT2......... + aff0: 08 43 4e 54 33 11 08 0a 05 07 07 00 20 02 08 43 .CNT3....... ..C + b000: 4e 54 34 11 08 0a 05 00 09 00 30 02 08 43 4e 54 NT4.......0..CNT + b010: 35 11 08 0a 05 01 00 01 10 01 08 43 4e 54 36 11 5..........CNT6. + b020: 08 0a 05 01 01 01 00 01 08 43 4e 54 37 11 08 0a .........CNT7... + b030: 05 03 03 01 10 02 08 43 4e 54 38 11 08 0a 05 03 .......CNT8..... + b040: 07 01 20 02 08 43 4e 54 39 11 08 0a 05 00 09 01 .. ..CNT9....... + b050: 30 02 14 4d 0a 41 54 50 58 0a a0 0a 93 68 0a 00 0..M.ATPX....h.. + b060: a4 50 58 30 30 a0 0a 93 68 0a 01 a4 50 58 30 31 .PX00...h...PX01 + b070: a0 14 93 68 0a 02 50 58 30 32 83 88 69 0a 02 00 ...h..PX02..i... + b080: a4 41 54 50 42 a0 14 93 68 0a 03 50 58 30 33 83 .ATPB...h..PX03. + b090: 88 69 0a 02 00 a4 41 54 50 42 a0 14 93 68 0a 04 .i....ATPB...h.. + b0a0: 50 58 30 34 83 88 69 0a 02 00 a4 41 54 50 42 a0 PX04..i....ATPB. + b0b0: 0a 93 68 0a 08 a4 50 58 30 38 a0 0a 93 68 0a 09 ..h...PX08...h.. + b0c0: a4 50 58 30 39 8b 41 54 50 42 0a 00 53 53 5a 45 .PX09.ATPB..SSZE + b0d0: 8b 41 54 50 42 0a 02 56 45 52 4e 8a 41 54 50 42 .ATPB..VERN.ATPB + b0e0: 0a 04 53 46 55 4e 70 0a 00 53 53 5a 45 70 0a 00 ..SFUNp..SSZEp.. + b0f0: 56 45 52 4e 70 0a 00 53 46 55 4e a4 41 54 50 42 VERNp..SFUN.ATPB + b100: 14 48 0f 50 58 30 30 00 70 0a e0 50 38 30 48 8b .H.PX00.p..P80H. + b110: 41 54 50 42 0a 00 53 53 5a 45 8b 41 54 50 42 0a ATPB..SSZE.ATPB. + b120: 02 56 45 52 4e 8a 41 54 50 42 0a 04 53 46 55 4e .VERN.ATPB..SFUN + b130: 70 0a 08 53 53 5a 45 70 0a 01 56 45 52 4e a0 17 p..SSZEp..VERN.. + b140: 93 50 58 45 4e 0c 00 00 00 80 70 0a 00 53 46 55 .PXEN.....p..SFU + b150: 4e a4 41 54 50 42 a0 13 93 50 58 4d 58 0c 00 00 N.ATPB...PXMX... + b160: 00 80 70 0b 8f 01 53 46 55 4e a1 09 70 0b 83 01 ..p...SFUN..p... + b170: 53 46 55 4e a0 19 93 50 58 44 59 0c 01 00 00 80 SFUN...PXDY..... + b180: 7b 53 46 55 4e 0c fd ff ff ff 53 46 55 4e a0 21 {SFUN.....SFUN.! + b190: 90 93 50 58 44 59 0c 01 00 00 80 93 50 58 46 58 ..PXDY......PXFX + b1a0: 0c 01 00 00 80 7d 53 46 55 4e 0a 02 53 46 55 4e .....}SFUN..SFUN + b1b0: 70 5e 5e 2f 03 50 42 33 5f 56 47 41 5f 53 56 49 p^^/.PB3_VGA_SVI + b1c0: 44 60 70 5e 5e 2f 03 50 42 33 5f 48 44 41 55 53 D`p^^/.PB3_HDAUS + b1d0: 56 49 44 61 a0 0f 92 93 60 0c ff ff ff ff 70 60 VIDa....`.....p` + b1e0: 44 53 49 44 a0 0f 92 93 61 0c ff ff ff ff 70 61 DSID....a.....pa + b1f0: 48 53 49 44 a4 41 54 50 42 14 42 08 50 58 30 31 HSID.ATPB.B.PX01 + b200: 00 70 0a e1 50 38 30 48 8b 41 54 50 42 0a 00 53 .p..P80H.ATPB..S + b210: 53 5a 45 8a 41 54 50 42 0a 02 56 4d 53 4b 8a 41 SZE.ATPB..VMSK.A + b220: 54 50 42 0a 06 46 4c 47 53 70 0a 0a 53 53 5a 45 TPB..FLGSp..SSZE + b230: 70 0b ff 01 56 4d 53 4b a0 12 93 50 58 4d 58 0c p...VMSK...PXMX. + b240: 00 00 00 80 70 0a 4b 46 4c 47 53 a1 1f 70 0a 00 ....p.KFLGS..p.. + b250: 46 4c 47 53 a0 16 93 50 58 44 59 0c 01 00 00 80 FLGS...PXDY..... + b260: 7d 46 4c 47 53 0a 80 46 4c 47 53 7d 46 4c 47 53 }FLGS..FLGS}FLGS + b270: 0b 00 01 46 4c 47 53 a4 41 54 50 42 14 48 48 50 ...FLGS.ATPB.HHP + b280: 58 30 32 01 8b 41 54 50 42 0a 00 53 53 5a 45 8c X02..ATPB..SSZE. + b290: 41 54 50 42 0a 02 50 57 53 54 70 0a 03 53 53 5a ATPB..PWSTp..SSZ + b2a0: 45 70 11 03 0a 05 67 8b 67 0a 00 53 5a 5a 45 5b Ep....g.g..SZZE[ + b2b0: 13 67 0a 10 0a 03 46 55 43 43 5b 13 67 0a 13 0a .g....FUCC[.g... + b2c0: 05 44 45 56 56 8c 67 0a 03 42 55 53 53 8c 67 0a .DEVV.g..BUSS.g. + b2d0: 04 48 50 53 54 70 0a 05 53 5a 5a 45 70 0a 00 42 .HPSTp..SZZEp..B + b2e0: 55 53 53 70 0a 00 46 55 43 43 70 11 03 0a 04 66 USSp..FUCCp....f + b2f0: 8c 66 0a 02 48 50 4f 58 7b 68 0a 01 50 57 53 54 .f..HPOX{h..PWST + b300: 08 48 50 4f 4b 0a 00 a0 46 26 50 57 53 54 70 0b .HPOK...F&PWSTp. + b310: e2 11 50 38 30 48 7d 5e 5e 2e 53 4d 42 5f 4d 53 ..P80H}^^.SMB_MS + b320: 30 34 0a f0 5e 5e 2e 53 4d 42 5f 4d 53 30 34 70 04..^^.SMB_MS04p + b330: 00 5e 5e 2e 53 4d 42 5f 50 32 43 4f 70 00 5e 5e .^^.SMB_P2COp.^^ + b340: 2e 53 4d 42 5f 50 32 43 45 70 00 5e 5e 2e 53 4d .SMB_P2CEp.^^.SM + b350: 42 5f 50 32 44 4f 70 00 5e 5e 2e 53 4d 42 5f 50 B_P2DOp.^^.SMB_P + b360: 32 44 45 5b 22 0a 0a 70 01 5e 5e 2e 53 4d 42 5f 2DE["..p.^^.SMB_ + b370: 50 32 44 4f 70 00 5e 5e 2e 53 4d 42 5f 50 32 44 P2DOp.^^.SMB_P2D + b380: 45 5b 22 0a 0a 70 01 5e 5e 2e 53 4d 42 5f 50 33 E["..p.^^.SMB_P3 + b390: 37 4f 70 00 5e 5e 2e 53 4d 42 5f 50 33 37 45 5b 7Op.^^.SMB_P37E[ + b3a0: 22 0a 0a 70 01 5e 5e 2e 53 4d 42 5f 4d 58 32 38 "..p.^^.SMB_MX28 + b3b0: a2 0f 93 5e 5e 2e 53 4d 42 5f 50 31 43 49 0a 00 ...^^.SMB_P1CI.. + b3c0: 70 01 5e 5e 2e 53 4d 42 5f 50 32 43 4f 70 00 5e p.^^.SMB_P2COp.^ + b3d0: 5e 2e 53 4d 42 5f 50 32 43 45 70 0b e2 12 50 38 ^.SMB_P2CEp...P8 + b3e0: 30 48 70 0a 00 48 50 4f 4b 5b 22 0a 64 5b 22 0a 0Hp..HPOK[".d[". + b3f0: 64 70 0a 03 44 45 56 56 70 0a 01 48 50 53 54 70 dp..DEVVp..HPSTp + b400: 41 4c 49 42 0a 06 67 66 5b 22 0a 14 70 0a 00 62 ALIB..gf["..p..b + b410: a2 44 0d 95 62 0a 0f 70 01 5e 5e 2e 50 42 33 5f .D..b..p.^^.PB3_ + b420: 50 53 44 43 70 0a 01 64 70 0a c8 65 a2 31 90 64 PSDCp..dp..e.1.d + b430: 65 70 5e 5e 2e 50 42 33 5f 58 50 52 44 0a a5 60 ep^^.PB3_XPRD..` + b440: 7b 60 0a 7f 60 a0 10 90 92 95 60 0a 10 92 93 60 {`..`.....`....` + b450: 0a 7f 70 0a 00 64 a1 07 5b 22 0a 05 76 65 a0 40 ..p..d..["..ve.@ + b460: 08 92 64 70 5e 5e 2e 50 42 33 5f 58 50 44 4c 65 ..dp^^.PB3_XPDLe + b470: a0 13 65 5e 5e 2e 50 42 33 5f 58 50 52 54 5b 22 ..e^^.PB3_XPRT[" + b480: 0a 05 75 62 a1 4a 05 79 0a 03 0a 03 47 50 46 41 ..ub.J.y....GPFA + b490: 70 47 50 46 41 5e 5e 2e 4c 50 43 30 49 4e 46 4f pGPFA^^.LPC0INFO + b4a0: 5e 5e 2e 4c 50 43 30 50 48 53 31 0a 87 70 0a 00 ^^.LPC0PHS1..p.. + b4b0: 60 a0 12 93 5e 5e 2e 50 42 33 5f 58 50 52 32 ff `...^^.PB3_XPR2. + b4c0: 70 0a 01 60 a0 0d 60 70 0a 01 48 50 4f 4b 70 0a p..`..`p..HPOKp. + b4d0: 10 62 a1 0c 70 0a 00 48 50 4f 4b 70 0a 10 62 a1 .b..p..HPOKp..b. + b4e0: 05 70 0a 10 62 a0 40 08 92 48 50 4f 4b 70 0b e2 .p..b.@..HPOKp.. + b4f0: 13 50 38 30 48 70 5e 5e 2f 03 50 42 33 5f 56 47 .P80Hp^^/.PB3_VG + b500: 41 5f 44 56 49 44 61 5b 22 0a 0a 70 0a 01 64 70 A_DVIDa["..p..dp + b510: 0a 05 65 a2 3d 90 64 65 70 5e 5e 2e 50 42 33 5f ..e.=.dep^^.PB3_ + b520: 58 50 52 44 0a a5 60 7b 60 0a 7f 60 a0 0a 92 94 XPRD..`{`..`.... + b530: 60 0a 04 70 0a 00 64 a1 19 70 5e 5e 2f 03 50 42 `..p..d..p^^/.PB + b540: 33 5f 56 47 41 5f 44 56 49 44 61 5b 22 0a 05 76 3_VGA_DVIDa["..v + b550: 65 70 0a 03 44 45 56 56 70 0a 00 48 50 53 54 41 ep..DEVVp..HPSTA + b560: 4c 49 42 0a 06 67 70 0b e2 14 50 38 30 48 a1 40 LIB..gp...P80H.@ + b570: 13 70 0b e2 02 50 38 30 48 79 0a 03 0a 03 47 50 .p...P80Hy....GP + b580: 46 41 70 47 50 46 41 5e 5e 2e 4c 50 43 30 49 4e FApGPFA^^.LPC0IN + b590: 46 4f 5e 5e 2e 4c 50 43 30 50 48 53 31 0a 84 70 FO^^.LPC0PHS1..p + b5a0: 00 5e 5e 2e 53 4d 42 5f 50 32 43 4f 70 00 5e 5e .^^.SMB_P2COp.^^ + b5b0: 2e 53 4d 42 5f 50 32 43 45 70 00 5e 5e 2e 53 4d .SMB_P2CEp.^^.SM + b5c0: 42 5f 50 33 37 4f 70 00 5e 5e 2e 53 4d 42 5f 50 B_P37Op.^^.SMB_P + b5d0: 33 37 45 5b 22 0a 0a 70 00 5e 5e 2e 53 4d 42 5f 37E["..p.^^.SMB_ + b5e0: 50 32 44 4f 70 00 5e 5e 2e 53 4d 42 5f 50 32 44 P2DOp.^^.SMB_P2D + b5f0: 45 70 0b e2 03 50 38 30 48 70 01 5e 5e 2e 50 42 Ep...P80Hp.^^.PB + b600: 33 5f 50 53 44 43 70 5e 5e 2f 03 50 42 33 5f 56 3_PSDCp^^/.PB3_V + b610: 47 41 5f 44 56 49 44 61 5b 22 0a 0a 70 0a 01 64 GA_DVIDa["..p..d + b620: 70 0a 05 65 a2 3d 90 64 65 70 5e 5e 2e 50 42 33 p..e.=.dep^^.PB3 + b630: 5f 58 50 52 44 0a a5 60 7b 60 0a 7f 60 a0 0a 92 _XPRD..`{`..`... + b640: 94 60 0a 04 70 0a 00 64 a1 19 70 5e 5e 2f 03 50 .`..p..d..p^^/.P + b650: 42 33 5f 56 47 41 5f 44 56 49 44 61 5b 22 0a 05 B3_VGA_DVIDa[".. + b660: 76 65 70 0a 03 44 45 56 56 70 0a 00 48 50 53 54 vep..DEVVp..HPST + b670: 41 4c 49 42 0a 06 67 70 0a 02 48 50 4f 4b 7b 5e ALIB..gp..HPOK{^ + b680: 5e 2e 53 4d 42 5f 4d 53 30 34 0a 0f 5e 5e 2e 53 ^.SMB_MS04..^^.S + b690: 4d 42 5f 4d 53 30 34 70 0b e2 04 50 38 30 48 a0 MB_MS04p...P80H. + b6a0: 45 06 48 50 4f 4b a0 47 05 90 93 48 50 4f 4b 0a E.HPOK.G...HPOK. + b6b0: 01 92 93 44 53 49 44 0c ff ff ff ff 70 44 53 49 ...DSID.....pDSI + b6c0: 44 61 70 61 5e 5e 2f 03 50 42 33 5f 56 47 41 5f Dapa^^/.PB3_VGA_ + b6d0: 53 4d 49 44 5b 22 0a 0a 70 48 53 49 44 61 a0 1b SMID["..pHSIDa.. + b6e0: 92 93 61 0c ff ff ff ff 70 61 5e 5e 2f 03 50 42 ..a.....pa^^/.PB + b6f0: 33 5f 48 44 41 55 53 4d 49 44 5b 22 0a 0a 86 50 3_HDAUSMID["...P + b700: 42 33 5f 0a 00 14 4c 07 50 58 30 33 01 8b 41 54 B3_...L.PX03..AT + b710: 50 42 0a 00 53 53 5a 45 8b 41 54 50 42 0a 02 44 PB..SSZE.ATPB..D + b720: 50 53 57 70 0a 04 53 53 5a 45 7b 68 0a 01 44 50 PSWp..SSZE{h..DP + b730: 53 57 a0 29 44 50 53 57 70 0b e3 02 50 38 30 48 SW.)DPSWp...P80H + b740: 70 0a 01 5e 5e 2e 53 4d 42 5f 50 30 36 4f 70 0a p..^^.SMB_P06Op. + b750: 00 5e 5e 2e 53 4d 42 5f 50 30 36 45 a1 25 70 0b .^^.SMB_P06E.%p. + b760: e3 01 50 38 30 48 70 0a 00 5e 5e 2e 53 4d 42 5f ..P80Hp..^^.SMB_ + b770: 50 30 36 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 30 P06Op..^^.SMB_P0 + b780: 36 45 14 43 08 50 58 30 34 01 70 0a e4 50 38 30 6E.C.PX04.p..P80 + b790: 48 8b 41 54 50 42 0a 00 53 53 5a 45 8b 41 54 50 H.ATPB..SSZE.ATP + b7a0: 42 0a 02 49 43 53 57 70 0a 04 53 53 5a 45 7b 68 B..ICSWp..SSZE{h + b7b0: 0a 01 49 43 53 57 a0 29 49 43 53 57 70 0b e4 02 ..ICSW.)ICSWp... + b7c0: 50 38 30 48 70 0a 01 5e 5e 2e 53 4d 42 5f 50 31 P80Hp..^^.SMB_P1 + b7d0: 34 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 31 34 45 4Op..^^.SMB_P14E + b7e0: a1 25 70 0b e4 01 50 38 30 48 70 0a 00 5e 5e 2e .%p...P80Hp..^^. + b7f0: 53 4d 42 5f 50 31 34 4f 70 0a 00 5e 5e 2e 53 4d SMB_P14Op..^^.SM + b800: 42 5f 50 31 34 45 14 4a 27 50 58 30 38 00 70 0a B_P14E.J'PX08.p. + b810: e8 50 38 30 48 8b 41 54 50 42 0a 00 43 4e 55 4d .P80H.ATPB..CNUM + b820: 8b 41 54 50 42 0a 02 43 53 53 5a 70 0a 0a 43 4e .ATPB..CSSZp..CN + b830: 55 4d 70 0a 05 43 53 53 5a 5b 13 41 54 50 42 0a UMp..CSSZ[.ATPB. + b840: 20 0a 28 43 54 49 30 70 43 4e 54 30 43 54 49 30 .(CTI0pCNT0CTI0 + b850: 5b 13 41 54 50 42 0a 48 0a 28 43 54 49 31 70 43 [.ATPB.H.(CTI1pC + b860: 4e 54 31 43 54 49 31 5b 13 41 54 50 42 0a 70 0a NT1CTI1[.ATPB.p. + b870: 28 43 54 49 32 8c 43 4e 54 32 0a 00 46 4c 47 32 (CTI2.CNT2..FLG2 + b880: a0 31 93 4c 43 44 54 0c 01 00 00 80 a0 12 93 44 .1.LCDT........D + b890: 53 43 54 0c 01 00 00 80 70 0a 00 46 4c 47 32 a0 SCT.....p..FLG2. + b8a0: 12 93 44 53 43 54 0c 02 00 00 80 70 0a 07 46 4c ..DSCT.....p..FL + b8b0: 47 32 70 43 4e 54 32 43 54 49 32 5b 13 41 54 50 G2pCNT2CTI2[.ATP + b8c0: 42 0a 98 0a 28 43 54 49 33 8c 43 4e 54 33 0a 00 B...(CTI3.CNT3.. + b8d0: 46 4c 47 33 a0 12 93 4c 43 44 54 0c 00 00 00 80 FLG3...LCDT..... + b8e0: 70 0a 07 46 4c 47 33 a0 25 93 4c 43 44 54 0c 01 p..FLG3.%.LCDT.. + b8f0: 00 00 80 70 0a 00 46 4c 47 33 a0 12 93 44 53 43 ...p..FLG3...DSC + b900: 54 0c 02 00 00 80 70 0a 00 46 4c 47 33 a0 25 93 T.....p..FLG3.%. + b910: 4c 43 44 54 0c 02 00 00 80 70 0a 00 46 4c 47 33 LCDT.....p..FLG3 + b920: a0 12 93 44 53 43 54 0c 02 00 00 80 70 0a 07 46 ...DSCT.....p..F + b930: 4c 47 33 70 43 4e 54 33 43 54 49 33 5b 13 41 54 LG3pCNT3CTI3[.AT + b940: 50 42 0a c0 0a 28 43 54 49 34 70 43 4e 54 34 43 PB...(CTI4pCNT4C + b950: 54 49 34 5b 13 41 54 50 42 0a e8 0a 28 43 54 49 TI4[.ATPB...(CTI + b960: 35 70 43 4e 54 35 43 54 49 35 5b 13 41 54 50 42 5pCNT5CTI5[.ATPB + b970: 0b 10 01 0a 28 43 54 49 36 70 43 4e 54 36 43 54 ....(CTI6pCNT6CT + b980: 49 36 5b 13 41 54 50 42 0b 38 01 0a 28 43 54 49 I6[.ATPB.8..(CTI + b990: 37 8c 43 4e 54 37 0a 00 46 4c 47 37 a0 31 93 4c 7.CNT7..FLG7.1.L + b9a0: 43 44 54 0c 01 00 00 80 a0 12 93 44 53 43 54 0c CDT........DSCT. + b9b0: 01 00 00 80 70 0a 00 46 4c 47 37 a0 12 93 44 53 ....p..FLG7...DS + b9c0: 43 54 0c 02 00 00 80 70 0a 07 46 4c 47 37 70 43 CT.....p..FLG7pC + b9d0: 4e 54 37 43 54 49 37 5b 13 41 54 50 42 0b 60 01 NT7CTI7[.ATPB.`. + b9e0: 0a 28 43 54 49 38 8c 43 4e 54 38 0a 00 46 4c 47 .(CTI8.CNT8..FLG + b9f0: 38 a0 12 93 4c 43 44 54 0c 00 00 00 80 70 0a 07 8...LCDT.....p.. + ba00: 46 4c 47 38 a0 12 93 4c 43 44 54 0c 01 00 00 80 FLG8...LCDT..... + ba10: 70 0a 00 46 4c 47 38 a0 12 93 4c 43 44 54 0c 02 p..FLG8...LCDT.. + ba20: 00 00 80 70 0a 00 46 4c 47 38 a0 12 93 44 53 43 ...p..FLG8...DSC + ba30: 54 0c 02 00 00 80 70 0a 07 46 4c 47 38 70 43 4e T.....p..FLG8pCN + ba40: 54 38 43 54 49 38 5b 13 41 54 50 42 0b 88 01 0a T8CTI8[.ATPB.... + ba50: 28 43 54 49 39 8c 43 4e 54 39 0a 00 46 4c 47 39 (CTI9.CNT9..FLG9 + ba60: a0 12 93 44 53 43 54 0c 02 00 00 80 70 0a 07 46 ...DSCT.....p..F + ba70: 4c 47 39 70 43 4e 54 39 43 54 49 39 a4 41 54 50 LG9pCNT9CTI9.ATP + ba80: 42 14 43 0a 50 58 30 39 00 70 0a e9 50 38 30 48 B.C.PX09.p..P80H + ba90: 8b 41 54 50 42 0a 00 43 4e 55 4d 8b 41 54 50 42 .ATPB..CNUM.ATPB + baa0: 0a 02 43 53 53 5a 70 0a 00 43 4e 55 4d 70 0a 00 ..CSSZp..CNUMp.. + bab0: 43 53 53 5a 8c 41 54 50 42 0a 04 41 54 49 30 8c CSSZ.ATPB..ATI0. + bac0: 41 54 50 42 0a 05 48 50 44 30 8c 41 54 50 42 0a ATPB..HPD0.ATPB. + bad0: 06 44 44 43 30 70 0a 00 41 54 49 30 70 0a 00 48 .DDC0p..ATI0p..H + bae0: 50 44 30 70 0a 00 44 44 43 30 8c 41 54 50 42 0a PD0p..DDC0.ATPB. + baf0: 07 41 54 49 31 8c 41 54 50 42 0a 08 48 50 44 31 .ATI1.ATPB..HPD1 + bb00: 8c 41 54 50 42 0a 09 44 44 43 31 70 0a 00 41 54 .ATPB..DDC1p..AT + bb10: 49 31 70 0a 00 48 50 44 31 70 0a 00 44 44 43 31 I1p..HPD1p..DDC1 + bb20: a4 41 54 50 42 10 48 0d 56 47 41 5f 5b 80 52 45 .ATPB.H.VGA_[.RE + bb30: 56 44 00 0c 18 a0 2f 5e 0c 04 ec 00 00 5b 81 12 VD..../^.....[.. + bb40: 52 45 56 44 00 53 52 4f 4d 20 56 52 4f 4d 80 00 REVD.SROM VROM.. + bb50: 76 08 54 56 47 41 11 05 0b 00 ec 00 14 41 0a 41 v.TVGA.......A.A + bb60: 54 52 4d 0a 72 68 69 60 a0 3d 92 94 60 53 52 4f TRM.rhi`.=..`SRO + bb70: 4d 77 69 0a 08 61 77 68 0a 08 62 70 56 52 4f 4d Mwi..awh..bpVROM + bb80: 54 56 47 41 5b 13 54 56 47 41 62 61 54 45 4d 50 TVGA[.TVGAbaTEMP + bb90: 08 52 45 54 42 11 02 69 70 54 45 4d 50 52 45 54 .RETB..ipTEMPRET + bba0: 42 a4 52 45 54 42 a1 47 05 a0 44 04 95 68 53 52 B.RETB.G..D..hSR + bbb0: 4f 4d 74 53 52 4f 4d 68 63 77 63 0a 08 61 77 68 OMtSROMhcwc..awh + bbc0: 0a 08 62 70 56 52 4f 4d 54 56 47 41 5b 13 54 56 ..bpVROMTVGA[.TV + bbd0: 47 41 62 61 54 45 4d 5f 08 52 45 54 43 11 02 63 GAbaTEM_.RETC..c + bbe0: 70 54 45 4d 5f 52 45 54 43 a4 52 45 54 43 a1 0f pTEM_RETC.RETC.. + bbf0: 08 52 45 54 44 11 03 0a 01 a4 52 45 54 44 08 41 .RETD.....RETD.A + bc00: 46 43 42 11 03 0a b8 08 43 41 4c 42 11 03 0a 05 FCB.....CALB.... + bc10: 5b 82 84 92 01 41 46 44 5f 08 5f 48 49 44 0d 41 [....AFD_._HID.A + bc20: 46 44 30 30 30 31 00 08 41 46 45 4e 0c 00 00 00 FD0001..AFEN.... + bc30: 80 08 46 55 33 45 0c 00 00 00 80 08 48 44 44 30 ..FU3E......HDD0 + bc40: 0c 00 00 00 80 08 4f 44 5a 50 0c 01 00 00 80 08 ......ODZP...... + bc50: 44 41 54 33 11 11 0a 0e 0e 00 03 0c 03 00 00 00 DAT3............ + bc60: 92 00 03 00 00 00 08 44 41 54 34 11 11 0a 0e 0e .......DAT4..... + bc70: 00 11 0d 03 00 00 00 a5 00 02 00 00 00 08 44 41 ..............DA + bc80: 54 35 11 11 0a 0e 0e 00 00 03 00 00 00 ff 00 00 T5.............. + bc90: 00 00 00 00 08 44 41 54 36 11 11 0a 0e 0e 00 00 .....DAT6....... + bca0: 0c 00 00 00 ff 00 00 00 00 00 00 08 44 41 54 37 ............DAT7 + bcb0: 11 11 0a 0e 0e 00 03 0c 03 00 00 00 00 ff 00 00 ................ + bcc0: 00 00 08 44 41 54 38 11 11 0a 0e 0e 00 00 02 00 ...DAT8......... + bcd0: 00 00 ff 00 00 00 00 00 00 08 44 41 54 39 11 11 ..........DAT9.. + bce0: 0a 0e 0e 00 ff ff 00 00 00 ff 00 00 00 00 00 00 ................ + bcf0: 08 44 41 54 41 11 11 0a 0e 0e 00 ff ff 00 00 00 .DATA........... + bd00: ff 00 00 00 00 00 00 08 44 41 54 42 11 11 0a 0e ........DATB.... + bd10: 0e 00 ff ff 00 00 00 ff 00 00 00 00 00 00 08 44 ...............D + bd20: 41 54 43 11 11 0a 0e 0e 00 01 04 00 00 00 ff 00 ATC............. + bd30: 00 00 00 00 00 14 1a 5f 53 54 41 00 a0 0e 93 41 ......._STA....A + bd40: 46 45 4e 0c 00 00 00 80 a4 0a 00 a1 04 a4 0a 0f FEN............. + bd50: 14 4c 06 41 46 43 4d 03 7b 68 0a ff 68 a0 0a 93 .L.AFCM.{h..h... + bd60: 68 0a 00 a4 41 46 43 30 a0 0a 93 68 0a 01 a4 41 h...AFC0...h...A + bd70: 46 43 31 a0 0c 93 68 0a 02 a4 41 46 43 32 69 6a FC1...h...AFC2ij + bd80: a1 3c 8b 41 46 43 42 0a 00 53 53 5a 45 8b 41 46 .<.AFCB..SSZE.AF + bd90: 43 42 0a 02 56 45 52 4e 8a 41 46 43 42 0a 04 53 CB..VERN.AFCB..S + bda0: 46 55 4e 70 0a 00 53 53 5a 45 70 0a 00 56 45 52 FUNp..SSZEp..VER + bdb0: 4e 70 0a 00 53 46 55 4e a4 41 46 43 42 14 42 05 Np..SFUN.AFCB.B. + bdc0: 41 46 43 30 00 70 0b 00 af 50 38 30 48 8b 41 46 AFC0.p...P80H.AF + bdd0: 43 42 0a 00 53 53 5a 45 8b 41 46 43 42 0a 02 56 CB..SSZE.AFCB..V + bde0: 45 52 4e 8a 41 46 43 42 0a 04 53 46 55 4e 70 0a ERN.AFCB..SFUNp. + bdf0: 08 53 53 5a 45 70 0a 01 56 45 52 4e 70 0a 03 53 .SSZEp..VERNp..S + be00: 46 55 4e 70 0b 00 ae 50 38 30 48 a4 41 46 43 42 FUNp...P80H.AFCB + be10: 14 41 67 41 46 43 31 00 70 0b 01 af 50 38 30 48 .AgAFC1.p...P80H + be20: 8b 41 46 43 42 0a 00 53 53 5a 45 8b 41 46 43 42 .AFCB..SSZE.AFCB + be30: 0a 02 45 53 5a 30 8b 41 46 43 42 0a 04 43 43 44 ..ESZ0.AFCB..CCD + be40: 30 8b 41 46 43 42 0a 06 45 42 55 30 8b 41 46 43 0.AFCB..EBU0.AFC + be50: 42 0a 08 43 46 47 30 8b 41 46 43 42 0a 0a 50 43 B..CFG0.AFCB..PC + be60: 41 30 8b 41 46 43 42 0a 0c 44 43 50 30 8b 41 46 A0.AFCB..DCP0.AF + be70: 43 42 0a 0e 44 52 41 30 70 0a 0e 45 53 5a 30 70 CB..DRA0p..ESZ0p + be80: 0a 02 45 42 55 30 70 0a 00 43 46 47 30 70 0a 88 ..EBU0p..CFG0p.. + be90: 50 43 41 30 a0 2f 93 5e 5e 2e 53 41 54 41 56 49 PCA0./.^^.SATAVI + bea0: 44 49 0c 22 10 00 78 70 0a 01 45 42 55 30 70 0b DI."..xp..EBU0p. + beb0: 01 01 43 43 44 30 70 0a 00 44 43 50 30 70 0a 00 ..CCD0p..DCP0p.. + bec0: 44 52 41 30 a0 28 93 5e 5e 2e 53 41 54 41 56 49 DRA0.(.^^.SATAVI + bed0: 44 49 0c 22 10 01 78 70 0b 06 01 43 43 44 30 70 DI."..xp...CCD0p + bee0: 0a 00 44 43 50 30 70 0a 00 44 52 41 30 a0 28 93 ..DCP0p..DRA0.(. + bef0: 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 02 78 ^^.SATAVIDI."..x + bf00: 70 0b 04 01 43 43 44 30 70 0a 00 44 43 50 30 70 p...CCD0p..DCP0p + bf10: 0a 00 44 52 41 30 a0 28 93 5e 5e 2e 53 41 54 41 ..DRA0.(.^^.SATA + bf20: 56 49 44 49 0c 22 10 03 78 70 0b 04 01 43 43 44 VIDI."..xp...CCD + bf30: 30 70 0a 00 44 43 50 30 70 0a 00 44 52 41 30 a0 0p..DCP0p..DRA0. + bf40: 28 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 (.^^.SATAVIDI.". + bf50: 04 78 70 0b 06 01 43 43 44 30 70 0a 00 44 43 50 .xp...CCD0p..DCP + bf60: 30 70 0a 00 44 52 41 30 8b 41 46 43 42 0a 10 45 0p..DRA0.AFCB..E + bf70: 53 5a 31 8b 41 46 43 42 0a 12 43 43 44 31 8b 41 SZ1.AFCB..CCD1.A + bf80: 46 43 42 0a 14 45 42 55 31 8b 41 46 43 42 0a 16 FCB..EBU1.AFCB.. + bf90: 43 46 47 31 8b 41 46 43 42 0a 18 50 43 41 31 8b CFG1.AFCB..PCA1. + bfa0: 41 46 43 42 0a 1a 44 43 50 31 8b 41 46 43 42 0a AFCB..DCP1.AFCB. + bfb0: 1c 44 52 41 31 70 0a 0e 45 53 5a 31 70 0a 02 45 .DRA1p..ESZ1p..E + bfc0: 42 55 31 70 0a 00 43 46 47 31 70 0a 88 50 43 41 BU1p..CFG1p..PCA + bfd0: 31 a0 2f 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 1./.^^.SATAVIDI. + bfe0: 22 10 00 78 70 0a 01 45 42 55 31 70 0b 01 01 43 "..xp..EBU1p...C + bff0: 43 44 31 70 0a 01 44 43 50 31 70 0a 01 44 52 41 CD1p..DCP1p..DRA + c000: 31 a0 28 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 1.(.^^.SATAVIDI. + c010: 22 10 01 78 70 0b 06 01 43 43 44 31 70 0a 01 44 "..xp...CCD1p..D + c020: 43 50 31 70 0a 00 44 52 41 31 a0 28 93 5e 5e 2e CP1p..DRA1.(.^^. + c030: 53 41 54 41 56 49 44 49 0c 22 10 02 78 70 0b 04 SATAVIDI."..xp.. + c040: 01 43 43 44 31 70 0a 00 44 43 50 31 70 0a 00 44 .CCD1p..DCP1p..D + c050: 52 41 31 a0 28 93 5e 5e 2e 53 41 54 41 56 49 44 RA1.(.^^.SATAVID + c060: 49 0c 22 10 03 78 70 0b 04 01 43 43 44 31 70 0a I."..xp...CCD1p. + c070: 00 44 43 50 31 70 0a 00 44 52 41 31 a0 28 93 5e .DCP1p..DRA1.(.^ + c080: 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 04 78 70 ^.SATAVIDI."..xp + c090: 0b 06 01 43 43 44 31 70 0a 01 44 43 50 31 70 0a ...CCD1p..DCP1p. + c0a0: 00 44 52 41 31 8b 41 46 43 42 0a 1e 45 53 5a 32 .DRA1.AFCB..ESZ2 + c0b0: 8b 41 46 43 42 0a 20 43 43 44 32 8b 41 46 43 42 .AFCB. CCD2.AFCB + c0c0: 0a 22 45 42 55 32 8b 41 46 43 42 0a 24 43 46 47 ."EBU2.AFCB.$CFG + c0d0: 32 8b 41 46 43 42 0a 26 50 43 41 32 8b 41 46 43 2.AFCB.&PCA2.AFC + c0e0: 42 0a 28 44 43 50 32 8b 41 46 43 42 0a 2a 44 52 B.(DCP2.AFCB.*DR + c0f0: 41 32 70 0a 0e 45 53 5a 32 70 0a 02 45 42 55 32 A2p..ESZ2p..EBU2 + c100: 70 0a 00 43 46 47 32 70 0a 88 50 43 41 32 a0 2f p..CFG2p..PCA2./ + c110: 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 00 .^^.SATAVIDI.".. + c120: 78 70 0a 01 45 42 55 32 70 0b 01 01 43 43 44 32 xp..EBU2p...CCD2 + c130: 70 0a 00 44 43 50 32 70 0a 01 44 52 41 32 a0 28 p..DCP2p..DRA2.( + c140: 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 01 .^^.SATAVIDI.".. + c150: 78 70 0b 06 01 43 43 44 32 70 0a 02 44 43 50 32 xp...CCD2p..DCP2 + c160: 70 0a 00 44 52 41 32 a0 28 93 5e 5e 2e 53 41 54 p..DRA2.(.^^.SAT + c170: 41 56 49 44 49 0c 22 10 02 78 70 0b 04 01 43 43 AVIDI."..xp...CC + c180: 44 32 70 0a 00 44 43 50 32 70 0a 00 44 52 41 32 D2p..DCP2p..DRA2 + c190: a0 28 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 .(.^^.SATAVIDI." + c1a0: 10 03 78 70 0b 04 01 43 43 44 32 70 0a 00 44 43 ..xp...CCD2p..DC + c1b0: 50 32 70 0a 00 44 52 41 32 a0 28 93 5e 5e 2e 53 P2p..DRA2.(.^^.S + c1c0: 41 54 41 56 49 44 49 0c 22 10 04 78 70 0b 06 01 ATAVIDI."..xp... + c1d0: 43 43 44 32 70 0a 02 44 43 50 32 70 0a 00 44 52 CCD2p..DCP2p..DR + c1e0: 41 32 5b 13 41 46 43 42 0b 60 01 0a 70 49 44 58 A2[.AFCB.`..pIDX + c1f0: 33 70 44 41 54 33 49 44 58 33 5b 13 41 46 43 42 3pDAT3IDX3[.AFCB + c200: 0b d0 01 0a 70 49 44 58 34 70 44 41 54 34 49 44 ....pIDX4pDAT4ID + c210: 58 34 5b 13 41 46 43 42 0b 40 02 0a 70 49 44 58 X4[.AFCB.@..pIDX + c220: 35 8c 44 41 54 35 0a 07 42 55 53 35 a0 19 93 5e 5.DAT5..BUS5...^ + c230: 5e 2e 56 47 41 5f 50 58 45 4e 0c 00 00 00 80 70 ^.VGA_PXEN.....p + c240: 0a ff 42 55 53 35 a1 4e 05 a0 25 93 5e 5e 2e 56 ..BUS5.N..%.^^.V + c250: 47 41 5f 50 58 49 44 5e 5e 2e 50 42 32 5f 5f 41 GA_PXID^^.PB2__A + c260: 44 52 70 5e 5e 2e 50 42 32 5f 53 42 55 53 60 a0 DRp^^.PB2_SBUS`. + c270: 25 93 5e 5e 2e 56 47 41 5f 50 58 49 44 5e 5e 2e %.^^.VGA_PXID^^. + c280: 50 42 33 5f 5f 41 44 52 70 5e 5e 2e 50 42 33 5f PB3__ADRp^^.PB3_ + c290: 53 42 55 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 SBUS`z`..`{`..`p + c2a0: 60 42 55 53 35 70 44 41 54 35 49 44 58 35 5b 13 `BUS5pDAT5IDX5[. + c2b0: 41 46 43 42 0b b0 02 0a 70 49 44 58 36 8c 44 41 AFCB....pIDX6.DA + c2c0: 54 36 0a 07 42 55 53 36 70 5e 5e 2e 50 42 37 5f T6..BUS6p^^.PB7_ + c2d0: 53 42 55 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 SBUS`z`..`{`..`p + c2e0: 60 42 55 53 36 70 44 41 54 36 49 44 58 36 5b 13 `BUS6pDAT6IDX6[. + c2f0: 41 46 43 42 0b 20 03 0a 70 49 44 58 37 a0 34 92 AFCB. ..pIDX7.4. + c300: 93 46 55 33 45 0c 00 00 00 80 8c 44 41 54 37 0a .FU3E......DAT7. + c310: 09 42 55 53 37 70 5e 5e 2e 53 50 42 31 53 42 55 .BUS7p^^.SPB1SBU + c320: 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 60 42 55 S`z`..`{`..`p`BU + c330: 53 37 70 44 41 54 37 49 44 58 37 5b 13 41 46 43 S7pDAT7IDX7[.AFC + c340: 42 0b 90 03 0a 70 49 44 58 38 8c 44 41 54 38 0a B....pIDX8.DAT8. + c350: 07 42 55 53 38 70 5e 5e 2e 50 42 34 5f 53 42 55 .BUS8p^^.PB4_SBU + c360: 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 60 42 55 S`z`..`{`..`p`BU + c370: 53 38 70 44 41 54 38 49 44 58 38 5b 13 41 46 43 S8pDAT8IDX8[.AFC + c380: 42 0b 00 04 0a 70 49 44 58 39 8c 44 41 54 39 0a B....pIDX9.DAT9. + c390: 07 42 55 53 39 70 5e 5e 2e 50 42 36 5f 53 42 55 .BUS9p^^.PB6_SBU + c3a0: 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 60 42 55 S`z`..`{`..`p`BU + c3b0: 53 39 70 44 41 54 39 49 44 58 39 5b 13 41 46 43 S9pDAT9IDX9[.AFC + c3c0: 42 0b 70 04 0a 70 49 44 58 41 8c 44 41 54 41 0a B.p..pIDXA.DATA. + c3d0: 07 42 55 53 41 70 5e 5e 2e 53 50 42 30 53 42 55 .BUSAp^^.SPB0SBU + c3e0: 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 60 42 55 S`z`..`{`..`p`BU + c3f0: 53 41 70 44 41 54 41 49 44 58 41 5b 13 41 46 43 SApDATAIDXA[.AFC + c400: 42 0b e0 04 0a 70 49 44 58 42 8c 44 41 54 42 0a B....pIDXB.DATB. + c410: 07 42 55 53 42 70 5e 5e 2e 50 42 35 5f 53 42 55 .BUSBp^^.PB5_SBU + c420: 53 60 7a 60 0a 08 60 7b 60 0a ff 60 70 60 42 55 S`z`..`{`..`p`BU + c430: 53 42 70 44 41 54 42 49 44 58 42 5b 13 41 46 43 SBpDATBIDXB[.AFC + c440: 42 0b 50 05 0a 70 49 44 58 43 8c 44 41 54 43 0a B.P..pIDXC.DATC. + c450: 07 42 55 53 43 7a 60 0a 08 60 7b 60 0a ff 60 70 .BUSCz`..`{`..`p + c460: 60 42 55 53 43 70 44 41 54 43 49 44 58 43 70 0a `BUSCpDATCIDXCp. + c470: b8 53 53 5a 45 70 0b 01 ae 50 38 30 48 a4 41 46 .SSZEp...P80H.AF + c480: 43 42 14 83 0b 01 41 46 43 32 02 70 0b 02 af 50 CB....AFC2.p...P + c490: 38 30 48 8a 41 46 43 42 0a 00 46 4c 41 47 8c 41 80H.AFCB..FLAG.A + c4a0: 46 43 42 0a 04 50 57 53 54 8c 41 46 43 42 0a 05 FCB..PWST.AFCB.. + c4b0: 44 49 4e 44 8b 43 41 4c 42 0a 00 53 5a 5a 45 5b DIND.CALB..SZZE[ + c4c0: 13 43 41 4c 42 0a 10 0a 03 46 55 43 43 5b 13 43 .CALB....FUCC[.C + c4d0: 41 4c 42 0a 13 0a 05 44 45 56 56 5b 13 43 41 4c ALB....DEVV[.CAL + c4e0: 42 0a 18 0a 08 42 55 53 53 8c 43 41 4c 42 0a 04 B....BUSS.CALB.. + c4f0: 48 50 53 54 70 0a 05 53 5a 5a 45 7b 68 0a ff 50 HPSTp..SZZE{h..P + c500: 57 53 54 7b 69 0a ff 44 49 4e 44 a0 44 18 93 44 WST{i..DIND.D..D + c510: 49 4e 44 0a 00 a0 34 91 93 5e 5e 2e 53 41 54 41 IND...4..^^.SATA + c520: 56 49 44 49 0c 22 10 02 78 93 5e 5e 2e 53 41 54 VIDI."..x.^^.SAT + c530: 41 56 49 44 49 0c 22 10 03 78 7d 46 4c 41 47 0a AVIDI."..x}FLAG. + c540: 80 46 4c 41 47 a4 46 4c 41 47 70 0a 01 5e 5e 2e .FLAG.FLAGp..^^. + c550: 53 4d 42 5f 4d 58 35 37 70 0a 01 5e 5e 2e 53 4d SMB_MX57p..^^.SM + c560: 42 5f 4d 31 37 30 a0 49 06 93 50 57 53 54 0a 00 B_M170.I..PWST.. + c570: a0 25 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 .%.^^.SATAVIDI." + c580: 10 00 78 86 5e 5e 2f 03 53 41 54 41 50 52 49 44 ..x.^^/.SATAPRID + c590: 50 5f 44 30 0a 03 a0 32 91 93 5e 5e 2e 53 41 54 P_D0...2..^^.SAT + c5a0: 41 56 49 44 49 0c 22 10 01 78 93 5e 5e 2e 53 41 AVIDI."..x.^^.SA + c5b0: 54 41 56 49 44 49 0c 22 10 04 78 86 5e 5e 2e 53 TAVIDI."..x.^^.S + c5c0: 41 54 41 50 52 49 44 0a 03 70 0a 00 46 4c 41 47 ATAPRID..p..FLAG + c5d0: a0 46 0a 93 50 57 53 54 0a 01 70 0a 00 5e 5e 2e .F..PWST..p..^^. + c5e0: 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 2e 53 4d SMB_PAAOp..^^.SM + c5f0: 42 5f 50 41 41 45 70 0a 01 5e 5e 2e 53 4d 42 5f B_PAAEp..^^.SMB_ + c600: 50 33 39 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 33 P39Op..^^.SMB_P3 + c610: 39 45 5b 22 0b e8 03 a0 25 93 5e 5e 2e 53 41 54 9E["....%.^^.SAT + c620: 41 56 49 44 49 0c 22 10 00 78 86 5e 5e 2f 03 53 AVIDI."..x.^^/.S + c630: 41 54 41 50 52 49 44 50 5f 44 30 0a 01 a0 32 91 ATAPRIDP_D0...2. + c640: 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 01 .^^.SATAVIDI.".. + c650: 78 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 x.^^.SATAVIDI.". + c660: 04 78 86 5e 5e 2e 53 41 54 41 50 52 49 44 0a 01 .x.^^.SATAPRID.. + c670: 70 0a 01 46 4c 41 47 a0 18 93 50 57 53 54 0a ff p..FLAG...PWST.. + c680: 70 5e 5e 2e 53 4d 42 5f 50 33 39 4f 46 4c 41 47 p^^.SMB_P39OFLAG + c690: a0 4a 3f 93 44 49 4e 44 0a 01 a0 34 91 93 5e 5e .J?.DIND...4..^^ + c6a0: 2e 53 41 54 41 56 49 44 49 0c 22 10 02 78 93 5e .SATAVIDI."..x.^ + c6b0: 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 03 78 7d ^.SATAVIDI."..x} + c6c0: 46 4c 41 47 0a 80 46 4c 41 47 a4 46 4c 41 47 70 FLAG..FLAG.FLAGp + c6d0: 0a 01 5e 5e 2e 53 4d 42 5f 4d 58 35 33 70 0a 01 ..^^.SMB_MX53p.. + c6e0: 5e 5e 2e 53 4d 42 5f 4d 31 37 30 a0 4e 19 93 4f ^^.SMB_M170.N..O + c6f0: 44 5a 50 0c 00 00 00 80 a0 4d 09 93 50 57 53 54 DZP......M..PWST + c700: 0a 00 a0 25 93 5e 5e 2e 53 41 54 41 56 49 44 49 ...%.^^.SATAVIDI + c710: 0c 22 10 00 78 86 5e 5e 2f 03 53 41 54 41 50 52 ."..x.^^/.SATAPR + c720: 54 31 4f 44 44 5f 0a 03 a0 46 06 91 93 5e 5e 2e T1ODD_...F...^^. + c730: 53 41 54 41 56 49 44 49 0c 22 10 01 78 93 5e 5e SATAVIDI."..x.^^ + c740: 2e 53 41 54 41 56 49 44 49 0c 22 10 04 78 a0 16 .SATAVIDI."..x.. + c750: 93 48 44 44 30 0a 01 86 5e 5e 2e 53 41 54 41 50 .HDD0...^^.SATAP + c760: 52 54 31 0a 03 a1 29 a0 17 92 95 54 50 4f 53 0a RT1...)....TPOS. + c770: 50 86 5e 5e 2e 53 41 54 41 50 52 54 31 0a 03 a1 P.^^.SATAPRT1... + c780: 0f 86 5e 5e 2e 53 41 54 41 50 52 49 44 0a 03 70 ..^^.SATAPRID..p + c790: 0a 00 46 4c 41 47 a0 4a 0d 93 50 57 53 54 0a 01 ..FLAG.J..PWST.. + c7a0: 70 0a 00 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a p..^^.SMB_PAAOp. + c7b0: 00 5e 5e 2e 53 4d 42 5f 50 41 41 45 70 0a 01 5e .^^.SMB_PAAEp..^ + c7c0: 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 5e 5e 2e ^.SMB_P39Op..^^. + c7d0: 53 4d 42 5f 50 33 39 45 5b 22 0b e8 03 a0 25 93 SMB_P39E["....%. + c7e0: 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 00 78 ^^.SATAVIDI."..x + c7f0: 86 5e 5e 2f 03 53 41 54 41 50 52 54 31 4f 44 44 .^^/.SATAPRT1ODD + c800: 5f 0a 01 a0 46 06 91 93 5e 5e 2e 53 41 54 41 56 _...F...^^.SATAV + c810: 49 44 49 0c 22 10 01 78 93 5e 5e 2e 53 41 54 41 IDI."..x.^^.SATA + c820: 56 49 44 49 0c 22 10 04 78 a0 16 93 48 44 44 30 VIDI."..x...HDD0 + c830: 0a 01 86 5e 5e 2e 53 41 54 41 50 52 54 31 0a 01 ...^^.SATAPRT1.. + c840: a1 29 a0 17 92 95 54 50 4f 53 0a 50 86 5e 5e 2e .)....TPOS.P.^^. + c850: 53 41 54 41 50 52 54 31 0a 01 a1 0f 86 5e 5e 2e SATAPRT1.....^^. + c860: 53 41 54 41 50 52 49 44 0a 01 70 0a 01 46 4c 41 SATAPRID..p..FLA + c870: 47 a0 18 93 50 57 53 54 0a ff 70 5e 5e 2e 53 4d G...PWST..p^^.SM + c880: 42 5f 50 33 35 4f 46 4c 41 47 a1 40 20 a0 32 93 B_P35OFLAG.@ .2. + c890: 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 04 78 ^^.SATAVIDI."..x + c8a0: 70 5e 5e 2e 53 4d 42 5f 50 33 35 4f 46 4c 41 47 p^^.SMB_P35OFLAG + c8b0: 7d 46 4c 41 47 0a c0 46 4c 41 47 a4 46 4c 41 47 }FLAG..FLAG.FLAG + c8c0: a0 45 09 93 50 57 53 54 0a 00 a0 25 93 5e 5e 2e .E..PWST...%.^^. + c8d0: 53 41 54 41 56 49 44 49 0c 22 10 00 78 86 5e 5e SATAVIDI."..x.^^ + c8e0: 2f 03 53 41 54 41 4f 44 44 5a 4f 44 44 5f 0a 03 /.SATAODDZODD_.. + c8f0: a0 4e 05 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c .N..^^.SATAVIDI. + c900: 22 10 01 78 a0 1b 93 48 44 44 30 0a 01 86 5e 5e "..x...HDD0...^^ + c910: 2f 03 53 41 54 41 4f 44 44 5a 4f 44 44 5f 0a 03 /.SATAODDZODD_.. + c920: a1 2e a0 1c 92 95 54 50 4f 53 0a 50 86 5e 5e 2f ......TPOS.P.^^/ + c930: 03 53 41 54 41 4f 44 44 5a 4f 44 44 5f 0a 03 a1 .SATAODDZODD_... + c940: 0f 86 5e 5e 2e 53 41 54 41 50 52 49 44 0a 03 70 ..^^.SATAPRID..p + c950: 0a 00 46 4c 41 47 a0 42 0d 93 50 57 53 54 0a 01 ..FLAG.B..PWST.. + c960: 70 0a 00 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a p..^^.SMB_PAAOp. + c970: 00 5e 5e 2e 53 4d 42 5f 50 41 41 45 70 0a 01 5e .^^.SMB_PAAEp..^ + c980: 5e 2e 53 4d 42 5f 50 33 35 4f 70 0a 00 5e 5e 2e ^.SMB_P35Op..^^. + c990: 53 4d 42 5f 50 33 35 45 5b 22 0b e8 03 a0 25 93 SMB_P35E["....%. + c9a0: 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 00 78 ^^.SATAVIDI."..x + c9b0: 86 5e 5e 2f 03 53 41 54 41 4f 44 44 5a 4f 44 44 .^^/.SATAODDZODD + c9c0: 5f 0a 01 a0 4e 05 93 5e 5e 2e 53 41 54 41 56 49 _...N..^^.SATAVI + c9d0: 44 49 0c 22 10 01 78 a0 1b 93 48 44 44 30 0a 01 DI."..x...HDD0.. + c9e0: 86 5e 5e 2f 03 53 41 54 41 4f 44 44 5a 4f 44 44 .^^/.SATAODDZODD + c9f0: 5f 0a 01 a1 2e a0 1c 92 95 54 50 4f 53 0a 50 86 _........TPOS.P. + ca00: 5e 5e 2f 03 53 41 54 41 4f 44 44 5a 4f 44 44 5f ^^/.SATAODDZODD_ + ca10: 0a 01 a1 0f 86 5e 5e 2e 53 41 54 41 50 52 49 44 .....^^.SATAPRID + ca20: 0a 01 70 0a 01 46 4c 41 47 a0 41 06 93 50 57 53 ..p..FLAG.A..PWS + ca30: 54 0a ff 70 5e 5e 2e 53 4d 42 5f 50 33 35 4f 46 T..p^^.SMB_P35OF + ca40: 4c 41 47 a0 2f 91 93 5e 5e 2e 53 41 54 41 56 49 LAG./..^^.SATAVI + ca50: 44 49 0c 22 10 00 78 93 5e 5e 2e 53 41 54 41 56 DI."..x.^^.SATAV + ca60: 49 44 49 0c 22 10 01 78 7b 46 4c 41 47 0a 7f 46 IDI."..x{FLAG..F + ca70: 4c 41 47 a1 0c 7d 46 4c 41 47 0a 80 46 4c 41 47 LAG..}FLAG..FLAG + ca80: 7d 46 4c 41 47 0a 40 46 4c 41 47 a0 45 1a 93 44 }FLAG.@FLAG.E..D + ca90: 49 4e 44 0a 02 a0 34 91 93 5e 5e 2e 53 41 54 41 IND...4..^^.SATA + caa0: 56 49 44 49 0c 22 10 02 78 93 5e 5e 2e 53 41 54 VIDI."..x.^^.SAT + cab0: 41 56 49 44 49 0c 22 10 03 78 7d 46 4c 41 47 0a AVIDI."..x}FLAG. + cac0: 80 46 4c 41 47 a4 46 4c 41 47 70 0a 01 5e 5e 2e .FLAG.FLAGp..^^. + cad0: 53 4d 42 5f 4d 58 35 38 70 0a 01 5e 5e 2e 53 4d SMB_MX58p..^^.SM + cae0: 42 5f 4d 31 37 30 a0 49 06 93 50 57 53 54 0a 00 B_M170.I..PWST.. + caf0: a0 25 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 .%.^^.SATAVIDI." + cb00: 10 00 78 86 5e 5e 2f 03 53 41 54 41 50 52 49 44 ..x.^^/.SATAPRID + cb10: 50 5f 44 31 0a 03 a0 32 91 93 5e 5e 2e 53 41 54 P_D1...2..^^.SAT + cb20: 41 56 49 44 49 0c 22 10 01 78 93 5e 5e 2e 53 41 AVIDI."..x.^^.SA + cb30: 54 41 56 49 44 49 0c 22 10 04 78 86 5e 5e 2e 53 TAVIDI."..x.^^.S + cb40: 41 54 41 53 45 43 44 0a 03 70 0a 00 46 4c 41 47 ATASECD..p..FLAG + cb50: a0 47 0c 93 50 57 53 54 0a 01 70 0a 00 5e 5e 2e .G..PWST..p..^^. + cb60: 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 2e 53 4d SMB_PAAOp..^^.SM + cb70: 42 5f 50 41 41 45 5b 22 0b e8 03 70 0a 01 5e 5e B_PAAE["...p..^^ + cb80: 2e 53 4d 42 5f 50 33 35 4f 70 0a 00 5e 5e 2e 53 .SMB_P35Op..^^.S + cb90: 4d 42 5f 50 33 35 45 5b 22 0b e8 03 70 0a 01 5e MB_P35E["...p..^ + cba0: 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 2e ^.SMB_PAAOp..^^. + cbb0: 53 4d 42 5f 50 41 41 45 a0 25 93 5e 5e 2e 53 41 SMB_PAAE.%.^^.SA + cbc0: 54 41 56 49 44 49 0c 22 10 00 78 86 5e 5e 2f 03 TAVIDI."..x.^^/. + cbd0: 53 41 54 41 50 52 49 44 50 5f 44 31 0a 01 a0 32 SATAPRIDP_D1...2 + cbe0: 91 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 10 ..^^.SATAVIDI.". + cbf0: 01 78 93 5e 5e 2e 53 41 54 41 56 49 44 49 0c 22 .x.^^.SATAVIDI." + cc00: 10 04 78 86 5e 5e 2e 53 41 54 41 53 45 43 44 0a ..x.^^.SATASECD. + cc10: 01 70 0a 01 46 4c 41 47 a0 18 93 50 57 53 54 0a .p..FLAG...PWST. + cc20: ff 70 5e 5e 2e 53 4d 42 5f 50 33 35 4f 46 4c 41 .p^^.SMB_P35OFLA + cc30: 47 a0 48 08 93 44 49 4e 44 0a 03 70 0a 01 5e 5e G.H..DIND..p..^^ + cc40: 2e 53 4d 42 5f 4d 58 36 36 a0 29 93 50 57 53 54 .SMB_MX66.).PWST + cc50: 0a 00 70 01 5e 5e 2e 53 4d 42 5f 50 34 32 4f 70 ..p.^^.SMB_P42Op + cc60: 00 5e 5e 2e 53 4d 42 5f 50 34 32 45 70 0a 00 46 .^^.SMB_P42Ep..F + cc70: 4c 41 47 a0 2d 93 50 57 53 54 0a 01 70 00 5e 5e LAG.-.PWST..p.^^ + cc80: 2e 53 4d 42 5f 50 34 32 4f 70 00 5e 5e 2e 53 4d .SMB_P42Op.^^.SM + cc90: 42 5f 50 34 32 45 5b 22 0a 28 70 0a 01 46 4c 41 B_P42E[".(p..FLA + cca0: 47 a0 18 93 50 57 53 54 0a ff 70 5e 5e 2e 53 4d G...PWST..p^^.SM + ccb0: 42 5f 50 34 32 4f 46 4c 41 47 a0 47 09 93 44 49 B_P42OFLAG.G..DI + ccc0: 4e 44 0a 04 70 0a 01 5e 5e 2e 53 4d 42 5f 4d 58 ND..p..^^.SMB_MX + ccd0: 30 37 a0 22 93 50 57 53 54 0a 00 86 5e 5e 2f 03 07.".PWST...^^/. + cce0: 4f 48 43 34 52 48 55 42 50 52 54 32 0a 03 70 0a OHC4RHUBPRT2..p. + ccf0: 00 46 4c 41 47 a0 43 04 93 50 57 53 54 0a 01 70 .FLAG.C..PWST..p + cd00: 0a 01 5e 5e 2e 53 4d 42 5f 50 30 37 4f 70 0a 00 ..^^.SMB_P07Op.. + cd10: 5e 5e 2e 53 4d 42 5f 50 30 37 45 5b 22 0a 28 86 ^^.SMB_P07E[".(. + cd20: 5e 5e 2f 03 4f 48 43 34 52 48 55 42 50 52 54 32 ^^/.OHC4RHUBPRT2 + cd30: 0a 01 70 0a 01 46 4c 41 47 a0 18 93 50 57 53 54 ..p..FLAG...PWST + cd40: 0a ff 70 5e 5e 2e 53 4d 42 5f 50 30 37 4f 46 4c ..p^^.SMB_P07OFL + cd50: 41 47 a0 4a 0b 93 44 49 4e 44 0a 05 a0 32 93 5e AG.J..DIND...2.^ + cd60: 5e 2e 56 47 41 5f 50 58 45 4e 0c 00 00 00 80 70 ^.VGA_PXEN.....p + cd70: 5e 5e 2e 53 4d 42 5f 50 32 44 4f 46 4c 41 47 7d ^^.SMB_P2DOFLAG} + cd80: 46 4c 41 47 0a 80 46 4c 41 47 a4 46 4c 41 47 a0 FLAG..FLAG.FLAG. + cd90: 1d 93 50 57 53 54 0a 00 86 5e 5e 2e 50 42 33 5f ..PWST...^^.PB3_ + cda0: 56 47 41 5f 0a 03 70 0a 00 46 4c 41 47 a0 46 04 VGA_..p..FLAG.F. + cdb0: 93 50 57 53 54 0a 01 a0 18 5e 5e 2e 53 4d 42 5f .PWST....^^.SMB_ + cdc0: 50 32 44 4f 70 0a 01 46 4c 41 47 a4 46 4c 41 47 P2DOp..FLAG.FLAG + cdd0: a1 23 5e 5e 2e 56 47 41 5f 50 58 30 32 0a 01 86 .#^^.VGA_PX02... + cde0: 5e 5e 2e 50 42 33 5f 56 47 41 5f 0a 01 70 0a 01 ^^.PB3_VGA_..p.. + cdf0: 46 4c 41 47 a0 18 93 50 57 53 54 0a ff 70 5e 5e FLAG...PWST..p^^ + ce00: 2e 53 4d 42 5f 50 32 44 4f 46 4c 41 47 a0 4f 18 .SMB_P2DOFLAG.O. + ce10: 93 44 49 4e 44 0a 06 70 0a 02 5e 5e 2e 53 4d 42 .DIND..p..^^.SMB + ce20: 5f 4d 58 35 39 70 0a 01 5e 5e 2e 53 4d 42 5f 4d _MX59p..^^.SMB_M + ce30: 58 32 37 a0 25 93 50 57 53 54 0a 00 86 5e 5e 2e X27.%.PWST...^^. + ce40: 50 42 37 5f 58 50 44 56 0a 03 70 0a 00 46 4c 41 PB7_XPDV..p..FLA + ce50: 47 70 0b 60 af 50 38 30 48 a0 4a 12 93 50 57 53 Gp.`.P80H.J..PWS + ce60: 54 0a 01 70 0a 00 5e 5e 2e 53 4d 42 5f 50 31 42 T..p..^^.SMB_P1B + ce70: 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 31 42 45 5b Op..^^.SMB_P1BE[ + ce80: 22 0a 28 70 0a 01 5e 5e 2e 53 4d 42 5f 50 33 42 ".(p..^^.SMB_P3B + ce90: 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 33 42 45 5b Op..^^.SMB_P3BE[ + cea0: 22 0a 28 70 5e 5e 2e 53 4d 42 5f 4d 53 30 34 60 ".(p^^.SMB_MS04` + ceb0: 7d 60 0a 0f 61 70 61 5e 5e 2e 53 4d 42 5f 4d 53 }`..apa^^.SMB_MS + cec0: 30 34 5b 22 0a 28 70 0a 01 5e 5e 2e 53 4d 42 5f 04[".(p..^^.SMB_ + ced0: 50 31 42 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 31 P1BOp..^^.SMB_P1 + cee0: 42 45 5b 22 0a 28 70 01 5e 5e 2e 53 4d 42 5f 50 BE[".(p.^^.SMB_P + cef0: 32 39 48 70 01 5e 5e 2e 53 4d 42 5f 50 32 39 53 29Hp.^^.SMB_P29S + cf00: 70 00 5e 5e 2e 53 4d 42 5f 50 32 39 55 5b 22 0a p.^^.SMB_P29U[". + cf10: 28 70 0a 00 46 55 43 43 70 0a 07 44 45 56 56 70 (p..FUCCp..DEVVp + cf20: 0a 00 42 55 53 53 70 0a 01 48 50 53 54 41 4c 49 ..BUSSp..HPSTALI + cf30: 42 0a 06 43 41 4c 42 5b 22 0a 28 70 5e 5e 2f 03 B..CALB[".(p^^/. + cf40: 50 42 37 5f 58 50 44 56 44 49 53 46 60 7b 60 0c PB7_XPDVDISF`{`. + cf50: f9 ff ff ff 60 70 60 5e 5e 2f 03 50 42 37 5f 58 ....`p`^^/.PB7_X + cf60: 50 44 56 44 49 53 46 86 5e 5e 2e 50 42 37 5f 58 PDVDISF.^^.PB7_X + cf70: 50 44 56 0a 01 70 0a 01 46 4c 41 47 70 0b 61 af PDV..p..FLAGp.a. + cf80: 50 38 30 48 a0 18 93 50 57 53 54 0a ff 70 5e 5e P80H...PWST..p^^ + cf90: 2e 53 4d 42 5f 50 33 42 4f 46 4c 41 47 a0 47 0e .SMB_P3BOFLAG.G. + cfa0: 93 44 49 4e 44 0a 07 70 0a 02 5e 5e 2e 53 4d 42 .DIND..p..^^.SMB + cfb0: 5f 4d 32 30 30 a0 25 93 50 57 53 54 0a 00 86 5e _M200.%.PWST...^ + cfc0: 5e 2e 53 50 42 31 58 50 44 56 0a 03 70 0a 00 46 ^.SPB1XPDV..p..F + cfd0: 4c 41 47 70 0b 70 ae 50 38 30 48 a0 40 09 93 50 LAGp.p.P80H.@..P + cfe0: 57 53 54 0a 01 70 0a 01 5e 5e 2e 53 4d 42 5f 50 WST..p..^^.SMB_P + cff0: 43 38 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 43 38 C8Op..^^.SMB_PC8 + d000: 45 5b 22 0a 28 70 5e 5e 2e 53 4d 42 5f 4d 53 30 E[".(p^^.SMB_MS0 + d010: 33 60 7d 60 0a f0 61 70 61 5e 5e 2e 53 4d 42 5f 3`}`..apa^^.SMB_ + d020: 4d 53 30 33 70 01 5e 5e 2e 53 4d 42 5f 50 32 45 MS03p.^^.SMB_P2E + d030: 48 70 01 5e 5e 2e 53 4d 42 5f 50 32 45 53 70 00 Hp.^^.SMB_P2ESp. + d040: 5e 5e 2e 53 4d 42 5f 50 32 45 55 5b 22 0a 28 86 ^^.SMB_P2EU[".(. + d050: 5e 5e 2e 53 50 42 31 58 50 44 56 0a 01 70 0a 01 ^^.SPB1XPDV..p.. + d060: 46 4c 41 47 70 0b 71 ae 50 38 30 48 a0 18 93 50 FLAGp.q.P80H...P + d070: 57 53 54 0a ff 70 5e 5e 2e 53 4d 42 5f 50 43 38 WST..p^^.SMB_PC8 + d080: 4f 46 4c 41 47 a0 4d 0f 93 44 49 4e 44 0a 08 70 OFLAG.M..DIND..p + d090: 0a 02 5e 5e 2e 53 4d 42 5f 4d 31 39 37 a0 1d 93 ..^^.SMB_M197... + d0a0: 50 57 53 54 0a 00 86 5e 5e 2e 50 42 34 5f 58 50 PWST...^^.PB4_XP + d0b0: 44 56 0a 03 70 0a 00 46 4c 41 47 a0 4e 0a 93 50 DV..p..FLAG.N..P + d0c0: 57 53 54 0a 01 70 0a 01 5e 5e 2e 53 4d 42 5f 50 WST..p..^^.SMB_P + d0d0: 43 35 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 43 35 C5Op..^^.SMB_PC5 + d0e0: 45 5b 22 0a c8 70 5e 5e 2e 53 4d 42 5f 4d 53 30 E["..p^^.SMB_MS0 + d0f0: 31 60 7d 60 0a f0 61 70 61 5e 5e 2e 53 4d 42 5f 1`}`..apa^^.SMB_ + d100: 4d 53 30 31 70 01 5e 5e 2e 53 4d 42 5f 50 33 46 MS01p.^^.SMB_P3F + d110: 48 70 01 5e 5e 2e 53 4d 42 5f 50 33 46 53 70 00 Hp.^^.SMB_P3FSp. + d120: 5e 5e 2e 53 4d 42 5f 50 33 46 55 5b 22 0a c8 70 ^^.SMB_P3FU["..p + d130: 0a 00 46 55 43 43 70 0a 04 44 45 56 56 70 0a 00 ..FUCCp..DEVVp.. + d140: 42 55 53 53 70 0a 01 48 50 53 54 41 4c 49 42 0a BUSSp..HPSTALIB. + d150: 06 43 41 4c 42 86 5e 5e 2e 50 42 34 5f 58 50 44 .CALB.^^.PB4_XPD + d160: 56 0a 01 70 0a 01 46 4c 41 47 a0 18 93 50 57 53 V..p..FLAG...PWS + d170: 54 0a ff 70 5e 5e 2e 53 4d 42 5f 50 43 35 4f 46 T..p^^.SMB_PC5OF + d180: 4c 41 47 a0 4e 12 93 44 49 4e 44 0a 09 70 0a 01 LAG.N..DIND..p.. + d190: 5e 5e 2e 53 4d 42 5f 4d 31 37 36 a0 1d 93 50 57 ^^.SMB_M176...PW + d1a0: 53 54 0a 00 86 5e 5e 2e 50 42 36 5f 58 50 44 56 ST...^^.PB6_XPDV + d1b0: 0a 03 70 0a 00 46 4c 41 47 a0 42 0d 93 50 57 53 ..p..FLAG.B..PWS + d1c0: 54 0a 01 5b 22 0a 28 70 0a 01 5e 5e 2e 53 4d 42 T..[".(p..^^.SMB + d1d0: 5f 50 30 45 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 _P0EOp..^^.SMB_P + d1e0: 30 45 45 70 0a 00 5e 5e 2e 53 4d 42 5f 50 42 30 0EEp..^^.SMB_PB0 + d1f0: 4f 70 0a 00 5e 5e 2e 53 4d 42 5f 50 42 30 45 5b Op..^^.SMB_PB0E[ + d200: 22 0a c8 70 5e 5e 2e 53 4d 42 5f 4d 53 30 32 60 "..p^^.SMB_MS02` + d210: 7d 60 0a 0f 61 70 61 5e 5e 2e 53 4d 42 5f 4d 53 }`..apa^^.SMB_MS + d220: 30 32 5b 22 0a 28 70 01 5e 5e 2e 53 4d 42 5f 50 02[".(p.^^.SMB_P + d230: 34 30 48 70 01 5e 5e 2e 53 4d 42 5f 50 34 30 53 40Hp.^^.SMB_P40S + d240: 70 00 5e 5e 2e 53 4d 42 5f 50 34 30 55 5b 22 0a p.^^.SMB_P40U[". + d250: c8 70 0a 00 46 55 43 43 70 0a 06 44 45 56 56 70 .p..FUCCp..DEVVp + d260: 0a 00 42 55 53 53 70 0a 01 48 50 53 54 41 4c 49 ..BUSSp..HPSTALI + d270: 42 0a 06 43 41 4c 42 86 5e 5e 2e 50 42 36 5f 58 B..CALB.^^.PB6_X + d280: 50 44 56 0a 01 70 0a 01 46 4c 41 47 a0 25 93 50 PDV..p..FLAG.%.P + d290: 57 53 54 0a ff 70 5e 5e 2e 53 4d 42 5f 50 42 30 WST..p^^.SMB_PB0 + d2a0: 4f 60 7b 60 0a 01 60 7f 60 0a 01 60 70 60 46 4c O`{`..`.`..`p`FL + d2b0: 41 47 a0 4a 0b 93 44 49 4e 44 0a 0a 70 0a 01 5e AG.J..DIND..p..^ + d2c0: 5e 2e 53 4d 42 5f 4d 31 37 35 a0 1d 93 50 57 53 ^.SMB_M175...PWS + d2d0: 54 0a 00 86 5e 5e 2e 53 50 42 30 58 50 44 56 0a T...^^.SPB0XPDV. + d2e0: 03 70 0a 00 46 4c 41 47 a0 4e 05 93 50 57 53 54 .p..FLAG.N..PWST + d2f0: 0a 01 70 0a 01 5e 5e 2e 53 4d 42 5f 50 30 43 4f ..p..^^.SMB_P0CO + d300: 70 0a 00 5e 5e 2e 53 4d 42 5f 50 30 43 45 5b 22 p..^^.SMB_P0CE[" + d310: 0a 28 70 0a 00 5e 5e 2e 53 4d 42 5f 50 41 46 4f .(p..^^.SMB_PAFO + d320: 70 0a 00 5e 5e 2e 53 4d 42 5f 50 41 46 45 5b 22 p..^^.SMB_PAFE[" + d330: 0a c8 86 5e 5e 2e 53 50 42 30 58 50 44 56 0a 01 ...^^.SPB0XPDV.. + d340: 70 0a 01 46 4c 41 47 a0 25 93 50 57 53 54 0a ff p..FLAG.%.PWST.. + d350: 70 5e 5e 2e 53 4d 42 5f 50 41 46 4f 60 7b 60 0a p^^.SMB_PAFO`{`. + d360: 01 60 7f 60 0a 01 60 70 60 46 4c 41 47 a0 4e 12 .`.`..`p`FLAG.N. + d370: 93 44 49 4e 44 0a 0b 70 0a 01 5e 5e 2e 53 4d 42 .DIND..p..^^.SMB + d380: 5f 50 42 31 4f a0 1d 93 50 57 53 54 0a 00 86 5e _PB1O...PWST...^ + d390: 5e 2e 50 42 35 5f 58 50 44 56 0a 03 70 0a 00 46 ^.PB5_XPDV..p..F + d3a0: 4c 41 47 a0 42 0d 93 50 57 53 54 0a 01 5b 22 0a LAG.B..PWST..[". + d3b0: 28 70 0a 01 5e 5e 2e 53 4d 42 5f 50 30 44 4f 70 (p..^^.SMB_P0DOp + d3c0: 0a 00 5e 5e 2e 53 4d 42 5f 50 30 44 45 70 0a 00 ..^^.SMB_P0DEp.. + d3d0: 5e 5e 2e 53 4d 42 5f 50 42 31 4f 70 0a 00 5e 5e ^^.SMB_PB1Op..^^ + d3e0: 2e 53 4d 42 5f 50 42 31 45 5b 22 0a c8 70 5e 5e .SMB_PB1E["..p^^ + d3f0: 2e 53 4d 42 5f 4d 53 30 31 60 7d 60 0a 0f 61 70 .SMB_MS01`}`..ap + d400: 61 5e 5e 2e 53 4d 42 5f 4d 53 30 31 5b 22 0a 28 a^^.SMB_MS01[".( + d410: 70 01 5e 5e 2e 53 4d 42 5f 50 33 45 48 70 01 5e p.^^.SMB_P3EHp.^ + d420: 5e 2e 53 4d 42 5f 50 33 45 53 70 00 5e 5e 2e 53 ^.SMB_P3ESp.^^.S + d430: 4d 42 5f 50 33 45 55 5b 22 0a c8 70 0a 00 46 55 MB_P3EU["..p..FU + d440: 43 43 70 0a 05 44 45 56 56 70 0a 00 42 55 53 53 CCp..DEVVp..BUSS + d450: 70 0a 01 48 50 53 54 41 4c 49 42 0a 06 43 41 4c p..HPSTALIB..CAL + d460: 42 86 5e 5e 2e 50 42 35 5f 58 50 44 56 0a 01 70 B.^^.PB5_XPDV..p + d470: 0a 01 46 4c 41 47 a0 25 93 50 57 53 54 0a ff 70 ..FLAG.%.PWST..p + d480: 5e 5e 2e 53 4d 42 5f 50 42 31 4f 60 7b 60 0a 01 ^^.SMB_PB1O`{`.. + d490: 60 7f 60 0a 01 60 70 60 46 4c 41 47 a0 4c 08 93 `.`..`p`FLAG.L.. + d4a0: 44 49 4e 44 0a 0c 70 0a 01 5e 5e 2e 53 4d 42 5f DIND..p..^^.SMB_ + d4b0: 4d 58 32 33 a0 2b 93 50 57 53 54 0a 00 70 0a 00 MX23.+.PWST..p.. + d4c0: 5e 5e 2e 53 4d 42 5f 50 31 37 4f 70 0a 00 5e 5e ^^.SMB_P17Op..^^ + d4d0: 2e 53 4d 42 5f 50 31 37 45 70 0a 00 46 4c 41 47 .SMB_P17Ep..FLAG + d4e0: a0 2f 93 50 57 53 54 0a 01 70 0a 01 5e 5e 2e 53 ./.PWST..p..^^.S + d4f0: 4d 42 5f 50 31 37 4f 70 0a 00 5e 5e 2e 53 4d 42 MB_P17Op..^^.SMB + d500: 5f 50 31 37 45 5b 22 0a c8 70 0a 01 46 4c 41 47 _P17E["..p..FLAG + d510: a0 18 93 50 57 53 54 0a ff 70 5e 5e 2e 53 4d 42 ...PWST..p^^.SMB + d520: 5f 50 31 37 4f 46 4c 41 47 70 0b 02 ae 50 38 30 _P17OFLAGp...P80 + d530: 48 a4 46 4c 41 47 10 4a 0a 2e 53 41 54 41 50 52 H.FLAG.J..SATAPR + d540: 49 44 14 4e 09 5f 45 4a 58 01 70 0a 00 5e 5e 5e ID.N._EJX.p..^^^ + d550: 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 2e .SMB_PAAOp..^^^. + d560: 53 4d 42 5f 50 41 41 45 5b 22 0a 28 a0 2e 93 5e SMB_PAAE[".(...^ + d570: 5e 5e 2e 41 46 44 5f 48 44 44 30 0a 01 70 0a 00 ^^.AFD_HDD0..p.. + d580: 5e 5e 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 5e ^^^.SMB_P39Op..^ + d590: 5e 5e 2e 53 4d 42 5f 50 33 39 45 a1 1f 70 0a 00 ^^.SMB_P39E..p.. + d5a0: 5e 5e 5e 2e 53 4d 42 5f 50 33 35 4f 70 0a 00 5e ^^^.SMB_P35Op..^ + d5b0: 5e 5e 2e 53 4d 42 5f 50 33 35 45 5b 22 0a 28 70 ^^.SMB_P35E[".(p + d5c0: 0a 01 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a ..^^^.SMB_PAAOp. + d5d0: 00 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 5b 22 0a .^^^.SMB_PAAE[". + d5e0: 28 10 44 08 2f 03 53 41 54 41 50 52 49 44 50 5f (.D./.SATAPRIDP_ + d5f0: 44 30 14 43 07 5f 45 4a 58 01 70 0a 00 5e 5e 5e D0.C._EJX.p..^^^ + d600: 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e ^.SMB_PAAOp..^^^ + d610: 5e 2e 53 4d 42 5f 50 41 41 45 5b 22 0a 28 70 0a ^.SMB_PAAE[".(p. + d620: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a .^^^^.SMB_P39Op. + d630: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 39 45 5b 22 .^^^^.SMB_P39E[" + d640: 0a 28 70 0a 01 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 .(p..^^^^.SMB_PA + d650: 41 4f 70 0a 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 AOp..^^^^.SMB_PA + d660: 41 45 5b 22 0a 28 10 49 07 2e 53 41 54 41 50 52 AE[".(.I..SATAPR + d670: 54 31 14 4d 06 5f 45 4a 58 01 70 0a 00 5e 5e 5e T1.M._EJX.p..^^^ + d680: 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 2e .SMB_PAAOp..^^^. + d690: 53 4d 42 5f 50 41 41 45 5b 22 0a 28 70 0a 00 5e SMB_PAAE[".(p..^ + d6a0: 5e 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 5e 5e ^^.SMB_P39Op..^^ + d6b0: 5e 2e 53 4d 42 5f 50 33 39 45 5b 22 0a 28 70 0a ^.SMB_P39E[".(p. + d6c0: 01 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 .^^^.SMB_PAAOp.. + d6d0: 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 5b 22 0a 28 ^^^.SMB_PAAE[".( + d6e0: 10 44 08 2f 03 53 41 54 41 50 52 54 31 4f 44 44 .D./.SATAPRT1ODD + d6f0: 5f 14 43 07 5f 45 4a 58 01 70 0a 00 5e 5e 5e 5e _.C._EJX.p..^^^^ + d700: 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 5e .SMB_PAAOp..^^^^ + d710: 2e 53 4d 42 5f 50 41 41 45 5b 22 0a 28 70 0a 00 .SMB_PAAE[".(p.. + d720: 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 ^^^^.SMB_P39Op.. + d730: 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 39 45 5b 22 0a ^^^^.SMB_P39E[". + d740: 28 70 0a 01 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 (p..^^^^.SMB_PAA + d750: 4f 70 0a 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 Op..^^^^.SMB_PAA + d760: 45 5b 22 0a 28 10 49 07 2e 53 41 54 41 53 45 43 E[".(.I..SATASEC + d770: 44 14 4d 06 5f 45 4a 58 01 70 0a 00 5e 5e 5e 2e D.M._EJX.p..^^^. + d780: 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 2e 53 SMB_PAAOp..^^^.S + d790: 4d 42 5f 50 41 41 45 5b 22 0a 28 70 0a 00 5e 5e MB_PAAE[".(p..^^ + d7a0: 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 5e 5e 5e ^.SMB_P39Op..^^^ + d7b0: 2e 53 4d 42 5f 50 33 39 45 5b 22 0a 28 70 0a 01 .SMB_P39E[".(p.. + d7c0: 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e ^^^.SMB_PAAOp..^ + d7d0: 5e 5e 2e 53 4d 42 5f 50 41 41 45 5b 22 0a 28 10 ^^.SMB_PAAE[".(. + d7e0: 44 08 2f 03 53 41 54 41 50 52 49 44 50 5f 44 31 D./.SATAPRIDP_D1 + d7f0: 14 43 07 5f 45 4a 58 01 70 0a 00 5e 5e 5e 5e 2e .C._EJX.p..^^^^. + d800: 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 5e 2e SMB_PAAOp..^^^^. + d810: 53 4d 42 5f 50 41 41 45 5b 22 0a 28 70 0a 00 5e SMB_PAAE[".(p..^ + d820: 5e 5e 5e 2e 53 4d 42 5f 50 33 39 4f 70 0a 00 5e ^^^.SMB_P39Op..^ + d830: 5e 5e 5e 2e 53 4d 42 5f 50 33 39 45 5b 22 0a 28 ^^^.SMB_P39E[".( + d840: 70 0a 01 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f p..^^^^.SMB_PAAO + d850: 70 0a 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 p..^^^^.SMB_PAAE + d860: 5b 22 0a 28 10 4d 05 4f 48 43 31 5b 82 45 05 52 [".(.M.OHC1[.E.R + d870: 48 55 42 08 5f 41 44 52 0a 00 5b 82 0c 50 52 54 HUB._ADR..[..PRT + d880: 31 08 5f 41 44 52 0a 01 5b 82 0c 50 52 54 32 08 1._ADR..[..PRT2. + d890: 5f 41 44 52 0a 02 5b 82 0c 50 52 54 33 08 5f 41 _ADR..[..PRT3._A + d8a0: 44 52 0a 03 5b 82 1c 50 52 54 35 08 5f 41 44 52 DR..[..PRT5._ADR + d8b0: 0a 05 08 5f 55 50 43 12 0a 04 0a 00 0a ff 0a 00 ..._UPC......... + d8c0: 0a 00 10 3d 45 48 43 31 5b 82 36 52 48 55 42 08 ...=EHC1[.6RHUB. + d8d0: 5f 41 44 52 0a 00 5b 82 0c 50 52 54 31 08 5f 41 _ADR..[..PRT1._A + d8e0: 44 52 0a 01 5b 82 0c 50 52 54 32 08 5f 41 44 52 DR..[..PRT2._ADR + d8f0: 0a 02 5b 82 0c 50 52 54 33 08 5f 41 44 52 0a 03 ..[..PRT3._ADR.. + d900: 10 41 05 45 48 43 32 5b 82 49 04 52 48 55 42 08 .A.EHC2[.I.RHUB. + d910: 5f 41 44 52 0a 00 5b 82 1c 50 52 54 34 08 5f 41 _ADR..[..PRT4._A + d920: 44 52 0a 04 08 5f 55 50 43 12 0a 04 0a 00 0a ff DR..._UPC....... + d930: 0a 00 0a 00 5b 82 1c 50 52 54 35 08 5f 41 44 52 ....[..PRT5._ADR + d940: 0a 05 08 5f 55 50 43 12 0a 04 0a 00 0a ff 0a 00 ..._UPC......... + d950: 0a 00 10 40 06 4f 48 43 34 5b 82 48 05 52 48 55 ...@.OHC4[.H.RHU + d960: 42 08 5f 41 44 52 0a 00 5b 82 0c 50 52 54 31 08 B._ADR..[..PRT1. + d970: 5f 41 44 52 0a 01 5b 82 3b 50 52 54 32 08 5f 41 _ADR..[.;PRT2._A + d980: 44 52 0a 02 14 2e 5f 45 4a 58 01 5b 22 0a 28 70 DR...._EJX.[".(p + d990: 0a 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 30 37 4f 70 ..^^^^.SMB_P07Op + d9a0: 0a 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 30 37 45 5b ..^^^^.SMB_P07E[ + d9b0: 22 0a 28 10 27 2e 50 42 32 5f 56 47 41 5f 14 1c ".(.'.PB2_VGA_.. + d9c0: 5f 45 4a 58 01 5b 22 0a 28 5e 5e 5e 2e 56 47 41 _EJX.[".(^^^.VGA + d9d0: 5f 50 58 30 32 0a 00 5b 22 0a 28 10 27 2e 50 42 _PX02..[".(.'.PB + d9e0: 33 5f 56 47 41 5f 14 1c 5f 45 4a 58 01 5b 22 0a 3_VGA_.._EJX.[". + d9f0: 28 5e 5e 5e 2e 56 47 41 5f 50 58 30 32 0a 00 5b (^^^.VGA_PX02..[ + da00: 22 0a 28 10 40 14 2e 50 42 37 5f 58 50 44 56 14 ".(.@..PB7_XPDV. + da10: 44 13 5f 45 4a 58 01 8b 43 41 4c 42 0a 00 53 5a D._EJX..CALB..SZ + da20: 5a 45 5b 13 43 41 4c 42 0a 10 0a 03 46 55 43 43 ZE[.CALB....FUCC + da30: 5b 13 43 41 4c 42 0a 13 0a 05 44 45 56 56 5b 13 [.CALB....DEVV[. + da40: 43 41 4c 42 0a 18 0a 08 42 55 53 53 8c 43 41 4c CALB....BUSS.CAL + da50: 42 0a 04 48 50 53 54 70 0a 05 53 5a 5a 45 70 0a B..HPSTp..SZZEp. + da60: 00 46 55 43 43 70 0a 07 44 45 56 56 70 0a 00 42 .FUCCp..DEVVp..B + da70: 55 53 53 70 0a 00 48 50 53 54 41 4c 49 42 0a 06 USSp..HPSTALIB.. + da80: 43 41 4c 42 5b 22 0a 28 70 01 5e 5e 5e 2e 53 4d CALB[".(p.^^^.SM + da90: 42 5f 50 32 39 48 70 01 5e 5e 5e 2e 53 4d 42 5f B_P29Hp.^^^.SMB_ + daa0: 50 32 39 53 70 01 5e 5e 5e 2e 53 4d 42 5f 50 32 P29Sp.^^^.SMB_P2 + dab0: 39 55 5b 22 0a 28 70 5e 5e 5e 2e 53 4d 42 5f 4d 9U[".(p^^^.SMB_M + dac0: 53 30 34 60 7b 60 0c f0 ff ff ff 61 70 61 5e 5e S04`{`.....apa^^ + dad0: 5e 2e 53 4d 42 5f 4d 53 30 34 5b 22 0a 28 70 0a ^.SMB_MS04[".(p. + dae0: 00 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 .^^^.SMB_PAAOp.. + daf0: 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 5b 22 0a 28 ^^^.SMB_PAAE[".( + db00: 70 0a 00 5e 5e 5e 2e 53 4d 42 5f 50 33 42 4f 70 p..^^^.SMB_P3BOp + db10: 0a 00 5e 5e 5e 2e 53 4d 42 5f 50 33 42 45 5b 22 ..^^^.SMB_P3BE[" + db20: 0a 28 70 0a 01 5e 5e 5e 2e 53 4d 42 5f 50 41 41 .(p..^^^.SMB_PAA + db30: 4f 70 0a 00 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 Op..^^^.SMB_PAAE + db40: 5b 22 0a 28 10 47 08 2e 53 50 42 31 58 50 44 56 [".(.G..SPB1XPDV + db50: 14 4b 07 5f 45 4a 58 01 70 01 5e 5e 5e 2e 53 4d .K._EJX.p.^^^.SM + db60: 42 5f 50 32 45 48 70 01 5e 5e 5e 2e 53 4d 42 5f B_P2EHp.^^^.SMB_ + db70: 50 32 45 53 70 01 5e 5e 5e 2e 53 4d 42 5f 50 32 P2ESp.^^^.SMB_P2 + db80: 45 55 5b 22 0a 28 70 5e 5e 5e 2e 53 4d 42 5f 4d EU[".(p^^^.SMB_M + db90: 53 30 33 60 7b 60 0c 0f ff ff ff 61 70 61 5e 5e S03`{`.....apa^^ + dba0: 5e 2e 53 4d 42 5f 4d 53 30 33 70 0a 00 5e 5e 5e ^.SMB_MS03p..^^^ + dbb0: 2e 53 4d 42 5f 50 43 38 4f 70 0a 00 5e 5e 5e 2e .SMB_PC8Op..^^^. + dbc0: 53 4d 42 5f 50 43 38 45 5b 22 0a 28 10 43 05 2e SMB_PC8E[".(.C.. + dbd0: 53 50 42 30 58 50 44 56 14 47 04 5f 45 4a 58 01 SPB0XPDV.G._EJX. + dbe0: 70 0a 01 5e 5e 5e 2e 53 4d 42 5f 50 41 46 4f 70 p..^^^.SMB_PAFOp + dbf0: 0a 00 5e 5e 5e 2e 53 4d 42 5f 50 41 46 45 70 0a ..^^^.SMB_PAFEp. + dc00: 00 5e 5e 5e 2e 53 4d 42 5f 50 30 43 4f 70 0a 00 .^^^.SMB_P0COp.. + dc10: 5e 5e 5e 2e 53 4d 42 5f 50 30 43 45 5b 22 0a 28 ^^^.SMB_P0CE[".( + dc20: 10 4c 0f 2e 50 42 34 5f 58 50 44 56 14 40 0f 5f .L..PB4_XPDV.@._ + dc30: 45 4a 58 01 8b 43 41 4c 42 0a 00 53 5a 5a 45 5b EJX..CALB..SZZE[ + dc40: 13 43 41 4c 42 0a 10 0a 03 46 55 43 43 5b 13 43 .CALB....FUCC[.C + dc50: 41 4c 42 0a 13 0a 05 44 45 56 56 5b 13 43 41 4c ALB....DEVV[.CAL + dc60: 42 0a 18 0a 08 42 55 53 53 8c 43 41 4c 42 0a 04 B....BUSS.CALB.. + dc70: 48 50 53 54 70 0a 05 53 5a 5a 45 70 0a 00 46 55 HPSTp..SZZEp..FU + dc80: 43 43 70 0a 04 44 45 56 56 70 0a 00 42 55 53 53 CCp..DEVVp..BUSS + dc90: 70 0a 00 48 50 53 54 41 4c 49 42 0a 06 43 41 4c p..HPSTALIB..CAL + dca0: 42 5b 22 0a 28 70 01 5e 5e 5e 2e 53 4d 42 5f 50 B[".(p.^^^.SMB_P + dcb0: 33 46 48 70 01 5e 5e 5e 2e 53 4d 42 5f 50 33 46 3FHp.^^^.SMB_P3F + dcc0: 53 70 01 5e 5e 5e 2e 53 4d 42 5f 50 33 46 55 5b Sp.^^^.SMB_P3FU[ + dcd0: 22 0a 28 70 5e 5e 5e 2e 53 4d 42 5f 4d 53 30 31 ".(p^^^.SMB_MS01 + dce0: 60 7b 60 0c 0f ff ff ff 61 70 61 5e 5e 5e 2e 53 `{`.....apa^^^.S + dcf0: 4d 42 5f 4d 53 30 31 5b 22 0a 28 70 0a 00 5e 5e MB_MS01[".(p..^^ + dd00: 5e 2e 53 4d 42 5f 50 43 35 4f 70 0a 00 5e 5e 5e ^.SMB_PC5Op..^^^ + dd10: 2e 53 4d 42 5f 50 43 35 45 5b 22 0a 28 10 4e 11 .SMB_PC5E[".(.N. + dd20: 2e 50 42 35 5f 58 50 44 56 14 42 11 5f 45 4a 58 .PB5_XPDV.B._EJX + dd30: 01 8b 43 41 4c 42 0a 00 53 5a 5a 45 5b 13 43 41 ..CALB..SZZE[.CA + dd40: 4c 42 0a 10 0a 03 46 55 43 43 5b 13 43 41 4c 42 LB....FUCC[.CALB + dd50: 0a 13 0a 05 44 45 56 56 5b 13 43 41 4c 42 0a 18 ....DEVV[.CALB.. + dd60: 0a 08 42 55 53 53 8c 43 41 4c 42 0a 04 48 50 53 ..BUSS.CALB..HPS + dd70: 54 70 0a 05 53 5a 5a 45 70 0a 00 46 55 43 43 70 Tp..SZZEp..FUCCp + dd80: 0a 05 44 45 56 56 70 0a 00 42 55 53 53 70 0a 00 ..DEVVp..BUSSp.. + dd90: 48 50 53 54 41 4c 49 42 0a 06 43 41 4c 42 5b 22 HPSTALIB..CALB[" + dda0: 0a 28 70 01 5e 5e 5e 2e 53 4d 42 5f 50 33 45 48 .(p.^^^.SMB_P3EH + ddb0: 70 01 5e 5e 5e 2e 53 4d 42 5f 50 33 45 53 70 01 p.^^^.SMB_P3ESp. + ddc0: 5e 5e 5e 2e 53 4d 42 5f 50 33 45 55 5b 22 0a 28 ^^^.SMB_P3EU[".( + ddd0: 70 5e 5e 5e 2e 53 4d 42 5f 4d 53 30 31 60 7b 60 p^^^.SMB_MS01`{` + dde0: 0c f0 ff ff ff 61 70 61 5e 5e 5e 2e 53 4d 42 5f .....apa^^^.SMB_ + ddf0: 4d 53 30 31 5b 22 0a 28 70 0a 01 5e 5e 5e 2e 53 MS01[".(p..^^^.S + de00: 4d 42 5f 50 42 31 4f 70 0a 00 5e 5e 5e 2e 53 4d MB_PB1Op..^^^.SM + de10: 42 5f 50 42 31 45 5b 22 0a 28 70 0a 00 5e 5e 5e B_PB1E[".(p..^^^ + de20: 2e 53 4d 42 5f 50 30 44 4f 70 0a 00 5e 5e 5e 2e .SMB_P0DOp..^^^. + de30: 53 4d 42 5f 50 30 44 45 5b 22 0a 28 10 4e 11 2e SMB_P0DE[".(.N.. + de40: 50 42 36 5f 58 50 44 56 14 42 11 5f 45 4a 58 01 PB6_XPDV.B._EJX. + de50: 8b 43 41 4c 42 0a 00 53 5a 5a 45 5b 13 43 41 4c .CALB..SZZE[.CAL + de60: 42 0a 10 0a 03 46 55 43 43 5b 13 43 41 4c 42 0a B....FUCC[.CALB. + de70: 13 0a 05 44 45 56 56 5b 13 43 41 4c 42 0a 18 0a ...DEVV[.CALB... + de80: 08 42 55 53 53 8c 43 41 4c 42 0a 04 48 50 53 54 .BUSS.CALB..HPST + de90: 70 0a 05 53 5a 5a 45 70 0a 00 46 55 43 43 70 0a p..SZZEp..FUCCp. + dea0: 06 44 45 56 56 70 0a 00 42 55 53 53 70 0a 00 48 .DEVVp..BUSSp..H + deb0: 50 53 54 41 4c 49 42 0a 06 43 41 4c 42 5b 22 0a PSTALIB..CALB[". + dec0: 28 70 01 5e 5e 5e 2e 53 4d 42 5f 50 34 30 48 70 (p.^^^.SMB_P40Hp + ded0: 01 5e 5e 5e 2e 53 4d 42 5f 50 34 30 53 70 01 5e .^^^.SMB_P40Sp.^ + dee0: 5e 5e 2e 53 4d 42 5f 50 34 30 55 5b 22 0a 28 70 ^^.SMB_P40U[".(p + def0: 5e 5e 5e 2e 53 4d 42 5f 4d 53 30 32 60 7b 60 0c ^^^.SMB_MS02`{`. + df00: f0 ff ff ff 61 70 61 5e 5e 5e 2e 53 4d 42 5f 4d ....apa^^^.SMB_M + df10: 53 30 32 5b 22 0a 28 70 0a 01 5e 5e 5e 2e 53 4d S02[".(p..^^^.SM + df20: 42 5f 50 42 30 4f 70 0a 00 5e 5e 5e 2e 53 4d 42 B_PB0Op..^^^.SMB + df30: 5f 50 42 30 45 5b 22 0a 28 70 0a 00 5e 5e 5e 2e _PB0E[".(p..^^^. + df40: 53 4d 42 5f 50 30 45 4f 70 0a 00 5e 5e 5e 2e 53 SMB_P0EOp..^^^.S + df50: 4d 42 5f 50 30 45 45 5b 22 0a 28 10 46 1e 53 41 MB_P0EE[".(.F.SA + df60: 54 41 5b 82 4e 1d 4f 44 44 5a 08 5f 41 44 52 0a TA[.N.ODDZ._ADR. + df70: 01 08 4f 44 50 53 0a 00 14 22 5f 53 54 41 00 a0 ..ODPS..."_STA.. + df80: 16 93 5e 5e 5e 2e 41 46 44 5f 4f 44 5a 50 0c 00 ..^^^.AFD_ODZP.. + df90: 00 00 80 a4 0a 00 a1 04 a4 0a 0f 14 48 09 5f 50 ............H._P + dfa0: 53 30 00 70 0b 00 df 50 38 30 48 a0 41 08 93 5e S0.p...P80H.A..^ + dfb0: 5e 5e 2e 41 46 44 5f 4f 44 5a 50 0c 01 00 00 80 ^^.AFD_ODZP..... + dfc0: a0 4c 06 93 56 49 44 49 0c 22 10 04 78 70 0a 00 .L..VIDI."..xp.. + dfd0: 44 49 53 31 70 0a 01 57 52 45 4e 70 0a 01 50 49 DIS1p..WRENp..PI + dfe0: 31 5f 70 0a 00 57 52 45 4e 5b 22 0a 28 70 0a 00 1_p..WREN[".(p.. + dff0: 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e ^^^.SMB_PAAOp..^ + e000: 5e 5e 2e 53 4d 42 5f 50 41 41 45 70 0a 01 5e 5e ^^.SMB_PAAEp..^^ + e010: 5e 2e 53 4d 42 5f 50 33 35 4f 70 0a 00 5e 5e 5e ^.SMB_P35Op..^^^ + e020: 2e 53 4d 42 5f 50 33 35 45 5b 22 0a 28 70 0a 00 .SMB_P35E[".(p.. + e030: 4f 44 50 53 14 48 09 5f 50 53 33 00 70 0b 03 df ODPS.H._PS3.p... + e040: 50 38 30 48 a0 41 08 93 5e 5e 5e 2e 41 46 44 5f P80H.A..^^^.AFD_ + e050: 4f 44 5a 50 0c 01 00 00 80 a0 4c 06 93 56 49 44 ODZP......L..VID + e060: 49 0c 22 10 04 78 5b 22 0a 28 70 0a 00 5e 5e 5e I."..x[".(p..^^^ + e070: 2e 53 4d 42 5f 50 41 41 4f 70 0a 00 5e 5e 5e 2e .SMB_PAAOp..^^^. + e080: 53 4d 42 5f 50 41 41 45 70 0a 00 5e 5e 5e 2e 53 SMB_PAAEp..^^^.S + e090: 4d 42 5f 50 33 35 4f 70 0a 00 5e 5e 5e 2e 53 4d MB_P35Op..^^^.SM + e0a0: 42 5f 50 33 35 45 5b 22 0a 28 70 0a 01 44 49 53 B_P35E[".(p..DIS + e0b0: 31 70 0a 01 57 52 45 4e 70 0a 00 50 49 31 5f 70 1p..WRENp..PI1_p + e0c0: 0a 00 57 52 45 4e 70 0a 03 4f 44 50 53 14 0b 5f ..WRENp..ODPS.._ + e0d0: 50 53 43 00 a4 4f 44 50 53 5b 82 47 06 4f 44 44 PSC..ODPS[.G.ODD + e0e0: 5f 08 5f 41 44 52 0a 00 14 09 5f 52 4d 56 00 a4 _._ADR...._RMV.. + e0f0: 0a 01 14 4f 04 5f 45 4a 58 01 5b 22 0a 28 70 0a ...O._EJX.[".(p. + e100: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 4f 70 0a .^^^^.SMB_PAAOp. + e110: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 41 41 45 70 0a .^^^^.SMB_PAAEp. + e120: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 35 4f 70 0a .^^^^.SMB_P35Op. + e130: 00 5e 5e 5e 5e 2e 53 4d 42 5f 50 33 35 45 5b 22 .^^^^.SMB_P35E[" + e140: 0a 28 5b 82 2c 41 43 41 44 08 5f 48 49 44 0d 41 .([.,ACAD._HID.A + e150: 43 50 49 30 30 30 33 00 14 0b 5f 50 53 52 00 a4 CPI0003..._PSR.. + e160: 50 57 52 53 14 0b 5f 50 43 4c 00 a4 5f 53 42 5f PWRS.._PCL.._SB_ + e170: 5b 82 4e 6b 42 41 54 54 08 5f 48 49 44 0c 41 d0 [.NkBATT._HID.A. + e180: 0c 0a 08 5f 55 49 44 0a 01 08 5f 50 43 4c 12 06 ..._UID..._PCL.. + e190: 01 50 43 49 30 08 42 54 50 5f 0a 00 08 42 54 43 .PCI0.BTP_...BTC + e1a0: 48 0a 00 08 42 53 54 41 0a 00 08 50 42 49 46 12 H...BSTA...PBIF. + e1b0: 39 0d 0a 01 0c ff ff ff ff 0c ff ff ff ff 0a 00 9............... + e1c0: 0c ff ff ff ff 0a 00 0a 00 0a 64 0a 00 0d 42 41 ..........d...BA + e1d0: 54 30 00 0d 31 32 33 34 35 36 37 38 39 00 0d 4c T0..123456789..L + e1e0: 69 4f 4e 00 0d 50 54 4c 00 08 50 42 53 54 12 0f iON..PTL..PBST.. + e1f0: 04 0a 00 0c ff ff ff ff 0b 34 10 0b 30 2a 5b 01 .........4..0*[. + e200: 45 43 4d 55 00 14 22 5f 53 54 41 00 a0 0b 93 45 ECMU.."_STA....E + e210: 43 4f 4e 0a 00 a4 0a 0f a1 0f a0 08 42 53 54 41 CON.........BSTA + e220: a4 0a 1f a1 04 a4 0a 0f 14 47 07 42 54 53 54 00 .........G.BTST. + e230: 5b 23 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 [#^^/.PCI0LPC0EC + e240: 30 5f 4d 55 54 30 ff ff 70 5e 5e 2f 04 50 43 49 0_MUT0..p^^/.PCI + e250: 30 4c 50 43 30 45 43 30 5f 42 30 49 4e 42 53 54 0LPC0EC0_B0INBST + e260: 41 5b 27 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 A['^^/.PCI0LPC0E + e270: 43 30 5f 4d 55 54 30 a0 1f 93 42 53 54 41 0a 01 C0_MUT0...BSTA.. + e280: a0 16 93 42 54 50 5f 0a 00 70 0a 01 42 54 43 48 ...BTP_..p..BTCH + e290: 70 0a 01 42 54 50 5f a1 08 70 0a 00 42 54 50 5f p..BTP_..p..BTP_ + e2a0: 14 46 06 49 54 4f 53 01 70 11 0c 0a 09 30 00 00 .F.ITOS.p....0.. + e2b0: 00 00 00 00 00 00 60 70 11 14 0a 11 30 31 32 33 ......`p....0123 + e2c0: 34 35 36 37 38 39 41 42 43 44 45 46 00 67 70 0a 456789ABCDEF.gp. + e2d0: 08 61 70 0a 00 62 70 0a 00 63 a2 2a 61 76 61 7b .ap..bp..c.*ava{ + e2e0: 7a 68 79 61 0a 02 00 00 0a 0f 64 a0 05 64 70 ff zhya......d..dp. + e2f0: 63 a0 13 63 47 42 46 45 67 64 71 65 50 42 46 45 c..cGBFEgdqePBFE + e300: 60 62 65 75 62 a4 60 14 13 47 42 46 45 03 8c 68 `beub.`..GBFE..h + e310: 69 54 49 44 58 70 54 49 44 58 6a 14 13 50 42 46 iTIDXpTIDXj..PBF + e320: 45 03 8c 68 69 54 49 44 58 70 6a 54 49 44 58 14 E..hiTIDXpjTIDX. + e330: 4c 37 5f 42 49 46 00 08 5f 54 5f 32 00 08 5f 54 L7_BIF.._T_2.._T + e340: 5f 31 00 08 5f 54 5f 30 00 5b 23 5e 5e 2f 04 50 _1.._T_0.[#^^/.P + e350: 43 49 30 4c 50 43 30 45 43 30 5f 4d 55 54 30 ff CI0LPC0EC0_MUT0. + e360: ff 70 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 .p^^/.PCI0LPC0EC + e370: 30 5f 44 43 50 30 88 50 42 49 46 0a 01 00 70 5e 0_DCP0.PBIF...p^ + e380: 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 30 5f 46 ^/.PCI0LPC0EC0_F + e390: 43 50 30 60 70 60 88 50 42 49 46 0a 02 00 70 5e CP0`p`.PBIF...p^ + e3a0: 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 30 5f 44 ^/.PCI0LPC0EC0_D + e3b0: 56 54 30 88 50 42 49 46 0a 04 00 70 5e 5e 2f 04 VT0.PBIF...p^^/. + e3c0: 50 43 49 30 4c 50 43 30 45 43 30 5f 44 4e 4e 30 PCI0LPC0EC0_DNN0 + e3d0: 61 70 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 ap^^/.PCI0LPC0EC + e3e0: 30 5f 42 53 4e 30 62 70 5e 5e 2f 04 50 43 49 30 0_BSN0bp^^/.PCI0 + e3f0: 4c 50 43 30 45 43 30 5f 42 43 4e 30 63 70 5e 5e LPC0EC0_BCN0cp^^ + e400: 2f 04 50 43 49 30 4c 50 43 30 45 43 30 5f 4d 4e /.PCI0LPC0EC0_MN + e410: 4e 30 64 5b 27 5e 5e 2f 04 50 43 49 30 4c 50 43 N0d['^^/.PCI0LPC + e420: 30 45 43 30 5f 4d 55 54 30 70 78 60 0a 0a 00 00 0EC0_MUT0px`.... + e430: 88 50 42 49 46 0a 05 00 70 0a 00 88 50 42 49 46 .PBIF...p...PBIF + e440: 0a 06 00 70 99 61 00 5f 54 5f 30 a0 19 93 5f 54 ...p.a._T_0..._T + e450: 5f 30 0a 00 70 0d 55 6e 6b 6e 6f 77 00 88 50 42 _0..p.Unknow..PB + e460: 49 46 0a 09 00 a1 19 a0 17 93 5f 54 5f 30 0a ff IF........_T_0.. + e470: 70 0d 44 65 6c 6c 00 88 50 42 49 46 0a 09 00 70 p.Dell..PBIF...p + e480: 49 54 4f 53 5b 29 62 00 88 50 42 49 46 0a 0a 00 ITOS[)b..PBIF... + e490: 70 99 63 00 5f 54 5f 31 a0 19 93 5f 54 5f 31 0a p.c._T_1..._T_1. + e4a0: 00 70 0d 55 6e 6b 6e 6f 77 00 88 50 42 49 46 0a .p.Unknow..PBIF. + e4b0: 0b 00 a1 43 0d a0 17 93 5f 54 5f 31 0a 01 70 0d ...C...._T_1..p. + e4c0: 50 42 41 43 00 88 50 42 49 46 0a 0b 00 a1 48 0b PBAC..PBIF....H. + e4d0: a0 17 93 5f 54 5f 31 0a 02 70 0d 4c 49 4f 4e 00 ..._T_1..p.LION. + e4e0: 88 50 42 49 46 0a 0b 00 a1 4d 09 a0 17 93 5f 54 .PBIF....M...._T + e4f0: 5f 31 0a 03 70 0d 4e 49 43 44 00 88 50 42 49 46 _1..p.NICD..PBIF + e500: 0a 0b 00 a1 42 08 a0 17 93 5f 54 5f 31 0a 04 70 ....B...._T_1..p + e510: 0d 4e 49 4d 48 00 88 50 42 49 46 0a 0b 00 a1 47 .NIMH..PBIF....G + e520: 06 a0 17 93 5f 54 5f 31 0a 05 70 0d 4e 49 5a 4e ...._T_1..p.NIZN + e530: 00 88 50 42 49 46 0a 0b 00 a1 4c 04 a0 16 93 5f ..PBIF....L...._ + e540: 54 5f 31 0a 06 70 0d 52 41 4d 00 88 50 42 49 46 T_1..p.RAM..PBIF + e550: 0a 0b 00 a1 32 a0 17 93 5f 54 5f 31 0a 07 70 0d ....2..._T_1..p. + e560: 5a 4e 41 52 00 88 50 42 49 46 0a 0b 00 a1 18 a0 ZNAR..PBIF...... + e570: 16 93 5f 54 5f 31 0a 08 70 0d 4c 49 50 00 88 50 .._T_1..p.LIP..P + e580: 42 49 46 0a 0b 00 70 99 64 00 5f 54 5f 32 a0 19 BIF...p.d._T_2.. + e590: 93 5f 54 5f 32 0a 00 70 0d 55 6e 6b 6e 6f 77 00 ._T_2..p.Unknow. + e5a0: 88 50 42 49 46 0a 0c 00 a1 4e 0f a0 17 93 5f 54 .PBIF....N...._T + e5b0: 5f 32 0a 01 70 0d 44 65 6c 6c 00 88 50 42 49 46 _2..p.Dell..PBIF + e5c0: 0a 0c 00 a1 43 0e a0 17 93 5f 54 5f 32 0a 02 70 ....C...._T_2..p + e5d0: 0d 53 4f 4e 59 00 88 50 42 49 46 0a 0c 00 a1 48 .SONY..PBIF....H + e5e0: 0c a0 18 93 5f 54 5f 32 0a 03 70 0d 53 41 4e 59 ...._T_2..p.SANY + e5f0: 4f 00 88 50 42 49 46 0a 0c 00 a1 4c 0a a0 1c 93 O..PBIF....L.... + e600: 5f 54 5f 32 0a 04 70 0d 50 41 4e 41 53 4f 4e 49 _T_2..p.PANASONI + e610: 43 00 88 50 42 49 46 0a 0c 00 a1 4c 08 a0 1b 93 C..PBIF....L.... + e620: 5f 54 5f 32 0a 05 70 0d 53 4f 4e 59 5f 4f 4c 44 _T_2..p.SONY_OLD + e630: 00 88 50 42 49 46 0a 0c 00 a1 4d 06 a0 16 93 5f ..PBIF....M...._ + e640: 54 5f 32 0a 06 70 0d 53 44 49 00 88 50 42 49 46 T_2..p.SDI..PBIF + e650: 0a 0c 00 a1 43 05 a0 19 93 5f 54 5f 32 0a 07 70 ....C...._T_2..p + e660: 0d 53 49 4d 50 4c 4f 00 88 50 42 49 46 0a 0c 00 .SIMPLO..PBIF... + e670: a1 36 a0 1b 93 5f 54 5f 32 0a 08 70 0d 4d 4f 54 .6..._T_2..p.MOT + e680: 4f 52 4f 4c 41 00 88 50 42 49 46 0a 0c 00 a1 18 OROLA..PBIF..... + e690: a0 16 93 5f 54 5f 32 0a 09 70 0d 4c 47 43 00 88 ..._T_2..p.LGC.. + e6a0: 50 42 49 46 0a 0c 00 a4 50 42 49 46 14 43 18 5f PBIF....PBIF.C._ + e6b0: 42 53 54 00 5b 23 5e 5e 2f 04 50 43 49 30 4c 50 BST.[#^^/.PCI0LP + e6c0: 43 30 45 43 30 5f 4d 55 54 30 ff ff 70 5e 5e 2f C0EC0_MUT0..p^^/ + e6d0: 04 50 43 49 30 4c 50 43 30 45 43 30 5f 42 30 44 .PCI0LPC0EC0_B0D + e6e0: 43 60 70 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 C`p^^/.PCI0LPC0E + e6f0: 43 30 5f 42 30 49 43 61 79 61 0a 01 61 72 60 61 C0_B0ICaya..ar`a + e700: 60 70 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 `p^^/.PCI0LPC0EC + e710: 30 5f 42 30 43 4c 61 5b 27 5e 5e 2f 04 50 43 49 0_B0CLa['^^/.PCI + e720: 30 4c 50 43 30 45 43 30 5f 4d 55 54 30 79 61 0a 0LPC0EC0_MUT0ya. + e730: 02 61 72 60 61 60 70 60 88 50 42 53 54 0a 00 00 .ar`a`p`.PBST... + e740: 5b 23 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 [#^^/.PCI0LPC0EC + e750: 30 5f 4d 55 54 30 ff ff 70 5e 5e 2f 04 50 43 49 0_MUT0..p^^/.PCI + e760: 30 4c 50 43 30 45 43 30 5f 43 41 50 30 88 50 42 0LPC0EC0_CAP0.PB + e770: 53 54 0a 02 00 70 5e 5e 2f 04 50 43 49 30 4c 50 ST...p^^/.PCI0LP + e780: 43 30 45 43 30 5f 56 4f 54 30 88 50 42 53 54 0a C0EC0_VOT0.PBST. + e790: 03 00 5b 27 5e 5e 2f 04 50 43 49 30 4c 50 43 30 ..['^^/.PCI0LPC0 + e7a0: 45 43 30 5f 4d 55 54 30 5b 23 5e 5e 2f 04 50 43 EC0_MUT0[#^^/.PC + e7b0: 49 30 4c 50 43 30 45 43 30 5f 4d 55 54 30 ff ff I0LPC0EC0_MUT0.. + e7c0: 70 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 30 p^^/.PCI0LPC0EC0 + e7d0: 5f 43 52 54 30 60 5b 27 5e 5e 2f 04 50 43 49 30 _CRT0`['^^/.PCI0 + e7e0: 4c 50 43 30 45 43 30 5f 4d 55 54 30 a0 07 93 60 LPC0EC0_MUT0...` + e7f0: 0a 00 75 60 a1 2c a0 10 50 57 52 53 a0 0a 7b 60 ..u`.,..PWRS..{` + e800: 0b 00 80 00 70 ff 60 a1 19 a0 12 7b 60 0b 00 80 ....p.`....{`... + e810: 00 74 0a 00 60 60 7b 60 0b ff ff 60 a1 04 70 ff .t..``{`...`..p. + e820: 60 70 60 88 50 42 53 54 0a 01 00 a4 50 42 53 54 `p`.PBST....PBST + e830: 5b 82 41 12 4c 49 44 5f 08 5f 48 49 44 0c 41 d0 [.A.LID_._HID.A. + e840: 0c 0d 08 5f 50 52 57 12 06 02 0a 0a 0a 03 14 48 ..._PRW........H + e850: 09 5f 50 53 57 01 a0 48 04 68 5b 23 5e 5e 2f 04 ._PSW..H.h[#^^/. + e860: 50 43 49 30 4c 50 43 30 45 43 30 5f 4d 55 54 30 PCI0LPC0EC0_MUT0 + e870: ff ff 70 0a 02 5e 5e 2f 04 50 43 49 30 4c 50 43 ..p..^^/.PCI0LPC + e880: 30 45 43 30 5f 57 4b 45 56 5b 27 5e 5e 2f 04 50 0EC0_WKEV['^^/.P + e890: 43 49 30 4c 50 43 30 45 43 30 5f 4d 55 54 30 a1 CI0LPC0EC0_MUT0. + e8a0: 47 04 5b 23 5e 5e 2f 04 50 43 49 30 4c 50 43 30 G.[#^^/.PCI0LPC0 + e8b0: 45 43 30 5f 4d 55 54 30 ff ff 70 0a 00 5e 5e 2f EC0_MUT0..p..^^/ + e8c0: 04 50 43 49 30 4c 50 43 30 45 43 30 5f 57 4b 45 .PCI0LPC0EC0_WKE + e8d0: 56 5b 27 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 V['^^/.PCI0LPC0E + e8e0: 43 30 5f 4d 55 54 30 14 4b 06 5f 4c 49 44 00 a0 C0_MUT0.K._LID.. + e8f0: 0f 93 45 43 4f 4e 0a 00 70 0a 01 4c 49 44 53 a1 ..ECON..p..LIDS. + e900: 4e 04 5b 23 5e 5e 2f 04 50 43 49 30 4c 50 43 30 N.[#^^/.PCI0LPC0 + e910: 45 43 30 5f 4d 55 54 30 ff ff 70 5e 5e 2f 04 50 EC0_MUT0..p^^/.P + e920: 43 49 30 4c 50 43 30 45 43 30 5f 4c 49 44 41 60 CI0LPC0EC0_LIDA` + e930: 5b 27 5e 5e 2f 04 50 43 49 30 4c 50 43 30 45 43 ['^^/.PCI0LPC0EC + e940: 30 5f 4d 55 54 30 7f 60 0a 01 4c 49 44 53 a4 4c 0_MUT0.`..LIDS.L + e950: 49 44 53 5b 82 0f 53 4c 50 42 08 5f 48 49 44 0c IDS[..SLPB._HID. + e960: 41 d0 0c 0e 10 4d 05 5c 00 08 48 50 44 54 12 3e A....M.\..HPDT.> + e970: 09 0d 4c 45 47 41 43 59 48 50 00 0c 00 00 00 80 ..LEGACYHP...... + e980: 0c 00 00 00 80 0d 4e 41 54 49 56 45 48 50 00 0c ......NATIVEHP.. + e990: 00 00 00 80 0c 00 00 00 80 0d 54 48 45 52 4d 41 ..........THERMA + e9a0: 4c 58 00 0c 00 00 00 80 0c 00 00 00 80 08 44 44 LX............DD + e9b0: 42 30 0a 00 08 44 44 42 31 0a 00 08 44 44 42 32 B0...DDB1...DDB2 + e9c0: 0a 00 10 45 7e 5f 47 50 45 14 16 54 52 49 47 00 ...E~_GPE..TRIG. + e9d0: 54 52 49 45 54 52 49 43 54 52 49 5a 54 52 49 42 TRIETRICTRIZTRIB + e9e0: 14 4d 04 54 52 49 42 00 a0 45 04 5c 2f 04 5f 53 .M.TRIB..E.\/._S + e9f0: 42 5f 50 43 49 30 53 4d 42 5f 50 30 37 49 70 0a B_PCI0SMB_P07Ip. + ea00: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f .\/._SB_PCI0SMB_ + ea10: 50 30 37 4f 5b 22 0a 64 70 0a 01 5c 2f 04 5f 53 P07O[".dp..\/._S + ea20: 42 5f 50 43 49 30 53 4d 42 5f 50 30 37 4f 14 45 B_PCI0SMB_P07O.E + ea30: 04 5f 4c 31 43 00 70 0b ff ff 61 70 5c 2f 04 5f ._L1C.p...ap\/._ + ea40: 53 42 5f 50 43 49 30 53 4d 42 5f 4d 49 4e 5f 62 SB_PCI0SMB_MIN_b + ea50: 79 62 0a 08 61 70 5c 2f 04 5f 53 42 5f 50 43 49 yb..ap\/._SB_PCI + ea60: 30 53 4d 42 5f 53 45 43 5f 62 7d 61 62 61 70 61 0SMB_SEC_b}abapa + ea70: 50 38 30 48 14 49 0a 5f 4c 30 38 00 86 5c 2f 03 P80H.I._L08..\/. + ea80: 5f 53 42 5f 50 43 49 30 50 42 32 5f 0a 02 86 5c _SB_PCI0PB2_...\ + ea90: 2f 03 5f 53 42 5f 50 43 49 30 50 42 34 5f 0a 02 /._SB_PCI0PB4_.. + eaa0: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 42 35 5f .\/._SB_PCI0PB5_ + eab0: 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 42 ...\/._SB_PCI0PB + eac0: 36 5f 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 6_...\/._SB_PCI0 + ead0: 50 42 37 5f 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 PB7_...\/._SB_PC + eae0: 49 30 53 50 42 30 0a 02 86 5c 2f 03 5f 53 42 5f I0SPB0...\/._SB_ + eaf0: 50 43 49 30 53 50 42 31 0a 02 86 5c 2f 03 5f 53 PCI0SPB1...\/._S + eb00: 42 5f 50 43 49 30 53 50 42 32 0a 02 86 5c 2f 03 B_PCI0SPB2...\/. + eb10: 5f 53 42 5f 50 43 49 30 53 50 42 33 0a 02 14 49 _SB_PCI0SPB3...I + eb20: 0a 5f 4c 31 38 00 86 5c 2f 03 5f 53 42 5f 50 43 ._L18..\/._SB_PC + eb30: 49 30 4f 48 43 31 0a 02 86 5c 2f 03 5f 53 42 5f I0OHC1...\/._SB_ + eb40: 50 43 49 30 4f 48 43 32 0a 02 86 5c 2f 03 5f 53 PCI0OHC2...\/._S + eb50: 42 5f 50 43 49 30 4f 48 43 33 0a 02 86 5c 2f 03 B_PCI0OHC3...\/. + eb60: 5f 53 42 5f 50 43 49 30 4f 48 43 34 0a 02 86 5c _SB_PCI0OHC4...\ + eb70: 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 31 0a 02 /._SB_PCI0EHC1.. + eb80: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 45 48 43 32 .\/._SB_PCI0EHC2 + eb90: 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 45 48 ...\/._SB_PCI0EH + eba0: 43 33 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 C3...\/._SB_PCI0 + ebb0: 58 48 43 31 0a 02 86 5c 2f 03 5f 53 42 5f 50 43 XHC1...\/._SB_PC + ebc0: 49 30 58 48 43 32 0a 02 14 2f 54 52 49 43 00 70 I0XHC2.../TRIC.p + ebd0: 80 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f .\/._SB_PCI0SMB_ + ebe0: 47 45 31 35 00 5c 2f 04 5f 53 42 5f 50 43 49 30 GE15.\/._SB_PCI0 + ebf0: 53 4d 42 5f 45 31 35 43 14 2f 54 52 49 45 00 70 SMB_E15C./TRIE.p + ec00: 80 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f .\/._SB_PCI0SMB_ + ec10: 47 45 30 35 00 5c 2f 04 5f 53 42 5f 50 43 49 30 GE05.\/._SB_PCI0 + ec20: 53 4d 42 5f 45 30 35 43 14 47 0c 5f 4c 30 35 00 SMB_E05C.G._L05. + ec30: 5b 22 0a c8 a0 4b 05 5c 2f 04 5f 53 42 5f 50 43 ["...K.\/._SB_PC + ec40: 49 30 53 4d 42 5f 45 30 35 43 a0 45 04 5c 2f 04 I0SMB_E05C.E.\/. + ec50: 5f 53 42 5f 50 43 49 30 53 4d 42 5f 47 45 30 35 _SB_PCI0SMB_GE05 + ec60: 5c 2f 04 5f 53 42 5f 50 43 49 30 53 50 42 30 47 \/._SB_PCI0SPB0G + ec70: 48 50 53 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d HPS\/._SB_PCI0SM + ec80: 42 5f 47 45 30 35 0a 00 70 0b 05 0f 50 38 30 48 B_GE05..p...P80H + ec90: a1 49 04 a0 46 04 92 5c 2f 04 5f 53 42 5f 50 43 .I..F..\/._SB_PC + eca0: 49 30 53 4d 42 5f 47 45 30 35 5c 2f 04 5f 53 42 I0SMB_GE05\/._SB + ecb0: 5f 50 43 49 30 53 50 42 30 47 48 50 53 5c 2f 04 _PCI0SPB0GHPS\/. + ecc0: 5f 53 42 5f 50 43 49 30 53 4d 42 5f 47 45 30 35 _SB_PCI0SMB_GE05 + ecd0: 0a 00 70 0b 05 1f 50 38 30 48 54 52 49 45 86 5c ..p...P80HTRIE.\ + ece0: 2f 03 5f 53 42 5f 50 43 49 30 53 50 42 30 0a 01 /._SB_PCI0SPB0.. + ecf0: 08 57 4c 41 4e 0a 00 08 57 4c 53 54 0a 01 14 4f .WLAN...WLST...O + ed00: 05 5f 4c 30 39 00 70 57 4c 53 54 60 a0 14 93 60 ._L09.pWLST`...` + ed10: 0a 01 70 0a 00 57 4c 53 54 70 0b 34 12 50 38 30 ..p..WLSTp.4.P80 + ed20: 48 a0 14 93 60 0a 00 70 0a 01 57 4c 53 54 70 0b H...`..p..WLSTp. + ed30: 21 43 50 38 30 48 57 4c 45 4e 86 5c 2f 03 5f 53 !CP80HWLEN.\/._S + ed40: 42 5f 50 43 49 30 50 42 37 5f 0a 00 86 5c 2f 03 B_PCI0PB7_...\/. + ed50: 5f 53 42 5f 50 43 49 30 53 50 42 32 0a 00 14 4f _SB_PCI0SPB2...O + ed60: 1f 57 4c 45 4e 00 70 57 4c 53 54 60 70 57 4c 41 .WLEN.pWLST`pWLA + ed70: 4e 61 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 Nap..\/._SB_PCI0 + ed80: 53 4d 42 5f 50 30 37 45 70 0a 00 5c 2f 04 5f 53 SMB_P07Ep..\/._S + ed90: 42 5f 50 43 49 30 53 4d 42 5f 50 30 44 45 70 0a B_PCI0SMB_P0DEp. + eda0: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f .\/._SB_PCI0SMB_ + edb0: 50 30 45 45 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 P0EEp..\/._SB_PC + edc0: 49 30 53 4d 42 5f 50 42 34 45 70 0a 00 5c 2f 04 I0SMB_PB4Ep..\/. + edd0: 5f 53 42 5f 50 43 49 30 53 4d 42 5f 50 43 37 45 _SB_PCI0SMB_PC7E + ede0: a0 46 0c 93 60 0a 01 a0 4d 07 93 61 0a 01 70 0a .F..`...M..a..p. + edf0: 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f .\/._SB_PCI0SMB_ + ee00: 50 42 34 4f 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 PB4Op..\/._SB_PC + ee10: 49 30 53 4d 42 5f 50 43 37 4f 5c 2f 04 5f 53 42 I0SMB_PC7O\/._SB + ee20: 5f 50 43 49 30 50 42 37 5f 58 50 4c 50 0a 01 5b _PCI0PB7_XPLP..[ + ee30: 22 0a 64 5b 22 0a 64 5c 2f 03 5f 53 42 5f 50 43 ".d[".d\/._SB_PC + ee40: 49 30 58 50 54 52 0a 07 0a 01 5c 2f 04 5f 53 42 I0XPTR....\/._SB + ee50: 5f 50 43 49 30 53 50 42 32 47 48 50 53 0a 00 0a _PCI0SPB2GHPS... + ee60: 02 5b 22 0a 14 70 0a 01 5c 2f 04 5f 53 42 5f 50 .["..p..\/._SB_P + ee70: 43 49 30 53 4d 42 5f 50 30 44 4f 70 0a 01 5c 2f CI0SMB_P0DOp..\/ + ee80: 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f 50 30 45 ._SB_PCI0SMB_P0E + ee90: 4f 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 53 Op..\/._SB_PCI0S + eea0: 4d 42 5f 50 30 37 4f a1 46 0b 70 0a 00 5c 2f 04 MB_P07O.F.p..\/. + eeb0: 5f 53 42 5f 50 43 49 30 53 4d 42 5f 50 30 44 4f _SB_PCI0SMB_P0DO + eec0: 70 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 30 53 4d p..\/._SB_PCI0SM + eed0: 42 5f 50 30 45 4f 70 0a 00 5c 2f 04 5f 53 42 5f B_P0EOp..\/._SB_ + eee0: 50 43 49 30 53 4d 42 5f 50 30 37 4f a0 41 07 93 PCI0SMB_P07O.A.. + eef0: 61 0a 01 5c 2f 03 5f 53 42 5f 50 43 49 30 58 50 a..\/._SB_PCI0XP + ef00: 54 52 0a 07 0a 00 5c 2f 04 5f 53 42 5f 50 43 49 TR....\/._SB_PCI + ef10: 30 53 50 42 32 47 48 50 53 0a 01 0a 02 5c 2f 04 0SPB2GHPS....\/. + ef20: 5f 53 42 5f 50 43 49 30 50 42 37 5f 58 50 4c 50 _SB_PCI0PB7_XPLP + ef30: 0a 00 70 0a 01 5c 2f 04 5f 53 42 5f 50 43 49 30 ..p..\/._SB_PCI0 + ef40: 53 4d 42 5f 50 42 34 4f 70 0a 01 5c 2f 04 5f 53 SMB_PB4Op..\/._S + ef50: 42 5f 50 43 49 30 53 4d 42 5f 50 43 37 4f 14 2f B_PCI0SMB_PC7O./ + ef60: 54 52 49 5a 00 70 80 5c 2f 04 5f 53 42 5f 50 43 TRIZ.p.\/._SB_PC + ef70: 49 30 53 4d 42 5f 47 45 31 36 00 5c 2f 04 5f 53 I0SMB_GE16.\/._S + ef80: 42 5f 50 43 49 30 53 4d 42 5f 45 31 36 43 14 49 B_PCI0SMB_E16C.I + ef90: 21 5f 4c 31 30 00 a0 41 21 93 5c 2f 04 5f 53 42 !_L10..A!.\/._SB + efa0: 5f 50 43 49 30 41 46 44 5f 4f 44 5a 50 0c 01 00 _PCI0AFD_ODZP... + efb0: 00 80 a0 4c 10 5c 2f 04 5f 53 42 5f 50 43 49 30 ...L.\/._SB_PCI0 + efc0: 53 4d 42 5f 45 31 36 43 5b 22 0a 14 a0 42 0f 5c SMB_E16C["...B.\ + efd0: 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f 45 31 /._SB_PCI0SMB_E1 + efe0: 36 43 a0 4c 0d 5c 2f 04 5f 53 42 5f 50 43 49 30 6C.L.\/._SB_PCI0 + eff0: 53 4d 42 5f 47 45 31 36 70 00 5c 2f 04 5f 53 42 SMB_GE16p.\/._SB + f000: 5f 50 43 49 30 53 4d 42 5f 45 31 36 43 a0 47 04 _PCI0SMB_E16C.G. + f010: 91 93 5c 2f 04 5f 53 42 5f 50 43 49 30 53 41 54 ..\/._SB_PCI0SAT + f020: 41 56 49 44 49 0c 22 10 00 78 93 5c 2f 04 5f 53 AVIDI."..x.\/._S + f030: 42 5f 50 43 49 30 53 41 54 41 56 49 44 49 0c 22 B_PCI0SATAVIDI." + f040: 10 01 78 86 5c 2f 03 5f 53 42 5f 50 43 49 30 41 ..x.\/._SB_PCI0A + f050: 46 44 5f 0a 80 a0 41 06 93 5c 2f 04 5f 53 42 5f FD_...A..\/._SB_ + f060: 50 43 49 30 53 41 54 41 56 49 44 49 0c 22 10 04 PCI0SATAVIDI.".. + f070: 78 a0 2d 93 5c 2f 04 5f 53 42 5f 50 43 49 30 41 x.-.\/._SB_PCI0A + f080: 46 44 5f 48 44 44 30 0a 01 86 5c 2f 04 5f 53 42 FD_HDD0...\/._SB + f090: 5f 50 43 49 30 53 41 54 41 4f 44 44 5a 0a 80 a1 _PCI0SATAODDZ... + f0a0: 17 86 5c 2f 04 5f 53 42 5f 50 43 49 30 53 41 54 ..\/._SB_PCI0SAT + f0b0: 41 4f 44 44 5a 0a 80 70 0b 15 df 50 38 30 48 a1 AODDZ..p...P80H. + f0c0: 44 0e 5b 22 0a 14 a0 4d 0d 92 5c 2f 04 5f 53 42 D.["...M..\/._SB + f0d0: 5f 50 43 49 30 53 4d 42 5f 47 45 31 36 70 01 5c _PCI0SMB_GE16p.\ + f0e0: 2f 04 5f 53 42 5f 50 43 49 30 53 4d 42 5f 45 31 /._SB_PCI0SMB_E1 + f0f0: 36 43 a0 47 04 91 93 5c 2f 04 5f 53 42 5f 50 43 6C.G...\/._SB_PC + f100: 49 30 53 41 54 41 56 49 44 49 0c 22 10 00 78 93 I0SATAVIDI."..x. + f110: 5c 2f 04 5f 53 42 5f 50 43 49 30 53 41 54 41 56 \/._SB_PCI0SATAV + f120: 49 44 49 0c 22 10 01 78 86 5c 2f 03 5f 53 42 5f IDI."..x.\/._SB_ + f130: 50 43 49 30 41 46 44 5f 0a 80 a0 41 06 93 5c 2f PCI0AFD_...A..\/ + f140: 04 5f 53 42 5f 50 43 49 30 53 41 54 41 56 49 44 ._SB_PCI0SATAVID + f150: 49 0c 22 10 04 78 a0 2d 93 5c 2f 04 5f 53 42 5f I."..x.-.\/._SB_ + f160: 50 43 49 30 41 46 44 5f 48 44 44 30 0a 01 86 5c PCI0AFD_HDD0...\ + f170: 2f 04 5f 53 42 5f 50 43 49 30 53 41 54 41 4f 44 /._SB_PCI0SATAOD + f180: 44 5a 0a 80 a1 17 86 5c 2f 04 5f 53 42 5f 50 43 DZ.....\/._SB_PC + f190: 49 30 53 41 54 41 4f 44 44 5a 0a 80 70 0b 14 df I0SATAODDZ..p... + f1a0: 50 38 30 48 54 52 49 5a 10 4b 47 2f 03 5f 53 42 P80HTRIZ.KG/._SB + f1b0: 5f 50 43 49 30 53 4d 42 5f 5b 01 53 42 58 30 00 _PCI0SMB_[.SBX0. + f1c0: 5b 80 53 4d 42 30 01 0b 00 0b 0a 10 5b 81 2e 53 [.SMB0......[..S + f1d0: 4d 42 30 01 48 53 54 30 08 53 4c 56 30 08 43 4e MB0.HST0.SLV0.CN + f1e0: 54 30 08 43 4d 44 30 08 41 44 44 30 08 44 54 30 T0.CMD0.ADD0.DT0 + f1f0: 30 08 44 54 31 30 08 42 4c 4b 30 08 14 42 06 57 0.DT10.BLK0..B.W + f200: 42 44 30 01 70 68 60 70 0a 00 62 70 48 53 54 30 BD0.ph`p..bpHST0 + f210: 63 70 7b 63 0a 80 00 61 a2 2c 92 93 61 0a 80 a0 cp{c...a.,..a... + f220: 0d 95 60 0a 0a 70 0a 18 62 70 0a 00 61 a1 17 5b ..`..p..bp..a..[ + f230: 22 0a 0a 74 60 0a 0a 60 70 48 53 54 30 63 70 7b "..t`..`pHST0cp{ + f240: 63 0a 80 00 61 a0 17 92 93 62 0a 18 70 7b 48 53 c...a....b..p{HS + f250: 54 30 0a 1c 00 61 a0 06 61 70 0a 07 62 a4 62 14 T0...a..ap..b.b. + f260: 4c 06 57 54 43 30 01 70 68 60 70 0a 07 62 70 0a L.WTC0.ph`p..bp. + f270: 01 61 a2 4a 04 93 61 0a 01 70 7b 48 53 54 30 0a .a.J..a..p{HST0. + f280: 1d 00 63 a0 2f 92 93 63 0a 00 a0 1e 93 63 0a 01 ..c./..c.....c.. + f290: a0 0d 95 60 0a 0a 70 0a 18 62 70 0a 00 61 a1 0a ...`..p..bp..a.. + f2a0: 5b 22 0a 0a 74 60 0a 0a 60 a1 09 70 0a 07 62 70 ["..t`..`..p..bp + f2b0: 0a 00 61 a1 09 70 0a 00 62 70 0a 00 61 70 7d 48 ..a..p..bp..ap}H + f2c0: 53 54 30 0a 1f 00 48 53 54 30 a4 62 14 46 1f 53 ST0...HST0.b.F.S + f2d0: 42 52 30 03 70 12 08 22 0a 07 0a 00 0a 00 60 70 BR0.p.."......`p + f2e0: 7b 68 0a 5f 00 64 a0 2c 92 93 64 0a 03 a0 25 92 {h._.d.,..d...%. + f2f0: 93 64 0a 05 a0 1e 92 93 64 0a 07 a0 17 92 93 64 .d......d......d + f300: 0a 09 a0 10 92 93 64 0a 0b 70 0a 19 88 60 0a 00 ......d..p...`.. + f310: 00 a4 60 a0 4d 1a 93 5b 23 53 42 58 30 ff ff 0a ..`.M..[#SBX0... + f320: 00 70 7d 79 69 0a 01 00 0a 01 00 41 44 44 30 70 .p}yi......ADD0p + f330: 6a 43 4d 44 30 70 7d 48 53 54 30 0a 1f 00 48 53 jCMD0p}HST0...HS + f340: 54 30 70 7b 68 0a a0 00 61 70 7d 7b 43 4e 54 30 T0p{h...ap}{CNT0 + f350: 0a 5f 00 61 00 43 4e 54 30 a0 16 93 64 0a 03 70 ._.a.CNT0...d..p + f360: 7d 7b 43 4e 54 30 0a a0 00 0a 40 00 43 4e 54 30 }{CNT0....@.CNT0 + f370: a0 16 93 64 0a 05 70 7d 7b 43 4e 54 30 0a a0 00 ...d..p}{CNT0... + f380: 0a 44 00 43 4e 54 30 a0 16 93 64 0a 07 70 7d 7b .D.CNT0...d..p}{ + f390: 43 4e 54 30 0a a0 00 0a 48 00 43 4e 54 30 a0 16 CNT0....H.CNT0.. + f3a0: 93 64 0a 09 70 7d 7b 43 4e 54 30 0a a0 00 0a 4c .d..p}{CNT0....L + f3b0: 00 43 4e 54 30 a0 2a 93 64 0a 0b 70 7d 48 53 54 .CNT0.*.d..p}HST + f3c0: 30 0a 80 00 48 53 54 30 70 0a 00 44 54 30 30 70 0...HST0p..DT00p + f3d0: 7d 7b 43 4e 54 30 0a a0 00 0a 54 00 43 4e 54 30 }{CNT0....T.CNT0 + f3e0: 70 57 54 43 30 0b e8 03 61 70 61 88 60 0a 00 00 pWTC0...apa.`... + f3f0: a0 4d 0b 93 61 0a 00 a0 17 93 64 0a 05 70 0a 01 .M..a.....d..p.. + f400: 88 60 0a 01 00 70 44 54 30 30 88 60 0a 02 00 a0 .`...pDT00.`.... + f410: 17 93 64 0a 07 70 0a 01 88 60 0a 01 00 70 44 54 ..d..p...`...pDT + f420: 30 30 88 60 0a 02 00 a0 26 93 64 0a 09 70 0a 02 00.`....&.d..p.. + f430: 88 60 0a 01 00 70 44 54 31 30 62 79 62 0a 08 62 .`...pDT10byb..b + f440: 72 62 44 54 30 30 62 70 62 88 60 0a 02 00 a0 4f rbDT00bpb.`....O + f450: 05 93 64 0a 0b 70 57 42 44 30 0b f4 01 61 a0 0d ..d..pWBD0...a.. + f460: 92 93 61 0a 00 70 61 88 60 0a 00 00 a1 41 04 70 ..a..pa.`....A.p + f470: 44 54 30 30 88 60 0a 01 00 70 44 54 30 30 61 70 DT00.`...pDT00ap + f480: 43 4e 54 30 62 70 0a 00 62 a2 17 95 62 61 72 0a CNT0bp..b...bar. + f490: 02 62 63 70 42 4c 4b 30 88 60 63 00 72 0a 01 62 .bcpBLK0.`c.r..b + f4a0: 62 70 7d 48 53 54 30 0a 80 00 48 53 54 30 70 7b bp}HST0...HST0p{ + f4b0: 43 4e 54 30 0a 5f 00 43 4e 54 30 5b 27 53 42 58 CNT0._.CNT0['SBX + f4c0: 30 a4 60 14 40 16 53 42 57 30 05 70 12 04 01 0a 0.`.@.SBW0.p.... + f4d0: 07 60 70 7b 68 0a 5f 00 64 a0 2c 92 93 64 0a 02 .`p{h._.d.,..d.. + f4e0: a0 25 92 93 64 0a 04 a0 1e 92 93 64 0a 06 a0 17 .%..d......d.... + f4f0: 92 93 64 0a 08 a0 10 92 93 64 0a 0a 70 0a 19 88 ..d......d..p... + f500: 60 0a 00 00 a4 60 a0 4b 11 93 5b 23 53 42 58 30 `....`.K..[#SBX0 + f510: ff ff 0a 00 70 79 69 0a 01 00 41 44 44 30 70 6a ....pyi...ADD0pj + f520: 43 4d 44 30 70 7d 48 53 54 30 0a 1f 00 48 53 54 CMD0p}HST0...HST + f530: 30 70 7b 68 0a a0 00 61 70 7d 7b 43 4e 54 30 0a 0p{h...ap}{CNT0. + f540: 5f 00 61 00 43 4e 54 30 a0 16 93 64 0a 02 70 7d _.a.CNT0...d..p} + f550: 7b 43 4e 54 30 0a a0 00 0a 40 00 43 4e 54 30 a0 {CNT0....@.CNT0. + f560: 16 93 64 0a 04 70 7d 7b 43 4e 54 30 0a a0 00 0a ..d..p}{CNT0.... + f570: 44 00 43 4e 54 30 a0 1c 93 64 0a 06 70 6c 44 54 D.CNT0...d..plDT + f580: 30 30 70 7d 7b 43 4e 54 30 0a a0 00 0a 48 00 43 00p}{CNT0....H.C + f590: 4e 54 30 a0 26 93 64 0a 08 7b 6c 0a ff 44 54 30 NT0.&.d..{l..DT0 + f5a0: 30 7a 6c 0a 08 44 54 31 30 70 7d 7b 43 4e 54 30 0zl..DT10p}{CNT0 + f5b0: 0a a0 00 0a 4c 00 43 4e 54 30 a0 47 04 93 64 0a ....L.CNT0.G..d. + f5c0: 0a 70 7d 48 53 54 30 0a 80 00 48 53 54 30 70 43 .p}HST0...HST0pC + f5d0: 4e 54 30 61 70 6b 44 54 30 30 70 0a 00 62 a2 12 NT0apkDT00p..b.. + f5e0: 95 62 6b 70 88 6c 62 00 42 4c 4b 30 72 0a 01 62 .bkp.lb.BLK0r..b + f5f0: 62 70 7d 7b 43 4e 54 30 0a a0 00 0a 54 00 43 4e bp}{CNT0....T.CN + f600: 54 30 70 57 54 43 30 0b e8 03 88 60 0a 00 00 70 T0pWTC0....`...p + f610: 7b 43 4e 54 30 0a 5f 00 43 4e 54 30 5b 27 53 42 {CNT0._.CNT0['SB + f620: 58 30 a4 60 10 4c 11 5f 54 5a 5f 5b 80 53 54 53 X0.`.L._TZ_[.STS + f630: 49 00 0c e8 31 0c f8 0a 08 5b 81 12 53 54 53 49 I...1....[..STSI + f640: 03 54 53 49 49 08 00 18 54 53 49 44 08 5b 86 4a .TSII...TSID.[.J + f650: 07 54 53 49 49 54 53 49 44 01 00 08 54 53 30 31 .TSIITSID...TS01 + f660: 08 54 53 30 32 08 54 53 30 33 08 54 53 30 34 08 .TS02.TS03.TS04. + f670: 54 53 30 35 08 54 53 30 36 08 54 53 30 37 08 54 TS05.TS06.TS07.T + f680: 53 30 38 08 54 53 30 39 08 00 30 54 53 31 30 08 S08.TS09..0TS10. + f690: 54 53 31 31 08 54 53 31 32 08 54 53 31 33 08 54 TS11.TS12.TS13.T + f6a0: 53 31 34 08 00 48 06 54 53 32 32 08 00 48 07 54 S14..H.TS22..H.T + f6b0: 53 33 32 08 00 40 46 54 53 42 46 08 00 40 1f 54 S32..@FTSBF..@.T + f6c0: 53 46 45 08 54 53 46 46 08 08 5a 30 43 54 0a 73 SFE.TSFF..Z0CT.s + f6d0: 14 48 04 47 5a 58 54 08 7d 54 53 30 33 0a 40 54 .H.GZXT.}TS03.@T + f6e0: 53 30 39 70 54 53 30 31 61 70 54 53 31 30 62 7b S09pTS01apTS10b{ + f6f0: 54 53 30 33 0a bf 54 53 30 39 72 77 0b 00 01 61 TS03..TS09rw...a + f700: 00 62 63 7a 63 0a 05 63 72 0b ac 0a 78 77 63 0a .bczc..cr...xwc. + f710: 7d 00 0a 64 00 00 66 a4 66 5b 85 26 54 48 5a 30 }..d..f.f[.&THZ0 + f720: 14 14 5f 43 52 54 08 a4 72 0b ac 0a 77 5a 30 43 .._CRT..r...wZ0C + f730: 54 0a 0a 00 00 14 0b 5f 54 4d 50 08 a4 47 5a 58 T......_TMP..GZX + f740: 54 T + +FACS @ 0x00000000 + 0000: 46 41 43 53 40 00 00 00 00 a2 00 00 00 00 00 00 FACS@........... + 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0020: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + +FACP @ 0x00000000 + 0000: 46 41 43 50 f4 00 00 00 04 2f 44 45 4c 4c 20 20 FACP...../DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 00 f0 32 5e 00 f0 3a 5e 01 02 09 00 ......2^..:^.... + 0030: b0 00 00 00 a0 a1 00 00 00 08 00 00 00 00 00 00 ................ + 0040: 04 08 00 00 00 00 00 00 00 00 00 00 08 08 00 00 ................ + 0050: 20 08 00 00 00 00 00 00 04 02 00 04 08 00 00 00 ............... + 0060: 65 00 e9 03 00 00 00 00 01 00 0d 00 00 11 00 00 e............... + 0070: ad 05 00 00 01 08 00 01 64 00 00 00 00 00 00 00 ........d....... + 0080: fe 00 00 00 00 f0 32 5e 00 00 00 00 00 f0 3a 5e ......2^......:^ + 0090: 00 00 00 00 01 20 00 02 00 08 00 00 00 00 00 00 ..... .......... + 00a0: 01 00 00 02 00 00 00 00 00 00 00 00 01 10 00 02 ................ + 00b0: 04 08 00 00 00 00 00 00 01 00 00 02 00 00 00 00 ................ + 00c0: 00 00 00 00 01 00 00 01 00 00 00 00 00 00 00 00 ................ + 00d0: 01 20 00 03 08 08 00 00 00 00 00 00 01 40 00 03 . ...........@.. + 00e0: 20 08 00 00 00 00 00 00 01 00 00 03 00 00 00 00 ............... + 00f0: 00 00 00 00 .... + +SLIC @ 0x00000000 + 0000: 53 4c 49 43 76 01 00 00 01 23 44 45 4c 4c 20 20 SLICv....#DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 4c 4f 48 52 QA09 .....LOHR + 0020: 01 00 00 00 00 00 00 00 9c 00 00 00 06 02 00 00 ................ + 0030: 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 .$..RSA1........ + 0040: 7f f6 c1 05 be 5c 57 63 a5 8a 68 f3 6e 8f 06 fa .....\Wc..h.n... + 0050: af b4 9f 68 82 23 ec 50 40 5a 73 7f ec e4 07 cb ...h.#.P@Zs..... + 0060: dc 25 1a 9c e3 e3 66 11 e0 a5 98 06 c5 80 0a fa .%....f......... + 0070: 42 93 86 98 e7 d5 1b d4 d7 3a a4 0b ee e2 7d be B........:....}. + 0080: 5f 5b 15 0c ab d0 21 de bf e9 b5 6e a4 57 b9 8c _[....!....n.W.. + 0090: 0c d2 ba 3a 69 30 76 94 71 a2 64 d7 4c d8 85 bf ...:i0v.q.d.L... + 00a0: df a5 6a c8 dc 45 d5 4d 8c b8 8c 05 2f fc 2e 23 ..j..E.M..../..# + 00b0: c4 29 c5 6f 3f 29 6c 6d 57 79 0e b6 75 ed 21 95 .).o?)lmWy..u.!. + 00c0: 01 00 00 00 b6 00 00 00 00 00 02 00 44 45 4c 4c ............DELL + 00d0: 20 20 51 41 30 39 20 20 20 00 57 49 4e 44 4f 57 QA09 .WINDOW + 00e0: 53 20 01 00 02 00 00 00 00 00 00 00 00 00 00 00 S .............. + 00f0: 00 00 00 00 00 00 33 b8 a7 56 40 af 02 b9 42 a8 ......3..V@...B. + 0100: 07 7a d1 57 85 0f 88 e7 04 11 fb 35 34 14 60 b7 .z.W.......54.`. + 0110: 78 82 53 7b 67 3b 40 3f 40 c1 01 84 cb 05 c5 30 x.S{g;@?@......0 + 0120: 7d 36 82 60 f1 24 2e 46 15 9f ce 5a 24 44 5f 7f }6.`.$.F...Z$D_. + 0130: cf 5d b8 63 10 82 74 80 f7 7a f0 93 e2 21 2a af .].c..t..z...!*. + 0140: 6a 00 e3 1e 1a 36 dc 1e bd 2b 11 08 35 cf 24 52 j....6...+..5.$R + 0150: 22 d9 03 53 f2 6b 4b 13 ef 79 63 d9 5f a1 37 da "..S.kK..yc._.7. + 0160: 61 87 6f dd c5 07 b4 3e 48 7d 61 48 49 fb 25 d3 a.o....>H}aHI.%. + 0170: fc 2e e4 44 ef 38 ...D.8 + +HPET @ 0x00000000 + 0000: 48 50 45 54 38 00 00 00 01 b2 44 45 4c 4c 20 20 HPET8.....DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 10 82 53 43 00 08 00 00 00 00 d0 fe ......SC........ + 0030: 00 00 00 00 02 14 00 00 ........ + +APIC @ 0x00000000 + 0000: 41 50 49 43 7a 00 00 00 02 69 44 45 4c 4c 20 20 APICz....iDELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 00 00 e0 fe 01 00 00 00 00 08 00 00 ................ + 0030: 01 00 00 00 00 08 01 01 01 00 00 00 00 08 02 02 ................ + 0040: 00 00 00 00 00 08 03 03 00 00 00 00 01 0c 02 00 ................ + 0050: 00 00 c0 fe 00 00 00 00 02 0a 00 00 02 00 00 00 ................ + 0060: 00 00 04 06 00 05 00 01 04 06 01 05 00 01 04 06 ................ + 0070: 02 05 00 01 04 06 03 05 00 01 .......... + +MCFG @ 0x00000000 + 0000: 4d 43 46 47 3c 00 00 00 01 9f 44 45 4c 4c 20 20 MCFG<.....DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 f8 ................ + 0030: 00 00 00 00 00 00 00 3f 00 00 00 00 .......?.... + +SBST @ 0x00000000 + 0000: 53 42 53 54 30 00 00 00 01 c3 44 45 4c 4c 20 20 SBST0.....DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + 0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ + +UEFI1 @ 0x00000000 + 0000: 55 45 46 49 3e 00 00 00 01 0b 44 45 4c 4c 20 20 UEFI>.....DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 e8 63 95 d2 e1 cf 41 4d 8e 54 da 43 .....c....AM.T.C + 0030: 22 fe de 5c 36 00 00 b0 30 5e 00 00 00 00 "..\6...0^.... + +UEFI2 @ 0x00000000 + 0000: 55 45 46 49 42 00 00 00 01 f0 50 54 4c 20 20 20 UEFIB.....PTL + 0010: 43 4f 4d 42 55 46 00 00 01 00 00 00 50 54 4c 20 COMBUF......PTL + 0020: 01 00 00 00 be 96 e8 15 df 0c e2 47 9b 97 a2 8a ...........G.... + 0030: 39 8b c7 65 36 00 01 00 00 00 28 37 e0 5d 00 00 9..e6.....(7.].. + 0040: 00 00 .. + +SSDT1 @ 0x00000000 + 0000: 53 53 44 54 26 07 00 00 01 f0 41 4d 44 20 20 20 SSDT&.....AMD + 0010: 50 4f 57 45 52 4e 4f 57 01 00 00 00 41 4d 44 20 POWERNOW....AMD + 0020: 01 00 00 00 10 40 38 5c 2e 5f 50 52 5f 43 30 30 .....@8\._PR_C00 + 0030: 30 08 5f 50 43 54 12 2c 02 11 14 0a 11 82 0c 00 0._PCT.,........ + 0040: 7f 40 00 00 62 00 01 c0 00 00 00 00 79 00 11 14 .@..b.......y... + 0050: 0a 11 82 0c 00 7f 40 00 00 00 00 00 00 00 00 00 ......@......... + 0060: 00 79 00 08 5f 50 53 53 12 4a 0e 07 12 20 06 0c .y.._PSS.J... .. + 0070: 6c 07 00 00 0c 46 23 00 00 0c 00 00 00 00 0c 00 l....F#......... + 0080: 00 00 00 0c 00 00 00 00 0c 00 00 00 00 12 20 06 .............. . + 0090: 0c 08 07 00 00 0c d0 20 00 00 0c 00 00 00 00 0c ....... ........ + 00a0: 00 00 00 00 0c 01 00 00 00 0c 01 00 00 00 12 20 ............... + 00b0: 06 0c 40 06 00 00 0c 14 1c 00 00 0c 00 00 00 00 ..@............. + 00c0: 0c 00 00 00 00 0c 02 00 00 00 0c 02 00 00 00 12 ................ + 00d0: 20 06 0c 78 05 00 00 0c b0 18 00 00 0c 00 00 00 ..x............ + 00e0: 00 0c 00 00 00 00 0c 03 00 00 00 0c 03 00 00 00 ................ + 00f0: 12 20 06 0c b0 04 00 00 0c c8 14 00 00 0c 00 00 . .............. + 0100: 00 00 0c 00 00 00 00 0c 04 00 00 00 0c 04 00 00 ................ + 0110: 00 12 20 06 0c e8 03 00 00 0c ad 12 00 00 0c 00 .. ............. + 0120: 00 00 00 0c 00 00 00 00 0c 05 00 00 00 0c 05 00 ................ + 0130: 00 00 12 20 06 0c 20 03 00 00 0c 9f 10 00 00 0c ... .. ......... + 0140: 00 00 00 00 0c 00 00 00 00 0c 06 00 00 00 0c 06 ................ + 0150: 00 00 00 08 58 50 53 53 12 4b 1f 07 12 47 04 08 ....XPSS.K...G.. + 0160: 0c 6c 07 00 00 0c 46 23 00 00 0c 00 00 00 00 0c .l....F#........ + 0170: 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 00 ................ + 0180: 11 0b 0a 08 00 00 00 00 00 00 00 00 11 0b 0a 08 ................ + 0190: 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 00 ................ + 01a0: 00 00 00 00 12 47 04 08 0c 08 07 00 00 0c d0 20 .....G......... + 01b0: 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a 08 ................ + 01c0: 01 00 00 00 00 00 00 00 11 0b 0a 08 01 00 00 00 ................ + 01d0: 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 00 ................ + 01e0: 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 08 .............G.. + 01f0: 0c 40 06 00 00 0c 14 1c 00 00 0c 00 00 00 00 0c .@.............. + 0200: 00 00 00 00 11 0b 0a 08 02 00 00 00 00 00 00 00 ................ + 0210: 11 0b 0a 08 02 00 00 00 00 00 00 00 11 0b 0a 08 ................ + 0220: 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 00 ................ + 0230: 00 00 00 00 12 47 04 08 0c 78 05 00 00 0c b0 18 .....G...x...... + 0240: 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a 08 ................ + 0250: 03 00 00 00 00 00 00 00 11 0b 0a 08 03 00 00 00 ................ + 0260: 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 00 ................ + 0270: 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 08 .............G.. + 0280: 0c b0 04 00 00 0c c8 14 00 00 0c 00 00 00 00 0c ................ + 0290: 00 00 00 00 11 0b 0a 08 04 00 00 00 00 00 00 00 ................ + 02a0: 11 0b 0a 08 04 00 00 00 00 00 00 00 11 0b 0a 08 ................ + 02b0: 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 00 ................ + 02c0: 00 00 00 00 12 47 04 08 0c e8 03 00 00 0c ad 12 .....G.......... + 02d0: 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a 08 ................ + 02e0: 05 00 00 00 00 00 00 00 11 0b 0a 08 05 00 00 00 ................ + 02f0: 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 00 ................ + 0300: 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 08 .............G.. + 0310: 0c 20 03 00 00 0c 9f 10 00 00 0c 00 00 00 00 0c . .............. + 0320: 00 00 00 00 11 0b 0a 08 06 00 00 00 00 00 00 00 ................ + 0330: 11 0b 0a 08 06 00 00 00 00 00 00 00 11 0b 0a 08 ................ + 0340: 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 00 ................ + 0350: 00 00 00 00 08 5f 50 53 44 12 18 01 12 15 05 0a ....._PSD....... + 0360: 05 0a 00 0c 00 00 00 00 0c fc 00 00 00 0c 02 00 ................ + 0370: 00 00 08 5f 50 50 43 0a 00 08 5f 43 53 54 12 26 ..._PPC..._CST.& + 0380: 02 0a 01 12 21 04 11 14 0a 11 82 0c 00 01 08 00 ....!........... + 0390: 01 41 08 00 00 00 00 00 00 79 00 0a 02 0b 64 00 .A.......y....d. + 03a0: 0c 00 00 00 00 10 40 38 5c 2e 5f 50 52 5f 43 30 ......@8\._PR_C0 + 03b0: 30 31 08 5f 50 43 54 12 2c 02 11 14 0a 11 82 0c 01._PCT.,....... + 03c0: 00 7f 40 00 00 62 00 01 c0 00 00 00 00 79 00 11 ..@..b.......y.. + 03d0: 14 0a 11 82 0c 00 7f 40 00 00 00 00 00 00 00 00 .......@........ + 03e0: 00 00 79 00 08 5f 50 53 53 12 4a 0e 07 12 20 06 ..y.._PSS.J... . + 03f0: 0c 6c 07 00 00 0c 46 23 00 00 0c 00 00 00 00 0c .l....F#........ + 0400: 00 00 00 00 0c 00 00 00 00 0c 00 00 00 00 12 20 ............... + 0410: 06 0c 08 07 00 00 0c d0 20 00 00 0c 00 00 00 00 ........ ....... + 0420: 0c 00 00 00 00 0c 01 00 00 00 0c 01 00 00 00 12 ................ + 0430: 20 06 0c 40 06 00 00 0c 14 1c 00 00 0c 00 00 00 ..@............ + 0440: 00 0c 00 00 00 00 0c 02 00 00 00 0c 02 00 00 00 ................ + 0450: 12 20 06 0c 78 05 00 00 0c b0 18 00 00 0c 00 00 . ..x........... + 0460: 00 00 0c 00 00 00 00 0c 03 00 00 00 0c 03 00 00 ................ + 0470: 00 12 20 06 0c b0 04 00 00 0c c8 14 00 00 0c 00 .. ............. + 0480: 00 00 00 0c 00 00 00 00 0c 04 00 00 00 0c 04 00 ................ + 0490: 00 00 12 20 06 0c e8 03 00 00 0c ad 12 00 00 0c ... ............ + 04a0: 00 00 00 00 0c 00 00 00 00 0c 05 00 00 00 0c 05 ................ + 04b0: 00 00 00 12 20 06 0c 20 03 00 00 0c 9f 10 00 00 .... .. ........ + 04c0: 0c 00 00 00 00 0c 00 00 00 00 0c 06 00 00 00 0c ................ + 04d0: 06 00 00 00 08 58 50 53 53 12 4b 1f 07 12 47 04 .....XPSS.K...G. + 04e0: 08 0c 6c 07 00 00 0c 46 23 00 00 0c 00 00 00 00 ..l....F#....... + 04f0: 0c 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 ................ + 0500: 00 11 0b 0a 08 00 00 00 00 00 00 00 00 11 0b 0a ................ + 0510: 08 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 ................ + 0520: 00 00 00 00 00 12 47 04 08 0c 08 07 00 00 0c d0 ......G......... + 0530: 20 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a ............... + 0540: 08 01 00 00 00 00 00 00 00 11 0b 0a 08 01 00 00 ................ + 0550: 00 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 ................ + 0560: 00 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 ..............G. + 0570: 08 0c 40 06 00 00 0c 14 1c 00 00 0c 00 00 00 00 ..@............. + 0580: 0c 00 00 00 00 11 0b 0a 08 02 00 00 00 00 00 00 ................ + 0590: 00 11 0b 0a 08 02 00 00 00 00 00 00 00 11 0b 0a ................ + 05a0: 08 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 ................ + 05b0: 00 00 00 00 00 12 47 04 08 0c 78 05 00 00 0c b0 ......G...x..... + 05c0: 18 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a ................ + 05d0: 08 03 00 00 00 00 00 00 00 11 0b 0a 08 03 00 00 ................ + 05e0: 00 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 ................ + 05f0: 00 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 ..............G. + 0600: 08 0c b0 04 00 00 0c c8 14 00 00 0c 00 00 00 00 ................ + 0610: 0c 00 00 00 00 11 0b 0a 08 04 00 00 00 00 00 00 ................ + 0620: 00 11 0b 0a 08 04 00 00 00 00 00 00 00 11 0b 0a ................ + 0630: 08 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 ................ + 0640: 00 00 00 00 00 12 47 04 08 0c e8 03 00 00 0c ad ......G......... + 0650: 12 00 00 0c 00 00 00 00 0c 00 00 00 00 11 0b 0a ................ + 0660: 08 05 00 00 00 00 00 00 00 11 0b 0a 08 05 00 00 ................ + 0670: 00 00 00 00 00 11 0b 0a 08 00 00 00 00 00 00 00 ................ + 0680: 00 11 0b 0a 08 00 00 00 00 00 00 00 00 12 47 04 ..............G. + 0690: 08 0c 20 03 00 00 0c 9f 10 00 00 0c 00 00 00 00 .. ............. + 06a0: 0c 00 00 00 00 11 0b 0a 08 06 00 00 00 00 00 00 ................ + 06b0: 00 11 0b 0a 08 06 00 00 00 00 00 00 00 11 0b 0a ................ + 06c0: 08 00 00 00 00 00 00 00 00 11 0b 0a 08 00 00 00 ................ + 06d0: 00 00 00 00 00 08 5f 50 53 44 12 18 01 12 15 05 ......_PSD...... + 06e0: 0a 05 0a 00 0c 00 00 00 00 0c fc 00 00 00 0c 02 ................ + 06f0: 00 00 00 08 5f 50 50 43 0a 00 08 5f 43 53 54 12 ...._PPC..._CST. + 0700: 26 02 0a 01 12 21 04 11 14 0a 11 82 0c 00 01 08 &....!.......... + 0710: 00 01 41 08 00 00 00 00 00 00 79 00 0a 02 0b 64 ..A.......y....d + 0720: 00 0c 00 00 00 00 ...... + +SSDT2 @ 0x00000000 + 0000: 53 53 44 54 0a 19 00 00 02 af 41 4d 44 00 00 00 SSDT......AMD... + 0010: 41 4c 49 42 00 00 00 00 01 00 00 00 4d 53 46 54 ALIB........MSFT + 0020: 00 00 00 04 10 85 8e 01 5c 5f 53 42 5f 08 41 30 ........\_SB_.A0 + 0030: 30 31 0a 06 08 41 44 30 31 0c 00 00 00 f8 06 41 01...AD01......A + 0040: 44 30 31 41 30 39 31 08 41 44 30 37 12 43 07 08 D01A091.AD07.C.. + 0050: 11 0d 0a 0a 00 00 00 00 00 00 00 00 00 00 11 0d ................ + 0060: 0a 0a 10 17 08 0f 01 31 01 04 02 00 11 0d 0a 0a .......1........ + 0070: 04 04 04 04 01 30 01 00 01 00 11 0d 0a 0a 05 05 .....0.......... + 0080: 05 05 02 30 01 00 01 00 11 0d 0a 0a 06 06 06 06 ...0............ + 0090: 03 30 01 00 02 00 11 0d 0a 0a 07 07 07 07 04 30 .0.............0 + 00a0: 01 00 02 00 11 0d 0a 0a 00 03 00 03 00 30 01 00 .............0.. + 00b0: 02 00 11 0d 0a 0a 00 00 00 00 00 00 00 00 00 00 ................ + 00c0: 06 41 44 30 37 41 30 39 32 08 41 30 39 33 11 04 .AD07A092.A093.. + 00d0: 0b 00 01 14 41 05 41 4c 49 42 02 a0 0b 93 68 0a ....A.ALIB....h. + 00e0: 01 a4 41 30 33 35 69 a0 0b 93 68 0a 02 a4 41 30 ..A035i...h...A0 + 00f0: 33 37 69 a0 0b 93 68 0a 03 a4 41 30 34 38 69 a0 37i...h...A048i. + 0100: 0b 93 68 0a 04 a4 41 30 37 33 69 a0 0a 93 68 0a ..h...A073i...h. + 0110: 05 a4 41 30 39 34 a0 0b 93 68 0a 06 a4 41 30 37 ..A094...h...A07 + 0120: 37 69 a4 0a 00 14 09 41 30 39 34 08 a4 0a 00 14 7i.....A094..... + 0130: 31 41 30 30 38 0a 72 41 30 39 31 79 68 0a 0c 00 1A008.rA091yh... + 0140: 60 72 69 60 60 5b 80 41 30 39 35 00 60 0a 04 5b `ri``[.A095.`..[ + 0150: 81 0b 41 30 39 35 03 41 30 39 36 20 a4 41 30 39 ..A095.A096 .A09 + 0160: 36 14 32 41 30 30 39 0b 72 41 30 39 31 79 68 0a 6.2A009.rA091yh. + 0170: 0c 00 60 72 69 60 60 5b 80 41 30 39 35 00 60 0a ..`ri``[.A095.`. + 0180: 04 5b 81 0b 41 30 39 35 03 41 30 39 36 20 70 6a .[..A095.A096 pj + 0190: 41 30 39 36 14 1c 41 30 35 38 0c 70 41 30 30 38 A096..A058.pA008 + 01a0: 68 69 60 7d 7b 60 6a 00 6b 60 41 30 30 39 68 69 hi`}{`j.k`A009hi + 01b0: 60 5b 01 41 30 39 37 00 14 32 41 30 35 39 02 5b `[.A097..2A059.[ + 01c0: 23 41 30 39 37 ff ff 70 79 72 68 0a 02 00 0a 03 #A097..pyrh..... + 01d0: 00 60 41 30 30 39 60 0a e0 69 70 41 30 30 38 60 .`A009`..ipA008` + 01e0: 0a e4 60 5b 27 41 30 39 37 a4 60 14 2f 41 30 39 ..`['A097.`./A09 + 01f0: 38 03 5b 23 41 30 39 37 ff ff 70 79 72 68 0a 02 8.[#A097..pyrh.. + 0200: 00 0a 03 00 60 41 30 30 39 60 0a e0 69 41 30 30 ....`A009`..iA00 + 0210: 39 60 0a e4 6a 5b 27 41 30 39 37 14 1c 41 30 35 9`..j['A097..A05 + 0220: 36 04 70 41 30 35 39 68 69 60 7d 7b 60 6a 00 6b 6.pA059hi`}{`j.k + 0230: 60 41 30 39 38 68 69 60 5b 01 41 30 39 39 00 14 `A098hi`[.A099.. + 0240: 29 41 30 31 36 03 5b 23 41 30 39 39 ff ff 41 30 )A016.[#A099..A0 + 0250: 30 39 68 69 6a 70 41 30 30 38 68 72 69 0a 04 00 09hijpA008hri... + 0260: 60 5b 27 41 30 39 39 a4 60 14 26 41 30 34 39 04 `['A099.`.&A049. + 0270: 5b 23 41 30 39 39 ff ff 41 30 30 39 68 69 6a 41 [#A099..A009hijA + 0280: 30 30 39 68 72 69 0a 04 00 6b 5b 27 41 30 39 39 009hri...k['A099 + 0290: 14 1e 41 30 31 37 05 70 41 30 31 36 68 69 6a 60 ..A017.pA016hij` + 02a0: 7d 7b 60 6b 00 6c 60 41 30 34 39 68 69 6a 60 14 }{`k.l`A049hij`. + 02b0: 0f 41 30 38 31 01 a4 83 88 41 30 39 32 68 00 14 .A081....A092h.. + 02c0: 42 05 41 30 36 35 02 70 0a 34 61 a0 11 93 41 30 B.A065.p.4a...A0 + 02d0: 30 38 68 0a 00 0c ff ff ff ff a4 0a 00 70 0a 01 08h..........p.. + 02e0: 60 a2 2e 93 60 0a 01 70 7b 41 30 30 38 68 61 0a `...`..p{A008ha. + 02f0: ff 00 61 a0 06 93 61 0a 00 a5 a0 11 93 7b 41 30 ..a...a......{A0 + 0300: 30 38 68 61 0a ff 00 69 70 0a 00 60 a1 03 75 61 08ha...ip..`..ua + 0310: a4 61 14 47 09 41 30 36 34 0a 5b 80 50 4d 49 4f .a.G.A064.[.PMIO + 0320: 01 0b d6 0c 0a 02 5b 81 10 50 4d 49 4f 01 50 4d ......[..PMIO.PM + 0330: 52 49 08 50 4d 52 44 08 5b 86 12 50 4d 52 49 50 RI.PMRD.[..PMRIP + 0340: 4d 52 44 01 00 40 70 41 42 41 52 20 5b 80 41 43 MRD..@pABAR [.AC + 0350: 46 47 01 41 42 41 52 0a 08 5b 81 10 41 43 46 47 FG.ABAR..[..ACFG + 0360: 03 41 42 49 58 20 41 42 44 41 20 70 0a 00 60 a0 .ABIX ABDA p..`. + 0370: 17 93 69 0a 00 70 0c 68 00 00 80 41 42 49 58 70 ..i..p.h...ABIXp + 0380: 41 42 44 41 60 a4 60 a1 22 70 0c 68 00 00 80 41 ABDA`.`."p.h...A + 0390: 42 49 58 70 41 42 44 41 60 7d 7b 60 0c fc ff ff BIXpABDA`}{`.... + 03a0: ff 00 68 60 70 60 41 42 44 41 14 48 05 41 30 38 ..h`p`ABDA.H.A08 + 03b0: 37 01 70 41 30 31 36 0a 00 0a 60 0a cd 60 75 68 7.pA016...`..`uh + 03c0: 7d 7b 60 0c ff ff ff fe 00 7b 80 7b 60 0c 00 00 }{`......{.{`... + 03d0: 00 01 00 00 0c 00 00 00 01 00 60 7d 7b 60 0c ff ..........`}{`.. + 03e0: ff 00 fd 00 79 68 0a 10 00 60 41 30 34 39 0a 00 ....yh...`A049.. + 03f0: 0a 60 0a cd 60 70 41 30 31 36 0a 00 0a 60 0a ce .`..`pA016...`.. + 0400: 60 a4 60 14 47 0a 41 30 38 38 03 70 41 30 31 36 `.`.G.A088.pA016 + 0410: 0a 00 0a 60 0a cd 60 70 7b 69 0b ff ff 00 61 7d ...`..`p{i....a} + 0420: 7b 60 0c ff ff ff fe 00 7b 80 7b 60 0c 00 00 00 {`......{.{`.... + 0430: 01 00 00 0c 00 00 00 01 00 60 7d 7b 60 0c 00 00 .........`}{`... + 0440: 00 fd 00 79 68 0a 10 00 60 7d 60 0c 00 00 00 02 ...yh...`}`..... + 0450: 60 7d 60 61 60 41 30 34 39 0a 00 0a 60 0a cd 60 `}`a`A049...`..` + 0460: a0 4a 04 93 6a 0a 01 70 7a 69 0a 10 00 61 7d 7b .J..j..pzi...a}{ + 0470: 60 0c ff ff ff fe 00 7b 80 7b 60 0c 00 00 00 01 `......{.{`..... + 0480: 00 00 0c 00 00 00 01 00 60 7d 7b 60 0c 00 00 00 ........`}{`.... + 0490: ff 00 79 72 68 0a 01 00 0a 10 00 60 7d 60 61 60 ..yrh......`}`a` + 04a0: 41 30 34 39 0a 00 0a 60 0a cd 60 14 4f 04 41 30 A049...`..`.O.A0 + 04b0: 31 31 02 7d 79 68 0a 03 00 0a 01 60 41 30 38 38 11.}yh.....`A088 + 04c0: 0a 03 60 0a 01 a0 15 90 69 0a 01 a2 0f 92 93 7b ..`.....i......{ + 04d0: 41 30 38 37 0a 03 0a 02 00 0a 02 a0 15 90 69 0a A087..........i. + 04e0: 02 a2 0f 92 93 7b 41 30 38 37 0a 03 0a 04 00 0a .....{A087...... + 04f0: 04 41 30 38 38 0a 03 0a 00 0a 01 14 18 41 30 31 .A088........A01 + 0500: 30 02 41 30 38 38 0a 0b 68 0a 00 41 30 38 38 0a 0.A088..h..A088. + 0510: 05 69 0a 01 14 19 41 30 30 37 01 41 30 38 38 0a .i....A007.A088. + 0520: 0b 68 0a 00 70 41 30 38 37 0a 05 60 a4 60 14 49 .h..pA087..`.`.I + 0530: 07 41 30 38 39 01 70 7d 7b 68 0a ff 00 0c 00 50 .A089.p}{h.....P + 0540: 86 01 00 60 70 7d 7b 68 0c 00 ff ff ff 00 0a 04 ...`p}{h........ + 0550: 00 61 70 7d 79 0a 03 0a 1e 00 79 0a 01 0a 12 00 .ap}y.....y..... + 0560: 00 62 41 30 31 30 0b 00 86 60 41 30 31 30 0b 04 .bA010...`A010.. + 0570: 86 61 41 30 31 30 0b 08 86 62 a0 12 93 7a 68 0a .aA010...b...zh. + 0580: 10 00 0b 00 fe 41 30 31 31 0a 0d 0a 03 a0 12 93 .....A011....... + 0590: 7a 68 0a 10 00 0b 30 fe 41 30 31 31 0a 0b 0a 03 zh....0.A011.... + 05a0: a4 41 30 30 37 0b 50 86 14 44 06 41 30 39 30 02 .A007.P..D.A090. + 05b0: 70 7d 7b 68 0a ff 00 0c 00 50 86 01 00 60 70 7d p}{h.....P...`p} + 05c0: 7b 68 0c 00 ff ff ff 00 0a 04 00 61 70 7d 79 0a {h.........ap}y. + 05d0: 03 0a 1e 00 79 0a 01 0a 12 00 00 62 7d 62 79 0a ....y......b}by. + 05e0: 01 0a 10 00 62 41 30 31 30 0b 00 86 60 41 30 31 ....bA010...`A01 + 05f0: 30 0b 04 86 61 41 30 31 30 0b 08 86 62 41 30 31 0...aA010...bA01 + 0600: 30 0b 50 86 69 41 30 31 31 0a 0b 0a 03 08 41 44 0.P.iA011.....AD + 0610: 30 32 0a 03 06 41 44 30 32 41 30 31 38 08 41 44 02...AD02A018.AD + 0620: 30 33 0a 03 06 41 44 30 33 41 30 31 39 08 41 44 03...AD03A019.AD + 0630: 30 34 0a 00 06 41 44 30 34 41 30 32 30 08 41 44 04...AD04A020.AD + 0640: 30 35 0a 01 06 41 44 30 35 41 30 32 31 08 41 44 05...AD05A021.AD + 0650: 30 36 12 12 08 0a 00 0a 02 0a 01 0a 01 0a 00 0a 06.............. + 0660: 00 0a 02 0a 00 06 41 44 30 36 41 30 32 32 08 41 ......AD06A022.A + 0670: 44 30 38 12 12 08 0a 00 0a 00 0a 00 0a 00 0a 00 D08............. + 0680: 0a 00 0a 00 0a 00 06 41 44 30 38 41 30 32 33 08 .......AD08A023. + 0690: 41 30 32 34 0a 00 08 41 30 32 35 0a 00 08 41 30 A024...A025...A0 + 06a0: 32 36 0a 01 08 41 30 32 37 12 12 08 0a 00 0a 00 26...A027....... + 06b0: 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 08 41 30 32 .............A02 + 06c0: 38 12 12 08 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 8............... + 06d0: 0a 00 0a 00 08 41 30 32 39 12 12 08 0a 00 0a 00 .....A029....... + 06e0: 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 08 41 44 30 .............AD0 + 06f0: 39 12 12 08 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 9............... + 0700: 0a 00 0a 00 06 41 44 30 39 41 30 33 30 08 41 30 .....AD09A030.A0 + 0710: 33 31 12 12 08 0a 01 0a 01 0a 01 0a 01 0a 01 0a 31.............. + 0720: 01 0a 01 0a 01 08 41 30 33 32 12 12 08 0a 00 0a ......A032...... + 0730: 00 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 08 41 30 ..............A0 + 0740: 33 34 0a 00 14 4a 09 41 30 33 35 09 70 83 88 68 34...J.A035.p..h + 0750: 0a 02 00 61 70 41 30 31 33 60 70 61 41 30 32 35 ...apA013`paA025 + 0760: 7d 79 0a 01 0a 05 00 79 0a 01 0a 06 00 62 7d 79 }y.....y.....b}y + 0770: 41 30 32 35 0a 05 00 79 41 30 32 36 0a 06 00 63 A025...yA026...c + 0780: 41 30 31 37 0a 00 0a 60 0a f4 80 62 00 7b 62 63 A017...`...b.{bc + 0790: 00 a0 07 93 61 60 a4 0a 00 41 30 30 36 41 30 32 ....a`...A006A02 + 07a0: 35 a0 14 93 41 30 31 38 0a 04 41 30 31 32 0a 01 5...A018..A012.. + 07b0: 41 30 31 34 0a 01 a0 15 91 92 94 41 30 31 38 0a A014.......A018. + 07c0: 01 92 95 41 30 31 38 0a 04 a4 0a 00 a0 0b 93 41 ...A018........A + 07d0: 30 32 34 0a 00 a4 0a 00 41 30 33 36 a4 0a 00 14 024.....A036.... + 07e0: 24 41 30 33 37 01 70 41 30 33 38 68 67 70 83 88 $A037.pA038hgp.. + 07f0: 67 0a 02 00 60 a0 08 92 93 60 0a 02 a4 67 41 30 g...`....`...gA0 + 0800: 33 36 a4 67 14 4e 1b 41 30 33 38 01 08 41 30 33 36.g.N.A038..A03 + 0810: 39 0a 00 70 0a 00 41 30 33 34 70 11 03 0a 0a 67 9..p..A034p....g + 0820: 8b 67 0a 00 41 30 34 30 70 0a 03 41 30 34 30 8c .g..A040p..A040. + 0830: 67 0a 02 41 30 34 31 70 0a 01 41 30 34 31 a0 14 g..A041p..A041.. + 0840: 91 92 94 41 30 31 38 0a 01 92 95 41 30 31 38 0a ...A018....A018. + 0850: 04 a4 67 a0 0a 93 41 30 32 34 0a 00 a4 67 8b 68 ..g...A024...g.h + 0860: 0a 02 41 30 34 32 8b 68 0a 04 41 30 34 33 8b 68 ..A042.h..A043.h + 0870: 0a 06 41 30 34 34 8c 68 0a 08 41 30 34 35 8c 68 ..A044.h..A045.h + 0880: 0a 09 41 30 34 36 7b 7a 41 30 34 32 0a 08 00 0a ..A046{zA042.... + 0890: ff 41 30 33 39 a2 47 05 92 94 41 30 33 34 41 30 .A039.G...A034A0 + 08a0: 30 31 a0 45 04 93 41 30 34 37 41 30 33 34 0a 01 01.E..A047A034.. + 08b0: 70 41 30 30 38 79 72 41 30 33 34 0a 02 00 0a 03 pA008yrA034..... + 08c0: 00 0a 18 61 7b 7a 61 0a 10 00 0a ff 62 7b 7a 61 ...a{za.....b{za + 08d0: 0a 08 00 0a ff 61 a0 11 90 92 95 41 30 33 39 61 .....a.....A039a + 08e0: 92 94 41 30 33 39 62 a5 75 41 30 33 34 a0 0c 94 ..A039b.uA034... + 08f0: 41 30 33 34 41 30 30 31 a4 67 a0 1e 93 83 88 41 A034A001.g.....A + 0900: 30 32 37 41 30 33 34 00 0a 00 70 41 30 34 32 88 027A034...pA042. + 0910: 41 30 32 37 41 30 33 34 00 a1 16 a0 14 92 93 83 A027A034........ + 0920: 88 41 30 32 37 41 30 33 34 00 41 30 34 32 a4 67 .A027A034.A042.g + 0930: 70 0a 00 88 41 30 33 32 41 30 33 34 00 a0 15 93 p...A032A034.... + 0940: 41 30 34 36 0a 00 70 0a 00 88 41 30 32 37 41 30 A046..p...A027A0 + 0950: 33 34 00 a0 15 93 41 30 34 36 0a 01 70 0a 01 88 34....A046..p... + 0960: 41 30 33 32 41 30 33 34 00 a0 15 93 41 30 34 36 A032A034....A046 + 0970: 0a 02 70 0a 01 88 41 30 32 39 41 30 33 34 00 a0 ..p...A029A034.. + 0980: 15 93 41 30 34 36 0a 03 70 0a 02 88 41 30 32 39 ..A046..p...A029 + 0990: 41 30 33 34 00 a0 24 93 7b 41 30 34 33 41 30 34 A034..$.{A043A04 + 09a0: 34 00 0a 01 70 83 88 41 30 32 32 41 30 33 34 00 4...p..A022A034. + 09b0: 88 41 30 32 39 41 30 33 34 00 70 0a 02 41 30 34 .A029A034.p..A04 + 09c0: 31 a4 67 14 19 41 30 34 37 09 a0 0f 93 83 88 41 1.g..A047......A + 09d0: 30 32 32 68 00 0a 00 a4 0a 00 a4 0a 01 14 43 13 022h..........C. + 09e0: 41 30 34 38 09 70 11 04 0b 00 01 67 70 0a 03 88 A048.p.....gp... + 09f0: 67 0a 00 00 70 0a 00 88 67 0a 01 00 70 0a 00 88 g...p...g...p... + 0a00: 67 0a 02 00 70 83 88 68 0a 02 00 41 30 32 34 70 g...p..h...A024p + 0a10: 41 30 31 36 0a 00 0a 60 0a f4 60 a0 19 93 41 30 A016...`..`...A0 + 0a20: 32 34 0a 01 a0 0b 93 7b 60 0a 01 00 0a 01 a4 67 24.....{`......g + 0a30: 7d 60 0a 01 60 a0 1b 93 41 30 32 34 0a 00 a0 0b }`..`...A024.... + 0a40: 93 7b 60 0a 01 00 0a 00 a4 67 7b 60 80 0a 01 00 .{`......g{`.... + 0a50: 60 7d 60 79 41 30 31 38 0a 01 00 60 41 30 34 39 `}`yA018...`A049 + 0a60: 0a 00 0a 60 0a f4 60 41 30 35 30 71 41 30 32 38 ...`..`A050qA028 + 0a70: 71 41 30 32 37 41 30 30 36 41 30 32 35 a0 14 93 qA027A006A025... + 0a80: 41 30 31 38 0a 04 41 30 31 32 0a 01 41 30 31 34 A018..A012..A014 + 0a90: 0a 01 a0 4c 07 90 94 41 30 31 38 0a 01 95 41 30 ...L...A018...A0 + 0aa0: 31 38 0a 04 a0 46 05 93 41 30 31 38 0a 02 41 30 18...F..A018..A0 + 0ab0: 35 30 71 41 30 32 32 71 41 30 33 30 70 0a 00 41 50qA022qA030p..A + 0ac0: 30 33 34 a2 37 92 94 41 30 33 34 41 30 30 31 a0 034.7..A034A001. + 0ad0: 26 92 93 83 88 41 30 32 33 41 30 33 34 00 0a 00 &....A023A034... + 0ae0: 70 83 88 41 30 32 33 41 30 33 34 00 88 41 30 33 p..A023A034..A03 + 0af0: 30 41 30 33 34 00 75 41 30 33 34 a1 0f 41 30 35 0A034.uA034..A05 + 0b00: 30 71 41 30 33 31 71 41 30 33 30 41 30 33 36 a4 0qA031qA030A036. + 0b10: 67 08 41 30 35 31 12 12 08 0a 00 0a 00 0a 00 0a g.A051.......... + 0b20: 00 0a 00 0a 00 0a 00 0a 00 14 42 12 41 30 33 36 ..........B.A036 + 0b30: 08 70 0a 00 41 30 33 34 41 30 35 30 71 41 30 33 .p..A034A050qA03 + 0b40: 31 71 41 30 35 31 a2 30 92 94 41 30 33 34 41 30 1qA051.0..A034A0 + 0b50: 30 31 a0 1f 93 41 30 34 37 41 30 33 34 0a 01 70 01...A047A034..p + 0b60: 41 30 35 32 41 30 33 34 88 41 30 35 31 41 30 33 A052A034.A051A03 + 0b70: 34 00 75 41 30 33 34 a0 1f 92 93 89 41 30 33 32 4.uA034.....A032 + 0b80: 01 0a 01 00 0a 00 0a 00 ff 41 30 35 30 71 41 30 .........A050qA0 + 0b90: 33 31 71 41 30 35 31 a0 27 92 93 89 41 30 35 31 31qA051.'...A051 + 0ba0: 01 0a 02 00 0a 00 0a 00 ff 41 30 31 34 0a 02 41 .........A014..A + 0bb0: 30 35 33 41 30 31 39 0a 01 41 30 31 32 0a 02 70 053A019..A012..p + 0bc0: 0a 00 41 30 33 34 a2 4e 05 92 94 41 30 33 34 41 ..A034.N...A034A + 0bd0: 30 30 31 a0 12 93 41 30 34 37 41 30 33 34 0a 00 001...A047A034.. + 0be0: 75 41 30 33 34 9f 70 83 88 41 30 33 30 41 30 33 uA034.p..A030A03 + 0bf0: 34 00 60 70 83 88 41 30 35 31 41 30 33 34 00 62 4.`p..A051A034.b + 0c00: a0 0a 93 60 62 75 41 30 33 34 9f 70 62 88 41 30 ...`buA034.pb.A0 + 0c10: 33 30 41 30 33 34 00 41 30 35 34 41 30 33 34 62 30A034.A054A034b + 0c20: 75 41 30 33 34 a0 26 93 89 41 30 35 31 01 0a 02 uA034.&..A051... + 0c30: 00 0a 00 0a 00 ff 41 30 31 32 0a 01 41 30 35 33 ......A012..A053 + 0c40: 41 30 32 30 0a 00 41 30 31 34 0a 01 14 43 05 41 A020..A014...C.A + 0c50: 30 35 32 01 70 0a 02 60 a0 39 93 83 88 41 30 32 052.p..`.9...A02 + 0c60: 37 68 00 0a 00 a0 14 91 93 41 30 31 33 0a 01 93 7h.......A013... + 0c70: 41 30 31 38 0a 03 70 0a 01 60 a0 17 92 93 83 88 A018..p..`...... + 0c80: 41 30 32 33 68 00 0a 00 70 83 88 41 30 32 33 68 A023h...p..A023h + 0c90: 00 60 a1 0b 70 83 88 41 30 32 39 68 00 60 a4 60 .`..p..A029h.`.` + 0ca0: 14 43 0e 41 30 35 34 02 a0 15 93 68 0a 06 41 30 .C.A054....h..A0 + 0cb0: 31 37 0a 00 0a 60 0a 80 80 0a 40 00 0a 40 41 30 17...`....@..@A0 + 0cc0: 35 35 68 69 a0 1b 92 93 83 88 41 30 32 37 68 00 55hi......A027h. + 0cd0: 0a 00 41 30 35 36 68 0a a1 80 0b 00 10 00 0a 00 ..A056h......... + 0ce0: a1 10 41 30 35 36 68 0a a1 80 0b 00 10 00 0b 00 ..A056h......... + 0cf0: 10 70 79 72 68 0a 02 00 0a 03 00 61 7b 41 30 30 .pyrh......a{A00 + 0d00: 38 61 0a 70 0c 00 00 40 00 63 a0 41 06 92 93 63 8a.p...@.c.A...c + 0d10: 0a 00 41 30 35 37 68 70 0a 01 62 a2 4b 04 62 41 ..A057hp..b.K.bA + 0d20: 30 35 38 61 0a 68 80 0a 00 00 0a 20 5b 22 0a 1e 058a.h..... [".. + 0d30: a2 13 7b 41 30 30 38 61 0a 68 0c 00 00 00 08 00 ..{A008a.h...... + 0d40: 5b 22 0a 0a 70 0a 00 62 a0 1e 93 69 0a 01 70 41 ["..p..b...i..pA + 0d50: 30 35 39 68 0a a4 64 a0 0f 92 93 7b 64 0b 00 08 059h..d....{d... + 0d60: 00 0a 00 70 0a 01 62 41 30 36 30 68 a1 01 a0 15 ...p..bA060h.... + 0d70: 93 68 0a 06 41 30 31 37 0a 00 0a 60 0a 80 80 0a .h..A017...`.... + 0d80: 40 00 0a 00 08 41 30 36 31 12 14 09 0a 00 0a 00 @....A061....... + 0d90: 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 0a 00 08 41 ...............A + 0da0: 30 36 32 0a 00 08 41 30 36 33 0a 00 14 4c 0e 41 062...A063...L.A + 0db0: 30 35 37 09 70 0a 00 41 30 36 32 70 0a 00 41 30 057.p..A062p..A0 + 0dc0: 36 33 70 79 72 68 0a 02 00 0a 03 00 61 a0 21 93 63pyrh......a.!. + 0dd0: 68 0a 06 70 41 30 36 34 0a 00 0a 00 88 41 30 36 h..pA064.....A06 + 0de0: 31 0a 00 00 41 30 36 34 0a 00 0a 01 a4 0a 00 70 1...A064.......p + 0df0: 41 30 30 38 61 0a 18 63 70 7b 7a 63 0a 08 00 0a A008a..cp{zc.... + 0e00: ff 00 63 70 79 63 0a 08 00 62 70 41 30 30 38 62 ..cpyc...bpA008b + 0e10: 0a 0c 63 70 7b 7a 63 0a 10 00 0a ff 00 63 a0 0e ..cp{zc......c.. + 0e20: 92 93 7b 63 0a 80 00 0a 00 70 0a 07 60 a1 05 70 ..{c.....p..`..p + 0e30: 0a 00 60 70 0a 00 64 a2 41 06 92 94 64 60 70 41 ..`p..d.A...d`pA + 0e40: 30 36 35 72 62 64 00 0a 10 41 30 36 32 a0 0b 93 065rbd...A062... + 0e50: 41 30 36 32 0a 00 75 64 9f 72 41 30 36 32 0a 10 A062..ud.rA062.. + 0e60: 41 30 36 32 70 41 30 30 38 72 62 64 00 41 30 36 A062pA008rbd.A06 + 0e70: 32 41 30 36 33 70 7b 41 30 36 33 0a 03 00 88 41 2A063p{A063....A + 0e80: 30 36 31 64 00 41 30 35 38 72 62 64 00 41 30 36 061d.A058rbd.A06 + 0e90: 32 80 0a 03 00 0a 00 75 64 14 43 0c 41 30 36 30 2......ud.C.A060 + 0ea0: 09 70 0a 00 41 30 36 32 70 0a 00 41 30 36 33 a0 .p..A062p..A063. + 0eb0: 17 93 68 0a 06 41 30 36 34 83 88 41 30 36 31 0a ..h..A064..A061. + 0ec0: 00 00 0a 01 a4 0a 00 70 79 72 68 0a 02 00 0a 03 .......pyrh..... + 0ed0: 00 61 70 41 30 30 38 61 0a 18 63 70 7b 7a 63 0a .apA008a..cp{zc. + 0ee0: 08 00 0a ff 00 63 70 79 63 0a 08 00 62 70 41 30 .....cpyc...bpA0 + 0ef0: 30 38 62 0a 0c 63 70 7b 7a 63 0a 10 00 0a ff 00 08b..cp{zc...... + 0f00: 63 a0 0e 92 93 7b 63 0a 80 00 0a 00 70 0a 07 60 c....{c.....p..` + 0f10: a1 05 70 0a 00 60 70 0a 00 64 a2 42 04 92 94 64 ..p..`p..d.B...d + 0f20: 60 70 41 30 36 35 72 62 64 00 0a 10 41 30 36 32 `pA065rbd...A062 + 0f30: a0 0b 93 41 30 36 32 0a 00 75 64 9f 72 41 30 36 ...A062..ud.rA06 + 0f40: 32 0a 10 41 30 36 32 41 30 30 39 72 62 64 00 41 2..A062A009rbd.A + 0f50: 30 36 32 83 88 41 30 36 31 64 00 75 64 14 47 05 062..A061d.ud.G. + 0f60: 41 30 35 35 02 70 79 72 68 0a 02 00 0a 03 00 60 A055.pyrh......` + 0f70: a0 22 93 69 0a 01 41 30 35 38 60 0a 88 80 0a 2f .".i..A058`..../ + 0f80: 00 0a 21 41 30 35 36 68 0a a4 80 0c 01 00 00 20 ..!A056h....... + 0f90: 00 0a 00 a1 21 41 30 35 36 68 0a a4 80 0c 01 00 ....!A056h...... + 0fa0: 00 20 00 0c 01 00 00 20 41 30 35 38 60 0a 88 80 . ..... A058`... + 0fb0: 0a 2f 00 0a 02 14 41 07 41 30 35 33 0a 70 41 30 ./....A.A053.pA0 + 0fc0: 31 36 0a 00 0a 60 0a ea 61 7d 61 0a 02 61 41 30 16...`..a}a..aA0 + 0fd0: 34 39 0a 00 0a 60 0a ea 61 7b 61 80 79 0a 03 0a 49...`..a{a.y... + 0fe0: 03 00 00 61 7d 61 79 68 0a 03 00 61 7b 80 61 00 ...a}ayh...a{.a. + 0ff0: 0a 04 62 7d 7b 61 80 0a 04 00 00 62 61 41 30 34 ..b}{a.....baA04 + 1000: 39 0a 00 0a 60 0a ea 61 a0 1e 92 93 69 0a 00 a2 9...`..a....i... + 1010: 17 92 93 79 61 0a 02 00 62 7b 41 30 31 36 0a 00 ...ya...b{A016.. + 1020: 0a 60 0a eb 0a 01 61 14 21 41 30 35 30 02 70 87 .`....a.!A050.p. + 1030: 68 61 70 0a 00 60 a2 12 95 60 61 70 83 88 83 68 hap..`...`ap...h + 1040: 60 00 88 83 69 60 00 75 60 14 11 41 30 31 33 00 `...i`.u`..A013. + 1050: a4 7b 41 30 32 35 41 30 32 36 00 08 41 30 36 36 .{A025A026..A066 + 1060: 0a 00 08 41 30 36 37 0a 00 08 41 30 36 38 0a 00 ...A067...A068.. + 1070: 08 41 30 36 39 0a 00 08 41 30 37 30 0a 00 08 41 .A069...A070...A + 1080: 30 37 31 0a 00 08 41 30 37 32 11 13 0a 10 01 02 071...A072...... + 1090: 04 04 08 08 08 08 10 10 10 10 10 10 10 10 14 48 ...............H + 10a0: 0f 41 30 37 33 01 08 41 30 33 39 0a 00 08 41 30 .A073..A039...A0 + 10b0: 37 34 0a 00 70 0a 00 41 30 33 34 70 11 03 0a 0a 74..p..A034p.... + 10c0: 67 70 83 88 68 0a 03 00 41 30 33 39 70 83 88 68 gp..h...A039p..h + 10d0: 0a 04 00 41 30 37 34 70 0a 03 88 67 0a 00 00 70 ...A074p...g...p + 10e0: 0a 00 88 67 0a 01 00 70 41 30 37 34 88 67 0a 02 ...g...pA074.g.. + 10f0: 00 a2 47 05 92 94 41 30 33 34 41 30 30 31 a0 45 ..G...A034A001.E + 1100: 04 93 41 30 34 37 41 30 33 34 0a 01 70 41 30 30 ..A047A034..pA00 + 1110: 38 79 72 41 30 33 34 0a 02 00 0a 03 00 0a 18 61 8yrA034........a + 1120: 7b 7a 61 0a 10 00 0a ff 62 7b 7a 61 0a 08 00 0a {za.....b{za.... + 1130: ff 61 a0 11 90 92 95 41 30 33 39 61 92 94 41 30 .a.....A039a..A0 + 1140: 33 39 62 a5 75 41 30 33 34 a0 0c 94 41 30 33 34 39b.uA034...A034 + 1150: 41 30 30 31 a4 67 a0 13 92 94 41 30 37 35 41 30 A001.g....A075A0 + 1160: 33 34 0a 01 41 30 37 34 a4 67 70 83 88 41 30 37 34..A074.gp..A07 + 1170: 32 41 30 37 34 00 61 41 30 37 36 41 30 33 34 0a 2A074.aA076A034. + 1180: 01 0a 00 41 30 37 36 41 30 33 34 0a 02 61 70 61 ...A076A034..apa + 1190: 88 67 0a 02 00 a4 67 14 4c 06 41 30 37 37 09 70 .g....g.L.A077.p + 11a0: 83 88 68 0a 04 00 60 70 83 88 68 0a 02 00 61 74 ..h...`p..h...at + 11b0: 7a 61 0a 03 00 0a 02 61 a0 09 93 60 0a 01 70 0a za.....a...`..p. + 11c0: 06 62 a1 05 70 0a 04 62 70 41 30 37 38 61 62 60 .b..p..bpA078ab` + 11d0: 70 11 03 0a 0a 67 8b 67 0a 00 41 30 34 30 8c 67 p....g.g..A040.g + 11e0: 0a 02 41 30 34 31 8c 67 0a 03 41 30 37 39 70 0a ..A041.g..A079p. + 11f0: 04 41 30 34 30 70 0a 00 41 30 34 31 70 60 41 30 .A040p..A041p`A0 + 1200: 37 39 a4 67 08 41 30 38 30 11 0d 0a 0a 00 00 00 79.g.A080....... + 1210: 00 00 00 00 00 00 00 14 45 1a 41 30 37 38 0a 70 ........E.A078.p + 1220: 0a 00 64 70 41 30 38 31 68 67 70 83 88 67 0a 07 ..dpA081hgp..g.. + 1230: 00 61 a0 08 92 93 61 0a 01 a4 64 70 69 62 a2 4c .a....a...dpib.L + 1240: 17 92 93 62 0a 08 a0 41 04 93 62 0a 06 70 0a 00 ...b...A..b..p.. + 1250: 88 41 30 32 33 68 00 41 30 35 36 68 0a a2 80 0b .A023h.A056h.... + 1260: 00 20 00 0a 00 70 0a 00 41 30 32 36 41 30 33 36 . ...p..A026A036 + 1270: 41 30 37 36 68 0a 01 0a 00 41 30 38 32 68 0a 00 A076h....A082h.. + 1280: 70 0a 01 62 70 0a 00 63 a0 31 93 62 0a 01 7b 41 p..bp..c.1.b..{A + 1290: 30 35 39 68 0a a5 0a 3f 61 a0 0e 94 61 0a 04 70 059h...?a...a..p + 12a0: 0a 02 62 70 0a 00 63 9f a0 0b 95 63 0a 50 5b 22 ..bp..c....c.P[" + 12b0: 0a 01 75 63 a1 05 70 0a 04 62 a0 4c 06 93 62 0a ..uc..p..b.L..b. + 12c0: 02 70 41 30 35 39 68 0a a5 61 7b 61 0a 3f 61 a0 .pA059h..a{a.?a. + 12d0: 0a 93 61 0a 10 70 0a 05 62 9f a0 0c 95 63 0a 50 ..a..p..b....c.P + 12e0: 5b 22 0a 01 75 63 9f 70 0a 04 62 a0 0d 93 83 88 ["..uc.p..b..... + 12f0: 41 30 32 33 68 00 0a 01 9f a0 2d 93 41 30 38 33 A023h.....-.A083 + 1300: 68 0a 01 41 30 35 36 68 0a a2 80 0b 00 20 00 0b h..A056h..... .. + 1310: 00 20 70 0a 01 88 41 30 32 33 68 00 41 30 35 35 . p...A023h.A055 + 1320: 68 0a 01 70 0a 07 62 a0 23 93 62 0a 04 41 30 38 h..p..b.#.b..A08 + 1330: 32 68 0a 01 41 30 37 36 68 0a 00 0a 00 70 0a 01 2h..A076h....p.. + 1340: 88 41 30 32 33 68 00 70 0a 00 62 a0 4c 04 93 62 .A023h.p..b.L..b + 1350: 0a 07 a0 41 04 5b 12 5c 2e 5f 53 42 5f 41 4c 49 ...A.[.\._SB_ALI + 1360: 43 66 70 79 72 68 0a 02 00 0a 03 00 61 5c 2e 5f Cfpyrh......a\._ + 1370: 53 42 5f 41 4c 49 43 61 0a 00 5b 22 0a 02 5c 2e SB_ALICa..["..\. + 1380: 5f 53 42 5f 41 4c 49 43 61 0a 01 70 0a 00 63 70 _SB_ALICa..p..cp + 1390: 0a 01 62 9f 70 0a 04 62 a0 0d 93 62 0a 05 70 0a ..b.p..b...b..p. + 13a0: 01 64 70 0a 00 62 a0 14 93 62 0a 00 70 0a 01 41 .dp..b...b..p..A + 13b0: 30 32 36 41 30 33 36 70 0a 08 62 a4 64 14 40 0b 026A036p..b.d.@. + 13c0: 41 30 37 36 0b 70 41 30 38 31 68 67 70 83 88 67 A076.pA081hgp..g + 13d0: 0a 02 00 41 30 36 38 70 83 88 67 0a 03 00 41 30 ...A068p..g...A0 + 13e0: 36 39 a0 14 93 69 0a 00 41 30 38 34 68 41 30 36 69...i..A084hA06 + 13f0: 38 41 30 36 39 0a 01 a0 14 93 69 0a 01 41 30 38 8A069.....i..A08 + 1400: 34 68 41 30 36 38 41 30 36 39 0a 00 a0 09 92 93 4hA068A069...... + 1410: 69 0a 02 a4 0a 00 a0 0e 93 6a 0a 00 70 41 30 37 i........j..pA07 + 1420: 35 68 0a 00 62 a1 04 70 6a 62 a0 0e 92 94 41 30 5h..b..pjb....A0 + 1430: 37 35 68 0a 01 62 a4 0a 00 70 41 30 38 35 68 61 75h..b...pA085ha + 1440: a0 12 93 61 0a 00 72 41 30 36 38 62 63 70 41 30 ...a..rA068bcpA0 + 1450: 36 39 64 a1 0e 74 41 30 36 39 62 64 70 41 30 36 69d..tA069bdpA06 + 1460: 38 63 41 30 38 34 68 63 64 0a 01 a4 0a 00 14 40 8cA084hcd......@ + 1470: 09 41 30 38 33 01 70 11 03 0a 10 61 70 0a 00 60 .A083.p....ap..` + 1480: a2 45 05 92 94 60 0a 03 70 41 30 35 39 68 72 60 .E...`..pA059hr` + 1490: 0a a5 00 62 70 62 88 61 77 60 0a 04 00 00 70 7a ...bpb.aw`....pz + 14a0: 62 0a 08 00 88 61 72 77 60 0a 04 00 0a 01 00 00 b....arw`....... + 14b0: 70 7a 62 0a 10 00 88 61 72 77 60 0a 04 00 0a 02 pzb....arw`..... + 14c0: 00 00 70 7a 62 0a 18 00 88 61 72 77 60 0a 04 00 ..pzb....arw`... + 14d0: 0a 03 00 00 75 60 70 0a 00 60 a2 21 95 60 0a 0f ....u`p..`.!.`.. + 14e0: a0 19 90 93 83 88 61 60 00 0a 2a 93 83 88 61 72 ......a`..*...ar + 14f0: 60 0a 01 00 00 0a 09 a4 0a 01 75 60 a4 0a 00 14 `.........u`.... + 1500: 4b 04 41 30 38 35 09 70 41 30 38 31 68 67 70 83 K.A085.pA081hgp. + 1510: 88 67 0a 00 00 41 30 36 36 70 83 88 67 0a 01 00 .g...A066p..g... + 1520: 41 30 36 37 70 0a 00 60 a0 0e 94 41 30 36 36 41 A067p..`...A066A + 1530: 30 36 37 70 0a 01 60 7b 41 30 35 39 68 0a 50 0a 067p..`{A059h.P. + 1540: 01 61 a4 7b 7f 60 61 00 0a 01 00 14 49 05 41 30 .a.{.`a.....I.A0 + 1550: 38 32 02 70 41 30 38 31 68 67 70 83 88 67 0a 04 82.pA081hgp..g.. + 1560: 00 41 30 37 31 70 7d 79 83 88 67 72 0a 05 0a 01 .A071p}y..gr.... + 1570: 00 00 0a 08 00 83 88 67 0a 05 00 00 41 30 37 30 .......g....A070 + 1580: 41 30 31 37 0a 00 0a e0 7d 79 41 30 37 30 0a 10 A017....}yA070.. + 1590: 00 72 0b 00 08 77 0b 00 01 41 30 37 31 00 00 00 .r...w...A071... + 15a0: 80 0a 01 00 69 08 41 30 38 36 11 0a 0a 07 00 01 ....i.A086...... + 15b0: 02 04 08 0c 10 14 4b 06 41 30 37 35 02 a0 1e 93 ......K.A075.... + 15c0: 69 0a 00 7b 7a 41 30 35 39 68 0a a2 0a 04 00 0a i..{zA059h...... + 15d0: 07 60 70 83 88 41 30 38 36 60 00 61 a1 42 04 70 .`p..A086`.a.B.p + 15e0: 41 30 38 31 68 67 70 83 88 67 0a 00 00 41 30 36 A081hgp..g...A06 + 15f0: 36 70 83 88 67 0a 01 00 41 30 36 37 a0 14 94 41 6p..g...A067...A + 1600: 30 36 36 41 30 36 37 74 41 30 36 36 41 30 36 37 066A067tA066A067 + 1610: 61 a1 0b 74 41 30 36 37 41 30 36 36 61 75 61 a4 a..tA067A066aua. + 1620: 61 14 4c 09 41 30 38 34 0c 70 41 30 38 31 68 67 a.L.A084.pA081hg + 1630: 70 69 41 30 36 38 70 6a 41 30 36 39 70 7d 79 83 piA068pjA069p}y. + 1640: 88 67 72 0a 05 0a 01 00 00 0a 08 00 83 88 67 0a .gr...........g. + 1650: 05 00 00 41 30 37 30 a0 1a 94 41 30 36 38 41 30 ...A070...A068A0 + 1660: 36 39 74 41 30 36 38 41 30 36 39 61 70 41 30 36 69tA068A069apA06 + 1670: 39 62 a1 11 74 41 30 36 39 41 30 36 38 61 70 41 9b..tA069A068apA + 1680: 30 36 38 62 79 74 79 0a 01 72 61 0a 01 00 00 0a 068byty..ra..... + 1690: 01 00 62 63 70 80 63 00 64 a0 09 93 6b 0a 01 70 ..bcp.c.d...k..p + 16a0: 0a 00 63 41 30 31 37 0a 00 0a e0 7d 79 41 30 37 ..cA017....}yA07 + 16b0: 30 0a 10 00 0b 23 80 00 64 63 5b 21 0a 0a 08 41 0....#..dc[!...A + 16c0: 30 30 32 0a 00 08 41 30 30 33 0a 00 08 41 30 30 002...A003...A00 + 16d0: 34 0a 00 08 41 30 30 35 0a 00 14 45 0d 41 30 30 4...A005...E.A00 + 16e0: 36 01 70 7d 79 0a 18 0a 03 00 0a 04 00 61 a0 35 6.p}y........a.5 + 16f0: 93 41 30 30 35 0a 00 70 41 30 30 37 0b 80 85 41 .A005..pA007...A + 1700: 30 30 33 70 41 30 30 38 61 0b 5c 01 41 30 30 32 003pA008a.\.A002 + 1710: 70 41 30 30 38 61 0b a4 01 41 30 30 34 70 0a 01 pA008a...A004p.. + 1720: 41 30 30 35 70 41 30 30 37 0b 80 85 60 70 7d 79 A005pA007...`p}y + 1730: 0a 18 0a 03 00 0a 04 00 61 70 41 30 30 38 61 0b ........apA008a. + 1740: 5c 01 62 70 41 30 30 38 61 0b a4 01 63 a0 1a 93 \.bpA008a...c... + 1750: 68 0a 01 7b 60 0c fe ff ff ff 60 7b 62 0c fc ff h..{`.....`{b... + 1760: ff ff 62 7d 63 0a 03 63 a1 25 7d 60 7b 41 30 30 ..b}c..c.%}`{A00 + 1770: 33 0a 01 00 60 7d 62 7b 41 30 30 32 0a 03 00 62 3...`}b{A002...b + 1780: 7b 63 7d 0c fc ff ff ff 41 30 30 34 00 63 41 30 {c}.....A004.cA0 + 1790: 30 39 61 0b a4 01 63 41 30 30 39 61 0b 5c 01 62 09a...cA009a.\.b + 17a0: 41 30 31 30 0b 80 85 60 41 30 31 31 0a 12 0a 03 A010...`A011.... + 17b0: 14 41 06 41 30 31 32 01 70 41 30 31 33 61 70 41 .A.A012.pA013apA + 17c0: 30 30 37 0b 90 84 60 a0 4a 04 92 93 7b 60 0a f0 007...`.J...{`.. + 17d0: 00 0a 00 a0 12 93 68 0a 02 7b 60 0c a0 ff ff ff ......h..{`..... + 17e0: 60 7d 60 0a a0 60 a1 23 a0 12 93 61 0a 00 7b 60 `}`..`.#...a..{` + 17f0: 0c 60 ff ff ff 60 7d 60 0a 60 60 a1 0e 7b 60 0c .`...`}`.``..{`. + 1800: 20 ff ff ff 60 7d 60 0a 20 60 41 30 31 30 0b 90 ...`}`. `A010.. + 1810: 84 60 08 41 44 30 41 0a 00 14 47 04 41 30 31 34 .`.AD0A...G.A014 + 1820: 01 a0 3f 93 41 44 30 41 0a 01 70 41 30 31 33 61 ..?.AD0A..pA013a + 1830: 70 41 30 30 37 0b 2c 84 60 7b 60 0c fe ff ff ff pA007.,.`{`..... + 1840: 60 a0 0f 90 93 68 0a 01 93 61 0a 01 7d 60 0a 01 `....h...a..}`.. + 1850: 60 41 30 31 30 0b 2c 84 60 41 30 31 31 0a 1b 0a `A010.,.`A011... + 1860: 03 14 48 0a 41 30 31 35 01 70 68 60 a0 09 93 68 ..H.A015.ph`...h + 1870: 0a 02 70 0a 00 60 a0 49 04 92 93 41 30 31 36 0a ..p..`.I...A016. + 1880: 00 0a e0 0c 23 80 30 01 0a 00 41 30 31 37 0a 00 ....#.0...A017.. + 1890: 0a e0 0c 16 80 30 01 80 0b 00 10 00 79 60 0a 0c .....0......y`.. + 18a0: 00 a2 1e 92 93 7b 41 30 31 36 0a 00 0a e0 0c 16 .....{A016...... + 18b0: 80 30 01 0b 00 20 00 79 60 0a 0d 00 5b 21 0a 0a .0... .y`...[!.. + 18c0: a0 49 04 92 93 41 30 31 36 0a 00 0a e0 0c 23 80 .I...A016.....#. + 18d0: 31 01 0a 00 41 30 31 37 0a 00 0a e0 0c 16 80 31 1...A017.......1 + 18e0: 01 80 0b 00 10 00 79 60 0a 0c 00 a2 1e 92 93 7b ......y`.......{ + 18f0: 41 30 31 36 0a 00 0a e0 0c 16 80 31 01 0b 00 20 A016.......1... + 1900: 00 79 60 0a 0d 00 5b 21 0a 0a .y`...[!.. + +UEFI3 @ 0x00000000 + 0000: 55 45 46 49 42 02 00 00 01 91 44 45 4c 4c 20 20 UEFIB.....DELL + 0010: 51 41 30 39 20 20 20 00 02 00 00 00 50 54 4c 20 QA09 .....PTL + 0020: 02 00 00 00 97 b1 9f 0d fc ce 91 4e ac b1 25 35 ...........N..%5 + 0030: d9 e5 a8 44 36 00 1a 00 00 00 42 00 00 00 43 00 ...D6.....B...C. + 0040: 00 00 44 00 00 00 45 00 00 00 46 00 00 00 47 00 ..D...E...F...G. + 0050: 00 00 48 00 00 00 49 00 00 00 4a 00 00 00 4b 00 ..H...I...J...K. + 0060: 00 00 4d 00 00 00 f2 00 00 00 f1 00 00 00 f3 00 ..M............. + 0070: 00 00 81 00 00 00 e9 00 00 00 01 00 00 00 ab 00 ................ + 0080: 00 00 02 00 00 00 03 00 00 00 c1 00 00 00 04 00 ................ + 0090: 00 00 05 00 00 00 06 00 00 00 07 00 00 00 08 00 ................ + 00a0: 00 00 83 0c fa 0e d7 03 b9 44 9c 8d 6f 32 e6 3e .........D..o2.> + 00b0: c0 98 78 98 e4 93 55 ad fd 46 b6 16 6c 4e 69 9a ..x...U..F..lNi. + 00c0: 6b 9e e9 79 fb c0 21 28 21 4c 9a bb 9e 7e b2 ca k..y..!(!L...~.. + 00d0: 15 f4 39 12 2f ce 28 7d f2 43 b5 15 5e 60 9f 10 ..9./.(}.C..^`.. + 00e0: 06 0c b8 6e 83 9e 86 8a 60 4a 83 a9 d4 41 e9 6a ...n....`J...A.j + 00f0: 27 05 62 40 78 f8 bd 63 de 44 af 27 f8 27 fd 67 '.b@x..c.D.'.'.g + 0100: 89 06 c5 c0 04 ae 4c 4b 82 44 a3 53 c1 38 2b 4a ......LK.D.S.8+J + 0110: 08 48 ed 36 ec ca ae c7 d9 4e b5 e1 e3 4e 15 cb .H.6.....N...N.. + 0120: 8f 04 4a df a9 58 ef fb c8 4d a3 9f 8d b6 be 0f ..J..X...M...... + 0130: 83 70 1d b2 04 dc 15 5d 50 4d a2 d8 5d 1b 4f 82 .p.....]PM..].O. + 0140: ac 11 8f 0a 9e ca 15 f8 29 4a a7 16 eb ae 45 ca ........)J....E. + 0150: 63 6e e2 36 f7 1b fc f4 39 4c 9e 9b ce a8 35 39 cn.6....9L....59 + 0160: c3 1a 9c 9c c7 c4 09 9f 51 41 99 c4 53 a0 0a 4a ........QA..S..J + 0170: 94 96 00 a8 63 ef 86 95 fb 42 84 ab ea 59 0b f1 ....c....B...Y.. + 0180: 41 aa 3d be 20 33 92 49 cd 4f b8 6c 60 e5 e9 15 A.=. 3.I.O.l`... + 0190: 69 1e 58 dc af d8 22 6e f8 42 99 66 36 ff 78 8c i.X..."n.B.f6.x. + 01a0: 9c af 5e 1d 9c 62 bd f6 52 4f 8a 5f 93 96 e7 28 ..^..b..RO._...( + 01b0: 9b ec c1 50 59 3f ba 9c 76 4e b2 aa 83 4f da 5e ...PY?..vN...O.^ + 01c0: 07 c9 14 d5 a5 bb 70 a9 56 41 8d dd a5 ed e2 1b ......p.VA...... + 01d0: bf 5f 7f ee 45 d0 be 98 eb 4f bd 30 d6 76 37 7d ._..E....O.0.v7} + 01e0: ce f8 38 b4 91 da 47 8b 0a 4d ad 56 c7 28 a9 4c ..8...G..M.V.(.L + 01f0: 7f 58 aa 9b df 6c 34 f9 c2 43 a8 5f 28 63 86 a9 .X...l4..C._(c.. + 0200: 76 c4 a9 0b 09 b4 66 d2 03 4e be 37 ad bd bc 85 v.....f..N.7.... + 0210: 63 fd 9c 7c 96 6e 42 8e 65 48 9d 6c 4f 80 05 2f c..|.nB.eH.lO../ + 0220: 2c 0e ec 9a 91 b8 9c 93 4b 47 a9 18 29 9f b2 65 ,.......KG..)..e + 0230: 93 6c 8a 8c 3c 24 d0 bb a9 4a be 17 cf 9b 58 31 .l..<$...J....X1 + 0240: 30 ec 0. \ No newline at end of file diff -Nru fwts-14.02.00/fwts-test/wmi-0001/test-0001.sh fwts-14.03.00/fwts-test/wmi-0001/test-0001.sh --- fwts-14.02.00/fwts-test/wmi-0001/test-0001.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/test-0001.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test wmi against known correct ACPI tables" +NAME=test-0001.sh +TMPLOG=$TMP/wmi.log.$$ + +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/wmi-0001/acpidump-0001.log wmi - | grep "^[0-9]*[ ]*wmi" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/wmi-0001/wmi-0001.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/wmi-0001/test-0002.sh fwts-14.03.00/fwts-test/wmi-0001/test-0002.sh --- fwts-14.02.00/fwts-test/wmi-0001/test-0002.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/test-0002.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test wmi against known correct ACPI tables" +NAME=test-0002.sh +TMPLOG=$TMP/wmi.log.$$ + +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/wmi-0001/acpidump-0002.log wmi - | grep "^[0-9]*[ ]*wmi" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/wmi-0001/wmi-0002.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/wmi-0001/test-0003.sh fwts-14.03.00/fwts-test/wmi-0001/test-0003.sh --- fwts-14.02.00/fwts-test/wmi-0001/test-0003.sh 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/test-0003.sh 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,23 @@ +#!/bin/bash +# +TEST="Test wmi against known incorrect ACPI tables" +NAME=test-0003.sh +TMPLOG=$TMP/wmi.log.$$ + +$FWTS --show-tests | grep wmi > /dev/null +if [ $? -eq 1 ]; then + echo SKIP: $TEST, $NAME + exit 77 +fi + +$FWTS --log-format="%line %owner " -w 80 --dumpfile=$FWTSTESTDIR/wmi-0001/acpidump-0003.log wmi - | grep "^[0-9]*[ ]*wmi" | cut -c7- > $TMPLOG +diff $TMPLOG $FWTSTESTDIR/wmi-0001/wmi-0003.log >> $FAILURE_LOG +ret=$? +if [ $ret -eq 0 ]; then + echo PASSED: $TEST, $NAME +else + echo FAILED: $TEST, $NAME +fi + +rm $TMPLOG +exit $ret diff -Nru fwts-14.02.00/fwts-test/wmi-0001/wmi-0001.log fwts-14.03.00/fwts-test/wmi-0001/wmi-0001.log --- fwts-14.02.00/fwts-test/wmi-0001/wmi-0001.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/wmi-0001.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,123 @@ +wmi wmi: Extract and analyse Windows Management +wmi Instrumentation (WMI). +wmi ---------------------------------------------------------- +wmi Test 1 of 1: Windows Management Instrumentation test. +wmi +wmi \_SB_.WMI1._WDG (1 of 9) +wmi GUID: 51F5230E-9677-46CD-A1CF-C0B23EE34DB7 +wmi WMI Object: +wmi Flags : 0x05 (Expensive | String) +wmi Object ID : A0 +wmi Instance : 0x50 +wmi +wmi \_SB_.WMI1._WDG (2 of 9) +wmi GUID: 98479A64-33F5-4E33-A707-8E251EBBC3A1 +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A1 +wmi Instance : 0x01 +wmi PASSED: Test 1, 98479A64-33F5-4E33-A707-8E251EBBC3A1 has +wmi associated method \_SB_.WMI1.WMA1 +wmi +wmi \_SB_.WMI1._WDG (3 of 9) +wmi GUID: 6A4B54EF-A5ED-4D33-9455-B0D9B48DF4B3 +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A2 +wmi Instance : 0x01 +wmi PASSED: Test 1, 6A4B54EF-A5ED-4D33-9455-B0D9B48DF4B3 has +wmi associated method \_SB_.WMI1.WMA2 +wmi +wmi \_SB_.WMI1._WDG (4 of 9) +wmi GUID: 74F1EBB6-927A-4C7D-95DF-698E21E80EB5 +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A3 +wmi Instance : 0x01 +wmi PASSED: Test 1, 74F1EBB6-927A-4C7D-95DF-698E21E80EB5 has +wmi associated method \_SB_.WMI1.WMA3 +wmi +wmi \_SB_.WMI1._WDG (5 of 9) +wmi GUID: 7EEF04FF-4328-447C-B5BB-D449925D538D +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A4 +wmi Instance : 0x01 +wmi PASSED: Test 1, 7EEF04FF-4328-447C-B5BB-D449925D538D has +wmi associated method \_SB_.WMI1.WMA4 +wmi +wmi \_SB_.WMI1._WDG (6 of 9) +wmi GUID: 8ADB159E-1E32-455C-BC93-308A7ED98246 +wmi WMI Object: +wmi Flags : 0x01 (Expensive) +wmi Object ID : A5 +wmi Instance : 0x01 +wmi +wmi \_SB_.WMI1._WDG (7 of 9) +wmi GUID: 2651D9FD-911C-4B69-B94E-D0DED5963BD7 +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A6 +wmi Instance : 0x01 +wmi PASSED: Test 1, 2651D9FD-911C-4B69-B94E-D0DED5963BD7 has +wmi associated method \_SB_.WMI1.WMA6 +wmi +wmi \_SB_.WMI1._WDG (8 of 9) +wmi GUID: 7364651A-132F-4FE7-ADAA-40C6C7EE2E3B +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : A7 +wmi Instance : 0x01 +wmi PASSED: Test 1, 7364651A-132F-4FE7-ADAA-40C6C7EE2E3B has +wmi associated method \_SB_.WMI1.WMA7 +wmi +wmi \_SB_.WMI1._WDG (9 of 9) +wmi GUID: 05901221-D566-11D1-B2F0-00A0C9062910 +wmi WMI Object: +wmi Flags : 0x00 (None) +wmi Object ID : BA +wmi Instance : 0x01 +wmi +wmi \_SB_.WMI2._WDG (1 of 5) +wmi GUID: FCB424F1-075A-4E0E-BFC4-62F3E71771FA +wmi WMI Object: +wmi Flags : 0x01 (Expensive) +wmi Object ID : A7 +wmi Instance : 0x01 +wmi +wmi \_SB_.WMI2._WDG (2 of 5) +wmi GUID: E2BE5EE3-42DA-49DB-8378-1F5247388202 +wmi WMI Method: +wmi Flags : 0x02 (Method) +wmi Object ID : A8 +wmi Instance : 0x01 +wmi PASSED: Test 1, E2BE5EE3-42DA-49DB-8378-1F5247388202 has +wmi associated method \_SB_.WMI2.WMA8 +wmi +wmi \_SB_.WMI2._WDG (3 of 5) +wmi GUID: 7430019A-DCE9-4548-BAB0-9FDE0935CAFF +wmi WMI Object: +wmi Flags : 0x05 (Expensive | String) +wmi Object ID : A9 +wmi Instance : 0x0a +wmi +wmi \_SB_.WMI2._WDG (4 of 5) +wmi GUID: 7FF47003-3B6C-4E5E-A227-E979824A85D1 +wmi WMI Method: +wmi Flags : 0x06 (Method | String) +wmi Object ID : AA +wmi Instance : 0x01 +wmi PASSED: Test 1, 7FF47003-3B6C-4E5E-A227-E979824A85D1 has +wmi associated method \_SB_.WMI2.WMAA +wmi +wmi \_SB_.WMI2._WDG (5 of 5) +wmi GUID: 05901221-D566-11D1-B2F0-00A0C9062910 +wmi WMI Object: +wmi Flags : 0x00 (None) +wmi Object ID : BB +wmi Instance : 0x01 +wmi +wmi ========================================================== +wmi 8 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +wmi info only. +wmi ========================================================== diff -Nru fwts-14.02.00/fwts-test/wmi-0001/wmi-0002.log fwts-14.03.00/fwts-test/wmi-0001/wmi-0002.log --- fwts-14.02.00/fwts-test/wmi-0001/wmi-0002.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/wmi-0002.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,37 @@ +wmi wmi: Extract and analyse Windows Management +wmi Instrumentation (WMI). +wmi ---------------------------------------------------------- +wmi Test 1 of 1: Windows Management Instrumentation test. +wmi +wmi \_SB_.ATKD._WDG (1 of 2) +wmi GUID: 97845ED0-4E6D-11DE-8A39-0800200C9A66 +wmi WMI Method: +wmi Flags : 0x02 (Method) +wmi Object ID : NB +wmi Instance : 0x01 +wmi Driver : eeepc-wmi (Asus) +wmi PASSED: Test 1, 97845ED0-4E6D-11DE-8A39-0800200C9A66 has +wmi associated method \_SB_.ATKD.WMNB +wmi +wmi \_SB_.ATKD._WDG (2 of 2) +wmi GUID: 0B3CBB35-E3C2-45ED-91C2-4C5A6D195D1C +wmi WMI Event: +wmi Flags : 0x08 (Event) +wmi Notification ID: 0xff +wmi Reserved : 0x00 +wmi Instance : 0x01 +wmi FAILED [MEDIUM] WMIUnknownGUID: Test 1, GUID +wmi 0B3CBB35-E3C2-45ED-91C2-4C5A6D195D1C is unknown to the +wmi kernel, a driver may need to be implemented for this GUID. +wmi A WMI driver probably needs to be written for this WMI +wmi event. It can checked for using: +wmi wmi_has_guid("0B3CBB35-E3C2-45ED-91C2-4C5A6D195D1C"). One +wmi can install a notify handler using +wmi wmi_install_notify_handler("0B3CBB35-E3C2-45ED-91C2-4C5A6D195D1C" +wmi , handler, NULL). http://lwn.net/Articles/391230 describes +wmi how to write an appropriate driver. +wmi +wmi ========================================================== +wmi 1 passed, 1 failed, 0 warning, 0 aborted, 0 skipped, 0 +wmi info only. +wmi ========================================================== diff -Nru fwts-14.02.00/fwts-test/wmi-0001/wmi-0003.log fwts-14.03.00/fwts-test/wmi-0001/wmi-0003.log --- fwts-14.02.00/fwts-test/wmi-0001/wmi-0003.log 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/fwts-test/wmi-0001/wmi-0003.log 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,59 @@ +wmi wmi: Extract and analyse Windows Management +wmi Instrumentation (WMI). +wmi ---------------------------------------------------------- +wmi Test 1 of 1: Windows Management Instrumentation test. +wmi +wmi \_SB_.AMW0._WDG (1 of 6) +wmi GUID: 8D9DDCBC-A997-11DA-B012-B622A1EF5492 +wmi WMI Object: +wmi Flags : 0x00 (None) +wmi Object ID : AA +wmi Instance : 0x01 +wmi +wmi \_SB_.AMW0._WDG (2 of 6) +wmi GUID: A80593CE-A997-11DA-B012-B622A1EF5492 +wmi WMI Method: +wmi Flags : 0x02 (Method) +wmi Object ID : BA +wmi Instance : 0x01 +wmi PASSED: Test 1, A80593CE-A997-11DA-B012-B622A1EF5492 has +wmi associated method \_SB_.AMW0.WMBA +wmi +wmi \_SB_.AMW0._WDG (3 of 6) +wmi GUID: DD8C7670-1CB5-11DB-A98B-669A0C200008 +wmi WMI Method: +wmi Flags : 0x02 (Method) +wmi Object ID : BC +wmi Instance : 0x01 +wmi PASSED: Test 1, DD8C7670-1CB5-11DB-A98B-669A0C200008 has +wmi associated method \_SB_.AMW0.WMBC +wmi +wmi \_SB_.AMW0._WDG (4 of 6) +wmi GUID: 9DBB5994-A997-11DA-B012-B622A1EF5492 +wmi WMI Event: +wmi Flags : 0x08 (Event) +wmi Notification ID: 0xd0 +wmi Reserved : 0x00 +wmi Instance : 0x01 +wmi Driver : dell-wmi (Dell) +wmi +wmi \_SB_.AMW0._WDG (5 of 6) +wmi GUID: A3776CE0-1E88-11DB-A98B-0800200C9A66 +wmi WMI Object: +wmi Flags : 0x00 (None) +wmi Object ID : BC +wmi Instance : 0x01 +wmi +wmi \_SB_.AMW0._WDG (6 of 6) +wmi GUID: 05901221-D566-11D1-B2F0-00A0C9062910 +wmi WMI Object: +wmi Flags : 0x00 (None) +wmi Object ID : MO +wmi Instance : 0x01 +wmi PASSED: Test 1, All events associated with \_SB_.AMW0._WDG +wmi are handled by a kernel driver. +wmi +wmi ========================================================== +wmi 3 passed, 0 failed, 0 warning, 0 aborted, 0 skipped, 0 +wmi info only. +wmi ========================================================== diff -Nru fwts-14.02.00/Makefile.am fwts-14.03.00/Makefile.am --- fwts-14.02.00/Makefile.am 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/Makefile.am 2014-03-17 07:16:47.000000000 +0000 @@ -1,3 +1,79 @@ SUBDIRS = src data src/utilities ACLOCAL_AMFLAGS = -I m4 + +TESTS_ENVIRONMENT = export LC_ALL=C; +TESTS_ENVIRONMENT += export FWTS='$(srcdir)/src/fwts'; +TESTS_ENVIRONMENT += export FWTSTESTDIR='$(srcdir)/fwts-test'; +TESTS_ENVIRONMENT += export TMP=/tmp; +TESTS_ENVIRONMENT += export FAILURE_LOG=/tmp/failure.log; + +TESTS = fwts-test/acpidump-0001/test-0001.sh \ + fwts-test/acpitables-0001/test-0001.sh \ + fwts-test/acpitables-0002/test-0001.sh \ + fwts-test/acpitables-0002/test-0002.sh \ + fwts-test/acpitables-0003/test-0001.sh \ + fwts-test/acpitables-0004/test-0001.sh \ + fwts-test/acpitables-0005/test-0001.sh \ + fwts-test/acpitables-0006/test-0001.sh \ + fwts-test/acpitables-0007/test-0001.sh \ + fwts-test/acpitables-0008/test-0001.sh \ + fwts-test/apicinstance-0001/test-0001.sh \ + fwts-test/apicinstance-0001/test-0002.sh \ + fwts-test/arg-help-0001/test-0001.sh \ + fwts-test/arg-help-0001/test-0002.sh \ + fwts-test/arg-json-0001/test-0001.sh \ + fwts-test/arg-json-0001/test-0002.sh \ + fwts-test/arg-json-0001/test-0003.sh \ + fwts-test/arg-json-0001/test-0004.sh \ + fwts-test/arg-klog-0001/test-0001.sh \ + fwts-test/arg-klog-0001/test-0002.sh \ + fwts-test/arg-log-fields-0001/test-0001.sh \ + fwts-test/arg-log-format-0001/test-0001.sh \ + fwts-test/arg-log-format-0001/test-0002.sh \ + fwts-test/arg-log-format-0001/test-0003.sh \ + fwts-test/arg-log-format-0001/test-0004.sh \ + fwts-test/arg-quiet-0001/test-0001.sh \ + fwts-test/arg-quiet-0001/test-0002.sh \ + fwts-test/arg-results-0001/test-0001.sh \ + fwts-test/arg-results-0001/test-0002.sh \ + fwts-test/arg-results-0001/test-0003.sh \ + fwts-test/arg-results-0001/test-0004.sh \ + fwts-test/arg-results-0001/test-0005.sh \ + fwts-test/arg-results-0001/test-0006.sh \ + fwts-test/arg-results-no-separators-0001/test-0001.sh \ + fwts-test/arg-show-progress-dialog-0001/test-0001.sh \ + fwts-test/arg-show-progress-dialog-0001/test-0002.sh \ + fwts-test/arg-show-tests-0001/test-0001.sh \ + fwts-test/arg-show-tests-0001/test-0002.sh \ + fwts-test/arg-show-tests-full-0001/test-0001.sh \ + fwts-test/arg-table-path-0001/test-0001.sh \ + fwts-test/arg-table-path-0001/test-0002.sh \ + fwts-test/arg-width-0001/test-0001.sh \ + fwts-test/arg-width-0001/test-0002.sh \ + fwts-test/arg-width-0001/test-0003.sh \ + fwts-test/arg-width-0001/test-0004.sh \ + fwts-test/arg-width-0001/test-0005.sh \ + fwts-test/arg-width-0001/test-0006.sh \ + fwts-test/arg-width-0001/test-0007.sh \ + fwts-test/arg-width-0001/test-0008.sh \ + fwts-test/checksum-0001/test-0001.sh \ + fwts-test/checksum-0001/test-0003.sh \ + fwts-test/checksum-0001/test-0004.sh \ + fwts-test/disassemble-0001/test-0001.sh \ + fwts-test/klog-0001/test-0001.sh \ + fwts-test/klog-0001/test-0002.sh \ + fwts-test/klog-0001/test-0003.sh \ + fwts-test/klog-0002/test-0001.sh \ + fwts-test/klog-0002/test-0002.sh \ + fwts-test/klog-0002/test-0003.sh \ + fwts-test/method-0001/test-0001.sh \ + fwts-test/oops-0001/test-0001.sh \ + fwts-test/oops-0001/test-0002.sh \ + fwts-test/oops-0001/test-0003.sh \ + fwts-test/osilinux-0001/test-0001.sh \ + fwts-test/osilinux-0001/test-0002.sh \ + fwts-test/syntaxcheck-0001/test-0001.sh \ + fwts-test/wmi-0001/test-0001.sh \ + fwts-test/wmi-0001/test-0002.sh \ + fwts-test/wmi-0001/test-0003.sh diff -Nru fwts-14.02.00/src/acpi/acpidump/acpidump.c fwts-14.03.00/src/acpi/acpidump/acpidump.c --- fwts-14.02.00/src/acpi/acpidump/acpidump.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/acpi/acpidump/acpidump.c 2014-03-17 07:16:47.000000000 +0000 @@ -2006,8 +2006,20 @@ fwts_infoonly(fw); for (i = 0; (fwts_acpi_get_table(fw, i, &table) == FWTS_OK) && (table !=NULL); i++) { - fwts_log_info_verbatum(fw, "%s @ %lx (%zd bytes)", - table->name, (unsigned long)table->addr, table->length); + char *provenance; + switch (table->provenance) { + case FWTS_ACPI_TABLE_FROM_FILE: + provenance = " (loaded from file)"; + break; + case FWTS_ACPI_TABLE_FROM_FIXUP: + provenance = " (generated by fwts)"; + break; + default: + provenance = ""; + break; + } + fwts_log_info_verbatum(fw, "%s @ %lx (%zd bytes)%s", + table->name, (unsigned long)table->addr, table->length, provenance); fwts_log_info_verbatum(fw, "----"); acpidump_table(fw, table); fwts_log_nl(fw); diff -Nru fwts-14.02.00/src/acpi/acpiinfo/acpiinfo.c fwts-14.03.00/src/acpi/acpiinfo/acpiinfo.c --- fwts-14.02.00/src/acpi/acpiinfo/acpiinfo.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/acpi/acpiinfo/acpiinfo.c 2014-03-17 07:16:47.000000000 +0000 @@ -18,8 +18,6 @@ */ #include "fwts.h" -#ifdef FWTS_ARCH_INTEL - #include #include #include @@ -152,5 +150,3 @@ }; FWTS_REGISTER("acpiinfo", &acpiinfo_ops, FWTS_TEST_EARLY, FWTS_FLAG_BATCH); - -#endif diff -Nru fwts-14.02.00/src/acpi/acpitables/acpitables.c fwts-14.03.00/src/acpi/acpitables/acpitables.c --- fwts-14.02.00/src/acpi/acpitables/acpitables.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/acpi/acpitables/acpitables.c 2014-03-17 07:16:47.000000000 +0000 @@ -89,16 +89,6 @@ } else { if (table->length >= 140) { if (fadt->x_firmware_ctrl != 0) { - fwts_failed(fw, LOG_LEVEL_MEDIUM, "FADT32And64BothDefined", "FADT 32 bit FIRMWARE_CONTROL is non-zero, and X_FIRMWARE_CONTROL is also non-zero. " - "Section 5.2.9 of the ACPI specification states that if the FIRMWARE_CONTROL is non-zero " - "then X_FIRMWARE_CONTROL must be set to zero."); - fwts_advice(fw, "The FADT FIRMWARE_CTRL is a 32 bit pointer that points to the physical memory address " - "of the Firmware ACPI Control Structure (FACS). There is also an extended 64 bit version " - "of this, the X_FIRMWARE_CTRL pointer that also can point to the FACS. Section 5.2.9 of " - "the ACPI specification states that if the X_FIRMWARE_CTRL field contains a non zero value " - "then the FIRMWARE_CTRL field *must* be zero. This error is also detected by the Linux kernel. " - "If FIRMWARE_CTRL and X_FIRMWARE_CTRL are defined, then the kernel just uses the 64 bit version of " - "the pointer."); if (((uint64_t)fadt->firmware_control != fadt->x_firmware_ctrl)) { fwts_failed(fw, LOG_LEVEL_MEDIUM, "FwCtrl32and64Differ", "FIRMWARE_CONTROL is 0x%" PRIx32 " and differs " diff -Nru fwts-14.02.00/src/acpi/checksum/checksum.c fwts-14.03.00/src/acpi/checksum/checksum.c --- fwts-14.02.00/src/acpi/checksum/checksum.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/acpi/checksum/checksum.c 2014-03-17 07:16:47.000000000 +0000 @@ -23,6 +23,8 @@ #include #include #include +#include +#include #include "fwts.h" @@ -44,15 +46,15 @@ checksum = fwts_checksum(table->data, 20); if (checksum != 0) { fwts_failed(fw, LOG_LEVEL_CRITICAL, "ACPITableChecksumRSDP", - "RSDP has incorrect checksum, expected 0x%2.2x, " - "got 0x%2.2x.", - (uint8_t)(rsdp->checksum)-checksum, rsdp->checksum); + "RSDP has incorrect checksum, expected 0x%2.2" PRIx8 ", " + "got 0x%2.2" PRIx8 ".", + (uint8_t)(rsdp->checksum-checksum), rsdp->checksum); fwts_advice(fw, "The kernel will not load the RSDP with an " "invalid checksum and hence all other ACPI " "tables will also fail to load."); } else - fwts_passed(fw, "Table RSDP has correct checksum 0x%x.", + fwts_passed(fw, "Table RSDP has correct checksum 0x%2.2" PRIx8 ".", rsdp->checksum); /* @@ -75,7 +77,7 @@ fwts_failed(fw, LOG_LEVEL_CRITICAL, "ACPITableChecksumRSDP", "RSDP has incorrect extended checksum, " - "expected 0x%2.2x, got 0x%2.2x.", + "expected 0x%2.2" PRIx8 ", got 0x%2.2" PRIx8 ".", (uint8_t)(rsdp->extended_checksum-checksum), rsdp->extended_checksum); fwts_advice(fw, @@ -84,7 +86,7 @@ "other ACPI tables will also fail to load."); } else fwts_passed(fw, "Table RSDP has correct extended " - "checksum 0x%x.", rsdp->extended_checksum); + "checksum 0x%2.2" PRIx8 ".", rsdp->extended_checksum); } } @@ -118,12 +120,12 @@ checksum = fwts_checksum(table->data, table->length); if (checksum == 0) - fwts_passed(fw, "Table %s has correct checksum 0x%x.", + fwts_passed(fw, "Table %s has correct checksum 0x%2.2" PRIx8, table->name, hdr->checksum); else { fwts_failed(fw, LOG_LEVEL_MEDIUM, "ACPITableChecksum", "Table %s has incorrect checksum, " - "expected 0x%2.2x, got 0x%2.2x.", + "expected 0x%2.2" PRIx8 ", got 0x%2.2" PRIx8 ".", table->name, (uint8_t)(hdr->checksum-checksum), hdr->checksum); diff -Nru fwts-14.02.00/src/acpi/gpedump/gpedump.c fwts-14.03.00/src/acpi/gpedump/gpedump.c --- fwts-14.02.00/src/acpi/gpedump/gpedump.c 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/src/acpi/gpedump/gpedump.c 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,182 @@ +/* + * Copyright (C) 2014 Canonical + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ +#include "fwts.h" +#include +#include +#include +#include + +/* acpica headers */ +#include "acpi.h" +#include "aclocal.h" +#include "acobject.h" +#include "acstruct.h" +#include "acglobal.h" +#include "fwts_acpi_object_eval.h" + +/* + * gpedump_init() + * initialize ACPI + */ +static int gpedump_init(fwts_framework *fw) +{ + if (fwts_acpi_init(fw) != FWTS_OK) { + fwts_log_error(fw, "Cannot initialise ACPI."); + return FWTS_ERROR; + } + + return FWTS_OK; +} + +/* + * gpedump_deinit + * de-intialize ACPI + */ +static int gpedump_deinit(fwts_framework *fw) +{ + return fwts_acpi_deinit(fw); +} + +static void gpu_dump_gpes( + fwts_framework *fw, + uint32_t reg, + ACPI_GPE_BLOCK_INFO *gpe_block_info) +{ + uint32_t i, gpe = ACPI_GPE_REGISTER_WIDTH * reg; + + for (i = 0; i < ACPI_GPE_REGISTER_WIDTH; i++, gpe++) { + char buf[80]; + uint32_t n; + ACPI_GPE_NOTIFY_INFO *notify_info; + ACPI_GPE_EVENT_INFO *GpeEventInfo = &gpe_block_info->EventInfo[gpe]; + + if ((GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) == ACPI_GPE_DISPATCH_NONE) + continue; + + switch (GpeEventInfo->Flags & ACPI_GPE_DISPATCH_MASK) { + case ACPI_GPE_DISPATCH_NONE: + strncpy(buf, "none", sizeof(buf)); + break; + case ACPI_GPE_DISPATCH_HANDLER: + strncpy(buf, "handler", sizeof(buf)); + break; + case ACPI_GPE_DISPATCH_METHOD: + strncpy(buf, "method", sizeof(buf)); + break; + case ACPI_GPE_DISPATCH_NOTIFY: + for (n = 0, notify_info = GpeEventInfo->Dispatch.NotifyList; notify_info; notify_info = notify_info->Next) + n++; + snprintf(buf, sizeof(buf), "notifes %" PRIu32 " devices", n); + break; + } + fwts_log_info_verbatum(fw, " GPE 0x%2.2" PRIx8 ":", + gpe_block_info->BlockBaseNumber + gpe); + fwts_log_info_verbatum(fw, " Flags: 0x%2.2" PRIx8 " (trigger: %s, wake: %s)", + GpeEventInfo->Flags, + GpeEventInfo->Flags & ACPI_GPE_LEVEL_TRIGGERED ? "level" : "edge", + GpeEventInfo->Flags & ACPI_GPE_CAN_WAKE ? "can wake" : "run only"); + fwts_log_info_verbatum(fw, " Dispatch: %s", buf); + } +} + +static void gpedump_block( + fwts_framework *fw, + ACPI_GPE_XRUPT_INFO *gpe_xrupt_info, + ACPI_GPE_BLOCK_INFO *gpe_block_info, + uint32_t block) +{ + ACPI_BUFFER buffer; + ACPI_STATUS Status; + uint32_t reg; + char name[128]; + + buffer.Length = sizeof(name); + buffer.Pointer = name; + + Status = AcpiGetName (gpe_block_info->Node, ACPI_FULL_PATHNAME, &buffer); + if (ACPI_FAILURE (Status)) + strncpy(name, "unknown", sizeof(name)); + + fwts_log_nl(fw); + fwts_log_info_verbatum(fw, "Block %" PRIu32": DeviceNode %s (%s)\n", + block, name, + gpe_block_info->Node == AcpiGbl_FadtGpeDevice ? + "FADT Defined GPE Block" : + "GPE Block Device"); + + fwts_log_info_verbatum(fw, " GPE range: 0x%2.2" PRIx8 " to 0x%2.2" PRIx8 " on interrupt %" PRIu32 "\n", + (uint8_t)gpe_block_info->BlockBaseNumber, + (uint8_t)gpe_block_info->BlockBaseNumber + (gpe_block_info->GpeCount - 1), + (uint32_t)gpe_xrupt_info->InterruptNumber); + fwts_log_info_verbatum(fw, " GPE count: %" PRIu32 " (%" PRIu32 " registers)\n", + (uint32_t)gpe_block_info->GpeCount, + (uint32_t)gpe_block_info->RegisterCount); + + for (reg = 0; reg < gpe_block_info->RegisterCount; reg++) { + ACPI_GPE_REGISTER_INFO *gpe_reg_info = &gpe_block_info->RegisterInfo[reg]; + + fwts_log_nl(fw); + fwts_log_info_verbatum(fw, + " Register %" PRIu32 ": (GPE 0x%2.2" PRIx8 "-0x%2.2" PRIx8 ")", + reg, + gpe_reg_info->BaseGpeNumber, + gpe_reg_info->BaseGpeNumber + (ACPI_GPE_REGISTER_WIDTH - 1)); + fwts_log_info_verbatum(fw, " Run Enable: 0x%2.2" PRIx8, + gpe_reg_info->EnableForRun); + fwts_log_info_verbatum(fw, " Wake Enable: 0x%2.2" PRIx8, + gpe_reg_info->EnableForWake); + fwts_log_info_verbatum(fw, " Status Address: 0x%8.8" PRIx64, + (uint64_t)gpe_reg_info->StatusAddress.Address); + fwts_log_info_verbatum(fw, " Enable Address: 0x%8.8" PRIx64, + (uint64_t)gpe_reg_info->EnableAddress.Address); + + gpu_dump_gpes(fw, reg, gpe_block_info); + } +} + +static int gpedump_test1(fwts_framework *fw) +{ + ACPI_GPE_BLOCK_INFO *gpe_block_info; + ACPI_GPE_XRUPT_INFO *gpe_xrupt_info; + uint32_t block = 0; + + gpe_xrupt_info = AcpiGbl_GpeXruptListHead; + + for (gpe_xrupt_info = AcpiGbl_GpeXruptListHead; gpe_xrupt_info; gpe_xrupt_info = gpe_xrupt_info->Next) { + for (gpe_block_info = gpe_xrupt_info->GpeBlockListHead; gpe_block_info; gpe_block_info = gpe_block_info->Next) { + gpedump_block(fw, gpe_xrupt_info, gpe_block_info, block); + block++; + } + } + return FWTS_OK; +} + +static fwts_framework_minor_test gpedump_tests[] = { + { gpedump_test1, "Dump GPEs." }, + { NULL, NULL } +}; + +static fwts_framework_ops gpedump_ops = { + .description = "Dump GPEs.", + .init = gpedump_init, + .deinit = gpedump_deinit, + .minor_tests = gpedump_tests +}; + +FWTS_REGISTER("gpedump", &gpedump_ops, FWTS_TEST_ANYTIME, FWTS_FLAG_UTILS); diff -Nru fwts-14.02.00/src/acpi/plddump/plddump.c fwts-14.03.00/src/acpi/plddump/plddump.c --- fwts-14.02.00/src/acpi/plddump/plddump.c 1970-01-01 00:00:00.000000000 +0000 +++ fwts-14.03.00/src/acpi/plddump/plddump.c 2014-03-17 07:16:47.000000000 +0000 @@ -0,0 +1,270 @@ +/* + * Copyright (C) 2014 Canonical + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ +#include "fwts.h" +#include +#include +#include +#include +#include + +/* acpica headers */ +#include "acpi.h" +#include "fwts_acpi_object_eval.h" + +/* + * plddump_init() + * initialize ACPI + */ +static int plddump_init(fwts_framework *fw) +{ + if (fwts_acpi_init(fw) != FWTS_OK) { + fwts_log_error(fw, "Cannot initialise ACPI."); + return FWTS_ERROR; + } + + return FWTS_OK; +} + +/* + * plddump_deinit + * de-intialize ACPI + */ +static int plddump_deinit(fwts_framework *fw) +{ + return fwts_acpi_deinit(fw); +} + +static inline uint64_t get_bit( + const uint8_t *data, + const uint32_t offset) +{ + return (data[offset / 8] >> (offset % 8)) & 1; +} + +static uint64_t get_bits( + const uint8_t *data, + const uint32_t offset, + const uint32_t nbits) +{ + uint64_t val = 0; + uint32_t i; + + for (i = 0; i < nbits; i++) + val |= (get_bit(data, offset + i) << i); + + return val; +} + +static const char *yesno[] = { + "No", + "Yes" +}; + +static const char *panel_surface[] = { + "Top", + "Bottom", + "Left", + "Right", + "Front", + "Back", + "Unknown", + "Out of specification" +}; + +static const char *vertical_position[] = { + "Upper", + "Center", + "Lower", + "Unknown" +}; + +static const char *horizontal_position[] = { + "Left", + "Center", + "Right", + "Unknown" +}; + +static const char *shape[] = { + "Round", + "Oval", + "Square", + "Vertical Rectangle", + "Horizontal Rectangle", + "Veritical Trapezoid", + "Horizontal Trapezoid", + "Unknown", + "Chamfered", + "Reserved", + "Reserved", + "Reserved", + "Reserved", + "Reserved", + "Reserved", + "Reserved" +}; + +static void plddump_buffer( + fwts_framework *fw, + const char *name, + const void *data, + const uint32_t length) +{ + fwts_log_nl(fw); + fwts_log_info_verbatum(fw, "Name: %s", name); + fwts_log_info_verbatum(fw, " Revision: %" PRIu64, + get_bits(data, 0, 7)); + fwts_log_info_verbatum(fw, " Ignore Color: %" PRIu64 " (%s)", + get_bits(data, 7, 1), + yesno[get_bits(data, 7, 1)]); + if (!get_bits(data, 7, 1)) { + fwts_log_info_verbatum(fw, " Red: 0x%2.2" PRIx64, + get_bits(data, 8, 8)); + fwts_log_info_verbatum(fw, " Green: 0x%2.2" PRIx64, + get_bits(data, 16, 8)); + fwts_log_info_verbatum(fw, " Blue: 0x%2.2" PRIx64, + get_bits(data, 24, 8)); + } + fwts_log_info_verbatum(fw, " Width: %" PRIu64 " mm", + get_bits(data, 32, 16)); + fwts_log_info_verbatum(fw, " Height: %" PRIu64 " mm", + get_bits(data, 48, 16)); + fwts_log_info_verbatum(fw, " User Visible: %" PRIu64 " (%s)", + get_bits(data, 64, 1), + yesno[get_bits(data, 64, 1)]); + fwts_log_info_verbatum(fw, " Dock: %" PRIu64 " (%s)", + get_bits(data, 65, 1), + yesno[get_bits(data, 65, 1)]); + fwts_log_info_verbatum(fw, " Lid: %" PRIu64 " (%s)", + get_bits(data, 66, 1), + yesno[get_bits(data, 66, 1)]); + fwts_log_info_verbatum(fw, " Panel Surface: %" PRIu64 " (%s)", + get_bits(data, 67, 3), + panel_surface[get_bits(data, 67, 3)]); + if (get_bits(data, 67, 3) < 6) { + fwts_log_info_verbatum(fw, " Vertical Position: %" PRIu64 " (%s)", + get_bits(data, 70, 2), + vertical_position[get_bits(data, 70, 2)]); + fwts_log_info_verbatum(fw, " Horizontal Position: %" PRIu64 " (%s)", + get_bits(data, 72, 2), + horizontal_position[get_bits(data, 72, 2)]); + } + fwts_log_info_verbatum(fw, " Shape: %" PRIu64 " (%s)", + get_bits(data, 74, 4), + shape[get_bits(data, 74, 4)]); + fwts_log_info_verbatum(fw, " Group Orientation: %" PRIu64, + get_bits(data, 78, 1)); + fwts_log_info_verbatum(fw, " Group Token: %" PRIu64, + get_bits(data, 79, 8)); + fwts_log_info_verbatum(fw, " Group Position: %" PRIu64, + get_bits(data, 87, 8)); + fwts_log_info_verbatum(fw, " Bay: %" PRIu64 " (%s)", + get_bits(data, 95, 1), + yesno[get_bits(data, 95, 1)]); + fwts_log_info_verbatum(fw, " Ejectable: %" PRIu64 " (%s)", + get_bits(data, 96, 1), + yesno[get_bits(data, 96, 1)]); + fwts_log_info_verbatum(fw, " OSPM Ejection Rqd: %" PRIu64 " (%s)", + get_bits(data, 97, 1), + yesno[get_bits(data, 97, 1)]); + fwts_log_info_verbatum(fw, " Cabinet Number: %" PRIu64, + get_bits(data, 98, 8)); + fwts_log_info_verbatum(fw, " Card Cage Number: %" PRIu64, + get_bits(data, 106, 8)); + fwts_log_info_verbatum(fw, " Reference: %" PRIu64 " (%s)", + get_bits(data, 114, 1), + yesno[get_bits(data, 114, 1)]); + fwts_log_info_verbatum(fw, " Rotation: %" PRIu64 " (%" PRIu64 " degrees)", + get_bits(data, 115, 3), + get_bits(data, 115, 3) * 45); + fwts_log_info_verbatum(fw, " Order: %" PRIu64, + get_bits(data, 119, 5)); + if (length >= 20) { + fwts_log_info_verbatum(fw, " Vertical Offset: %" PRIu64 " mm", + get_bits(data, 128, 16)); + fwts_log_info_verbatum(fw, " Horizontal Offset: %" PRIu64 " mm", + get_bits(data, 144, 16)); + } +} + +static int plddump_test1(fwts_framework *fw) +{ + fwts_list_link *item; + fwts_list *objects; + const size_t name_len = 4; + bool found = false; + + if ((objects = fwts_acpi_object_get_names()) == NULL) { + fwts_log_info(fw, "Cannot find any ACPI objects"); + return FWTS_ERROR; + } + + fwts_list_foreach(item, objects) { + char *name = fwts_list_data(char *, item); + const size_t len = strlen(name); + + if (!strncmp("_PLD", name + len - name_len, name_len)) { + ACPI_OBJECT_LIST arg_list; + ACPI_BUFFER buf; + ACPI_OBJECT *obj; + int ret; + + arg_list.Count = 0; + arg_list.Pointer = NULL; + + ret = fwts_acpi_object_evaluate(fw, name, &arg_list, &buf); + if ((ACPI_FAILURE(ret) != AE_OK) || (buf.Pointer == NULL)) + continue; + + /* Do we have a valid buffer in the package to dump? */ + obj = buf.Pointer; + if ((obj->Type == ACPI_TYPE_PACKAGE) && + (obj->Package.Count) && + (obj->Package.Elements[0].Type == ACPI_TYPE_BUFFER) && + (obj->Package.Elements[0].Buffer.Pointer != NULL) && + (obj->Package.Elements[0].Buffer.Length >= 16)) { + plddump_buffer(fw, + name, + obj->Package.Elements[0].Buffer.Pointer, + obj->Package.Elements[0].Buffer.Length); + found = true; + } + free(buf.Pointer); + } + } + + if (!found) + fwts_log_info_verbatum(fw, "No _PLD objects found."); + + return FWTS_OK; +} + +static fwts_framework_minor_test plddump_tests[] = { + { plddump_test1, "Dump ACPI _PLD (Physical Device Location)." }, + { NULL, NULL } +}; + +static fwts_framework_ops plddump_ops = { + .description = "Dump ACPI _PLD (Physical Device Location).", + .init = plddump_init, + .deinit = plddump_deinit, + .minor_tests = plddump_tests +}; + +FWTS_REGISTER("plddump", &plddump_ops, FWTS_TEST_ANYTIME, FWTS_FLAG_UTILS); diff -Nru fwts-14.02.00/src/acpica/source/include/platform/aclinux.h fwts-14.03.00/src/acpica/source/include/platform/aclinux.h --- fwts-14.02.00/src/acpica/source/include/platform/aclinux.h 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/acpica/source/include/platform/aclinux.h 2014-03-17 07:16:47.000000000 +0000 @@ -161,7 +161,7 @@ #define ACPI_FLUSH_CPU_CACHE() #define ACPI_CAST_PTHREAD_T(Pthread) ((ACPI_THREAD_ID) (Pthread)) -#if defined(__ia64__) || defined(__x86_64__) || defined(__aarch64__) +#if defined(__ia64__) || defined(__x86_64__) || defined(__aarch64__) || defined(__PPC64__) #define ACPI_MACHINE_WIDTH 64 #define COMPILER_DEPENDENT_INT64 long #define COMPILER_DEPENDENT_UINT64 unsigned long diff -Nru fwts-14.02.00/src/bios/hdaaudio/hdaaudio.c fwts-14.03.00/src/bios/hdaaudio/hdaaudio.c --- fwts-14.02.00/src/bios/hdaaudio/hdaaudio.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/bios/hdaaudio/hdaaudio.c 2014-03-17 07:16:47.000000000 +0000 @@ -152,8 +152,10 @@ struct dirent *directory; bool checked = false; - if ((dir = opendir("/sys/class/sound/")) == NULL) - return FWTS_ERROR; + if ((dir = opendir("/sys/class/sound")) == NULL) { + fwts_skipped(fw, "Cannot find any sound devices in /sys/class/sound."); + return FWTS_OK; + } while ((directory = readdir(dir)) != NULL) if (strncmp(directory->d_name, "hw", 2) == 0) { diff -Nru fwts-14.02.00/src/lib/include/fwts_iasl.h fwts-14.03.00/src/lib/include/fwts_iasl.h --- fwts-14.02.00/src/lib/include/fwts_iasl.h 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/include/fwts_iasl.h 2014-03-17 07:16:47.000000000 +0000 @@ -22,7 +22,8 @@ #include "fwts.h" -int fwts_iasl_disassemble_all_to_file(fwts_framework *fw); +int fwts_iasl_disassemble_all_to_file(fwts_framework *fw, + const char *path); int fwts_iasl_disassemble(fwts_framework *fw, const char *table, diff -Nru fwts-14.02.00/src/lib/include/fwts_version.h fwts-14.03.00/src/lib/include/fwts_version.h --- fwts-14.02.00/src/lib/include/fwts_version.h 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/include/fwts_version.h 2014-03-17 07:16:47.000000000 +0000 @@ -16,5 +16,5 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ -#define FWTS_VERSION "V14.02.00" -#define FWTS_DATE "2014-02-19 03:52:29" +#define FWTS_VERSION "V14.03.00" +#define FWTS_DATE "2014-03-17 07:16:47" diff -Nru fwts-14.02.00/src/lib/src/fwts_acpi_tables.c fwts-14.03.00/src/lib/src/fwts_acpi_tables.c --- fwts-14.02.00/src/lib/src/fwts_acpi_tables.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/src/fwts_acpi_tables.c 2014-03-17 07:16:47.000000000 +0000 @@ -22,6 +22,8 @@ #include #include #include +#include +#include #include #include #include @@ -40,13 +42,20 @@ #define ACPI_MAX_TABLES (64) /* Max number of ACPI tables */ static fwts_acpi_table_info tables[ACPI_MAX_TABLES]; -static int acpi_tables_loaded = 0; + +typedef enum { + ACPI_TABLES_NOT_LOADED = 0, + ACPI_TABLES_LOADED_OK = 1, + ACPI_TABLES_LOADED_FAILED = 2 +} acpi_table_load_state; + +static acpi_table_load_state acpi_tables_loaded = ACPI_TABLES_NOT_LOADED; /* * fwts_acpi_find_rsdp_efi() * Get RSDP address from EFI if possible */ -static void *fwts_acpi_find_rsdp_efi(void) +static inline void *fwts_acpi_find_rsdp_efi(void) { return fwts_scan_efi_systab("ACPI20"); } @@ -236,35 +245,114 @@ /* * fwts_acpi_handle_fadt_tables() - * depending on whether 32 or 64 bit address is usable, get the FADT table - * address and load the FADT. - */ -static void fwts_acpi_handle_fadt_tables( - fwts_acpi_table_fadt *fadt, - const uint32_t *addr32, - const uint64_t *addr64, + * depending on whether 32 or 64 bit address is usable, get the table + * address and load it. This handles the DSDT and FACS as pointed to + * by the FADT + * + * Note, we pass in the addresses of the 32 and 64 bit pointers in the + * FADT because the FADT may be smaller than expected and we only want + * to accesses these fields if the FADT is large enough. + */ +static int fwts_acpi_handle_fadt_tables( + fwts_framework *fw, + const fwts_acpi_table_fadt *fadt,/* FADT */ + const char *name, /* Name of Table addr32/addr 64 point to */ + const char *name_addr32, /* Name of 32 bit addr */ + const char *name_addr64, /* Name of 64 bit addr */ + const uint32_t *addr32, /* 32 bit addr */ + const uint64_t *addr64, /* 64 bit addr */ const fwts_acpi_table_provenance provenance) { - off_t addr; + off_t addr = 0; fwts_acpi_table_header *header; - if ((addr64 != 0) && (fadt->header.length >= 140)) - addr = (off_t)*addr64; - else if ((addr32 !=0) && (fadt->header.length >= 44)) + /* newer version can have address in 64 and 32 bit pointers */ + if ((addr64 != NULL) && (fadt->header.length >= 140)) { + if (*addr64 == 0) { + /* Work around buggy firmware, use 32 bit addr instead */ + addr = (off_t)*addr32; + fwts_log_warning(fw, "FADT %s 64 bit pointer was zero, " + "falling back to using %s 32 bit pointer.", + name_addr64, name_addr32); + } else { + /* Use default 64 bit addr */ + addr = (off_t)*addr64; + } + /* Is it sane? */ + if (addr == 0) { + fwts_log_error(fw, "Failed to load %s: Cannot determine " + "address of %s from FADT, fields %s and %s are zero.", + name, name, name_addr32, name_addr64); + return FWTS_ERROR; + } + } else if ((addr32 != NULL) && (fadt->header.length >= 44)) { addr = (off_t)*addr32; - else addr = 0; + /* Is it sane? */ + if (addr == 0) { + fwts_log_error(fw, "Failed to load %s: Cannot determine " + "address of %s from FADT, field %s is zero.", + name, name, name_addr32); + return FWTS_ERROR; + } + } else if (fadt->header.length < 44) { + fwts_log_error(fw, "Failed to load %s: FADT is too small and " + "does not have any %s or %s fields.", + name, name_addr32, name_addr64); + return FWTS_ERROR; + } else { + /* This should not happen, addr64 or addr32 are NULL */ + fwts_log_error(fw, "Failed to load %s: fwts error with FADT.", name); + return FWTS_ERROR; + } - if (addr) { - if ((header = fwts_acpi_load_table(addr)) != NULL) - fwts_acpi_add_table(header->signature, header, - (uint64_t)addr, header->length, provenance); + /* Sane address found, load and add the table */ + if ((header = fwts_acpi_load_table(addr)) == NULL) { + fwts_log_error(fw, "Could not load %s from address 0x%" PRIx64 ".", + name, (uint64_t)addr); + return FWTS_ERROR; } + fwts_acpi_add_table(header->signature, header, + (uint64_t)addr, header->length, provenance); + return FWTS_OK; } -static void fwts_acpi_handle_fadt(fwts_acpi_table_fadt *fadt, fwts_acpi_table_provenance provenance) +/* + * fwts_acpi_handle_fadt() + * The FADT points to the FACS and DSDT with either 32 or 64 bit pointers. + * Locate the FACS and DSDT tables and load them. + */ +static int fwts_acpi_handle_fadt( + fwts_framework *fw, + const uint64_t phys_addr, + const fwts_acpi_table_fadt *fadt, + const fwts_acpi_table_provenance provenance) { - fwts_acpi_handle_fadt_tables(fadt, &fadt->dsdt, &fadt->x_dsdt, provenance); - fwts_acpi_handle_fadt_tables(fadt, &fadt->firmware_control, &fadt->x_firmware_ctrl, provenance); + static uint64_t facs_last_phys_addr; /* default to zero */ + + /* + * The FADT handling may occur twice if it appears + * in the RSDT and the XDST, so as an optimisation + * we just need to handle it once. + */ + if (facs_last_phys_addr == phys_addr) + return FWTS_OK; + + facs_last_phys_addr = phys_addr; + + /* Determine FACS addr and load it */ + if (fwts_acpi_handle_fadt_tables(fw, fadt, + "FACS", "FIRMWARE_CTRL", "X_FIRMWARE_CTRL", + &fadt->firmware_control, &fadt->x_firmware_ctrl, + provenance) != FWTS_OK) { + return FWTS_ERROR; + } + /* Determine DSDT addr and load it */ + if (fwts_acpi_handle_fadt_tables(fw, fadt, + "DSDT", "DSTD", "X_DSDT", + &fadt->dsdt, &fadt->x_dsdt, provenance) != FWTS_OK) { + return FWTS_ERROR; + } + return FWTS_OK; } /* @@ -298,6 +386,7 @@ /* Load and save cached RSDP */ if ((rsdp = fwts_acpi_get_rsdp(rsdp_addr, &rsdp_len)) == NULL) return FWTS_ERROR; + fwts_acpi_add_table("RSDP", rsdp, (uint64_t)(off_t)rsdp_addr, rsdp_len, FWTS_ACPI_TABLE_FROM_FIRMWARE); /* Load any tables from XSDT if it's valid */ @@ -310,8 +399,11 @@ if (xsdt->entries[i]) { if ((header = fwts_acpi_load_table((off_t)xsdt->entries[i])) != NULL) { if (strncmp("FACP", header->signature, 4) == 0) - fwts_acpi_handle_fadt((fwts_acpi_table_fadt*)header, - FWTS_ACPI_TABLE_FROM_FIRMWARE); + if (fwts_acpi_handle_fadt(fw, + (uint64_t)xsdt->entries[i], + (fwts_acpi_table_fadt *)header, + FWTS_ACPI_TABLE_FROM_FIRMWARE) != FWTS_OK) + goto fail; fwts_acpi_add_table(header->signature, header, xsdt->entries[i], header->length, FWTS_ACPI_TABLE_FROM_FIRMWARE); } @@ -330,8 +422,11 @@ if (rsdt->entries[i]) { if ((header = fwts_acpi_load_table((off_t)rsdt->entries[i])) != NULL) { if (strncmp("FACP", header->signature, 4) == 0) - fwts_acpi_handle_fadt((fwts_acpi_table_fadt*)header, - FWTS_ACPI_TABLE_FROM_FIRMWARE); + if (fwts_acpi_handle_fadt(fw, + (uint64_t)rsdt->entries[i], + (fwts_acpi_table_fadt *)header, + FWTS_ACPI_TABLE_FROM_FIRMWARE) != FWTS_OK) + goto fail; fwts_acpi_add_table(header->signature, header, (uint64_t)rsdt->entries[i], header->length, FWTS_ACPI_TABLE_FROM_FIRMWARE); } @@ -341,6 +436,13 @@ } return FWTS_OK; +fail: + /* + * Free'ing the tables will cause acpica_init to fail + * and so we abort any ACPI related tests + */ + fwts_acpi_free_tables(); + return FWTS_ERROR; } /* @@ -625,44 +727,63 @@ */ static int fwts_acpi_load_tables_fixup(fwts_framework *fw) { - int i; - int j; - int count; + int i, j, count; char *oem_tbl_id = "FWTS "; fwts_acpi_table_info *table; fwts_acpi_table_rsdp *rsdp = NULL; fwts_acpi_table_rsdt *rsdt = NULL; fwts_acpi_table_xsdt *xsdt = NULL; fwts_acpi_table_fadt *fadt = NULL; + fwts_acpi_table_facs *facs = NULL; + uint64_t rsdt_fake_addr = 0, xsdt_fake_addr = 0; + bool redo_rsdp_checksum = false; /* Fetch the OEM Table ID */ - if (fwts_acpi_find_table(fw, "FACP", 0, &table) != FWTS_OK) + if (fwts_acpi_find_table(fw, "FACP", 0, &table) != FWTS_OK) { + fwts_log_error(fw, "ACPI table find failure."); return FWTS_ERROR; + } if (table) { fadt = (fwts_acpi_table_fadt *)table->data; oem_tbl_id = fadt->header.oem_tbl_id; - } - - /* Get RSDP */ - if (fwts_acpi_find_table(fw, "RSDP", 0, &table) != FWTS_OK) + } else { + fwts_log_error(fw, "Cannot find FACP."); return FWTS_ERROR; - if (table) - rsdp = (fwts_acpi_table_rsdp *)table->data; + } - /* Get RSDT */ - if (fwts_acpi_find_table(fw, "RSDT", 0, &table) != FWTS_OK) + /* Get FACS */ + if (fwts_acpi_find_table(fw, "FACS", 0, &table) != FWTS_OK) { + fwts_log_error(fw, "ACPI table find failure."); return FWTS_ERROR; + } if (table) - rsdt = (fwts_acpi_table_rsdt *)table->data; + facs = (fwts_acpi_table_facs *)table->data; + else { + size_t size = 64; + uint64_t facs_fake_addr; + + /* This is most unexpected, so warn about it */ + fwts_log_warning(fw, "No FACS found, fwts has faked one instead."); + if ((facs = fwts_low_calloc(1, size)) == NULL) { + fwts_log_error(fw, "Cannot allocate fake FACS."); + return FWTS_ERROR; + } + strncpy(facs->signature, "FACS", 4); + facs->length = size; + facs->hardware_signature = 0xf000a200; /* Some signature */ + facs->flags = 0; + facs->version = 2; + facs_fake_addr = fwts_fake_physical_addr(size); + fadt->firmware_control = (uint32_t)facs_fake_addr; + if (fadt->header.length >= 140) + fadt->x_firmware_ctrl = (uint64_t)facs_fake_addr; - /* Get XSDT */ - if (fwts_acpi_find_table(fw, "XSDT", 0, &table) != FWTS_OK) - return FWTS_ERROR; - if (table) - xsdt = (fwts_acpi_table_xsdt *)table->data; + fwts_acpi_add_table("FACS", facs, (uint64_t)facs_fake_addr, + size, FWTS_ACPI_TABLE_FROM_FIXUP); + } /* Figure out how many tables we need to put into RSDT and XSDT */ - for (count=0,i=0;;i++) { + for (count = 0, i = 0; ; i++) { if (fwts_acpi_get_table(fw, i, &table) != FWTS_OK) break; if (table == NULL) /* No more tables */ @@ -671,11 +792,22 @@ count++; } - /* No RSDT? go and fake one */ - if (rsdt == NULL) { + /* Get RSDT */ + if (fwts_acpi_find_table(fw, "RSDT", 0, &table) != FWTS_OK) { + fwts_log_error(fw, "ACPI table find failure."); + return FWTS_ERROR; + } + if (table) { + rsdt = (fwts_acpi_table_rsdt *)table->data; + rsdt_fake_addr = table->addr; + } else { + /* No RSDT? go and fake one */ size_t size = sizeof(fwts_acpi_table_rsdt) + (count * sizeof(uint32_t)); - if ((rsdt = fwts_low_calloc(1, size)) == NULL) + + if ((rsdt = fwts_low_calloc(1, size)) == NULL) { + fwts_log_error(fw, "Cannot allocate fake RSDT."); return FWTS_ERROR; + } for (i=0,j=0; jheader.creator_revision = 1; rsdt->header.checksum = 256 - fwts_checksum((uint8_t*)rsdt, size); - fwts_acpi_add_table("RSDT", rsdt, (uint64_t)fwts_fake_physical_addr(size), - size, FWTS_ACPI_TABLE_FROM_FIXUP); + rsdt_fake_addr = fwts_fake_physical_addr(size); + fwts_acpi_add_table("RSDT", rsdt, rsdt_fake_addr, size, FWTS_ACPI_TABLE_FROM_FIXUP); } - /* No XSDT? go and fake one */ - if (xsdt == NULL) { + /* Get XSDT */ + if (fwts_acpi_find_table(fw, "XSDT", 0, &table) != FWTS_OK) { + fwts_log_error(fw, "ACPI table find failure."); + return FWTS_ERROR; + } + if (table) { + xsdt = (fwts_acpi_table_xsdt *)table->data; + xsdt_fake_addr = table->addr; + } else { + /* No XSDT? go and fake one */ size_t size = sizeof(fwts_acpi_table_rsdt) + (count * sizeof(uint64_t)); - if ((xsdt = fwts_low_calloc(1, size)) == NULL) + + if ((xsdt = fwts_low_calloc(1, size)) == NULL) { + fwts_log_error(fw, "Cannot allocate fake XSDT."); return FWTS_ERROR; + } for (i=0,j=0; jheader.creator_revision = 1; xsdt->header.checksum = 256 - fwts_checksum((uint8_t*)xsdt, size); - fwts_acpi_add_table("XSDT", xsdt, (uint64_t)fwts_fake_physical_addr(size), - size, FWTS_ACPI_TABLE_FROM_FIXUP); + xsdt_fake_addr = fwts_fake_physical_addr(size); + fwts_acpi_add_table("XSDT", xsdt, xsdt_fake_addr, size, FWTS_ACPI_TABLE_FROM_FIXUP); } - /* No RSDP? go and fake one */ - if (rsdp == NULL) { + /* Get RSDP */ + if (fwts_acpi_find_table(fw, "RSDP", 0, &table) != FWTS_OK) + return FWTS_ERROR; + if (table) + rsdp = (fwts_acpi_table_rsdp *)table->data; + else { + /* No RSDP? go and fake one */ size_t size = sizeof(fwts_acpi_table_rsdp); - if ((rsdp = fwts_low_calloc(1, size)) == NULL) + + if ((rsdp = fwts_low_calloc(1, size)) == NULL) { + fwts_log_error(fw, "Cannot allocate fake RSDP."); return FWTS_ERROR; + } strncpy(rsdp->signature, "RSD PTR ", 8); strncpy(rsdp->oem_id, "FWTS ", 6); rsdp->revision = 2; - rsdp->rsdt_address = (unsigned long)rsdt; rsdp->length = sizeof(fwts_acpi_table_rsdp); - rsdp->xsdt_address = (uint64_t)(unsigned long)xsdt; rsdp->reserved[0] = 0; rsdp->reserved[1] = 0; rsdp->reserved[2] = 0; rsdp->checksum = 256 - fwts_checksum((uint8_t*)rsdp, 20); - rsdp->extended_checksum = 256 - fwts_checksum((uint8_t*)rsdp, sizeof(fwts_acpi_table_rsdp)); + rsdp->extended_checksum = 256 - fwts_checksum((uint8_t*)rsdp, rsdp->length); fwts_acpi_add_table("RSDP", rsdp, (uint64_t)fwts_fake_physical_addr(size), sizeof(fwts_acpi_table_rsdp), FWTS_ACPI_TABLE_FROM_FIXUP); } + + /* Now we have all the tables, final fix up is required */ + if (rsdp->rsdt_address != rsdt_fake_addr) { + rsdp->rsdt_address = rsdt_fake_addr; + redo_rsdp_checksum = true; + } + if ((rsdp->revision > 0) && (rsdp->length >= 36) && + (rsdp->xsdt_address != xsdt_fake_addr)) { + rsdp->xsdt_address = xsdt_fake_addr; + redo_rsdp_checksum = true; + } + /* And update checksum if we've updated the rsdp */ + if (redo_rsdp_checksum) { + rsdp->checksum = 0; /* Clear old checksum */ + rsdp->checksum = 256 - fwts_checksum((uint8_t*)rsdp, 20); + rsdp->extended_checksum = 0; /* Clear old checksum */ + rsdp->extended_checksum = 256 - fwts_checksum((uint8_t*)rsdp, rsdp->length); + } + return FWTS_OK; } @@ -764,11 +932,13 @@ ret = FWTS_ERROR_NO_PRIV; if (ret == FWTS_OK) { - acpi_tables_loaded = 1; + acpi_tables_loaded = ACPI_TABLES_LOADED_OK; /* Loading from file may require table address fixups */ if ((fw->acpi_table_path != NULL) || (fw->acpi_table_acpidump_file != NULL)) fwts_acpi_load_tables_fixup(fw); + } else { + acpi_tables_loaded = ACPI_TABLES_LOADED_FAILED; } return ret; @@ -789,7 +959,7 @@ *info = NULL; - if (!acpi_tables_loaded) + if (acpi_tables_loaded == ACPI_TABLES_NOT_LOADED) if ((ret = fwts_acpi_load_tables(fw)) != FWTS_OK) return ret; @@ -819,7 +989,7 @@ *info = NULL; - if (!acpi_tables_loaded) + if (acpi_tables_loaded == ACPI_TABLES_NOT_LOADED) if ((ret = fwts_acpi_load_tables(fw)) != FWTS_OK) return ret; @@ -850,7 +1020,7 @@ if ((index < 0) || (index >= ACPI_MAX_TABLES)) return FWTS_ERROR; - if (!acpi_tables_loaded) + if (acpi_tables_loaded == ACPI_TABLES_NOT_LOADED) if ((ret = fwts_acpi_load_tables(fw)) != FWTS_OK) return ret; diff -Nru fwts-14.02.00/src/lib/src/fwts_args.c fwts-14.03.00/src/lib/src/fwts_args.c --- fwts-14.02.00/src/lib/src/fwts_args.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/src/fwts_args.c 2014-03-17 07:16:47.000000000 +0000 @@ -264,7 +264,7 @@ fwts_list_init(&sorted_options); - width = fwts_tty_width(fileno(stderr), FWTS_MIN_TTY_WIDTH); + width = fwts_tty_width(fileno(stdin), FWTS_MIN_TTY_WIDTH); if ((width - (FWTS_ARGS_WIDTH + 1)) < 0) width = FWTS_MIN_TTY_WIDTH; diff -Nru fwts-14.02.00/src/lib/src/fwts_framework.c fwts-14.03.00/src/lib/src/fwts_framework.c --- fwts-14.02.00/src/lib/src/fwts_framework.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/src/fwts_framework.c 2014-03-17 07:16:47.000000000 +0000 @@ -73,7 +73,7 @@ { "show-tests-full", "", 0, "Show available tests including all minor tests." }, { "utils", "u", 0, "Run Utility 'tests'." }, { "json-data-path", "j:", 1, "Specify path to fwts json data files - default is /usr/share/fwts." }, - { "disassemble-aml", "", 0, "Disassemble AML from DSDT and SSDT tables." }, + { "disassemble-aml", "", 2, "Disassemble AML from DSDT and SSDT tables." }, { "log-type", "", 1, "Specify log type (plaintext, json, html or xml)." }, { "unsafe", "U", 0, "Unsafe tests (tests that can potentially cause kernel oopses)." }, { "filter-error-discard", "", 1, "Discard errors that match any of the specified labels." }, @@ -1091,7 +1091,7 @@ fwts_framework_strdup(&fw->json_data_path, optarg); break; case 29: /* --disassemble-aml */ - fwts_iasl_disassemble_all_to_file(fw); + fwts_iasl_disassemble_all_to_file(fw, optarg); return FWTS_COMPLETE; case 30: /* --log-type */ if (fwts_framework_log_type_parse(fw, optarg) != FWTS_OK) diff -Nru fwts-14.02.00/src/lib/src/fwts_iasl.c fwts-14.03.00/src/lib/src/fwts_iasl.c --- fwts-14.02.00/src/lib/src/fwts_iasl.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/lib/src/fwts_iasl.c 2014-03-17 07:16:47.000000000 +0000 @@ -137,26 +137,34 @@ * fwts_iasl_disassemble_all_to_file() * Disassemble DSDT and SSDT tables to separate files. */ -int fwts_iasl_disassemble_all_to_file(fwts_framework *fw) +int fwts_iasl_disassemble_all_to_file(fwts_framework *fw, + const char *path) { int i; int ret; + char filename[PATH_MAX]; + char pathname[PATH_MAX]; - ret = fwts_iasl_disassemble_to_file(fw, "DSDT", 0, "DSDT.dsl"); + if (path == NULL) + strncpy(pathname, "", sizeof(pathname)); + else + snprintf(pathname, sizeof(pathname), "%s/", path); + + snprintf(filename, sizeof(filename), "%sDSDT.dsl", pathname); + + ret = fwts_iasl_disassemble_to_file(fw, "DSDT", 0, filename); if (ret == FWTS_ERROR_NO_PRIV) { fprintf(stderr, "Need to have root privilege to read ACPI tables from memory! Re-run using sudo.\n"); return FWTS_ERROR; } if (ret == FWTS_OK) - printf("Disassembled DSDT to DSDT.dsl\n"); + printf("Disassembled DSDT to %s\n", filename); for (i=0; ;i++) { - char filename[PATH_MAX]; - - snprintf(filename, sizeof(filename), "SSDT%d.dsl", i); + snprintf(filename, sizeof(filename), "%sSSDT%d.dsl", pathname, i); if (fwts_iasl_disassemble_to_file(fw, "SSDT", i, filename) != FWTS_OK) break; - printf("Disassembled SSDT %d to SSDT%d.dsl\n", i, i); + printf("Disassembled SSDT %d to %s\n", i, filename); } return FWTS_OK; diff -Nru fwts-14.02.00/src/Makefile.am fwts-14.03.00/src/Makefile.am --- fwts-14.02.00/src/Makefile.am 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/Makefile.am 2014-03-17 07:16:47.000000000 +0000 @@ -37,12 +37,14 @@ acpi/dmar/dmar.c \ acpi/fadt/fadt.c \ acpi/fan/fan.c \ + acpi/gpedump/gpedump.c \ acpi/lid/lid.c \ acpi/mcfg/mcfg.c \ acpi/method/method.c \ acpi/osilinux/osilinux.c \ acpi/pcc/pcc.c \ acpi/powerbutton/powerbutton.c \ + acpi/plddump/plddump.c \ acpi/s3/s3.c \ acpi/s3power/s3power.c \ acpi/s4/s4.c \ diff -Nru fwts-14.02.00/src/uefi/uefidump/uefidump.c fwts-14.03.00/src/uefi/uefidump/uefidump.c --- fwts-14.02.00/src/uefi/uefidump/uefidump.c 2014-02-19 03:52:29.000000000 +0000 +++ fwts-14.03.00/src/uefi/uefidump/uefidump.c 2014-03-17 07:16:47.000000000 +0000 @@ -1059,40 +1059,34 @@ } } +#define GUID_MAP(x) { x, # x } + static void uefidump_info_signaturedatabase(fwts_framework *fw, fwts_uefi_var *var) { fwts_uefi_signature_list *signature_list; char guid_str[37]; size_t offset = 0, list_start = 0; size_t i; - fwts_uefi_guid guid[] = { - EFI_CERT_X509_GUID, - EFI_CERT_SHA256_GUID, - EFI_CERT_RSA2048_GUID, - EFI_CERT_RSA2048_SHA256_GUID, - EFI_CERT_SHA1_GUID, - EFI_CERT_RSA2048_SHA1_GUID, - EFI_CERT_SHA224_GUID, - EFI_CERT_SHA384_GUID, - EFI_CERT_SHA512_GUID, - EFI_CERT_X509_SHA256_GUID, - EFI_CERT_X509_SHA384_GUID, - EFI_CERT_X509_SHA512_GUID - }; - char *str[] = { - "EFI_CERT_X509_GUID", - "EFI_CERT_SHA256_GUID", - "EFI_CERT_RSA2048_GUID", - "EFI_CERT_RSA2048_SHA256_GUID", - "EFI_CERT_SHA1_GUID", - "EFI_CERT_RSA2048_SHA1_GUID", - "EFI_CERT_SHA224_GUID", - "EFI_CERT_SHA384_GUID", - "EFI_CERT_SHA512_GUID", - "EFI_CERT_X509_SHA256_GUID", - "EFI_CERT_X509_SHA384_GUID", - "EFI_CERT_X509_SHA512_GUID", - "Unknown GUID" + + typedef struct { + const fwts_uefi_guid guid; + const char *str; + } guid_map; + + static const guid_map guids[] = { + GUID_MAP(EFI_CERT_X509_GUID), + GUID_MAP(EFI_CERT_SHA256_GUID), + GUID_MAP(EFI_CERT_RSA2048_GUID), + GUID_MAP(EFI_CERT_RSA2048_SHA256_GUID), + GUID_MAP(EFI_CERT_SHA1_GUID), + GUID_MAP(EFI_CERT_RSA2048_SHA1_GUID), + GUID_MAP(EFI_CERT_SHA224_GUID), + GUID_MAP(EFI_CERT_SHA384_GUID), + GUID_MAP(EFI_CERT_SHA512_GUID), + GUID_MAP(EFI_CERT_X509_SHA256_GUID), + GUID_MAP(EFI_CERT_X509_SHA384_GUID), + GUID_MAP(EFI_CERT_X509_SHA512_GUID), + { { 0, 0, 0, { 0, }}, NULL } }; if (var->datalen < sizeof(fwts_uefi_signature_list)) @@ -1101,12 +1095,15 @@ do { signature_list = (fwts_uefi_signature_list *)(var->data + list_start); fwts_guid_buf_to_str(var->data, guid_str, sizeof(guid_str)); + const char *str = "Unknown GUID"; - for (i = 0; i < sizeof(guid)/sizeof(guid[0]); i++) - if (memcmp(var->data, &guid[i], sizeof(fwts_uefi_guid)) == 0) + for (i = 0; guids[i].str; i++) + if (!memcmp(var->data, &guids[i].guid, sizeof(fwts_uefi_guid))) { + str = guids[i].str; break; + } - fwts_log_info_verbatum(fw, " SignatureType: %s (%s)", guid_str, str[i]); + fwts_log_info_verbatum(fw, " SignatureType: %s (%s)", guid_str, str); fwts_log_info_verbatum(fw, " SignatureListSize: 0x%" PRIx32, signature_list->signaturelistsize); fwts_log_info_verbatum(fw, " SignatureHeaderSize: 0x%" PRIx32, signature_list->signatureheadersize); fwts_log_info_verbatum(fw, " SignatureSize: 0x%" PRIx32, signature_list->signaturesize);