* Re: Add option to passively listen for PCIE hotplug events [not found] ` <buml1-6du-3@gated-at.bofh.it> @ 2008-11-04 11:29 ` Alan Jenkins 2008-11-04 12:47 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-04 11:29 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel, linux-testers On Nov 4, 5:10 am, Matthew Garrett <mj...@srcf.ucam.org> wrote: > On Tue, Nov 04, 2008 at 02:07:00AM +0000, Matthew Garrett wrote: > > On Tue, Nov 04, 2008 at 10:58:11AM +0900, Kenji Kaneshige wrote: > > > > t_slot->hpc_ops->get_adapter_status(t_slot, &value); /* Check if > > > > slot is occupied */ > > > >- if (value && pciehp_force) { > > > >+ if (value && (pciehp_force || pciehp_passive)) { > > > > rc = pciehp_enable_slot(t_slot); > > > > if (rc) /* -ENODEV: shouldn't happen, but deal with it */ > > > > value = 0; > > > This code no longer runs in the pciehp_passive case. However, by the > > looks of it it still does in the resume case - that probably wants > > fixing. > > Thinking about this - you said that the problem occurs because > pciehp_force=1 causes it to try to enable an already enabled slot, and > then tries to power down the slot as a result? It sounds like this code > should actually be checking whether the return value is ENODEV or > EINVAL, and in the latter case not powering the slot down. That sounds > like a separate bugfix that I'll send later on. I've tested pciehp with this patch on my EeePC, which as you say uses pcie hotplug to allow power savings when the wireless is not needed. Functionally it seems ok. I see kernel log messages saying "Device already exists, cannot hot- add". I wonder whether this causes the _timing_ problems that I see? The module takes 2-5 seconds to load (manually after boot, with pciehp_passive=1). Obviously this is not compatible with ambitious boot-time targets. Hot-"remove" works immediately, hot-"add" takes a few seconds, which seems reasonable. But resuming from suspend to ram can now take 15-20 seconds. It seems the longer suspend time happens with the device "present"; it's about 5 seconds shorter with the device "removed", but still much longer than previously. There's more than one PCIE port, so the rest of the delay could be due to other ports which always have devices "present". Will it help if I provide a dmesg (with printk.time=1)? I think removing and re-inserting the module may also increase the delay... ow. I just tested this and my EeePC failed to resume, just as if the delay had become infinite (or > 180 seconds). At this point the screen is black, not even a cursor... It might be significant that I removed the pciehp module while the device was "removed". I will try the "don't suspend consoles" option and see if it sheds any light. Thanks! Alan ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 11:29 ` Add option to passively listen for PCIE hotplug events Alan Jenkins @ 2008-11-04 12:47 ` Matthew Garrett 2008-11-04 13:32 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-04 12:47 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel, linux-testers On Tue, Nov 04, 2008 at 03:29:23AM -0800, Alan Jenkins wrote: > I've tested pciehp with this patch on my EeePC, which as you say uses > pcie hotplug to allow power savings when the wireless is not needed. > Functionally it seems ok. Hurrah. Progress. > But resuming from suspend to ram can now take 15-20 seconds. It seems > the longer suspend time happens with the device "present"; it's about > 5 seconds shorter with the device "removed", but still much longer > than previously. There's more than one PCIE port, so the rest of the > delay could be due to other ports which always have devices "present". Mm. Yeah, a printk with timings would probably be a good plan. I'll do some poking at this end and see where the time seems to be being lost. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 12:47 ` Matthew Garrett @ 2008-11-04 13:32 ` Matthew Garrett 2008-11-04 14:26 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-04 13:32 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel Can you try this one? diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h index b2801a7..c9f18f9 100644 --- a/drivers/pci/hotplug/pciehp.h +++ b/drivers/pci/hotplug/pciehp.h @@ -224,6 +224,10 @@ static inline int pciehp_get_hp_hw_control_from_firmware(struct pci_dev *dev) { u32 flags = (OSC_PCI_EXPRESS_NATIVE_HP_CONTROL | OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL); + if (pciehp_force) { + dev_info(&dev->dev, "Bypassing BIOS check for pciehp\n"); + return 0; + } return acpi_get_hp_hw_control_from_firmware(dev, flags); } diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 4b23bc3..429e505 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c @@ -41,6 +41,7 @@ int pciehp_debug; int pciehp_poll_mode; int pciehp_poll_time; int pciehp_force; +int pciehp_passive=1; struct workqueue_struct *pciehp_wq; #define DRIVER_VERSION "0.4" @@ -50,15 +51,18 @@ struct workqueue_struct *pciehp_wq; MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); MODULE_LICENSE("GPL"); +MODULE_ALIAS("acpi*:PNP0A08:*"); module_param(pciehp_debug, bool, 0644); module_param(pciehp_poll_mode, bool, 0644); module_param(pciehp_poll_time, int, 0644); module_param(pciehp_force, bool, 0644); +module_param(pciehp_passive, bool, 0644); MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not"); MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not"); MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds"); MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if _OSC and OSHP are missing"); +MODULE_PARM_DESC(pciehp_passive, "Listen for pciehp events, even if _OSC and OSHP are missing"); #define PCIE_MODULE_NAME "pciehp" @@ -85,6 +89,13 @@ static struct hotplug_slot_ops pciehp_hotplug_slot_ops = { .get_cur_bus_speed = get_cur_bus_speed, }; +static struct hotplug_slot_ops pciehp_passive_hotplug_slot_ops = { + .owner = THIS_MODULE, + .get_adapter_status = get_adapter_status, + .get_max_bus_speed = get_max_bus_speed, + .get_cur_bus_speed = get_cur_bus_speed, +}; + /* * Check the status of the Electro Mechanical Interlock (EMI) */ @@ -212,7 +223,11 @@ static int init_slots(struct controller *ctrl) hotplug_slot->info = info; hotplug_slot->private = slot; hotplug_slot->release = &release_slot; - hotplug_slot->ops = &pciehp_hotplug_slot_ops; + if (pciehp_passive && + pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev)) + hotplug_slot->ops = &pciehp_passive_hotplug_slot_ops; + else + hotplug_slot->ops = &pciehp_hotplug_slot_ops; slot->hotplug_slot = hotplug_slot; snprintf(name, SLOT_NAME_SIZE, "%u", slot->number); @@ -407,11 +422,7 @@ static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_ u8 value; struct pci_dev *pdev = dev->port; - if (pciehp_force) - dev_info(&dev->device, - "Bypassing BIOS check for pciehp use on %s\n", - pci_name(pdev)); - else if (pciehp_get_hp_hw_control_from_firmware(pdev)) + if (!pciehp_passive && pciehp_get_hp_hw_control_from_firmware(pdev)) goto err_out_none; ctrl = pcie_init(dev); @@ -435,11 +446,9 @@ static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_ t_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset); t_slot->hpc_ops->get_adapter_status(t_slot, &value); /* Check if slot is occupied */ - if (value && pciehp_force) { - rc = pciehp_enable_slot(t_slot); - if (rc) /* -ENODEV: shouldn't happen, but deal with it */ - value = 0; - } + if (value && (pciehp_force || pciehp_passive)) + pciehp_enable_slot(t_slot); + if ((POWER_CTRL(ctrl)) && !value) { rc = t_slot->hpc_ops->power_off_slot(t_slot); /* Power off slot if not occupied*/ if (rc) @@ -473,8 +482,11 @@ static int pciehp_suspend (struct pcie_device *dev, pm_message_t state) static int pciehp_resume (struct pcie_device *dev) { + struct pci_dev *pdev = dev->port; dev_info(&dev->device, "%s ENTRY\n", __func__); - if (pciehp_force) { + + if (pciehp_force || (pciehp_passive && + pciehp_get_hp_hw_control_from_firmware(pdev))) { struct controller *ctrl = get_service_data(dev); struct slot *t_slot; u8 status; diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c index fead63c..87b704d 100644 --- a/drivers/pci/hotplug/pciehp_ctrl.c +++ b/drivers/pci/hotplug/pciehp_ctrl.c @@ -185,7 +185,8 @@ static void set_slot_off(struct controller *ctrl, struct slot * pslot) * before taking any action that relies on power having been * removed from the slot/adapter. */ - msleep(1000); + if (PWR_LED(ctrl) || ATTN_LED(ctrl)) + msleep(1000); if (PWR_LED(ctrl)) pslot->hpc_ops->green_led_off(pslot); -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 13:32 ` Matthew Garrett @ 2008-11-04 14:26 ` Alan Jenkins 2008-11-04 14:33 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-04 14:26 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 409 bytes --] Matthew Garrett wrote: > Can you try this one? > Wups, now with modalias and enabled in passive mode by default, that confused me. Ok, it took 15 seconds to resume with the device "present". So maybe an improvement, but not enough :). dmesg attached. On the second suspend cycle, it seems to hang on resume. I suspect it did that before, and I just didn't test it long enough to realize. Thanks Alan [-- Attachment #2: dmesg --] [-- Type: text/plain, Size: 45436 bytes --] [ 0.000000] BIOS EBDA/lowmem at: 0009fc00/0009fc00 [ 0.000000] Linux version 2.6.28-rc3eeepc (alan@alan-desktop) (gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu3)) #123 Tue Nov 4 13:40:44 GMT 2008 [ 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 - 000000000009fc00 (usable) [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000001f780000 (usable) [ 0.000000] BIOS-e820: 000000001f780000 - 000000001f790000 (ACPI data) [ 0.000000] BIOS-e820: 000000001f790000 - 000000001f7d0000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000001f7d0000 - 000000001f7de000 (reserved) [ 0.000000] BIOS-e820: 000000001f7e0000 - 000000001f800000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] DMI present. [ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working it around. [ 0.000000] last_pfn = 0x1f780 max_arch_pfn = 0x1000000 [ 0.000000] kernel direct mapping tables up to 1f780000 @ 10000-16000 [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] RAMDISK: 1f3e0000 - 1f76f121 [ 0.000000] ACPI: RSDP 000FBE60, 0014 (r0 ACPIAM) [ 0.000000] ACPI: RSDT 1F780000, 0034 (r1 A M I OEMRSDT 3000803 MSFT 97) [ 0.000000] ACPI: FACP 1F780200, 0081 (r1 A M I OEMFACP 3000803 MSFT 97) [ 0.000000] ACPI: DSDT 1F780400, 5F61 (r1 A0797 A0797000 0 INTL 20051117) [ 0.000000] ACPI: FACS 1F790000, 0040 [ 0.000000] ACPI: APIC 1F780390, 0068 (r1 A M I OEMAPIC 3000803 MSFT 97) [ 0.000000] ACPI: OEMB 1F790040, 0046 (r1 A M I AMI_OEM 3000803 MSFT 97) [ 0.000000] ACPI: MCFG 1F786370, 003C (r1 A M I OEMMCFG 3000803 MSFT 97) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] 503MB LOWMEM available. [ 0.000000] mapped low ram: 0 - 1f780000 [ 0.000000] low ram: 00000000 - 1f780000 [ 0.000000] bootmap 00013000 - 00016ef0 [ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 001f780000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000100000 - 00004648a4] TEXT DATA BSS ==> [0000100000 - 00004648a4] [ 0.000000] #2 [001f3e0000 - 001f76f121] RAMDISK ==> [001f3e0000 - 001f76f121] [ 0.000000] #3 [0000465000 - 000046c000] INIT_PG_TABLE ==> [0000465000 - 000046c000] [ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000] [ 0.000000] #5 [0000010000 - 0000013000] PGTABLE ==> [0000010000 - 0000013000] [ 0.000000] #6 [0000013000 - 0000017000] BOOTMAP ==> [0000013000 - 0000017000] [ 0.000000] found SMP MP-table at [c00ff780] 000ff780 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] Normal 0x00001000 -> 0x0001f780 [ 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 -> 0x0001f780 [ 0.000000] On node 0 totalpages: 128783 [ 0.000000] free_area_init_node: node 0, pgdat c03be710, node_mem_map c1000200 [ 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: 975 pages used for memmap [ 0.000000] Normal zone: 123825 pages, LIFO batch:31 [ 0.000000] Movable zone: 0 pages used for memmap [ 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: Skipping IOAPIC probe due to 'noapic' option. [ 0.000000] Using ACPI for processor (LAPIC) configuration information [ 0.000000] Intel MultiProcessor Specification v1.4 [ 0.000000] Virtual Wire compatibility mode. [ 0.000000] MPTABLE: OEM ID: INTEL [ 0.000000] MPTABLE: Product ID: [ 0.000000] MPTABLE: APIC at: 0xFEE00000 [ 0.000000] I/O APIC #1 Version 32 at 0xFEC00000. [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs [ 0.000000] Processors: 1 [ 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 20000000 (gap: 1f800000:df600000) [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 127776 [ 0.000000] Kernel command line: root=/dev/sda1 resume=/dev/sda1 resume_offset=12453 ro vga=0xf07 noapic notsc [ 0.000000] notsc: Kernel compiled with CONFIG_X86_TSC, cannot disable TSC completely. [ 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] PID hash table entries: 2048 (order: 11, 8192 bytes) [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 630.013 MHz processor. [ 0.000000] Console: colour VGA+ 80x60 [ 0.000000] console [tty0] enabled [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 503408k/515584k available (1646k kernel code, 11620k reserved, 1208k data, 256k init, 0k highmem) [ 0.000000] virtual kernel memory layout: [ 0.000000] fixmap : 0xfffac000 - 0xfffff000 ( 332 kB) [ 0.000000] vmalloc : 0xdff80000 - 0xfffaa000 ( 512 MB) [ 0.000000] lowmem : 0xc0000000 - 0xdf780000 ( 503 MB) [ 0.000000] .init : 0xc03cc000 - 0xc040c000 ( 256 kB) [ 0.000000] .data : 0xc029bb06 - 0xc03c9c70 (1208 kB) [ 0.000000] .text : 0xc0100000 - 0xc029bb06 (1646 kB) [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.000000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 1260.52 BogoMIPS (lpj=2100043) [ 0.003333] Mount-cache hash table entries: 512 [ 0.003333] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.003333] CPU: L2 cache: 512K [ 0.003333] Intel machine check architecture supported. [ 0.003333] Intel machine check reporting enabled on CPU#0. [ 0.003333] CPU: Intel(R) Celeron(R) M processor 900MHz stepping 08 [ 0.003333] Checking 'hlt' instruction... OK. [ 0.016665] Freeing SMP alternatives: 0k freed [ 0.016665] ACPI: Core revision 20080926 [ 0.036665] ACPI: setting ELCR to 0200 (from 0ca8) [ 0.039999] net_namespace: 740 bytes [ 0.039999] NET: Registered protocol family 16 [ 0.039999] ACPI: bus type pci registered [ 0.039999] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.039999] PCI: Not using MMCONFIG. [ 0.039999] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5 [ 0.039999] PCI: Using configuration type 1 for base access [ 0.046665] ACPI: EC: Look up EC in DSDT [ 0.066665] ACPI: Interpreter enabled [ 0.066665] ACPI: (supports S0 S1 S3 S4 S5) [ 0.066665] ACPI: Using PIC for interrupt routing [ 0.066665] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.073332] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources [ 0.073332] PCI: Using MMCONFIG for extended config space [ 0.089999] ACPI: EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62 [ 0.089999] ACPI: EC: driver started in poll mode [ 0.089999] ACPI: No dock devices found. [ 0.089999] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.089999] pci 0000:00:02.0: reg 10 32bit mmio: [0xf7f00000-0xf7f7ffff] [ 0.089999] pci 0000:00:02.0: reg 14 io port: [0xec00-0xec07] [ 0.089999] pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff] [ 0.089999] pci 0000:00:02.0: reg 1c 32bit mmio: [0xf7ec0000-0xf7efffff] [ 0.089999] pci 0000:00:02.1: reg 10 32bit mmio: [0xf7f80000-0xf7ffffff] [ 0.089999] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf7eb8000-0xf7ebbfff] [ 0.089999] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1b.0: PME# disabled [ 0.089999] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.0: PME# disabled [ 0.089999] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.1: PME# disabled [ 0.089999] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.2: PME# disabled [ 0.093332] pci 0000:00:1d.0: reg 20 io port: [0xe400-0xe41f] [ 0.093332] pci 0000:00:1d.1: reg 20 io port: [0xe480-0xe49f] [ 0.093332] pci 0000:00:1d.2: reg 20 io port: [0xe800-0xe81f] [ 0.093332] pci 0000:00:1d.3: reg 20 io port: [0xe880-0xe89f] [ 0.093332] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf7eb7c00-0xf7eb7fff] [ 0.093332] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold [ 0.093332] pci 0000:00:1d.7: PME# disabled [ 0.093332] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 [ 0.093332] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO [ 0.093332] pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO [ 0.093332] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 20 io port: [0xffa0-0xffaf] [ 0.093332] pci 0000:00:1f.2: PME# supported from D3hot [ 0.093332] pci 0000:00:1f.2: PME# disabled [ 0.093332] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f] [ 0.093332] pci 0000:03:00.0: reg 10 64bit mmio: [0xfbfc0000-0xfbffffff] [ 0.093332] pci 0000:03:00.0: reg 30 32bit mmio: [0xfbfa0000-0xfbfbffff] [ 0.093332] pci 0000:03:00.0: PME# supported from D3hot D3cold [ 0.093332] pci 0000:03:00.0: PME# disabled [ 0.093332] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.093332] pci 0000:00:1c.1: bridge 32bit mmio: [0xfbf00000-0xfbffffff] [ 0.093332] pci 0000:01:00.0: reg 10 64bit mmio: [0xfbef0000-0xfbefffff] [ 0.093332] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.096665] pci 0000:00:1c.2: bridge 32bit mmio: [0xf8000000-0xfbefffff] [ 0.096665] pci 0000:00:1c.2: bridge 64bit mmio pref: [0xf0000000-0xf6ffffff] [ 0.096665] pci 0000:00:1e.0: transparent bridge [ 0.096665] bus 00 -> node 0 [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P3._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] [ 0.109998] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 11 12 14 15) [ 0.113332] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.116665] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15) [ 0.116665] SCSI subsystem initialized [ 0.116665] libata version 3.00 loaded. [ 0.116665] PCI: Using ACPI for IRQ routing [ 0.119998] hpet clockevent registered [ 0.119998] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.119998] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.119998] hpet0: 3 comparators, 64-bit 14.318180 MHz counter [ 0.123332] pnp: PnP ACPI init [ 0.123332] ACPI: bus type pnp registered [ 0.126670] Switched to NOHz mode on CPU #0 [ 0.130007] pnp: PnP ACPI: found 13 devices [ 0.130007] ACPI: ACPI bus type pnp unregistered [ 0.130007] system 00:01: iomem range 0xfed13000-0xfed19fff has been reserved [ 0.130007] system 00:08: ioport range 0x380-0x383 has been reserved [ 0.130007] system 00:08: ioport range 0x4d0-0x4d1 has been reserved [ 0.130007] system 00:08: ioport range 0x800-0x87f has been reserved [ 0.130007] system 00:08: ioport range 0x480-0x4bf has been reserved [ 0.130007] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved [ 0.130007] system 00:08: iomem range 0xfed20000-0xfed8ffff has been reserved [ 0.130007] system 00:08: iomem range 0xfff00000-0xffffffff could not be reserved [ 0.130007] system 00:09: iomem range 0xfec00000-0xfec00fff has been reserved [ 0.130007] system 00:09: iomem range 0xfee00000-0xfee00fff has been reserved [ 0.130007] system 00:0a: iomem range 0xe0000000-0xefffffff has been reserved [ 0.137589] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved [ 0.137589] system 00:0c: iomem range 0x0-0x9ffff could not be reserved [ 0.137589] system 00:0c: iomem range 0xc0000-0xcffff could not be reserved [ 0.137589] system 00:0c: iomem range 0xe0000-0xfffff could not be reserved [ 0.137589] system 00:0c: iomem range 0x100000-0x1f7fffff could not be reserved [ 0.173337] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:04 [ 0.173337] pci 0000:00:1c.0: IO window: disabled [ 0.173337] pci 0000:00:1c.0: MEM window: disabled [ 0.173337] pci 0000:00:1c.0: PREFETCH window: disabled [ 0.173337] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03 [ 0.173337] pci 0000:00:1c.1: IO window: disabled [ 0.173337] pci 0000:00:1c.1: MEM window: 0xfbf00000-0xfbffffff [ 0.173337] pci 0000:00:1c.1: PREFETCH window: disabled [ 0.173337] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:01 [ 0.173337] pci 0000:00:1c.2: IO window: disabled [ 0.173337] pci 0000:00:1c.2: MEM window: 0xf8000000-0xfbefffff [ 0.173337] pci 0000:00:1c.2: PREFETCH window: 0x000000f0000000-0x000000f6ffffff [ 0.173337] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05 [ 0.173337] pci 0000:00:1e.0: IO window: disabled [ 0.173337] pci 0000:00:1e.0: MEM window: disabled [ 0.173337] pci 0000:00:1e.0: PREFETCH window: disabled [ 0.173337] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5 [ 0.173337] PCI: setting IRQ 5 as level-triggered [ 0.173337] pci 0000:00:1c.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 0.173337] pci 0000:00:1c.0: setting latency timer to 64 [ 0.173337] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 [ 0.176707] PCI: setting IRQ 11 as level-triggered [ 0.176707] pci 0000:00:1c.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11 [ 0.176707] pci 0000:00:1c.1: setting latency timer to 64 [ 0.176707] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 [ 0.176707] PCI: setting IRQ 10 as level-triggered [ 0.176707] pci 0000:00:1c.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 0.176707] pci 0000:00:1c.2: setting latency timer to 64 [ 0.176707] pci 0000:00:1e.0: setting latency timer to 64 [ 0.176707] bus: 00 index 0 io port: [0x00-0xffff] [ 0.176707] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff] [ 0.176707] bus: 04 index 0 mmio: [0x0-0x0] [ 0.176707] bus: 04 index 1 mmio: [0x0-0x0] [ 0.176707] bus: 04 index 2 mmio: [0x0-0x0] [ 0.176707] bus: 04 index 3 mmio: [0x0-0x0] [ 0.176707] bus: 03 index 0 mmio: [0x0-0x0] [ 0.176707] bus: 03 index 1 mmio: [0xfbf00000-0xfbffffff] [ 0.176707] bus: 03 index 2 mmio: [0x0-0x0] [ 0.176707] bus: 03 index 3 mmio: [0x0-0x0] [ 0.176707] bus: 01 index 0 mmio: [0x0-0x0] [ 0.176707] bus: 01 index 1 mmio: [0xf8000000-0xfbefffff] [ 0.176707] bus: 01 index 2 mmio: [0xf0000000-0xf6ffffff] [ 0.176707] bus: 01 index 3 mmio: [0x0-0x0] [ 0.176707] bus: 05 index 0 mmio: [0x0-0x0] [ 0.176707] bus: 05 index 1 mmio: [0x0-0x0] [ 0.176707] bus: 05 index 2 mmio: [0x0-0x0] [ 0.176707] bus: 05 index 3 io port: [0x00-0xffff] [ 0.176707] bus: 05 index 4 mmio: [0x000000-0xffffffffffffffff] [ 0.176707] NET: Registered protocol family 2 [ 0.179669] IP route cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.183003] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.183003] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) [ 0.183003] TCP: Hash tables configured (established 16384 bind 16384) [ 0.183003] TCP reno registered [ 0.183003] NET: Registered protocol family 1 [ 0.183003] checking if image is initramfs... it is [ 1.030027] Freeing initrd memory: 3644k freed [ 1.030027] audit: initializing netlink socket (disabled) [ 1.030027] type=2000 audit(1225807886.030:1): initialized [ 1.050008] msgmni has been set to 990 [ 1.050008] alg: No test for stdrng (krng) [ 1.050008] io scheduler noop registered [ 1.050008] io scheduler anticipatory registered [ 1.050008] io scheduler deadline registered [ 1.050008] io scheduler cfq registered (default) [ 1.050008] pci 0000:00:02.0: Boot video device [ 1.056675] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 1.056675] pcieport-driver 0000:00:1c.0: found MSI capability [ 1.056675] pcieport-driver 0000:00:1c.0: irq 47 for MSI/MSI-X [ 1.056675] pci_express 0000:00:1c.0:pcie00: allocate port service [ 1.056675] pci_express 0000:00:1c.0:pcie02: allocate port service [ 1.056675] pci_express 0000:00:1c.0:pcie03: allocate port service [ 1.056675] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 1.056675] pcieport-driver 0000:00:1c.1: found MSI capability [ 1.056675] pcieport-driver 0000:00:1c.1: irq 46 for MSI/MSI-X [ 1.056675] pci_express 0000:00:1c.1:pcie00: allocate port service [ 1.056675] pci_express 0000:00:1c.1:pcie02: allocate port service [ 1.056675] pci_express 0000:00:1c.1:pcie03: allocate port service [ 1.056675] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 1.056675] pcieport-driver 0000:00:1c.2: found MSI capability [ 1.056675] pcieport-driver 0000:00:1c.2: irq 45 for MSI/MSI-X [ 1.056675] pci_express 0000:00:1c.2:pcie00: allocate port service [ 1.056675] pci_express 0000:00:1c.2:pcie02: allocate port service [ 1.056675] pci_express 0000:00:1c.2:pcie03: allocate port service [ 1.066675] Serial: 8250/16550 driver4 ports, IRQ sharing disabled [ 1.070011] brd: module loaded [ 1.070011] Driver 'sd' needs updating - please use bus_type methods [ 1.070011] ahci 0000:00:1f.2: version 3.0 [ 1.073345] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 7 [ 1.073345] PCI: setting IRQ 7 as level-triggered [ 1.073345] ahci 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.073345] ahci 0000:00:1f.2: PCI INT B disabled [ 1.073345] ahci: probe of 0000:00:1f.2 failed with error -22 [ 1.073345] ata_piix 0000:00:1f.2: version 2.12 [ 1.073345] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.073345] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ] [ 1.073345] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 1.073345] scsi0 : ata_piix [ 1.073345] scsi1 : ata_piix [ 1.073345] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 [ 1.073345] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 [ 1.400001] ata2.00: ATA-4: SILICONMOTION SM223AC, , max UDMA/66 [ 1.400001] ata2.00: 7815024 sectors, multi 0: LBA [ 1.413334] ata2.00: configured for UDMA/66 [ 1.413334] scsi 1:0:0:0: Direct-Access ATA SILICONMOTION SM n/a PQ: 0 ANSI: 5 [ 1.413334] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.413334] sd 1:0:0:0: [sda] Write Protect is off [ 1.413334] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.413334] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.413334] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.413334] sd 1:0:0:0: [sda] Write Protect is off [ 1.413334] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.413334] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.413334] sda: sda1 [ 1.413334] sd 1:0:0:0: [sda] Attached SCSI disk [ 1.415945] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 [ 1.446084] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.446084] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.449417] mice: PS/2 mouse device common for all mice [ 1.449417] rtc_cmos 00:03: RTC can wake from S4 [ 1.449417] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 1.449417] rtc0: alarms up to one month, 114 bytes nvram, , hpet irqs irqs [ 1.449417] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008) [ 1.449417] iTCO_wdt: Found a ICH6-M TCO device (Version=2, TCOBASE=0x0860) [ 1.449417] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 1.449417] iTCO_vendor_support: vendor-support=0 [ 1.449417] cpuidle: using governor ladder [ 1.449417] cpuidle: using governor menu [ 1.449417] Advanced Linux Sound Architecture Driver Version 1.0.18rc3. [ 1.449417] ALSA device list: [ 1.449417] No soundcards found. [ 1.450013] TCP cubic registered [ 1.450013] Using IPI Shortcut mode [ 1.451426] rtc_cmos 00:03: setting system clock to 2008-11-04 14:11:27 UTC (1225807887) [ 1.451426] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found [ 1.451426] Freeing unused kernel memory: 256k freed [ 1.496683] input: AT Translated Set 2 keyboard as /class/input/input0 [ 1.900004] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) [ 1.900004] processor ACPI0007:00: registered as cooling_device0 [ 1.900004] ACPI: Processor [CPU1] (supports 8 throttling states) [ 1.910013] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 1.912364] Marking TSC unstable due to TSC halts in idle [ 1.918425] thermal LNXTHERM:01: registered as thermal_zone0 [ 1.933865] ACPI: Thermal Zone [TZ00] (48 C) [ 2.373352] PM: Starting manual resume from disk [ 3.460002] usbcore: registered new interface driver usbfs [ 3.460002] input: PC Speaker as /class/input/input1 [ 3.463345] usbcore: registered new interface driver hub [ 3.466707] usbcore: registered new device driver usb [ 3.490010] usbcore: registered new interface driver libusual [ 3.503345] Initializing USB Mass Storage driver... [ 3.503345] usbcore: registered new interface driver usb-storage [ 3.503345] USB Mass Storage support registered. [ 3.520010] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.520010] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 3 [ 3.520010] PCI: setting IRQ 3 as level-triggered [ 3.520010] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.520010] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 3.520010] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 3.520010] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 [ 3.526676] ehci_hcd 0000:00:1d.7: debug port 1 [ 3.526676] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported [ 3.526676] ehci_hcd 0000:00:1d.7: irq 3, io mem 0xf7eb7c00 [ 3.543342] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 3.543342] udev: starting version 131 [ 3.543342] udev: deprecated sysfs layout (kernel too old, or CONFIG_SYSFS_DEPRECATED) is unsupported, some udev features may fail [ 3.543342] usb usb1: configuration #1 chosen from 1 choice [ 3.543356] hub 1-0:1.0: USB hub found [ 3.543356] hub 1-0:1.0: 8 ports detected [ 3.553354] uhci_hcd: USB Universal Host Controller Interface driver [ 3.553354] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.556726] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 3.556726] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 3.556726] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 3.556726] uhci_hcd 0000:00:1d.0: irq 3, io base 0x0000e400 [ 3.556726] usb usb2: configuration #1 chosen from 1 choice [ 3.556726] hub 2-0:1.0: USB hub found [ 3.556726] hub 2-0:1.0: 2 ports detected [ 3.556726] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 3.556726] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 3.556726] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 3.556726] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [ 3.556726] uhci_hcd 0000:00:1d.1: irq 7, io base 0x0000e480 [ 3.556726] usb usb3: configuration #1 chosen from 1 choice [ 3.556726] hub 3-0:1.0: USB hub found [ 3.556726] hub 3-0:1.0: 2 ports detected [ 3.556726] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 3.556726] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 3.556726] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 3.556726] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [ 3.556726] uhci_hcd 0000:00:1d.2: irq 10, io base 0x0000e800 [ 3.560059] usb usb4: configuration #1 chosen from 1 choice [ 3.560059] hub 4-0:1.0: USB hub found [ 3.560059] hub 4-0:1.0: 2 ports detected [ 3.560059] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 3.563387] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 3.563387] uhci_hcd 0000:00:1d.3: UHCI Host Controller [ 3.563387] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 [ 3.563387] uhci_hcd 0000:00:1d.3: irq 5, io base 0x0000e880 [ 3.563387] usb usb5: configuration #1 chosen from 1 choice [ 3.563387] hub 5-0:1.0: USB hub found [ 3.563387] hub 5-0:1.0: 2 ports detected [ 3.850022] usb 1-5: new high speed USB device using ehci_hcd and address 2 [ 3.976684] usb 1-5: configuration #1 chosen from 1 choice [ 3.986683] scsi2 : SCSI emulation for USB Mass Storage devices [ 3.993357] usb-storage: device found at 2 [ 3.993357] usb-storage: waiting for device to settle before scanning [ 4.353346] Linux agpgart interface v0.103 [ 4.363346] agpgart-intel 0000:00:00.0: Intel 915GM Chipset [ 4.363346] agpgart-intel 0000:00:00.0: detected 7932K stolen memory [ 4.376689] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 [ 4.376689] input: Power Button (FF) as /class/input/input2 [ 4.403351] ACPI: Power Button (FF) [PWRF] [ 4.403351] input: Lid Switch as /class/input/input3 [ 4.423346] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 4.426683] ACPI: Lid Switch [LID] [ 4.426683] eeepc: Eee PC Hotkey Driver [ 4.426683] eeepc: Hotkey init flags 0x41 [ 4.426683] eeepc: Get control methods supported: 0x101711 [ 4.426683] input: Asus EeePC extra buttons as /class/input/input4 [ 4.440018] pciehp 0000:00:1c.0:pcie02: HPC vendor_id 8086 device_id 2660 ss_vid 0 ss_did 0 [ 4.440018] pciehp 0000:00:1c.0:pcie02: service driver pciehp loaded [ 4.440018] pciehp 0000:00:1c.1:pcie02: HPC vendor_id 8086 device_id 2662 ss_vid 0 ss_did 0 [ 4.460020] input: Sleep Button (CM) as /class/input/input5 [ 4.486693] ACPI: Sleep Button (CM) [SLPB] [ 4.486693] input: Power Button (CM) as /class/input/input6 [ 4.513352] ACPI: Power Button (CM) [PWRB] [ 4.740023] intel_rng: FWH not detected [ 5.446477] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 5.446477] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 5.446477] pciehp 0000:00:1c.1:pcie02: service driver pciehp loaded [ 5.446477] pciehp 0000:00:1c.2:pcie02: HPC vendor_id 8086 device_id 2664 ss_vid 0 ss_did 0 [ 5.446477] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 5.446477] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 5.516684] sd 1:0:0:0: Attached scsi generic sg0 type 0 [ 5.763349] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000 [ 5.900019] input: SynPS/2 Synaptics TouchPad as /class/input/input7 [ 6.446720] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 6.446720] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 6.446720] pciehp 0000:00:1c.2:pcie02: service driver pciehp loaded [ 6.446720] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 6.446720] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 6.456687] ACPI: AC Adapter [AC0] (on-line) [ 6.716681] cfg80211: Using static regulatory domain info [ 6.716681] cfg80211: Regulatory domain: US [ 6.716681] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) [ 6.716681] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm) [ 6.716681] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.716681] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.716681] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.723018] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.723018] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm) [ 6.723018] cfg80211: Calling CRDA for country: US [ 6.836685] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 6.836685] ath5k_pci 0000:01:00.0: setting latency timer to 64 [ 6.836685] ath5k_pci 0000:01:00.0: registered as 'phy0' [ 6.923345] phy0: Selected rate control algorithm 'pid' [ 6.945173] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) [ 6.956687] udev: renamed network interface wlan0 to ath0 [ 7.096077] ACPI: Battery Slot [BAT0] (battery present) [ 7.096077] input: Video Bus as /class/input/input8 [ 7.104476] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) [ 7.280008] fuse init (API version 7.10) [ 8.994654] usb-storage: device scan complete [ 8.994654] scsi 2:0:0:0: Direct-Access USB2.0 CardReader SD0 0100 PQ: 0 ANSI: 0 [ 9.365279] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.365603] sd 2:0:0:0: [sdb] Write Protect is off [ 9.365603] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.365603] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.373109] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.376669] sd 2:0:0:0: [sdb] Write Protect is off [ 9.376669] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.376669] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.376669] sdb: sdb1 [ 9.376669] sd 2:0:0:0: [sdb] Attached SCSI removable disk [ 9.376669] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 21.703339] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com [ 21.753073] aes_i586: Unknown symbol crypto_it_tab [ 21.753073] aes_i586: Unknown symbol crypto_aes_set_key [ 21.753073] aes_i586: Unknown symbol crypto_fl_tab [ 21.755055] aes_i586: Unknown symbol crypto_il_tab [ 21.755055] aes_i586: Unknown symbol crypto_ft_tab [ 21.813353] aes_i586: Unknown symbol crypto_it_tab [ 21.816686] aes_i586: Unknown symbol crypto_aes_set_key [ 21.816686] aes_i586: Unknown symbol crypto_fl_tab [ 21.816686] aes_i586: Unknown symbol crypto_il_tab [ 21.816686] aes_i586: Unknown symbol crypto_ft_tab [ 22.130004] Adding 409592k swap on /swapfile. Priority:-1 extents:704 across:581464k [ 22.873341] ip_tables: (C) 2000-2006 Netfilter Core Team [ 22.940008] nf_conntrack version 0.5.0 (8056 buckets, 32224 max) [ 22.940008] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use [ 22.940008] nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or [ 22.940008] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. [ 23.083334] NET: Registered protocol family 10 [ 23.086682] lo: Disabled Privacy Extensions [ 23.103341] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 23.527020] sensors[4047]: segfault at 46 ip b7dfd2cd sp bfa2b6c0 error 4 in libc-2.7.so[b7da3000+149000] [ 23.527020] sensors[4048]: segfault at 46 ip b7dd52cd sp bfe052b0 error 4 in libc-2.7.so[b7d7b000+149000] [ 24.374482] ACPI: WMI: Mapper loaded [ 26.011042] warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use) [ 27.773335] [drm] Initialized drm 1.1.0 20060810 [ 27.800003] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 27.800003] pci 0000:00:02.0: setting latency timer to 64 [ 27.800003] [drm:i915_gem_detect_bit_6_swizzle] *ERROR* Couldn't read from MCHBAR. Disabling tiling. [ 27.800003] [drm:i915_driver_load] *ERROR* failed to enable MSI [ 27.800003] [drm] Initialized i915 1.6.0 20080730 on minor 0 [ 28.517066] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 29.502679] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 102.799993] NET: Registered protocol family 17 [ 104.166663] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 104.173334] ath0: authenticated [ 104.173334] ath0: associate with AP 00:1b:9e:19:45:90 [ 104.173334] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 104.173334] ath0: associated [ 104.176666] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 125.509995] ath0: no IPv6 routers present [ 176.640414] pciehp 0000:00:1c.2:pcie02: Card not present on Slot(3) [ 176.870000] ath5k_pci 0000:01:00.0: PCI INT A disabled [ 182.568269] pciehp 0000:00:1c.2:pcie02: Card present on Slot(3) [ 184.673322] pci 0000:01:00.0: reg 10 64bit mmio: [0x000000-0x00ffff] [ 184.673322] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 184.673322] pciehp: Could not get hotplug parameters [ 184.673322] ath5k_pci 0000:01:00.0: enabling device (0000 -> 0002) [ 184.673322] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 184.673322] ath5k_pci 0000:01:00.0: setting latency timer to 64 [ 184.673322] ath5k_pci 0000:01:00.0: registered as 'phy1' [ 184.726665] phy1: Selected rate control algorithm 'pid' [ 184.729998] ath5k phy1: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) [ 184.783334] udev: renamed network interface wlan0 to ath0 [ 184.917431] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 198.136650] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 198.143315] ath0: authenticated [ 198.143315] ath0: associate with AP 00:1b:9e:19:45:90 [ 198.146655] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 198.146655] ath0: associated [ 198.146655] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 215.069987] ath0: no IPv6 routers present [ 215.459995] ath0: deauthenticating by local choice (reason=3) [ 216.058033] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 218.569999] PM: Syncing filesystems ... done. [ 218.569999] Freezing user space processes ... (elapsed 0.00 seconds) done. [ 218.569999] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. [ 218.569999] Suspending console(s) (use no_console_suspend to debug) [ 218.569999] ath5k_pci 0000:01:00.0: PCI INT A disabled [ 218.586654] pci 0000:00:02.0: PCI INT A disabled [ 219.133354] sd 1:0:0:0: [sda] Stopping disk [ 219.133354] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 219.133354] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 219.133354] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 219.133354] ata_piix 0000:00:1f.2: PCI INT B disabled [ 219.146690] ehci_hcd 0000:00:1d.7: PCI INT A disabled [ 219.160024] uhci_hcd 0000:00:1d.3: PCI INT D disabled [ 219.160024] uhci_hcd 0000:00:1d.2: PCI INT C disabled [ 219.160024] uhci_hcd 0000:00:1d.1: PCI INT B disabled [ 219.160024] uhci_hcd 0000:00:1d.0: PCI INT A disabled [ 219.160024] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 219.160024] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 219.160024] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 219.173319] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 219.186691] ACPI: Preparing to enter system sleep state S3 [ 219.186691] Intel machine check architecture supported. [ 219.186691] Intel machine check reporting enabled on CPU#0. [ 219.186691] Back to C! [ 219.186691] Force enabled HPET at resume [ 219.187675] ACPI: Waking up from system sleep state S3 [ 219.229984] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 219.531025] pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900003) [ 219.546692] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002) [ 219.546692] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 219.546692] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 219.546692] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 219.546692] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100504) [ 219.546692] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 219.546692] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 220.550024] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 220.550024] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 220.550024] pciehp 0000:00:1c.1:pcie02: Card present on Slot(2) [ 220.550024] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 220.550024] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 221.553319] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 221.553319] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 222.556689] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 222.556689] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 224.083318] irq 10: nobody cared (try booting with the "irqpoll" option) [ 224.083318] Pid: 5969, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #123 [ 224.083318] Call Trace: [ 224.083318] [<c0142d0c>] __report_bad_irq+0x24/0x69 [ 224.083318] [<c0142d13>] __report_bad_irq+0x2b/0x69 [ 224.083318] [<c0142e3e>] note_interrupt+0xed/0x133 [ 224.083318] [<c0142291>] handle_IRQ_event+0x1a/0x3f [ 224.083318] [<c0143538>] handle_level_irq+0x4d/0x8d [ 224.083318] [<c0104e95>] do_IRQ+0x55/0x6c [ 224.083318] [<c010430b>] common_interrupt+0x23/0x28 [ 224.083318] [<c011ec28>] __do_softirq+0x2a/0xbc [ 224.083318] [<c011ecdc>] do_softirq+0x22/0x26 [ 224.083318] [<c011ef49>] irq_exit+0x25/0x55 [ 224.083318] [<c010ed82>] smp_apic_timer_interrupt+0x5c/0x64 [ 224.083318] [<c0104338>] apic_timer_interrupt+0x28/0x30 [ 224.083318] [<c01bb6e8>] pci_bus_write_config_word+0x28/0x2e [ 224.083318] [<c01bd29b>] pci_restore_state+0x79/0x15c [ 224.083318] [<c01c2440>] resume_iter+0x0/0x25 [ 224.083318] [<c01c2af0>] pcie_portdrv_restore_config+0x9/0x22 [ 224.083318] [<c01c2b45>] pcie_portdrv_resume+0x8/0x10 [ 224.083318] [<c01bf1d3>] pci_legacy_resume+0x15/0x16 [ 224.083318] [<c020984f>] pm_op+0x52/0xac [ 224.083318] [<c0209e15>] device_resume+0x7d/0x2d2 [ 224.083318] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 224.083318] [<c0135de6>] enter_state+0xdf/0x12e [ 224.083318] [<c0135ec3>] state_store+0x8e/0xa4 [ 224.083318] [<c0135e35>] state_store+0x0/0xa4 [ 224.083318] [<c01b3d8b>] kobj_attr_store+0x18/0x1c [ 224.083318] [<c0190d72>] sysfs_write_file+0xaf/0xdc [ 224.083318] [<c0190cc3>] sysfs_write_file+0x0/0xdc [ 224.083318] [<c0162b38>] vfs_write+0x83/0xf6 [ 224.083318] [<c0162ec9>] sys_write+0x3c/0x63 [ 224.083318] [<c010376d>] sysenter_do_call+0x12/0x21 [ 224.083318] [<c0290000>] __inet6_lookup_established+0x98/0x21c [ 224.083318] handlers: [ 224.083318] [<e0018d79>] (usb_hcd_irq+0x0/0x57 [usbcore]) [ 224.083318] Disabling IRQ #10 [ 224.083318] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 224.083318] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 224.083318] pciehp 0000:00:1c.2:pcie02: Card present on Slot(3) [ 224.083318] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 224.083318] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 225.090021] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 225.090021] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 226.093356] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 226.093356] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 226.093356] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 226.093356] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 226.093356] usb usb2: root hub lost power or was reset [ 226.093356] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 226.093356] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 226.093356] usb usb3: root hub lost power or was reset [ 226.093356] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 226.093356] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 226.093356] usb usb4: root hub lost power or was reset [ 226.093356] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 226.093356] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 226.093356] usb usb5: root hub lost power or was reset [ 226.106688] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 226.106688] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 226.106688] pci 0000:00:1e.0: restoring config space at offset 0xf (was 0x60000, writing 0x600ff) [ 226.106688] pci 0000:00:1e.0: setting latency timer to 64 [ 226.120022] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 226.120022] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 226.120022] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 226.296690] ata2.00: configured for UDMA/66 [ 226.296690] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 226.296690] sd 1:0:0:0: [sda] Write Protect is off [ 226.296690] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 226.296690] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 227.123356] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 228.126687] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 228.126687] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 228.126687] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 229.130022] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 229.130022] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 229.130022] sd 1:0:0:0: [sda] Starting disk [ 229.386688] usb 1-5: reset high speed USB device using ehci_hcd and address 2 [ 230.623356] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 230.623356] pci 0000:00:02.0: setting latency timer to 64 [ 230.623356] ath5k_pci 0000:01:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xf8000004) [ 230.623356] ath5k_pci 0000:01:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x10) [ 230.623356] ath5k_pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006) [ 230.671002] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 230.696647] Restarting tasks ... done. [ 231.688554] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 234.343355] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 245.923311] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 245.926363] ath0: authenticated [ 245.926363] ath0: associate with AP 00:1b:9e:19:45:90 [ 245.929977] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 245.929977] ath0: associated [ 245.929977] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 256.390018] ath0: no IPv6 routers present [ 271.316682] ath0: no IPv6 routers present ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 14:26 ` Alan Jenkins @ 2008-11-04 14:33 ` Matthew Garrett 2008-11-04 15:01 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-04 14:33 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel Ah, one more spot. How about this one? diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h index b2801a7..c9f18f9 100644 --- a/drivers/pci/hotplug/pciehp.h +++ b/drivers/pci/hotplug/pciehp.h @@ -224,6 +224,10 @@ static inline int pciehp_get_hp_hw_control_from_firmware(struct pci_dev *dev) { u32 flags = (OSC_PCI_EXPRESS_NATIVE_HP_CONTROL | OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL); + if (pciehp_force) { + dev_info(&dev->dev, "Bypassing BIOS check for pciehp\n"); + return 0; + } return acpi_get_hp_hw_control_from_firmware(dev, flags); } diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 4b23bc3..429e505 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c @@ -41,6 +41,7 @@ int pciehp_debug; int pciehp_poll_mode; int pciehp_poll_time; int pciehp_force; +int pciehp_passive=1; struct workqueue_struct *pciehp_wq; #define DRIVER_VERSION "0.4" @@ -50,15 +51,18 @@ struct workqueue_struct *pciehp_wq; MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); MODULE_LICENSE("GPL"); +MODULE_ALIAS("acpi*:PNP0A08:*"); module_param(pciehp_debug, bool, 0644); module_param(pciehp_poll_mode, bool, 0644); module_param(pciehp_poll_time, int, 0644); module_param(pciehp_force, bool, 0644); +module_param(pciehp_passive, bool, 0644); MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not"); MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not"); MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds"); MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if _OSC and OSHP are missing"); +MODULE_PARM_DESC(pciehp_passive, "Listen for pciehp events, even if _OSC and OSHP are missing"); #define PCIE_MODULE_NAME "pciehp" @@ -85,6 +89,13 @@ static struct hotplug_slot_ops pciehp_hotplug_slot_ops = { .get_cur_bus_speed = get_cur_bus_speed, }; +static struct hotplug_slot_ops pciehp_passive_hotplug_slot_ops = { + .owner = THIS_MODULE, + .get_adapter_status = get_adapter_status, + .get_max_bus_speed = get_max_bus_speed, + .get_cur_bus_speed = get_cur_bus_speed, +}; + /* * Check the status of the Electro Mechanical Interlock (EMI) */ @@ -212,7 +223,11 @@ static int init_slots(struct controller *ctrl) hotplug_slot->info = info; hotplug_slot->private = slot; hotplug_slot->release = &release_slot; - hotplug_slot->ops = &pciehp_hotplug_slot_ops; + if (pciehp_passive && + pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev)) + hotplug_slot->ops = &pciehp_passive_hotplug_slot_ops; + else + hotplug_slot->ops = &pciehp_hotplug_slot_ops; slot->hotplug_slot = hotplug_slot; snprintf(name, SLOT_NAME_SIZE, "%u", slot->number); @@ -407,11 +422,7 @@ static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_ u8 value; struct pci_dev *pdev = dev->port; - if (pciehp_force) - dev_info(&dev->device, - "Bypassing BIOS check for pciehp use on %s\n", - pci_name(pdev)); - else if (pciehp_get_hp_hw_control_from_firmware(pdev)) + if (!pciehp_passive && pciehp_get_hp_hw_control_from_firmware(pdev)) goto err_out_none; ctrl = pcie_init(dev); @@ -435,11 +446,9 @@ static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_ t_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset); t_slot->hpc_ops->get_adapter_status(t_slot, &value); /* Check if slot is occupied */ - if (value && pciehp_force) { - rc = pciehp_enable_slot(t_slot); - if (rc) /* -ENODEV: shouldn't happen, but deal with it */ - value = 0; - } + if (value && (pciehp_force || pciehp_passive)) + pciehp_enable_slot(t_slot); + if ((POWER_CTRL(ctrl)) && !value) { rc = t_slot->hpc_ops->power_off_slot(t_slot); /* Power off slot if not occupied*/ if (rc) @@ -473,8 +482,11 @@ static int pciehp_suspend (struct pcie_device *dev, pm_message_t state) static int pciehp_resume (struct pcie_device *dev) { + struct pci_dev *pdev = dev->port; dev_info(&dev->device, "%s ENTRY\n", __func__); - if (pciehp_force) { + + if (pciehp_force || (pciehp_passive && + pciehp_get_hp_hw_control_from_firmware(pdev))) { struct controller *ctrl = get_service_data(dev); struct slot *t_slot; u8 status; diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c index fead63c..9aee98f 100644 --- a/drivers/pci/hotplug/pciehp_ctrl.c +++ b/drivers/pci/hotplug/pciehp_ctrl.c @@ -185,7 +185,8 @@ static void set_slot_off(struct controller *ctrl, struct slot * pslot) * before taking any action that relies on power having been * removed from the slot/adapter. */ - msleep(1000); + if (PWR_LED(ctrl) || ATTN_LED(ctrl)) + msleep(1000); if (PWR_LED(ctrl)) pslot->hpc_ops->green_led_off(pslot); @@ -288,17 +289,16 @@ static int remove_board(struct slot *p_slot) } } - /* - * After turning power off, we must wait for at least 1 second - * before taking any action that relies on power having been - * removed from the slot/adapter. - */ - msleep(1000); - - if (PWR_LED(ctrl)) + if (PWR_LED(ctrl)) { + /* + * After turning power off, we must wait for at least 1 second + * before taking any action that relies on power having been + * removed from the slot/adapter. + */ + msleep(1000); /* turn off Green LED */ p_slot->hpc_ops->green_led_off(p_slot); - + } return 0; } -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 14:33 ` Matthew Garrett @ 2008-11-04 15:01 ` Alan Jenkins 2008-11-04 15:11 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-04 15:01 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 564 bytes --] Matthew Garrett wrote: > Ah, one more spot. How about this one? > I don't think that's any better, sorry. Hey... you're making this conditional on whether a power led is reported present, right? Are you sure the EeePC doesn't report itself as having a power led? Because it has a nice blue LED that shows the rfkill state, and it could well be implemented as a pci hotplug power led. I know that you can't change it independently from the EC - you can poke EeePC-specific mapped registers to hack the state of the charge LED, but not the rfkill one. Alan [-- Attachment #2: dmesg --] [-- Type: text/plain, Size: 44078 bytes --] [ 0.000000] BIOS EBDA/lowmem at: 0009fc00/0009fc00 [ 0.000000] Linux version 2.6.28-rc3eeepc (alan@alan-desktop) (gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu3)) #124 Tue Nov 4 14:44:30 GMT 2008 [ 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 - 000000000009fc00 (usable) [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000001f780000 (usable) [ 0.000000] BIOS-e820: 000000001f780000 - 000000001f790000 (ACPI data) [ 0.000000] BIOS-e820: 000000001f790000 - 000000001f7d0000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000001f7d0000 - 000000001f7de000 (reserved) [ 0.000000] BIOS-e820: 000000001f7e0000 - 000000001f800000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] DMI present. [ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working it around. [ 0.000000] last_pfn = 0x1f780 max_arch_pfn = 0x1000000 [ 0.000000] kernel direct mapping tables up to 1f780000 @ 10000-16000 [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] RAMDISK: 1f3e0000 - 1f76f12f [ 0.000000] ACPI: RSDP 000FBE60, 0014 (r0 ACPIAM) [ 0.000000] ACPI: RSDT 1F780000, 0034 (r1 A M I OEMRSDT 3000803 MSFT 97) [ 0.000000] ACPI: FACP 1F780200, 0081 (r1 A M I OEMFACP 3000803 MSFT 97) [ 0.000000] ACPI: DSDT 1F780400, 5F61 (r1 A0797 A0797000 0 INTL 20051117) [ 0.000000] ACPI: FACS 1F790000, 0040 [ 0.000000] ACPI: APIC 1F780390, 0068 (r1 A M I OEMAPIC 3000803 MSFT 97) [ 0.000000] ACPI: OEMB 1F790040, 0046 (r1 A M I AMI_OEM 3000803 MSFT 97) [ 0.000000] ACPI: MCFG 1F786370, 003C (r1 A M I OEMMCFG 3000803 MSFT 97) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] 503MB LOWMEM available. [ 0.000000] mapped low ram: 0 - 1f780000 [ 0.000000] low ram: 00000000 - 1f780000 [ 0.000000] bootmap 00013000 - 00016ef0 [ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 001f780000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000100000 - 00004648a4] TEXT DATA BSS ==> [0000100000 - 00004648a4] [ 0.000000] #2 [001f3e0000 - 001f76f12f] RAMDISK ==> [001f3e0000 - 001f76f12f] [ 0.000000] #3 [0000465000 - 000046c000] INIT_PG_TABLE ==> [0000465000 - 000046c000] [ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000] [ 0.000000] #5 [0000010000 - 0000013000] PGTABLE ==> [0000010000 - 0000013000] [ 0.000000] #6 [0000013000 - 0000017000] BOOTMAP ==> [0000013000 - 0000017000] [ 0.000000] found SMP MP-table at [c00ff780] 000ff780 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] Normal 0x00001000 -> 0x0001f780 [ 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 -> 0x0001f780 [ 0.000000] On node 0 totalpages: 128783 [ 0.000000] free_area_init_node: node 0, pgdat c03be710, node_mem_map c1000200 [ 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: 975 pages used for memmap [ 0.000000] Normal zone: 123825 pages, LIFO batch:31 [ 0.000000] Movable zone: 0 pages used for memmap [ 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: Skipping IOAPIC probe due to 'noapic' option. [ 0.000000] Using ACPI for processor (LAPIC) configuration information [ 0.000000] Intel MultiProcessor Specification v1.4 [ 0.000000] Virtual Wire compatibility mode. [ 0.000000] MPTABLE: OEM ID: INTEL [ 0.000000] MPTABLE: Product ID: [ 0.000000] MPTABLE: APIC at: 0xFEE00000 [ 0.000000] I/O APIC #1 Version 32 at 0xFEC00000. [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs [ 0.000000] Processors: 1 [ 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 20000000 (gap: 1f800000:df600000) [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 127776 [ 0.000000] Kernel command line: root=/dev/sda1 resume=/dev/sda1 resume_offset=12453 ro vga=0xf07 noapic notsc [ 0.000000] notsc: Kernel compiled with CONFIG_X86_TSC, cannot disable TSC completely. [ 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] PID hash table entries: 2048 (order: 11, 8192 bytes) [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 630.108 MHz processor. [ 0.000000] Console: colour VGA+ 80x60 [ 0.000000] console [tty0] enabled [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 503408k/515584k available (1646k kernel code, 11620k reserved, 1208k data, 256k init, 0k highmem) [ 0.000000] virtual kernel memory layout: [ 0.000000] fixmap : 0xfffac000 - 0xfffff000 ( 332 kB) [ 0.000000] vmalloc : 0xdff80000 - 0xfffaa000 ( 512 MB) [ 0.000000] lowmem : 0xc0000000 - 0xdf780000 ( 503 MB) [ 0.000000] .init : 0xc03cc000 - 0xc040c000 ( 256 kB) [ 0.000000] .data : 0xc029bb06 - 0xc03c9c70 (1208 kB) [ 0.000000] .text : 0xc0100000 - 0xc029bb06 (1646 kB) [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.000000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 1260.72 BogoMIPS (lpj=2100360) [ 0.003333] Mount-cache hash table entries: 512 [ 0.003333] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.003333] CPU: L2 cache: 512K [ 0.003333] Intel machine check architecture supported. [ 0.003333] Intel machine check reporting enabled on CPU#0. [ 0.003333] CPU: Intel(R) Celeron(R) M processor 900MHz stepping 08 [ 0.003333] Checking 'hlt' instruction... OK. [ 0.016665] Freeing SMP alternatives: 0k freed [ 0.016665] ACPI: Core revision 20080926 [ 0.036665] ACPI: setting ELCR to 0200 (from 0ca8) [ 0.039999] net_namespace: 740 bytes [ 0.039999] NET: Registered protocol family 16 [ 0.039999] ACPI: bus type pci registered [ 0.039999] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.039999] PCI: Not using MMCONFIG. [ 0.039999] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5 [ 0.039999] PCI: Using configuration type 1 for base access [ 0.046665] ACPI: EC: Look up EC in DSDT [ 0.066665] ACPI: Interpreter enabled [ 0.066665] ACPI: (supports S0 S1 S3 S4 S5) [ 0.066665] ACPI: Using PIC for interrupt routing [ 0.066665] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.073332] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources [ 0.073332] PCI: Using MMCONFIG for extended config space [ 0.086665] ACPI: EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62 [ 0.089999] ACPI: EC: driver started in poll mode [ 0.089999] ACPI: No dock devices found. [ 0.089999] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.089999] pci 0000:00:02.0: reg 10 32bit mmio: [0xf7f00000-0xf7f7ffff] [ 0.089999] pci 0000:00:02.0: reg 14 io port: [0xec00-0xec07] [ 0.089999] pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff] [ 0.089999] pci 0000:00:02.0: reg 1c 32bit mmio: [0xf7ec0000-0xf7efffff] [ 0.089999] pci 0000:00:02.1: reg 10 32bit mmio: [0xf7f80000-0xf7ffffff] [ 0.089999] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf7eb8000-0xf7ebbfff] [ 0.089999] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1b.0: PME# disabled [ 0.089999] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.0: PME# disabled [ 0.089999] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.1: PME# disabled [ 0.089999] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1c.2: PME# disabled [ 0.089999] pci 0000:00:1d.0: reg 20 io port: [0xe400-0xe41f] [ 0.089999] pci 0000:00:1d.1: reg 20 io port: [0xe480-0xe49f] [ 0.089999] pci 0000:00:1d.2: reg 20 io port: [0xe800-0xe81f] [ 0.089999] pci 0000:00:1d.3: reg 20 io port: [0xe880-0xe89f] [ 0.089999] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf7eb7c00-0xf7eb7fff] [ 0.089999] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1d.7: PME# disabled [ 0.089999] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 [ 0.089999] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO [ 0.089999] pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO [ 0.093332] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 20 io port: [0xffa0-0xffaf] [ 0.093332] pci 0000:00:1f.2: PME# supported from D3hot [ 0.093332] pci 0000:00:1f.2: PME# disabled [ 0.093332] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f] [ 0.093332] pci 0000:03:00.0: reg 10 64bit mmio: [0xfbfc0000-0xfbffffff] [ 0.093332] pci 0000:03:00.0: reg 30 32bit mmio: [0xfbfa0000-0xfbfbffff] [ 0.093332] pci 0000:03:00.0: PME# supported from D3hot D3cold [ 0.093332] pci 0000:03:00.0: PME# disabled [ 0.093332] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.093332] pci 0000:00:1c.1: bridge 32bit mmio: [0xfbf00000-0xfbffffff] [ 0.093332] pci 0000:01:00.0: reg 10 64bit mmio: [0xfbef0000-0xfbefffff] [ 0.093332] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.093332] pci 0000:00:1c.2: bridge 32bit mmio: [0xf8000000-0xfbefffff] [ 0.093332] pci 0000:00:1c.2: bridge 64bit mmio pref: [0xf0000000-0xf6ffffff] [ 0.093332] pci 0000:00:1e.0: transparent bridge [ 0.093332] bus 00 -> node 0 [ 0.093332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.093332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P3._PRT] [ 0.093332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT] [ 0.093332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] [ 0.106665] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 10 11 12 14 15) [ 0.106665] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 0.106665] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.109998] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15) [ 0.116665] SCSI subsystem initialized [ 0.116665] libata version 3.00 loaded. [ 0.116665] PCI: Using ACPI for IRQ routing [ 0.116665] hpet clockevent registered [ 0.116665] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.116665] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.116665] hpet0: 3 comparators, 64-bit 14.318180 MHz counter [ 0.119998] pnp: PnP ACPI init [ 0.119998] ACPI: bus type pnp registered [ 0.123336] Switched to NOHz mode on CPU #0 [ 0.126672] pnp: PnP ACPI: found 13 devices [ 0.126672] ACPI: ACPI bus type pnp unregistered [ 0.126672] system 00:01: iomem range 0xfed13000-0xfed19fff has been reserved [ 0.126672] system 00:08: ioport range 0x380-0x383 has been reserved [ 0.126672] system 00:08: ioport range 0x4d0-0x4d1 has been reserved [ 0.126672] system 00:08: ioport range 0x800-0x87f has been reserved [ 0.126672] system 00:08: ioport range 0x480-0x4bf has been reserved [ 0.126672] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved [ 0.126672] system 00:08: iomem range 0xfed20000-0xfed8ffff has been reserved [ 0.126672] system 00:08: iomem range 0xfff00000-0xffffffff could not be reserved [ 0.126672] system 00:09: iomem range 0xfec00000-0xfec00fff has been reserved [ 0.126672] system 00:09: iomem range 0xfee00000-0xfee00fff has been reserved [ 0.126672] system 00:0a: iomem range 0xe0000000-0xefffffff has been reserved [ 0.134286] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved [ 0.134286] system 00:0c: iomem range 0x0-0x9ffff could not be reserved [ 0.134286] system 00:0c: iomem range 0xc0000-0xcffff could not be reserved [ 0.134286] system 00:0c: iomem range 0xe0000-0xfffff could not be reserved [ 0.134286] system 00:0c: iomem range 0x100000-0x1f7fffff could not be reserved [ 0.170004] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:04 [ 0.170004] pci 0000:00:1c.0: IO window: disabled [ 0.170004] pci 0000:00:1c.0: MEM window: disabled [ 0.170004] pci 0000:00:1c.0: PREFETCH window: disabled [ 0.170004] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03 [ 0.170004] pci 0000:00:1c.1: IO window: disabled [ 0.170004] pci 0000:00:1c.1: MEM window: 0xfbf00000-0xfbffffff [ 0.170004] pci 0000:00:1c.1: PREFETCH window: disabled [ 0.170004] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:01 [ 0.170004] pci 0000:00:1c.2: IO window: disabled [ 0.170004] pci 0000:00:1c.2: MEM window: 0xf8000000-0xfbefffff [ 0.170004] pci 0000:00:1c.2: PREFETCH window: 0x000000f0000000-0x000000f6ffffff [ 0.170004] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05 [ 0.170004] pci 0000:00:1e.0: IO window: disabled [ 0.170004] pci 0000:00:1e.0: MEM window: disabled [ 0.170004] pci 0000:00:1e.0: PREFETCH window: disabled [ 0.170004] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5 [ 0.170004] PCI: setting IRQ 5 as level-triggered [ 0.170004] pci 0000:00:1c.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 0.170004] pci 0000:00:1c.0: setting latency timer to 64 [ 0.170004] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 [ 0.173390] PCI: setting IRQ 11 as level-triggered [ 0.173390] pci 0000:00:1c.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11 [ 0.173390] pci 0000:00:1c.1: setting latency timer to 64 [ 0.173390] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 [ 0.173390] PCI: setting IRQ 10 as level-triggered [ 0.173390] pci 0000:00:1c.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 0.173390] pci 0000:00:1c.2: setting latency timer to 64 [ 0.173390] pci 0000:00:1e.0: setting latency timer to 64 [ 0.173390] bus: 00 index 0 io port: [0x00-0xffff] [ 0.173390] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff] [ 0.173390] bus: 04 index 0 mmio: [0x0-0x0] [ 0.173390] bus: 04 index 1 mmio: [0x0-0x0] [ 0.173390] bus: 04 index 2 mmio: [0x0-0x0] [ 0.173390] bus: 04 index 3 mmio: [0x0-0x0] [ 0.173390] bus: 03 index 0 mmio: [0x0-0x0] [ 0.173390] bus: 03 index 1 mmio: [0xfbf00000-0xfbffffff] [ 0.173390] bus: 03 index 2 mmio: [0x0-0x0] [ 0.173390] bus: 03 index 3 mmio: [0x0-0x0] [ 0.173390] bus: 01 index 0 mmio: [0x0-0x0] [ 0.173390] bus: 01 index 1 mmio: [0xf8000000-0xfbefffff] [ 0.173390] bus: 01 index 2 mmio: [0xf0000000-0xf6ffffff] [ 0.173390] bus: 01 index 3 mmio: [0x0-0x0] [ 0.173390] bus: 05 index 0 mmio: [0x0-0x0] [ 0.173390] bus: 05 index 1 mmio: [0x0-0x0] [ 0.173390] bus: 05 index 2 mmio: [0x0-0x0] [ 0.173390] bus: 05 index 3 io port: [0x00-0xffff] [ 0.173390] bus: 05 index 4 mmio: [0x000000-0xffffffffffffffff] [ 0.173390] NET: Registered protocol family 2 [ 0.176357] IP route cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.179690] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.179690] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) [ 0.179690] TCP: Hash tables configured (established 16384 bind 16384) [ 0.179690] TCP reno registered [ 0.179690] NET: Registered protocol family 1 [ 0.179690] checking if image is initramfs... it is [ 1.026698] Freeing initrd memory: 3644k freed [ 1.026698] audit: initializing netlink socket (disabled) [ 1.026698] type=2000 audit(1225810330.026:1): initialized [ 1.046675] msgmni has been set to 990 [ 1.046675] alg: No test for stdrng (krng) [ 1.046675] io scheduler noop registered [ 1.046675] io scheduler anticipatory registered [ 1.046675] io scheduler deadline registered [ 1.046675] io scheduler cfq registered (default) [ 1.046675] pci 0000:00:02.0: Boot video device [ 1.053343] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 1.053343] pcieport-driver 0000:00:1c.0: found MSI capability [ 1.053343] pcieport-driver 0000:00:1c.0: irq 47 for MSI/MSI-X [ 1.053343] pci_express 0000:00:1c.0:pcie00: allocate port service [ 1.053343] pci_express 0000:00:1c.0:pcie02: allocate port service [ 1.053343] pci_express 0000:00:1c.0:pcie03: allocate port service [ 1.053343] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 1.053343] pcieport-driver 0000:00:1c.1: found MSI capability [ 1.053343] pcieport-driver 0000:00:1c.1: irq 46 for MSI/MSI-X [ 1.053343] pci_express 0000:00:1c.1:pcie00: allocate port service [ 1.053343] pci_express 0000:00:1c.1:pcie02: allocate port service [ 1.053343] pci_express 0000:00:1c.1:pcie03: allocate port service [ 1.053343] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 1.053343] pcieport-driver 0000:00:1c.2: found MSI capability [ 1.053343] pcieport-driver 0000:00:1c.2: irq 45 for MSI/MSI-X [ 1.053343] pci_express 0000:00:1c.2:pcie00: allocate port service [ 1.053343] pci_express 0000:00:1c.2:pcie02: allocate port service [ 1.053343] pci_express 0000:00:1c.2:pcie03: allocate port service [ 1.063343] Serial: 8250/16550 driver4 ports, IRQ sharing disabled [ 1.066677] brd: module loaded [ 1.066677] Driver 'sd' needs updating - please use bus_type methods [ 1.066677] ahci 0000:00:1f.2: version 3.0 [ 1.070012] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 7 [ 1.070012] PCI: setting IRQ 7 as level-triggered [ 1.070012] ahci 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.070012] ahci 0000:00:1f.2: PCI INT B disabled [ 1.070012] ahci: probe of 0000:00:1f.2 failed with error -22 [ 1.070012] ata_piix 0000:00:1f.2: version 2.12 [ 1.070012] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.070012] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ] [ 1.070012] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 1.070012] scsi0 : ata_piix [ 1.070012] scsi1 : ata_piix [ 1.070012] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 [ 1.070012] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 [ 1.396668] ata2.00: ATA-4: SILICONMOTION SM223AC, , max UDMA/66 [ 1.396668] ata2.00: 7815024 sectors, multi 0: LBA [ 1.410001] ata2.00: configured for UDMA/66 [ 1.410001] scsi 1:0:0:0: Direct-Access ATA SILICONMOTION SM n/a PQ: 0 ANSI: 5 [ 1.410001] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.410001] sd 1:0:0:0: [sda] Write Protect is off [ 1.410001] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.410001] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.410001] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.410001] sd 1:0:0:0: [sda] Write Protect is off [ 1.410001] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.410001] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.410001] sda: sda1 [ 1.410001] sd 1:0:0:0: [sda] Attached SCSI disk [ 1.412643] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 [ 1.434397] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.434397] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.434397] mice: PS/2 mouse device common for all mice [ 1.434397] rtc_cmos 00:03: RTC can wake from S4 [ 1.434397] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 1.434397] rtc0: alarms up to one month, 114 bytes nvram, , hpet irqs irqs [ 1.437731] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008) [ 1.437731] iTCO_wdt: Found a ICH6-M TCO device (Version=2, TCOBASE=0x0860) [ 1.437731] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 1.437731] iTCO_vendor_support: vendor-support=0 [ 1.437731] cpuidle: using governor ladder [ 1.437731] cpuidle: using governor menu [ 1.437731] Advanced Linux Sound Architecture Driver Version 1.0.18rc3. [ 1.437731] ALSA device list: [ 1.437731] No soundcards found. [ 1.437731] TCP cubic registered [ 1.437731] Using IPI Shortcut mode [ 1.443441] rtc_cmos 00:03: setting system clock to 2008-11-04 14:52:11 UTC (1225810331) [ 1.443441] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found [ 1.443441] Freeing unused kernel memory: 256k freed [ 1.456680] input: AT Translated Set 2 keyboard as /class/input/input0 [ 1.893341] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) [ 1.893341] processor ACPI0007:00: registered as cooling_device0 [ 1.893341] ACPI: Processor [CPU1] (supports 8 throttling states) [ 1.900011] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 1.907037] Marking TSC unstable due to TSC halts in idle [ 1.909405] thermal LNXTHERM:01: registered as thermal_zone0 [ 1.922789] ACPI: Thermal Zone [TZ00] (41 C) [ 2.360016] PM: Starting manual resume from disk [ 3.383346] input: PC Speaker as /class/input/input1 [ 3.386679] usbcore: registered new interface driver usbfs [ 3.386679] usbcore: registered new interface driver hub [ 3.386679] usbcore: registered new device driver usb [ 3.396831] usbcore: registered new interface driver libusual [ 3.406678] Initializing USB Mass Storage driver... [ 3.406678] usbcore: registered new interface driver usb-storage [ 3.410018] USB Mass Storage support registered. [ 3.423341] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.423341] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 3 [ 3.423341] PCI: setting IRQ 3 as level-triggered [ 3.423341] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.423341] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 3.423341] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 3.423341] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 [ 3.430009] ehci_hcd 0000:00:1d.7: debug port 1 [ 3.430009] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported [ 3.430009] ehci_hcd 0000:00:1d.7: irq 3, io mem 0xf7eb7c00 [ 3.439785] udev: starting version 131 [ 3.439785] udev: deprecated sysfs layout (kernel too old, or CONFIG_SYSFS_DEPRECATED) is unsupported, some udev features may fail [ 3.443351] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 3.443351] usb usb1: configuration #1 chosen from 1 choice [ 3.443351] hub 1-0:1.0: USB hub found [ 3.443351] hub 1-0:1.0: 8 ports detected [ 3.453351] uhci_hcd: USB Universal Host Controller Interface driver [ 3.453351] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.453351] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 3.453351] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 3.453351] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 3.453351] uhci_hcd 0000:00:1d.0: irq 3, io base 0x0000e400 [ 3.453351] usb usb2: configuration #1 chosen from 1 choice [ 3.453351] hub 2-0:1.0: USB hub found [ 3.453351] hub 2-0:1.0: 2 ports detected [ 3.453351] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 3.453351] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 3.453351] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 3.453351] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [ 3.453351] uhci_hcd 0000:00:1d.1: irq 7, io base 0x0000e480 [ 3.453351] usb usb3: configuration #1 chosen from 1 choice [ 3.453351] hub 3-0:1.0: USB hub found [ 3.453351] hub 3-0:1.0: 2 ports detected [ 3.453351] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 3.456725] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 3.456725] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 3.456725] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [ 3.456725] uhci_hcd 0000:00:1d.2: irq 10, io base 0x0000e800 [ 3.456725] usb usb4: configuration #1 chosen from 1 choice [ 3.456725] hub 4-0:1.0: USB hub found [ 3.456725] hub 4-0:1.0: 2 ports detected [ 3.456725] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 3.456725] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 3.456725] uhci_hcd 0000:00:1d.3: UHCI Host Controller [ 3.456725] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 [ 3.456725] uhci_hcd 0000:00:1d.3: irq 5, io base 0x0000e880 [ 3.456725] usb usb5: configuration #1 chosen from 1 choice [ 3.456725] hub 5-0:1.0: USB hub found [ 3.456725] hub 5-0:1.0: 2 ports detected [ 3.750020] usb 1-5: new high speed USB device using ehci_hcd and address 2 [ 3.873356] usb 1-5: configuration #1 chosen from 1 choice [ 3.880024] scsi2 : SCSI emulation for USB Mass Storage devices [ 3.886689] usb-storage: device found at 2 [ 3.886689] usb-storage: waiting for device to settle before scanning [ 4.233345] Linux agpgart interface v0.103 [ 4.243350] agpgart-intel 0000:00:00.0: Intel 915GM Chipset [ 4.243350] agpgart-intel 0000:00:00.0: detected 7932K stolen memory [ 4.256685] input: Power Button (FF) as /class/input/input2 [ 4.260018] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 [ 4.280088] ACPI: Power Button (FF) [PWRF] [ 4.280088] input: Lid Switch as /class/input/input3 [ 4.300050] ACPI: Lid Switch [LID] [ 4.300050] input: Sleep Button (CM) as /class/input/input4 [ 4.306678] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 4.323348] pciehp 0000:00:1c.0:pcie02: HPC vendor_id 8086 device_id 2660 ss_vid 0 ss_did 0 [ 4.323348] pciehp 0000:00:1c.0:pcie02: service driver pciehp loaded [ 4.323348] pciehp 0000:00:1c.1:pcie02: HPC vendor_id 8086 device_id 2662 ss_vid 0 ss_did 0 [ 4.326681] ACPI: Sleep Button (CM) [SLPB] [ 4.326681] eeepc: Eee PC Hotkey Driver [ 4.326681] eeepc: Hotkey init flags 0x41 [ 4.326681] eeepc: Get control methods supported: 0x101711 [ 4.326681] input: Asus EeePC extra buttons as /class/input/input5 [ 4.353350] input: Power Button (CM) as /class/input/input6 [ 4.380021] ACPI: Power Button (CM) [PWRB] [ 4.616685] intel_rng: FWH not detected [ 5.329945] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 5.329945] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 5.329945] pciehp 0000:00:1c.1:pcie02: service driver pciehp loaded [ 5.329945] pciehp 0000:00:1c.2:pcie02: HPC vendor_id 8086 device_id 2664 ss_vid 0 ss_did 0 [ 5.329945] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 5.329945] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 5.410019] sd 1:0:0:0: Attached scsi generic sg0 type 0 [ 5.507622] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000 [ 5.646685] input: SynPS/2 Synaptics TouchPad as /class/input/input7 [ 6.333384] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 6.333384] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 6.333384] pciehp 0000:00:1c.2:pcie02: service driver pciehp loaded [ 6.333384] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 6.333384] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 6.340021] ACPI: AC Adapter [AC0] (on-line) [ 6.360019] ACPI: Battery Slot [BAT0] (battery absent) [ 6.430016] input: Video Bus as /class/input/input8 [ 6.456688] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) [ 6.483350] cfg80211: Using static regulatory domain info [ 6.483350] cfg80211: Regulatory domain: US [ 6.483350] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) [ 6.483350] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm) [ 6.483350] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.483350] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.483350] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.488610] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.488610] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm) [ 6.488610] cfg80211: Calling CRDA for country: US [ 6.550009] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 6.550009] ath5k_pci 0000:01:00.0: setting latency timer to 64 [ 6.550009] ath5k_pci 0000:01:00.0: registered as 'phy0' [ 6.606683] phy0: Selected rate control algorithm 'pid' [ 6.633352] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) [ 6.643350] udev: renamed network interface wlan0 to ath0 [ 6.833343] fuse init (API version 7.10) [ 7.143345] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com [ 7.192555] aes_i586: Unknown symbol crypto_it_tab [ 7.192555] aes_i586: Unknown symbol crypto_aes_set_key [ 7.192555] aes_i586: Unknown symbol crypto_fl_tab [ 7.192555] aes_i586: Unknown symbol crypto_il_tab [ 7.192555] aes_i586: Unknown symbol crypto_ft_tab [ 7.256686] aes_i586: Unknown symbol crypto_it_tab [ 7.260042] aes_i586: Unknown symbol crypto_aes_set_key [ 7.260042] aes_i586: Unknown symbol crypto_fl_tab [ 7.260042] aes_i586: Unknown symbol crypto_il_tab [ 7.260042] aes_i586: Unknown symbol crypto_ft_tab [ 7.613195] Adding 409592k swap on /swapfile. Priority:-1 extents:704 across:581464k [ 8.380010] ip_tables: (C) 2000-2006 Netfilter Core Team [ 8.440003] nf_conntrack version 0.5.0 (8056 buckets, 32224 max) [ 8.440003] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use [ 8.440003] nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or [ 8.440003] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. [ 8.590039] NET: Registered protocol family 10 [ 8.590039] lo: Disabled Privacy Extensions [ 8.610013] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 8.890044] usb-storage: device scan complete [ 8.890044] scsi 2:0:0:0: Direct-Access USB2.0 CardReader SD0 0100 PQ: 0 ANSI: 0 [ 9.065604] sensors[3179]: segfault at 46 ip b7e782cd sp bffa6c40 error 4 in libc-2.7.so[b7e1e000+149000] [ 9.065604] sensors[3181]: segfault at 46 ip b7f862cd sp bfab6760 error 4 in libc-2.7.so[b7f2c000+149000] [ 9.260037] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.260037] sd 2:0:0:0: [sdb] Write Protect is off [ 9.260037] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.260037] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.260037] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.260037] sd 2:0:0:0: [sdb] Write Protect is off [ 9.260037] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.260037] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.260037] sdb: sdb1 [ 9.263350] sd 2:0:0:0: [sdb] Attached SCSI removable disk [ 9.263350] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 9.987268] ACPI: WMI: Mapper loaded [ 11.612481] warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use) [ 13.463348] [drm] Initialized drm 1.1.0 20060810 [ 13.496686] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 13.496686] pci 0000:00:02.0: setting latency timer to 64 [ 13.496686] [drm:i915_gem_detect_bit_6_swizzle] *ERROR* Couldn't read from MCHBAR. Disabling tiling. [ 13.496686] [drm:i915_driver_load] *ERROR* failed to enable MSI [ 13.496686] [drm] Initialized i915 1.6.0 20080730 on minor 0 [ 13.980003] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 15.313362] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 57.716665] NET: Registered protocol family 17 [ 59.109999] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 59.113346] ath0: authenticated [ 59.113346] ath0: associate with AP 00:1b:9e:19:45:90 [ 59.120003] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 59.120003] ath0: associated [ 59.120003] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 71.536678] ath0: deauthenticating by local choice (reason=3) [ 71.961536] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 75.667576] PM: Syncing filesystems ... done. [ 75.667576] Freezing user space processes ... (elapsed 0.00 seconds) done. [ 75.670011] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. [ 75.670011] Suspending console(s) (use no_console_suspend to debug) [ 75.670011] pci 0000:00:02.0: PCI INT A disabled [ 76.200036] sd 1:0:0:0: [sda] Stopping disk [ 76.200036] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 76.200036] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 76.200036] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 76.200036] ath5k_pci 0000:01:00.0: PCI INT A disabled [ 76.213372] ata_piix 0000:00:1f.2: PCI INT B disabled [ 76.226702] ehci_hcd 0000:00:1d.7: PCI INT A disabled [ 76.240037] uhci_hcd 0000:00:1d.3: PCI INT D disabled [ 76.240037] uhci_hcd 0000:00:1d.2: PCI INT C disabled [ 76.240037] uhci_hcd 0000:00:1d.1: PCI INT B disabled [ 76.240037] uhci_hcd 0000:00:1d.0: PCI INT A disabled [ 76.240037] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 76.240037] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 76.240037] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 76.253333] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 76.266703] ACPI: Preparing to enter system sleep state S3 [ 76.266703] Intel machine check architecture supported. [ 76.266703] Intel machine check reporting enabled on CPU#0. [ 76.266703] Back to C! [ 76.266703] Force enabled HPET at resume [ 76.267711] ACPI: Waking up from system sleep state S3 [ 76.306666] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 76.321361] pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900003) [ 76.340041] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002) [ 76.340041] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 76.340041] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 76.340041] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 76.340041] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100504) [ 76.340041] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 76.340041] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 76.340041] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 76.340041] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 76.340041] pciehp 0000:00:1c.1:pcie02: Card present on Slot(2) [ 76.340041] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 76.340041] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 77.343370] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 77.343370] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 78.346704] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 78.346704] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 79.873330] irq 10: nobody cared (try booting with the "irqpoll" option) [ 79.873330] Pid: 4930, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #124 [ 79.873330] Call Trace: [ 79.873330] [<c0142d0c>] __report_bad_irq+0x24/0x69 [ 79.873330] [<c0142d13>] __report_bad_irq+0x2b/0x69 [ 79.873330] [<c0142e3e>] note_interrupt+0xed/0x133 [ 79.873330] [<c0142291>] handle_IRQ_event+0x1a/0x3f [ 79.873330] [<c0143538>] handle_level_irq+0x4d/0x8d [ 79.873330] [<c0104e95>] do_IRQ+0x55/0x6c [ 79.873330] [<c010430b>] common_interrupt+0x23/0x28 [ 79.873330] [<c0230000>] atkbd_schedule_event_work+0x34/0x51 [ 79.873330] [<c011ec28>] __do_softirq+0x2a/0xbc [ 79.873330] [<c011ecdc>] do_softirq+0x22/0x26 [ 79.873330] [<c011ef49>] irq_exit+0x25/0x55 [ 79.873330] [<c0104e9a>] do_IRQ+0x5a/0x6c [ 79.873330] [<c010430b>] common_interrupt+0x23/0x28 [ 79.873330] [<c01bb6e8>] pci_bus_write_config_word+0x28/0x2e [ 79.873330] [<c01bd29b>] pci_restore_state+0x79/0x15c [ 79.873330] [<c01c2440>] resume_iter+0x0/0x25 [ 79.873330] [<c01c2af0>] pcie_portdrv_restore_config+0x9/0x22 [ 79.873330] [<c01c2b45>] pcie_portdrv_resume+0x8/0x10 [ 79.873330] [<c01bf1d3>] pci_legacy_resume+0x15/0x16 [ 79.873330] [<c020984f>] pm_op+0x52/0xac [ 79.873330] [<c0209e15>] device_resume+0x7d/0x2d2 [ 79.873330] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 79.873330] [<c0135de6>] enter_state+0xdf/0x12e [ 79.873330] [<c0135ec3>] state_store+0x8e/0xa4 [ 79.873330] [<c0135e35>] state_store+0x0/0xa4 [ 79.873330] [<c01b3d8b>] kobj_attr_store+0x18/0x1c [ 79.873330] [<c0190d72>] sysfs_write_file+0xaf/0xdc [ 79.873330] [<c0190cc3>] sysfs_write_file+0x0/0xdc [ 79.873330] [<c0162b38>] vfs_write+0x83/0xf6 [ 79.873330] [<c0162ec9>] sys_write+0x3c/0x63 [ 79.873330] [<c010376d>] sysenter_do_call+0x12/0x21 [ 79.873330] [<c0290000>] __inet6_lookup_established+0x98/0x21c [ 79.873330] handlers: [ 79.873330] [<e0018d79>] (usb_hcd_irq+0x0/0x57 [usbcore]) [ 79.873330] Disabling IRQ #10 [ 79.873330] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 79.873330] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 79.873330] pciehp 0000:00:1c.2:pcie02: Card present on Slot(3) [ 79.873330] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 79.873330] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 80.880036] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 80.880036] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 81.883371] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 81.883371] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 81.883371] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 81.883371] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 81.883371] usb usb2: root hub lost power or was reset [ 81.883371] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 81.883371] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 81.883371] usb usb3: root hub lost power or was reset [ 81.883371] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 81.883371] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 81.883371] usb usb4: root hub lost power or was reset [ 81.883371] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 81.883371] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 81.883371] usb usb5: root hub lost power or was reset [ 81.896702] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 81.896702] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 81.896702] pci 0000:00:1e.0: restoring config space at offset 0xf (was 0x60000, writing 0x600ff) [ 81.896702] pci 0000:00:1e.0: setting latency timer to 64 [ 81.910037] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 81.910037] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 81.910037] ath5k_pci 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a) [ 81.910037] ath5k_pci 0000:01:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xfbef0004) [ 81.910037] ath5k_pci 0000:01:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x4) [ 81.910037] ath5k_pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007) [ 81.923372] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 81.943328] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 81.943328] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 82.086705] ata2.00: configured for UDMA/66 [ 82.086705] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 82.086705] sd 1:0:0:0: [sda] Write Protect is off [ 82.086705] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 82.086705] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 82.953368] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 82.953368] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 82.953368] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 83.956703] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 83.956703] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 83.956703] sd 1:0:0:0: [sda] Starting disk [ 84.210036] usb 1-5: reset high speed USB device using ehci_hcd and address 2 [ 85.446704] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 85.446704] pci 0000:00:02.0: setting latency timer to 64 [ 85.446704] Restarting tasks ... done. [ 86.437568] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 88.980037] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 100.673326] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 100.676677] ath0: authenticated [ 100.676677] ath0: associate with AP 00:1b:9e:19:45:90 [ 100.683332] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 100.683332] ath0: associated [ 100.683332] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 15:01 ` Alan Jenkins @ 2008-11-04 15:11 ` Matthew Garrett 2008-11-04 15:44 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-04 15:11 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel On Tue, Nov 04, 2008 at 03:01:07PM +0000, Alan Jenkins wrote: > Hey... you're making this conditional on whether a power led is reported > present, right? Are you sure the EeePC doesn't report itself as having > a power led? Doesn't seem to on the one I was testing, but it's possible. Any chance you could instrument it? There's only a few calls to msleep in pcihp_ctrl.c. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 15:11 ` Matthew Garrett @ 2008-11-04 15:44 ` Alan Jenkins 2008-11-04 15:57 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-04 15:44 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel Matthew Garrett wrote: > On Tue, Nov 04, 2008 at 03:01:07PM +0000, Alan Jenkins wrote: > > >> Hey... you're making this conditional on whether a power led is reported >> present, right? Are you sure the EeePC doesn't report itself as having >> a power led? >> > > Doesn't seem to on the one I was testing, but it's possible. Any chance > you could instrument it? There's only a few calls to msleep in > pcihp_ctrl.c. > And pciehp_hpc.c! I instrumented all the delays I could find. hpc_check_lnk_status() was the only one that came up. 1000ms delay per call, and I get 6 such delays. The code is saying my hardware lacks "Data Layer Link Active Reporting". static int hpc_check_lnk_status(struct controller *ctrl) { u16 lnk_status; int retval = 0; /* * Data Link Layer Link Active Reporting must be capable for * hot-plug capable downstream port. But old controller might * not implement it. In this case, we wait for 1000 ms. */ if (ctrl->link_active_reporting){ /* Wait for Data Link Layer Link Active bit to be set */ pcie_wait_link_active(ctrl); /* * We must wait for 100 ms after the Data Link Layer * Link Active bit reads 1b before initiating a * configuration access to the hot added device. */ msleep(100); } else { msleep(1000); ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 15:44 ` Alan Jenkins @ 2008-11-04 15:57 ` Matthew Garrett 2008-11-04 16:22 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-04 15:57 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel On Tue, Nov 04, 2008 at 03:44:23PM +0000, Alan Jenkins wrote: > I instrumented all the delays I could find. hpc_check_lnk_status() was > the only one that came up. 1000ms delay per call, and I get 6 such delays. Ok, which is getting called from pciehp_enable_slot(). I'm not quite clear on why this is being called 6 times - any chance you can put a dump_stack() in there? Some are probably directly from the resume code. This confuses me a little, since there's a check for whether there's a card in the slot first. If that fails, pciehp_enable_slot() isn't called. If it succeeds, pciehp_enable_slot checks whether the slot is already powered up. If it is, it bails before doing the link setup. So something funny is going on here, since on the Eee I'd expect those slots to either be empty or already powered up. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 15:57 ` Matthew Garrett @ 2008-11-04 16:22 ` Alan Jenkins 2008-11-09 16:08 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-04 16:22 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel [-- Attachment #1: Type: text/plain, Size: 3034 bytes --] Matthew Garrett wrote: > On Tue, Nov 04, 2008 at 03:44:23PM +0000, Alan Jenkins wrote: > > >> I instrumented all the delays I could find. hpc_check_lnk_status() was >> the only one that came up. 1000ms delay per call, and I get 6 such delays. >> > > Ok, which is getting called from pciehp_enable_slot(). I'm not quite > clear on why this is being called 6 times - any chance you can put a > dump_stack() in there? Some are probably directly from the resume code. > This confuses me a little, since there's a check for whether there's a > card in the slot first. If that fails, pciehp_enable_slot() isn't > called. If it succeeds, pciehp_enable_slot checks whether the slot is > already powered up. If it is, it bails before doing the link setup. So > something funny is going on here, since on the Eee I'd expect those > slots to either be empty or already powered up. > > [ 258.344326] ACPI: Waking up from system sleep state S3 A [ 259.856649] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 259.856649] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 259.856649] [<e00630b5>] pciehp_power_thread+0x96/0xcd [pciehp] [ 259.856649] [<e006301f>] pciehp_power_thread+0x0/0xcd [pciehp] [ 259.856649] [<c01269e6>] run_workqueue+0x62/0xc9 ... B [ 260.860020] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 260.860020] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 260.860020] [<c01c2270>] resume_iter+0x0/0x25 [ 260.860020] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 260.860020] [<c01c2270>] resume_iter+0x0/0x25 [ 260.860020] [<e0062287>] pciehp_resume+0xce/0xde [pciehp] [ 260.860020] [<c01c2292>] resume_iter+0x22/0x25 [ 260.860020] [<c02054fa>] device_for_each_child+0x1a/0x3b [ 260.860020] [<c01bf003>] pci_legacy_resume+0x15/0x16 [ 260.860020] [<c020960f>] pm_op+0x52/0xac [ 260.860020] [<c0209bd5>] device_resume+0x7d/0x2d2 [ 260.860020] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb ... [ 263.393352] A [ 264.396686] B [ 265.466684] B [ 266.470019] B And there are two more during boot (see below), I'd like them to go away too please :). [ 5.370046] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 5.370046] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 5.370046] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 5.370046] [<e00629b8>] pciehp_probe+0x3b2/0x3ee [pciehp] [ 5.370046] [<c0191e61>] sysfs_do_create_link+0x97/0xd7 [ 5.370046] [<c01c276d>] pcie_port_probe_service+0x29/0x63 [ 5.370046] [<c020759b>] driver_probe_device+0xa1/0x117 [ 5.370046] [<c020765a>] __driver_attach+0x49/0x67 [ 5.370046] [<c0206df8>] bus_for_each_dev+0x35/0x56 [ 5.370046] [<c020744a>] driver_attach+0x11/0x13 [ 5.370046] [<c0207611>] __driver_attach+0x0/0x67 [ 5.370046] [<c020713f>] bus_add_driver+0x91/0x192 [ 5.370046] [<c02077b1>] driver_register+0x6d/0xc2 [ 5.370046] [<c0191561>] sysfs_addrm_finish+0x13/0x16f [ 5.370046] [<e0033000>] pcied_init+0x0/0x5c [pciehp] [ 5.370046] [<e003300b>] pcied_init+0xb/0x5c [pciehp] Thanks Alan [-- Attachment #2: dmesg --] [-- Type: text/plain, Size: 55599 bytes --] [ 0.000000] BIOS EBDA/lowmem at: 0009fc00/0009fc00 [ 0.000000] Linux version 2.6.28-rc3eeepc (alan@alan-desktop) (gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu3)) #128 Tue Nov 4 16:00:04 GMT 2008 [ 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 - 000000000009fc00 (usable) [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000001f780000 (usable) [ 0.000000] BIOS-e820: 000000001f780000 - 000000001f790000 (ACPI data) [ 0.000000] BIOS-e820: 000000001f790000 - 000000001f7d0000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000001f7d0000 - 000000001f7de000 (reserved) [ 0.000000] BIOS-e820: 000000001f7e0000 - 000000001f800000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) [ 0.000000] DMI present. [ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working it around. [ 0.000000] last_pfn = 0x1f780 max_arch_pfn = 0x1000000 [ 0.000000] kernel direct mapping tables up to 1f780000 @ 10000-16000 [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] RAMDISK: 1f3e0000 - 1f76f13f [ 0.000000] ACPI: RSDP 000FBE60, 0014 (r0 ACPIAM) [ 0.000000] ACPI: RSDT 1F780000, 0034 (r1 A M I OEMRSDT 3000803 MSFT 97) [ 0.000000] ACPI: FACP 1F780200, 0081 (r1 A M I OEMFACP 3000803 MSFT 97) [ 0.000000] ACPI: DSDT 1F780400, 5F61 (r1 A0797 A0797000 0 INTL 20051117) [ 0.000000] ACPI: FACS 1F790000, 0040 [ 0.000000] ACPI: APIC 1F780390, 0068 (r1 A M I OEMAPIC 3000803 MSFT 97) [ 0.000000] ACPI: OEMB 1F790040, 0046 (r1 A M I AMI_OEM 3000803 MSFT 97) [ 0.000000] ACPI: MCFG 1F786370, 003C (r1 A M I OEMMCFG 3000803 MSFT 97) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] 503MB LOWMEM available. [ 0.000000] mapped low ram: 0 - 1f780000 [ 0.000000] low ram: 00000000 - 1f780000 [ 0.000000] bootmap 00013000 - 00016ef0 [ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 001f780000] [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] [ 0.000000] #1 [0000100000 - 00004648a4] TEXT DATA BSS ==> [0000100000 - 00004648a4] [ 0.000000] #2 [001f3e0000 - 001f76f13f] RAMDISK ==> [001f3e0000 - 001f76f13f] [ 0.000000] #3 [0000465000 - 000046c000] INIT_PG_TABLE ==> [0000465000 - 000046c000] [ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000] [ 0.000000] #5 [0000010000 - 0000013000] PGTABLE ==> [0000010000 - 0000013000] [ 0.000000] #6 [0000013000 - 0000017000] BOOTMAP ==> [0000013000 - 0000017000] [ 0.000000] found SMP MP-table at [c00ff780] 000ff780 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] Normal 0x00001000 -> 0x0001f780 [ 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 -> 0x0001f780 [ 0.000000] On node 0 totalpages: 128783 [ 0.000000] free_area_init_node: node 0, pgdat c03be708, node_mem_map c1000200 [ 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: 975 pages used for memmap [ 0.000000] Normal zone: 123825 pages, LIFO batch:31 [ 0.000000] Movable zone: 0 pages used for memmap [ 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: Skipping IOAPIC probe due to 'noapic' option. [ 0.000000] Using ACPI for processor (LAPIC) configuration information [ 0.000000] Intel MultiProcessor Specification v1.4 [ 0.000000] Virtual Wire compatibility mode. [ 0.000000] MPTABLE: OEM ID: INTEL [ 0.000000] MPTABLE: Product ID: [ 0.000000] MPTABLE: APIC at: 0xFEE00000 [ 0.000000] I/O APIC #1 Version 32 at 0xFEC00000. [ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs [ 0.000000] Processors: 1 [ 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 20000000 (gap: 1f800000:df600000) [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 127776 [ 0.000000] Kernel command line: root=/dev/sda1 resume=/dev/sda1 resume_offset=12453 ro vga=0xf07 noapic notsc [ 0.000000] notsc: Kernel compiled with CONFIG_X86_TSC, cannot disable TSC completely. [ 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] PID hash table entries: 2048 (order: 11, 8192 bytes) [ 0.000000] Fast TSC calibration using PIT [ 0.000000] Detected 630.098 MHz processor. [ 0.000000] Console: colour VGA+ 80x60 [ 0.000000] console [tty0] enabled [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 503408k/515584k available (1646k kernel code, 11620k reserved, 1208k data, 256k init, 0k highmem) [ 0.000000] virtual kernel memory layout: [ 0.000000] fixmap : 0xfffac000 - 0xfffff000 ( 332 kB) [ 0.000000] vmalloc : 0xdff80000 - 0xfffaa000 ( 512 MB) [ 0.000000] lowmem : 0xc0000000 - 0xdf780000 ( 503 MB) [ 0.000000] .init : 0xc03cc000 - 0xc040c000 ( 256 kB) [ 0.000000] .data : 0xc029b8d6 - 0xc03c9c70 (1208 kB) [ 0.000000] .text : 0xc0100000 - 0xc029b8d6 (1646 kB) [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. [ 0.000000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 1260.70 BogoMIPS (lpj=2100326) [ 0.003333] Mount-cache hash table entries: 512 [ 0.003333] CPU: L1 I cache: 32K, L1 D cache: 32K [ 0.003333] CPU: L2 cache: 512K [ 0.003333] Intel machine check architecture supported. [ 0.003333] Intel machine check reporting enabled on CPU#0. [ 0.003333] CPU: Intel(R) Celeron(R) M processor 900MHz stepping 08 [ 0.003333] Checking 'hlt' instruction... OK. [ 0.016665] Freeing SMP alternatives: 0k freed [ 0.016665] ACPI: Core revision 20080926 [ 0.036665] ACPI: setting ELCR to 0200 (from 0ca8) [ 0.039999] net_namespace: 740 bytes [ 0.039999] NET: Registered protocol family 16 [ 0.039999] ACPI: bus type pci registered [ 0.039999] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.039999] PCI: Not using MMCONFIG. [ 0.039999] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5 [ 0.039999] PCI: Using configuration type 1 for base access [ 0.046665] ACPI: EC: Look up EC in DSDT [ 0.066665] ACPI: Interpreter enabled [ 0.066665] ACPI: (supports S0 S1 S3 S4 S5) [ 0.066665] ACPI: Using PIC for interrupt routing [ 0.066665] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255 [ 0.073332] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources [ 0.073332] PCI: Using MMCONFIG for extended config space [ 0.089999] ACPI: EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62 [ 0.089999] ACPI: EC: driver started in poll mode [ 0.089999] ACPI: No dock devices found. [ 0.089999] ACPI: PCI Root Bridge [PCI0] (0000:00) [ 0.089999] pci 0000:00:02.0: reg 10 32bit mmio: [0xf7f00000-0xf7f7ffff] [ 0.089999] pci 0000:00:02.0: reg 14 io port: [0xec00-0xec07] [ 0.089999] pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff] [ 0.089999] pci 0000:00:02.0: reg 1c 32bit mmio: [0xf7ec0000-0xf7efffff] [ 0.089999] pci 0000:00:02.1: reg 10 32bit mmio: [0xf7f80000-0xf7ffffff] [ 0.089999] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf7eb8000-0xf7ebbfff] [ 0.089999] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.089999] pci 0000:00:1b.0: PME# disabled [ 0.089999] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.093332] pci 0000:00:1c.0: PME# disabled [ 0.093332] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.093332] pci 0000:00:1c.1: PME# disabled [ 0.093332] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold [ 0.093332] pci 0000:00:1c.2: PME# disabled [ 0.093332] pci 0000:00:1d.0: reg 20 io port: [0xe400-0xe41f] [ 0.093332] pci 0000:00:1d.1: reg 20 io port: [0xe480-0xe49f] [ 0.093332] pci 0000:00:1d.2: reg 20 io port: [0xe800-0xe81f] [ 0.093332] pci 0000:00:1d.3: reg 20 io port: [0xe880-0xe89f] [ 0.093332] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf7eb7c00-0xf7eb7fff] [ 0.093332] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold [ 0.093332] pci 0000:00:1d.7: PME# disabled [ 0.093332] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 [ 0.093332] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO [ 0.093332] pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO [ 0.093332] pci 0000:00:1f.2: reg 10 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 14 io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 18 io port: [0x00-0x07] [ 0.093332] pci 0000:00:1f.2: reg 1c io port: [0x00-0x03] [ 0.093332] pci 0000:00:1f.2: reg 20 io port: [0xffa0-0xffaf] [ 0.093332] pci 0000:00:1f.2: PME# supported from D3hot [ 0.093332] pci 0000:00:1f.2: PME# disabled [ 0.093332] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f] [ 0.093332] pci 0000:03:00.0: reg 10 64bit mmio: [0xfbfc0000-0xfbffffff] [ 0.093332] pci 0000:03:00.0: reg 30 32bit mmio: [0xfbfa0000-0xfbfbffff] [ 0.093332] pci 0000:03:00.0: PME# supported from D3hot D3cold [ 0.093332] pci 0000:03:00.0: PME# disabled [ 0.093332] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.093332] pci 0000:00:1c.1: bridge 32bit mmio: [0xfbf00000-0xfbffffff] [ 0.093332] pci 0000:01:00.0: reg 10 64bit mmio: [0xfbef0000-0xfbefffff] [ 0.093332] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' [ 0.093332] pci 0000:00:1c.2: bridge 32bit mmio: [0xf8000000-0xfbefffff] [ 0.093332] pci 0000:00:1c.2: bridge 64bit mmio pref: [0xf0000000-0xf6ffffff] [ 0.093332] pci 0000:00:1e.0: transparent bridge [ 0.093332] bus 00 -> node 0 [ 0.093332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P3._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P5._PRT] [ 0.096665] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT] [ 0.106665] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15) [ 0.109998] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 11 12 14 15) [ 0.113332] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.113332] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled. [ 0.116665] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15) [ 0.116665] SCSI subsystem initialized [ 0.116665] libata version 3.00 loaded. [ 0.116665] PCI: Using ACPI for IRQ routing [ 0.116665] hpet clockevent registered [ 0.116665] HPET: 3 timers in total, 0 timers will be used for per-cpu timer [ 0.116665] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.119998] hpet0: 3 comparators, 64-bit 14.318180 MHz counter [ 0.123332] pnp: PnP ACPI init [ 0.123332] ACPI: bus type pnp registered [ 0.126672] Switched to NOHz mode on CPU #0 [ 0.130009] pnp: PnP ACPI: found 13 devices [ 0.130009] ACPI: ACPI bus type pnp unregistered [ 0.130009] system 00:01: iomem range 0xfed13000-0xfed19fff has been reserved [ 0.130009] system 00:08: ioport range 0x380-0x383 has been reserved [ 0.130009] system 00:08: ioport range 0x4d0-0x4d1 has been reserved [ 0.130009] system 00:08: ioport range 0x800-0x87f has been reserved [ 0.130009] system 00:08: ioport range 0x480-0x4bf has been reserved [ 0.130009] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved [ 0.130009] system 00:08: iomem range 0xfed20000-0xfed8ffff has been reserved [ 0.130009] system 00:08: iomem range 0xfff00000-0xffffffff could not be reserved [ 0.130009] system 00:09: iomem range 0xfec00000-0xfec00fff has been reserved [ 0.130009] system 00:09: iomem range 0xfee00000-0xfee00fff has been reserved [ 0.130009] system 00:0a: iomem range 0xe0000000-0xefffffff has been reserved [ 0.137577] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved [ 0.137577] system 00:0c: iomem range 0x0-0x9ffff could not be reserved [ 0.137577] system 00:0c: iomem range 0xc0000-0xcffff could not be reserved [ 0.137577] system 00:0c: iomem range 0xe0000-0xfffff could not be reserved [ 0.137577] system 00:0c: iomem range 0x100000-0x1f7fffff could not be reserved [ 0.173337] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:04 [ 0.173337] pci 0000:00:1c.0: IO window: disabled [ 0.173337] pci 0000:00:1c.0: MEM window: disabled [ 0.173337] pci 0000:00:1c.0: PREFETCH window: disabled [ 0.173337] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03 [ 0.173337] pci 0000:00:1c.1: IO window: disabled [ 0.173337] pci 0000:00:1c.1: MEM window: 0xfbf00000-0xfbffffff [ 0.173337] pci 0000:00:1c.1: PREFETCH window: disabled [ 0.173337] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:01 [ 0.173337] pci 0000:00:1c.2: IO window: disabled [ 0.173337] pci 0000:00:1c.2: MEM window: 0xf8000000-0xfbefffff [ 0.173337] pci 0000:00:1c.2: PREFETCH window: 0x000000f0000000-0x000000f6ffffff [ 0.173337] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05 [ 0.173337] pci 0000:00:1e.0: IO window: disabled [ 0.173337] pci 0000:00:1e.0: MEM window: disabled [ 0.173337] pci 0000:00:1e.0: PREFETCH window: disabled [ 0.173337] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 5 [ 0.173337] PCI: setting IRQ 5 as level-triggered [ 0.173337] pci 0000:00:1c.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 0.173337] pci 0000:00:1c.0: setting latency timer to 64 [ 0.173337] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 [ 0.176701] PCI: setting IRQ 11 as level-triggered [ 0.176701] pci 0000:00:1c.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11 [ 0.176701] pci 0000:00:1c.1: setting latency timer to 64 [ 0.176701] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 [ 0.176701] PCI: setting IRQ 10 as level-triggered [ 0.176701] pci 0000:00:1c.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 0.176701] pci 0000:00:1c.2: setting latency timer to 64 [ 0.176701] pci 0000:00:1e.0: setting latency timer to 64 [ 0.176701] bus: 00 index 0 io port: [0x00-0xffff] [ 0.176701] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff] [ 0.176701] bus: 04 index 0 mmio: [0x0-0x0] [ 0.176701] bus: 04 index 1 mmio: [0x0-0x0] [ 0.176701] bus: 04 index 2 mmio: [0x0-0x0] [ 0.176701] bus: 04 index 3 mmio: [0x0-0x0] [ 0.176701] bus: 03 index 0 mmio: [0x0-0x0] [ 0.176701] bus: 03 index 1 mmio: [0xfbf00000-0xfbffffff] [ 0.176701] bus: 03 index 2 mmio: [0x0-0x0] [ 0.176701] bus: 03 index 3 mmio: [0x0-0x0] [ 0.176701] bus: 01 index 0 mmio: [0x0-0x0] [ 0.176701] bus: 01 index 1 mmio: [0xf8000000-0xfbefffff] [ 0.176701] bus: 01 index 2 mmio: [0xf0000000-0xf6ffffff] [ 0.176701] bus: 01 index 3 mmio: [0x0-0x0] [ 0.176701] bus: 05 index 0 mmio: [0x0-0x0] [ 0.176701] bus: 05 index 1 mmio: [0x0-0x0] [ 0.176701] bus: 05 index 2 mmio: [0x0-0x0] [ 0.176701] bus: 05 index 3 io port: [0x00-0xffff] [ 0.176701] bus: 05 index 4 mmio: [0x000000-0xffffffffffffffff] [ 0.176701] NET: Registered protocol family 2 [ 0.179669] IP route cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.183002] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.183002] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) [ 0.183002] TCP: Hash tables configured (established 16384 bind 16384) [ 0.183002] TCP reno registered [ 0.183002] NET: Registered protocol family 1 [ 0.183002] checking if image is initramfs... it is [ 1.030020] Freeing initrd memory: 3644k freed [ 1.030020] audit: initializing netlink socket (disabled) [ 1.030020] type=2000 audit(1225814774.030:1): initialized [ 1.050010] msgmni has been set to 990 [ 1.050010] alg: No test for stdrng (krng) [ 1.050010] io scheduler noop registered [ 1.050010] io scheduler anticipatory registered [ 1.050010] io scheduler deadline registered [ 1.050010] io scheduler cfq registered (default) [ 1.050010] pci 0000:00:02.0: Boot video device [ 1.056679] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 1.056679] pcieport-driver 0000:00:1c.0: found MSI capability [ 1.056679] pcieport-driver 0000:00:1c.0: irq 47 for MSI/MSI-X [ 1.056679] pci_express 0000:00:1c.0:pcie00: allocate port service [ 1.056679] pci_express 0000:00:1c.0:pcie02: allocate port service [ 1.056679] pci_express 0000:00:1c.0:pcie03: allocate port service [ 1.056679] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 1.056679] pcieport-driver 0000:00:1c.1: found MSI capability [ 1.056679] pcieport-driver 0000:00:1c.1: irq 46 for MSI/MSI-X [ 1.056679] pci_express 0000:00:1c.1:pcie00: allocate port service [ 1.056679] pci_express 0000:00:1c.1:pcie02: allocate port service [ 1.056679] pci_express 0000:00:1c.1:pcie03: allocate port service [ 1.056679] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 1.056679] pcieport-driver 0000:00:1c.2: found MSI capability [ 1.056679] pcieport-driver 0000:00:1c.2: irq 45 for MSI/MSI-X [ 1.056679] pci_express 0000:00:1c.2:pcie00: allocate port service [ 1.056679] pci_express 0000:00:1c.2:pcie02: allocate port service [ 1.056679] pci_express 0000:00:1c.2:pcie03: allocate port service [ 1.066678] Serial: 8250/16550 driver4 ports, IRQ sharing disabled [ 1.070013] brd: module loaded [ 1.070013] Driver 'sd' needs updating - please use bus_type methods [ 1.070013] ahci 0000:00:1f.2: version 3.0 [ 1.073348] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 7 [ 1.073348] PCI: setting IRQ 7 as level-triggered [ 1.073348] ahci 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.073348] ahci 0000:00:1f.2: PCI INT B disabled [ 1.073348] ahci: probe of 0000:00:1f.2 failed with error -22 [ 1.073348] ata_piix 0000:00:1f.2: version 2.12 [ 1.073348] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 1.073348] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ] [ 1.073348] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 1.073348] scsi0 : ata_piix [ 1.073348] scsi1 : ata_piix [ 1.073348] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14 [ 1.073348] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15 [ 1.400001] ata2.00: ATA-4: SILICONMOTION SM223AC, , max UDMA/66 [ 1.400001] ata2.00: 7815024 sectors, multi 0: LBA [ 1.413334] ata2.00: configured for UDMA/66 [ 1.413334] scsi 1:0:0:0: Direct-Access ATA SILICONMOTION SM n/a PQ: 0 ANSI: 5 [ 1.413334] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.413334] sd 1:0:0:0: [sda] Write Protect is off [ 1.413334] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.413334] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.413334] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 1.413334] sd 1:0:0:0: [sda] Write Protect is off [ 1.413334] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.413334] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 1.413334] sda: sda1 [ 1.413334] sd 1:0:0:0: [sda] Attached SCSI disk [ 1.415947] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 [ 1.445629] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.445629] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.445629] mice: PS/2 mouse device common for all mice [ 1.445629] rtc_cmos 00:03: RTC can wake from S4 [ 1.448963] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 1.448963] rtc0: alarms up to one month, 114 bytes nvram, , hpet irqs irqs [ 1.448963] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008) [ 1.448963] iTCO_wdt: Found a ICH6-M TCO device (Version=2, TCOBASE=0x0860) [ 1.448963] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 1.448963] iTCO_vendor_support: vendor-support=0 [ 1.448963] cpuidle: using governor ladder [ 1.448963] cpuidle: using governor menu [ 1.448963] Advanced Linux Sound Architecture Driver Version 1.0.18rc3. [ 1.448963] ALSA device list: [ 1.448963] No soundcards found. [ 1.448963] TCP cubic registered [ 1.450470] Using IPI Shortcut mode [ 1.450885] rtc_cmos 00:03: setting system clock to 2008-11-04 16:06:15 UTC (1225814775) [ 1.450885] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found [ 1.450885] Freeing unused kernel memory: 256k freed [ 1.496680] input: AT Translated Set 2 keyboard as /class/input/input0 [ 1.900004] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) [ 1.903344] processor ACPI0007:00: registered as cooling_device0 [ 1.903344] ACPI: Processor [CPU1] (supports 8 throttling states) [ 1.913831] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 1.913831] Marking TSC unstable due to TSC halts in idle [ 1.927730] thermal LNXTHERM:01: registered as thermal_zone0 [ 1.940632] ACPI: Thermal Zone [TZ00] (42 C) [ 2.383353] PM: Starting manual resume from disk [ 3.393347] input: PC Speaker as /class/input/input1 [ 3.393347] usbcore: registered new interface driver usbfs [ 3.393347] usbcore: registered new interface driver hub [ 3.393347] usbcore: registered new device driver usb [ 3.420009] usbcore: registered new interface driver libusual [ 3.433342] Initializing USB Mass Storage driver... [ 3.433342] usbcore: registered new interface driver usb-storage [ 3.433342] USB Mass Storage support registered. [ 3.450008] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.450008] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 3 [ 3.450008] PCI: setting IRQ 3 as level-triggered [ 3.450008] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.450008] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 3.450008] ehci_hcd 0000:00:1d.7: EHCI Host Controller [ 3.450008] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1 [ 3.456710] ehci_hcd 0000:00:1d.7: debug port 1 [ 3.456710] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported [ 3.456710] ehci_hcd 0000:00:1d.7: irq 3, io mem 0xf7eb7c00 [ 3.473122] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00 [ 3.473122] usb usb1: configuration #1 chosen from 1 choice [ 3.473122] hub 1-0:1.0: USB hub found [ 3.473122] hub 1-0:1.0: 8 ports detected [ 3.480010] uhci_hcd: USB Universal Host Controller Interface driver [ 3.480010] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 3.480010] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 3.480010] uhci_hcd 0000:00:1d.0: UHCI Host Controller [ 3.480010] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 3.480010] uhci_hcd 0000:00:1d.0: irq 3, io base 0x0000e400 [ 3.480010] usb usb2: configuration #1 chosen from 1 choice [ 3.480010] hub 2-0:1.0: USB hub found [ 3.480010] hub 2-0:1.0: 2 ports detected [ 3.480010] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 3.480010] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 3.480010] uhci_hcd 0000:00:1d.1: UHCI Host Controller [ 3.480010] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 [ 3.480010] uhci_hcd 0000:00:1d.1: irq 7, io base 0x0000e480 [ 3.483342] usb usb3: configuration #1 chosen from 1 choice [ 3.483342] hub 3-0:1.0: USB hub found [ 3.483342] hub 3-0:1.0: 2 ports detected [ 3.483342] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 3.483342] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 3.483342] uhci_hcd 0000:00:1d.2: UHCI Host Controller [ 3.483342] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 [ 3.483342] uhci_hcd 0000:00:1d.2: irq 10, io base 0x0000e800 [ 3.483342] usb usb4: configuration #1 chosen from 1 choice [ 3.483342] hub 4-0:1.0: USB hub found [ 3.483342] hub 4-0:1.0: 2 ports detected [ 3.483342] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 3.483342] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 3.483342] uhci_hcd 0000:00:1d.3: UHCI Host Controller [ 3.483342] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 [ 3.483342] uhci_hcd 0000:00:1d.3: irq 5, io base 0x0000e880 [ 3.483342] usb usb5: configuration #1 chosen from 1 choice [ 3.483342] hub 5-0:1.0: USB hub found [ 3.483342] hub 5-0:1.0: 2 ports detected [ 3.493681] udev: starting version 131 [ 3.493681] udev: deprecated sysfs layout (kernel too old, or CONFIG_SYSFS_DEPRECATED) is unsupported, some udev features may fail [ 3.776689] usb 1-5: new high speed USB device using ehci_hcd and address 2 [ 3.900016] usb 1-5: configuration #1 chosen from 1 choice [ 3.906686] scsi2 : SCSI emulation for USB Mass Storage devices [ 3.913352] usb-storage: device found at 2 [ 3.913352] usb-storage: waiting for device to settle before scanning [ 4.286673] Linux agpgart interface v0.103 [ 4.296674] agpgart-intel 0000:00:00.0: Intel 915GM Chipset [ 4.296674] agpgart-intel 0000:00:00.0: detected 7932K stolen memory [ 4.303355] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 [ 4.310019] input: Power Button (FF) as /class/input/input2 [ 4.336684] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 4.343347] ACPI: Power Button (FF) [PWRF] [ 4.343347] input: Lid Switch as /class/input/input3 [ 4.360013] pciehp 0000:00:1c.0:pcie02: HPC vendor_id 8086 device_id 2660 ss_vid 0 ss_did 0 [ 4.360013] pciehp 0000:00:1c.0:pcie02: service driver pciehp loaded [ 4.363343] pciehp 0000:00:1c.1:pcie02: HPC vendor_id 8086 device_id 2662 ss_vid 0 ss_did 0 [ 4.363343] ACPI: Lid Switch [LID] [ 4.363343] eeepc: Eee PC Hotkey Driver [ 4.363343] eeepc: Hotkey init flags 0x41 [ 4.363343] eeepc: Get control methods supported: 0x101711 [ 4.366753] input: Asus EeePC extra buttons as /class/input/input4 [ 4.396684] input: Sleep Button (CM) as /class/input/input5 [ 4.423350] ACPI: Sleep Button (CM) [SLPB] [ 4.423350] input: Power Button (CM) as /class/input/input6 [ 4.450022] ACPI: Power Button (CM) [PWRB] [ 4.656689] intel_rng: FWH not detected [ 5.370046] pciehp 0000:00:1c.1:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 5.370046] Pid: 1915, comm: modprobe Not tainted 2.6.28-rc3eeepc #128 [ 5.370046] Call Trace: [ 5.370046] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 5.370046] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 5.370046] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 5.370046] [<e00629b8>] pciehp_probe+0x3b2/0x3ee [pciehp] [ 5.370046] [<c0191e61>] sysfs_do_create_link+0x97/0xd7 [ 5.370046] [<c01c276d>] pcie_port_probe_service+0x29/0x63 [ 5.370046] [<c020759b>] driver_probe_device+0xa1/0x117 [ 5.370046] [<c020765a>] __driver_attach+0x49/0x67 [ 5.370046] [<c0206df8>] bus_for_each_dev+0x35/0x56 [ 5.370046] [<c020744a>] driver_attach+0x11/0x13 [ 5.370046] [<c0207611>] __driver_attach+0x0/0x67 [ 5.370046] [<c020713f>] bus_add_driver+0x91/0x192 [ 5.370046] [<c02077b1>] driver_register+0x6d/0xc2 [ 5.370046] [<c0191561>] sysfs_addrm_finish+0x13/0x16f [ 5.370046] [<e0033000>] pcied_init+0x0/0x5c [pciehp] [ 5.370046] [<e003300b>] pcied_init+0xb/0x5c [pciehp] [ 5.370046] [<c0101134>] _stext+0x4c/0x136 [ 5.370046] [<c01576c3>] __vunmap+0x7c/0x8a [ 5.370046] [<c0135324>] load_module+0xfe3/0x10e8 [ 5.370046] [<e0055000>] shpc_remove+0x0/0x1e [shpchp] [ 5.370046] [<c0116acc>] place_entity+0x6d/0xa3 [ 5.370046] [<c0116979>] wakeup_preempt_entity+0x49/0x60 [ 5.370046] [<c0119973>] check_preempt_wakeup+0xe6/0x10d [ 5.370046] [<c01354b0>] sys_init_module+0x87/0x177 [ 5.374286] [<c010376d>] sysenter_do_call+0x12/0x21 [ 5.374286] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 5.374286] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 5.374286] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 5.374286] pciehp 0000:00:1c.1:pcie02: service driver pciehp loaded [ 5.374286] pciehp 0000:00:1c.2:pcie02: HPC vendor_id 8086 device_id 2664 ss_vid 0 ss_did 0 [ 5.374286] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 5.374286] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 5.446677] sd 1:0:0:0: Attached scsi generic sg0 type 0 [ 5.723355] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000 [ 5.850019] input: SynPS/2 Synaptics TouchPad as /class/input/input7 [ 6.380049] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 6.380049] Pid: 1915, comm: modprobe Not tainted 2.6.28-rc3eeepc #128 [ 6.380049] Call Trace: [ 6.380049] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 6.380049] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 6.380049] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 6.380049] [<e00629b8>] pciehp_probe+0x3b2/0x3ee [pciehp] [ 6.380049] [<c0191e61>] sysfs_do_create_link+0x97/0xd7 [ 6.380049] [<c01c276d>] pcie_port_probe_service+0x29/0x63 [ 6.380049] [<c020759b>] driver_probe_device+0xa1/0x117 [ 6.380049] [<c020765a>] __driver_attach+0x49/0x67 [ 6.380049] [<c0206df8>] bus_for_each_dev+0x35/0x56 [ 6.380049] [<c020744a>] driver_attach+0x11/0x13 [ 6.380049] [<c0207611>] __driver_attach+0x0/0x67 [ 6.380049] [<c020713f>] bus_add_driver+0x91/0x192 [ 6.380049] [<c02077b1>] driver_register+0x6d/0xc2 [ 6.380049] [<c0191561>] sysfs_addrm_finish+0x13/0x16f [ 6.380049] [<e0033000>] pcied_init+0x0/0x5c [pciehp] [ 6.380049] [<e003300b>] pcied_init+0xb/0x5c [pciehp] [ 6.380049] [<c0101134>] _stext+0x4c/0x136 [ 6.380049] [<c01576c3>] __vunmap+0x7c/0x8a [ 6.380049] [<c0135324>] load_module+0xfe3/0x10e8 [ 6.380049] [<e0055000>] shpc_remove+0x0/0x1e [shpchp] [ 6.380049] [<c0116acc>] place_entity+0x6d/0xa3 [ 6.380049] [<c0116979>] wakeup_preempt_entity+0x49/0x60 [ 6.380049] [<c0119973>] check_preempt_wakeup+0xe6/0x10d [ 6.380049] [<c01354b0>] sys_init_module+0x87/0x177 [ 6.380049] [<c010376d>] sysenter_do_call+0x12/0x21 [ 6.380049] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 6.380049] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 6.380049] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 6.380063] pciehp 0000:00:1c.2:pcie02: service driver pciehp loaded [ 6.380063] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 6.380063] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 6.390021] ACPI: AC Adapter [AC0] (on-line) [ 6.643347] cfg80211: Using static regulatory domain info [ 6.643347] cfg80211: Regulatory domain: US [ 6.643347] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) [ 6.643347] (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm) [ 6.643347] (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.643347] (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.643347] (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.643347] (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm) [ 6.643347] (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm) [ 6.643347] cfg80211: Calling CRDA for country: US [ 6.766671] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 6.766671] ath5k_pci 0000:01:00.0: setting latency timer to 64 [ 6.766671] ath5k_pci 0000:01:00.0: registered as 'phy0' [ 6.843348] phy0: Selected rate control algorithm 'pid' [ 6.863370] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70) [ 6.876686] udev: renamed network interface wlan0 to ath0 [ 7.001210] ACPI: Battery Slot [BAT0] (battery present) [ 7.001210] input: Video Bus as /class/input/input8 [ 7.009736] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) [ 7.206674] fuse init (API version 7.10) [ 7.523336] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com [ 7.576210] aes_i586: Unknown symbol crypto_it_tab [ 7.576210] aes_i586: Unknown symbol crypto_aes_set_key [ 7.576210] aes_i586: Unknown symbol crypto_fl_tab [ 7.576210] aes_i586: Unknown symbol crypto_il_tab [ 7.576210] aes_i586: Unknown symbol crypto_ft_tab [ 7.636686] aes_i586: Unknown symbol crypto_it_tab [ 7.636686] aes_i586: Unknown symbol crypto_aes_set_key [ 7.636686] aes_i586: Unknown symbol crypto_fl_tab [ 7.640019] aes_i586: Unknown symbol crypto_il_tab [ 7.640019] aes_i586: Unknown symbol crypto_ft_tab [ 7.996805] Adding 409592k swap on /swapfile. Priority:-1 extents:704 across:581464k [ 8.753362] ip_tables: (C) 2000-2006 Netfilter Core Team [ 8.813336] nf_conntrack version 0.5.0 (8056 buckets, 32224 max) [ 8.816682] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use [ 8.816682] nf_conntrack.acct=1 kernel paramater, acct=1 nf_conntrack module option or [ 8.816682] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. [ 8.963348] usb-storage: device scan complete [ 8.963348] scsi 2:0:0:0: Direct-Access USB2.0 CardReader SD0 0100 PQ: 0 ANSI: 0 [ 8.983359] NET: Registered protocol family 10 [ 8.986692] lo: Disabled Privacy Extensions [ 9.000017] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 9.332351] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.335685] sd 2:0:0:0: [sdb] Write Protect is off [ 9.335685] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.335685] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.341221] sd 2:0:0:0: [sdb] 15660032 512-byte hardware sectors: (8.01 GB/7.46 GiB) [ 9.343097] sd 2:0:0:0: [sdb] Write Protect is off [ 9.343097] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00 [ 9.343097] sd 2:0:0:0: [sdb] Assuming drive cache: write through [ 9.346430] sdb: sdb1 [ 9.346430] sd 2:0:0:0: [sdb] Attached SCSI removable disk [ 9.346430] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 9.502044] sensors[3236]: segfault at 46 ip b7ecc2cd sp bf8fa590 error 4 in libc-2.7.so[b7e72000+149000] [ 9.502044] sensors[3238]: segfault at 46 ip b7f792cd sp bffa9450 error 4 in libc-2.7.so[b7f1f000+149000] [ 10.360506] ACPI: WMI: Mapper loaded [ 12.015464] warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use) [ 13.823335] [drm] Initialized drm 1.1.0 20060810 [ 13.843347] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 13.843347] pci 0000:00:02.0: setting latency timer to 64 [ 13.843347] [drm:i915_gem_detect_bit_6_swizzle] *ERROR* Couldn't read from MCHBAR. Disabling tiling. [ 13.843347] [drm:i915_driver_load] *ERROR* failed to enable MSI [ 13.843347] [drm] Initialized i915 1.6.0 20080730 on minor 0 [ 14.549175] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 15.422572] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 141.479990] NET: Registered protocol family 17 [ 142.833322] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 142.835861] ath0: authenticated [ 142.835861] ath0: associate with AP 00:1b:9e:19:45:90 [ 142.839994] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 142.839994] ath0: associated [ 142.839994] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 162.063362] ath0: no IPv6 routers present [ 228.866647] ath0: No ProbeResp from current AP 00:1b:9e:19:45:90 - assume out of range [ 230.016657] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 230.023314] ath0: authenticated [ 230.023314] ath0: associate with AP 00:1b:9e:19:45:90 [ 230.026652] ath0: RX ReassocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 230.026652] ath0: associated [ 254.106660] ath0: deauthenticating by local choice (reason=3) [ 254.661011] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 257.722015] PM: Syncing filesystems ... done. [ 257.722015] Freezing user space processes ... (elapsed 0.00 seconds) done. [ 257.723327] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. [ 257.723327] Suspending console(s) (use no_console_suspend to debug) [ 257.723327] pci 0000:00:02.0: PCI INT A disabled [ 258.276648] sd 1:0:0:0: [sda] Stopping disk [ 258.276648] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 258.276648] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 258.276648] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 258.276648] ath5k_pci 0000:01:00.0: PCI INT A disabled [ 258.289982] ata_piix 0000:00:1f.2: PCI INT B disabled [ 258.303315] ehci_hcd 0000:00:1d.7: PCI INT A disabled [ 258.316648] uhci_hcd 0000:00:1d.3: PCI INT D disabled [ 258.316648] uhci_hcd 0000:00:1d.2: PCI INT C disabled [ 258.316648] uhci_hcd 0000:00:1d.1: PCI INT B disabled [ 258.316648] uhci_hcd 0000:00:1d.0: PCI INT A disabled [ 258.316648] pciehp 0000:00:1c.2:pcie02: pciehp_suspend ENTRY [ 258.316648] pciehp 0000:00:1c.1:pcie02: pciehp_suspend ENTRY [ 258.316648] pciehp 0000:00:1c.0:pcie02: pciehp_suspend ENTRY [ 258.329981] HDA Intel 0000:00:1b.0: PCI INT A disabled [ 258.343315] ACPI: Preparing to enter system sleep state S3 [ 258.343315] Intel machine check architecture supported. [ 258.343315] Intel machine check reporting enabled on CPU#0. [ 258.343315] Back to C! [ 258.343315] Force enabled HPET at resume [ 258.344326] ACPI: Waking up from system sleep state S3 [ 258.533309] ACPI: EC: non-query interrupt received, switching to interrupt mode [ 258.834767] pci 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900003) [ 258.853356] HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100006, writing 0x100002) [ 258.853356] HDA Intel 0000:00:1b.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 258.853356] HDA Intel 0000:00:1b.0: setting latency timer to 64 [ 258.853356] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 258.853356] pcieport-driver 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100504) [ 258.853356] pcieport-driver 0000:00:1c.0: setting latency timer to 64 [ 258.853356] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 258.853356] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 258.853356] pcieport-driver 0000:00:1c.1: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 258.853356] pciehp 0000:00:1c.1:pcie02: Card present on Slot(2) [ 258.853356] pcieport-driver 0000:00:1c.1: setting latency timer to 64 [ 258.853356] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 259.856649] pciehp 0000:00:1c.1:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 259.856649] Pid: 1918, comm: pciehpd Not tainted 2.6.28-rc3eeepc #128 [ 259.856649] Call Trace: [ 259.856649] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 259.856649] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 259.856649] [<e00630b5>] pciehp_power_thread+0x96/0xcd [pciehp] [ 259.856649] [<e006301f>] pciehp_power_thread+0x0/0xcd [pciehp] [ 259.856649] [<c01269e6>] run_workqueue+0x62/0xc9 [ 259.856649] [<c0126f90>] worker_thread+0x0/0xb7 [ 259.856649] [<c012703c>] worker_thread+0xac/0xb7 [ 259.856649] [<c0129029>] autoremove_wake_function+0x0/0x2b [ 259.856649] [<c0126f90>] worker_thread+0x0/0xb7 [ 259.856649] [<c0128edb>] kthread+0x36/0x5b [ 259.856649] [<c0128ea5>] kthread+0x0/0x5b [ 259.856649] [<c0104453>] kernel_thread_helper+0x7/0x10 [ 259.856649] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 259.856649] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 260.860020] pciehp 0000:00:1c.1:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 260.860020] Pid: 4946, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #128 [ 260.860020] Call Trace: [ 260.860020] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 260.860020] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 260.860020] [<c01c2270>] resume_iter+0x0/0x25 [ 260.860020] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 260.860020] [<c01c2270>] resume_iter+0x0/0x25 [ 260.860020] [<e0062287>] pciehp_resume+0xce/0xde [pciehp] [ 260.860020] [<c01c2292>] resume_iter+0x22/0x25 [ 260.860020] [<c02054fa>] device_for_each_child+0x1a/0x3b [ 260.860020] [<c01bf003>] pci_legacy_resume+0x15/0x16 [ 260.860020] [<c020960f>] pm_op+0x52/0xac [ 260.860020] [<c0209bd5>] device_resume+0x7d/0x2d2 [ 260.860020] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 260.860020] [<c0135de6>] enter_state+0xdf/0x12e [ 260.860020] [<c0135ec3>] state_store+0x8e/0xa4 [ 260.860020] [<c0135e35>] state_store+0x0/0xa4 [ 260.860020] [<c01b3bb7>] kobj_attr_store+0x18/0x1c [ 260.860020] [<c0190b9e>] sysfs_write_file+0xaf/0xdc [ 260.860020] [<c0190aef>] sysfs_write_file+0x0/0xdc [ 260.860020] [<c0162964>] vfs_write+0x83/0xf6 [ 260.860020] [<c0162cf5>] sys_write+0x3c/0x63 [ 260.860020] [<c010376d>] sysenter_do_call+0x12/0x21 [ 260.860020] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 260.860020] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 260.860020] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 262.386647] irq 10: nobody cared (try booting with the "irqpoll" option) [ 262.386647] Pid: 4946, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #128 [ 262.386647] Call Trace: [ 262.386647] [<c0142b38>] __report_bad_irq+0x24/0x69 [ 262.386647] [<c0142b3f>] __report_bad_irq+0x2b/0x69 [ 262.386647] [<c0142c6a>] note_interrupt+0xed/0x133 [ 262.386647] [<c01420bd>] handle_IRQ_event+0x1a/0x3f [ 262.386647] [<c0143364>] handle_level_irq+0x4d/0x8d [ 262.386647] [<c0104e95>] do_IRQ+0x55/0x6c [ 262.386647] [<c010430b>] common_interrupt+0x23/0x28 [ 262.386647] [<c0230000>] atkbd_set_extra+0x77/0xfb [ 262.386647] [<c011ec28>] __do_softirq+0x2a/0xbc [ 262.386647] [<c011ecdc>] do_softirq+0x22/0x26 [ 262.386647] [<c011ef49>] irq_exit+0x25/0x55 [ 262.386647] [<c0104e9a>] do_IRQ+0x5a/0x6c [ 262.386647] [<c010430b>] common_interrupt+0x23/0x28 [ 262.386647] [<c01bb518>] pci_bus_write_config_word+0x28/0x2e [ 262.386647] [<c01bd0cb>] pci_restore_state+0x79/0x15c [ 262.386647] [<c01c2270>] resume_iter+0x0/0x25 [ 262.386647] [<c01c2920>] pcie_portdrv_restore_config+0x9/0x22 [ 262.386647] [<c01c2975>] pcie_portdrv_resume+0x8/0x10 [ 262.386647] [<c01bf003>] pci_legacy_resume+0x15/0x16 [ 262.386647] [<c020960f>] pm_op+0x52/0xac [ 262.386647] [<c0209bd5>] device_resume+0x7d/0x2d2 [ 262.386647] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 262.386647] [<c0135de6>] enter_state+0xdf/0x12e [ 262.386647] [<c0135ec3>] state_store+0x8e/0xa4 [ 262.386647] [<c0135e35>] state_store+0x0/0xa4 [ 262.386647] [<c01b3bb7>] kobj_attr_store+0x18/0x1c [ 262.386647] [<c0190b9e>] sysfs_write_file+0xaf/0xdc [ 262.386647] [<c0190aef>] sysfs_write_file+0x0/0xdc [ 262.386647] [<c0162964>] vfs_write+0x83/0xf6 [ 262.386647] [<c0162cf5>] sys_write+0x3c/0x63 [ 262.386647] [<c010376d>] sysenter_do_call+0x12/0x21 [ 262.386647] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 262.386647] handlers: [ 262.386647] [<e0018d79>] (usb_hcd_irq+0x0/0x57 [usbcore]) [ 262.386647] Disabling IRQ #10 [ 262.386647] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x7 (was 0xf0, writing 0x200000f0) [ 262.386647] pcieport-driver 0000:00:1c.2: restoring config space at offset 0x1 (was 0x180106, writing 0x100506) [ 262.386647] pciehp 0000:00:1c.2:pcie02: Card present on Slot(3) [ 262.386647] pcieport-driver 0000:00:1c.2: setting latency timer to 64 [ 262.386647] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 263.393352] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 263.393352] Pid: 1918, comm: pciehpd Not tainted 2.6.28-rc3eeepc #128 [ 263.393352] Call Trace: [ 263.393352] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 263.393352] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 263.393352] [<e00630b5>] pciehp_power_thread+0x96/0xcd [pciehp] [ 263.393352] [<e006301f>] pciehp_power_thread+0x0/0xcd [pciehp] [ 263.393352] [<c01269e6>] run_workqueue+0x62/0xc9 [ 263.393352] [<c0126f90>] worker_thread+0x0/0xb7 [ 263.393352] [<c012703c>] worker_thread+0xac/0xb7 [ 263.393352] [<c0129029>] autoremove_wake_function+0x0/0x2b [ 263.393352] [<c0126f90>] worker_thread+0x0/0xb7 [ 263.393352] [<c0128edb>] kthread+0x36/0x5b [ 263.393352] [<c0128ea5>] kthread+0x0/0x5b [ 263.393352] [<c0104453>] kernel_thread_helper+0x7/0x10 [ 263.393352] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 263.393352] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 264.396686] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 264.396686] Pid: 4946, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #128 [ 264.396686] Call Trace: [ 264.396686] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 264.396686] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 264.396686] [<c01c2270>] resume_iter+0x0/0x25 [ 264.396686] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 264.396686] [<c01c2270>] resume_iter+0x0/0x25 [ 264.396686] [<e0062287>] pciehp_resume+0xce/0xde [pciehp] [ 264.396686] [<c01c2292>] resume_iter+0x22/0x25 [ 264.396686] [<c02054fa>] device_for_each_child+0x1a/0x3b [ 264.396686] [<c01bf003>] pci_legacy_resume+0x15/0x16 [ 264.396686] [<c020960f>] pm_op+0x52/0xac [ 264.396686] [<c0209bd5>] device_resume+0x7d/0x2d2 [ 264.396686] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 264.396686] [<c0135de6>] enter_state+0xdf/0x12e [ 264.396686] [<c0135ec3>] state_store+0x8e/0xa4 [ 264.396686] [<c0135e35>] state_store+0x0/0xa4 [ 264.396686] [<c01b3bb7>] kobj_attr_store+0x18/0x1c [ 264.396686] [<c0190b9e>] sysfs_write_file+0xaf/0xdc [ 264.396686] [<c0190aef>] sysfs_write_file+0x0/0xdc [ 264.396686] [<c0162964>] vfs_write+0x83/0xf6 [ 264.396686] [<c0162cf5>] sys_write+0x3c/0x63 [ 264.396686] [<c010376d>] sysenter_do_call+0x12/0x21 [ 264.396686] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 264.396686] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 264.396686] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 264.396686] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 264.396686] uhci_hcd 0000:00:1d.0: setting latency timer to 64 [ 264.396686] usb usb2: root hub lost power or was reset [ 264.396686] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 264.396686] uhci_hcd 0000:00:1d.1: setting latency timer to 64 [ 264.396686] usb usb3: root hub lost power or was reset [ 264.396686] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 264.396686] uhci_hcd 0000:00:1d.2: setting latency timer to 64 [ 264.396686] usb usb4: root hub lost power or was reset [ 264.396686] uhci_hcd 0000:00:1d.3: PCI INT D -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 264.396686] uhci_hcd 0000:00:1d.3: setting latency timer to 64 [ 264.396686] usb usb5: root hub lost power or was reset [ 264.410018] ehci_hcd 0000:00:1d.7: PCI INT A -> Link[LNKH] -> GSI 3 (level, low) -> IRQ 3 [ 264.410018] ehci_hcd 0000:00:1d.7: setting latency timer to 64 [ 264.410018] pci 0000:00:1e.0: restoring config space at offset 0xf (was 0x60000, writing 0x600ff) [ 264.410018] pci 0000:00:1e.0: setting latency timer to 64 [ 264.423352] ata_piix 0000:00:1f.2: PCI INT B -> Link[LNKD] -> GSI 7 (level, low) -> IRQ 7 [ 264.423352] ata_piix 0000:00:1f.2: setting latency timer to 64 [ 264.423352] ath5k_pci 0000:01:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10a) [ 264.423352] ath5k_pci 0000:01:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xfbef0004) [ 264.423352] ath5k_pci 0000:01:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x4) [ 264.423352] ath5k_pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007) [ 264.436684] ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10 [ 264.456643] pciehp 0000:00:1c.0:pcie02: pciehp_resume ENTRY [ 264.456643] pciehp 0000:00:1c.1:pcie02: pciehp_resume ENTRY [ 264.600016] ata2.00: configured for UDMA/66 [ 264.600016] sd 1:0:0:0: [sda] 7815024 512-byte hardware sectors: (4.00 GB/3.72 GiB) [ 264.600016] sd 1:0:0:0: [sda] Write Protect is off [ 264.600016] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 264.600016] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 265.466684] pciehp 0000:00:1c.1:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 265.466684] Pid: 4946, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #128 [ 265.466684] Call Trace: [ 265.466684] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 265.466684] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 265.466684] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 265.466684] [<e0062287>] pciehp_resume+0xce/0xde [pciehp] [ 265.466684] [<c01c2ae2>] pcie_port_bus_resume+0x1f/0x25 [ 265.466684] [<c0209be2>] device_resume+0x8a/0x2d2 [ 265.466684] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 265.466684] [<c0135de6>] enter_state+0xdf/0x12e [ 265.466684] [<c0135ec3>] state_store+0x8e/0xa4 [ 265.466684] [<c0135e35>] state_store+0x0/0xa4 [ 265.466684] [<c01b3bb7>] kobj_attr_store+0x18/0x1c [ 265.466684] [<c0190b9e>] sysfs_write_file+0xaf/0xdc [ 265.466684] [<c0190aef>] sysfs_write_file+0x0/0xdc [ 265.466684] [<c0162964>] vfs_write+0x83/0xf6 [ 265.466684] [<c0162cf5>] sys_write+0x3c/0x63 [ 265.466684] [<c010376d>] sysenter_do_call+0x12/0x21 [ 265.466684] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 265.466684] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 265.466684] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 265.466684] pciehp 0000:00:1c.2:pcie02: pciehp_resume ENTRY [ 266.470019] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 266.470019] Pid: 4946, comm: pm-suspend Not tainted 2.6.28-rc3eeepc #128 [ 266.470019] Call Trace: [ 266.470019] [<e0064b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 266.470019] [<e0062eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 266.470019] [<e0064ded>] hpc_get_adapter_status+0x26/0x65 [pciehp] [ 266.470019] [<e0062287>] pciehp_resume+0xce/0xde [pciehp] [ 266.470019] [<c01c2ae2>] pcie_port_bus_resume+0x1f/0x25 [ 266.470019] [<c0209be2>] device_resume+0x8a/0x2d2 [ 266.470019] [<c0135c91>] suspend_devices_and_enter+0xc7/0xfb [ 266.470019] [<c0135de6>] enter_state+0xdf/0x12e [ 266.470019] [<c0135ec3>] state_store+0x8e/0xa4 [ 266.470019] [<c0135e35>] state_store+0x0/0xa4 [ 266.470019] [<c01b3bb7>] kobj_attr_store+0x18/0x1c [ 266.470019] [<c0190b9e>] sysfs_write_file+0xaf/0xdc [ 266.470019] [<c0190aef>] sysfs_write_file+0x0/0xdc [ 266.470019] [<c0162964>] vfs_write+0x83/0xf6 [ 266.470019] [<c0162cf5>] sys_write+0x3c/0x63 [ 266.470019] [<c010376d>] sysenter_do_call+0x12/0x21 [ 266.470019] [<c0290000>] inet6_lookup_listener+0xac/0xd4 [ 266.470019] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 266.470019] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 266.470019] sd 1:0:0:0: [sda] Starting disk [ 266.726685] usb 1-5: reset high speed USB device using ehci_hcd and address 2 [ 267.963352] pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 5 (level, low) -> IRQ 5 [ 267.963352] pci 0000:00:02.0: setting latency timer to 64 [ 267.963352] Restarting tasks ... done. [ 269.007495] ADDRCONF(NETDEV_UP): ath0: link is not ready [ 271.646684] evdev.c(EVIOCGBIT): Suspicious buffer size 511, limiting output to 64 bytes. See http://userweb.kernel.org/~dtor/eviocgbit-bug.html [ 282.273308] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 282.279980] ath0: authenticated [ 282.279980] ath0: associate with AP 00:1b:9e:19:45:90 [ 282.279980] ath0: RX AssocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 282.279980] ath0: associated [ 282.283315] ADDRCONF(NETDEV_CHANGE): ath0: link becomes ready [ 302.506644] ath0: no IPv6 routers present [ 308.279984] ath0: No ProbeResp from current AP 00:1b:9e:19:45:90 - assume out of range [ 309.439973] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 309.444712] ath0: authenticated [ 309.444712] ath0: associate with AP 00:1b:9e:19:45:90 [ 309.449984] ath0: RX ReassocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 309.449984] ath0: associated [ 331.456648] ath0: No ProbeResp from current AP 00:1b:9e:19:45:90 - assume out of range [ 332.583303] ath0: authenticate with AP 00:1b:9e:19:45:90 [ 332.589964] ath0: authenticated [ 332.589964] ath0: associate with AP 00:1b:9e:19:45:90 [ 332.593308] ath0: RX ReassocResp from 00:1b:9e:19:45:90 (capab=0x431 status=0 aid=1) [ 332.593308] ath0: associated ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-04 16:22 ` Alan Jenkins @ 2008-11-09 16:08 ` Alan Jenkins 2008-11-12 23:34 ` Matthew Garrett 2008-11-14 16:16 ` Matthew Garrett 0 siblings, 2 replies; 17+ messages in thread From: Alan Jenkins @ 2008-11-09 16:08 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel, linux-pci Alan Jenkins wrote: > Matthew Garrett wrote: >> On Tue, Nov 04, 2008 at 03:44:23PM +0000, Alan Jenkins wrote: >> >> >>> I instrumented all the delays I could find. hpc_check_lnk_status() was >>> the only one that came up. 1000ms delay per call, and I get 6 such >>> delays. >>> >> >> Ok, which is getting called from pciehp_enable_slot(). I'm not quite >> clear on why this is being called 6 times - any chance you can put a >> dump_stack() in there? Some are probably directly from the resume >> code. This confuses me a little, since there's a check for whether >> there's a card in the slot first. If that fails, pciehp_enable_slot() >> isn't called. If it succeeds, pciehp_enable_slot checks whether the >> slot is already powered up. If it is, it bails before doing the link >> setup. Bump. In case you're still slightly confused, I've found out why. It skips the slot power check because POWER_CTRL(ctrl) == 0. (See "Power Controller" in the debug output below). Interestingly, I can see that hpc_get_power_status() is still being called from elsewhere. So I'm not sure why we avoid calling it here. Should I try out the obvious dumb fix (removing the POWER_CTRL test)? Ta Alan # modprobe pciehp pciehp_passive=1 pciehp_debug=1 dmesg output from last of 3 pcie slots: [ 328.873347] pciehp 0000:00:1c.1:pcie02: hpc_check_lnk_status: lnk_status = 1011 [ 328.873347] pciehp 0000:00:1c.1:pcie02: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add [ 328.873347] pciehp 0000:00:1c.1:pcie02: Cannot add device at 0000:03:00 [ 328.873347] pciehp 0000:00:1c.1:pcie02: hpc_get_power_status: SLOTCTRL 58 value read 38 [ 328.873347] pciehp 0000:00:1c.1:pcie02: hpc_get_attention_status: SLOTCTRL 58, value read 38 [ 328.873347] pciehp 0000:00:1c.1:pcie02: service driver pciehp loaded [ 328.873347] pciehp 0000:00:1c.2:pcie02: Hotplug Controller: [ 328.873347] pciehp 0000:00:1c.2:pcie02: Seg/Bus/Dev/Func/IRQ : 0000:00:1c.2 IRQ 45 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Vendor ID : 0x8086 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Device ID : 0x2664 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Subsystem ID : 0x0000 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Subsystem Vendor ID : 0x0000 [ 328.873347] pciehp 0000:00:1c.2:pcie02: PCIe Cap offset : 0x40 [ 328.873347] pciehp 0000:00:1c.2:pcie02: PCI resource [8] : 0x3f00000@0xf8000000 [ 328.873347] pciehp 0000:00:1c.2:pcie02: PCI resource [9] : 0x7000000@0xf0000000 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Slot Capabilities : 0x00180560 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Physical Slot Number : 3 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Attention Button : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: Power Controller : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: MRL Sensor : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: Attention Indicator : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: Power Indicator : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: Hot-Plug Surprise : yes [ 328.873347] pciehp 0000:00:1c.2:pcie02: EMI Present : no [ 328.873347] pciehp 0000:00:1c.2:pcie02: Command Completed : yes [ 328.873347] pciehp 0000:00:1c.2:pcie02: Slot Status : 0x0040 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Slot Control : 0x0000 [ 328.873347] pciehp 0000:00:1c.2:pcie02: HPC vendor_id 8086 device_id 2664 ss_vid 0 ss_did 0 [ 328.873347] pciehp 0000:00:1c.2:pcie02: Registering domain:bus:dev=0000:01:00 hp_slot=0 sun=3 slot_device_offset=0 [ 328.873347] pciehp 0000:00:1c.2:pcie02: get_power_status: physical_slot = 3 [ 328.873347] pciehp 0000:00:1c.2:pcie02: hpc_get_power_status: SLOTCTRL 58 value read 38 [ 328.873347] pciehp 0000:00:1c.2:pcie02: get_attention_status: physical_slot = 3 [ 328.873347] pciehp 0000:00:1c.2:pcie02: hpc_get_attention_status: SLOTCTRL 58, value read 38 [ 328.873347] pciehp 0000:00:1c.2:pcie02: get_latch_status: physical_slot = 3 [ 328.873347] pciehp 0000:00:1c.2:pcie02: get_adapter_status: physical_slot = 3 [ 328.873347] pciehp 0000:00:1c.2:pcie02: board_added: slot device, slot offset, hp slot = 0, 0, 0 [ 329.876677] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: DEBUG TIME 1000ms [ 329.876677] Pid: 5101, comm: modprobe Not tainted 2.6.28-rc3eeepc #128 [ 329.876677] Call Trace: [ 329.876677] [<e02d3b11>] hpc_check_lnk_status+0x107/0x1ba [pciehp] [ 329.876677] [<e02d1eaa>] pciehp_enable_slot+0x19d/0x2c9 [pciehp] [ 329.876677] [<e02d19b8>] pciehp_probe+0x3b2/0x3ee [pciehp] [ 329.876677] [<c01c276d>] pcie_port_probe_service+0x29/0x63 [ 329.876677] [<c020759b>] driver_probe_device+0xa1/0x117 [ 329.876677] [<c020765a>] __driver_attach+0x49/0x67 [ 329.876677] [<c0206df8>] bus_for_each_dev+0x35/0x56 [ 329.876677] [<c020744a>] driver_attach+0x11/0x13 [ 329.876677] [<c0207611>] __driver_attach+0x0/0x67 [ 329.876677] [<c020713f>] bus_add_driver+0x91/0x192 [ 329.876677] [<c02077b1>] driver_register+0x6d/0xc2 [ 329.876677] [<c0191561>] sysfs_addrm_finish+0x13/0x16f [ 329.876677] [<e027d000>] pcied_init+0x0/0x5c [pciehp] [ 329.876677] [<e027d00b>] pcied_init+0xb/0x5c [pciehp] [ 329.876677] [<c0101134>] _stext+0x4c/0x136 [ 329.876677] [<c01576c3>] __vunmap+0x7c/0x8a [ 329.876677] [<c0135324>] load_module+0xfe3/0x10e8 [ 329.876677] [<e0046c77>] acpi_get_hp_params_from_firmware+0x0/0x49d [pci_hotplug] [ 329.876677] [<c01354b0>] sys_init_module+0x87/0x177 [ 329.876677] [<c010376d>] sysenter_do_call+0x12/0x21 [ 329.876677] pciehp 0000:00:1c.2:pcie02: hpc_check_lnk_status: lnk_status = 1011 [ 329.876677] pciehp 0000:00:1c.2:pcie02: Device 0000:01:00.0 already exists at 0000:01:00, cannot hot-add [ 329.876677] pciehp 0000:00:1c.2:pcie02: Cannot add device at 0000:01:00 [ 329.876677] pciehp 0000:00:1c.2:pcie02: hpc_get_power_status: SLOTCTRL 58 value read 38 [ 329.876677] pciehp 0000:00:1c.2:pcie02: hpc_get_attention_status: SLOTCTRL 58, value read 38 [ 329.876677] pciehp 0000:00:1c.2:pcie02: service driver pciehp loaded ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-09 16:08 ` Alan Jenkins @ 2008-11-12 23:34 ` Matthew Garrett 2008-11-14 16:16 ` Matthew Garrett 1 sibling, 0 replies; 17+ messages in thread From: Matthew Garrett @ 2008-11-12 23:34 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel, linux-pci Ok, from looking at the Microsoft docs (http://download.microsoft.com/download/9/c/5/9c5b2167-8017-4bae-9fde-d599bac8184a/BIOS_PCIe_HotPlug.doc) I suspect this is the wrong way to go - they make it sound like native PCIe hotplug is only supported in Vista and later, so we probably ought to be doing something with ACPI instead. I'll look into that later this week. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-09 16:08 ` Alan Jenkins 2008-11-12 23:34 ` Matthew Garrett @ 2008-11-14 16:16 ` Matthew Garrett 2008-11-14 17:07 ` Alan Jenkins 1 sibling, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-14 16:16 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel, linux-pci On Sun, Nov 09, 2008 at 04:08:54PM +0000, Alan Jenkins wrote: > Bump. In case you're still slightly confused, I've found out why. It > skips the slot power check because POWER_CTRL(ctrl) == 0. (See "Power > Controller" in the debug output below). Ok. I'm beginning to think that this approach is misguided. The Aspire One should be handled by the acpiphp changes I've posted. The Eee makes significantly less sense to me. It runs XP, so it can't depend on native PCIe hotplugging. It sends ACPI notifications when the kill state changes but there's no topological relationship between the device that receives them and the device that needs to be hotplugged. What I'm actually beginning to suspect is that this should be handled by eee-laptop. Can you give the following patch a go, without any pciehp code loaded? diff --git a/drivers/misc/eeepc-laptop.c b/drivers/misc/eeepc-laptop.c index 9ef98b2..6317ee6 100644 --- a/drivers/misc/eeepc-laptop.c +++ b/drivers/misc/eeepc-laptop.c @@ -30,6 +30,7 @@ #include <linux/uaccess.h> #include <linux/input.h> #include <linux/rfkill.h> +#include <linux/pci.h> #define EEEPC_LAPTOP_VERSION "0.1" @@ -123,6 +124,7 @@ static const char *cm_setv[] = { struct eeepc_hotk { struct acpi_device *device; /* the device we are in */ acpi_handle handle; /* the handle of the hotk device */ + acpi_handle rfkill_handle; /* the handle of the rfkill notifier */ u32 cm_supported; /* the control methods supported by this BIOS */ uint init_flag; /* Init flags */ @@ -513,6 +515,35 @@ static void notify_brn(void) bd->props.brightness = read_brightness(bd); } +static void eeepc_rfkill_notify(acpi_handle handle, u32 event, void *data) +{ + struct pci_dev *dev; + struct pci_bus *bus = pci_find_bus(0, 1); + + if (!bus) { + printk(KERN_WARNING "Unable to find wifi bus!\n"); + return; + } + + if (get_acpi(CM_ASL_WLAN) == 1) { + printk("Adding wifi\n"); + + dev = pci_scan_single_device(bus, 0); + if (dev) { + printk("Found new wifi\n"); + if (pci_bus_add_device(dev)) + printk(KERN_WARNING "Unable to add wifi\n"); + } + } else { + printk("Removing wifi\n"); + dev = pci_get_slot(bus, 0); + if (dev) { + pci_remove_bus_device(dev); + pci_dev_put(dev); + } + } +} + static void eeepc_hotk_notify(acpi_handle handle, u32 event, void *data) { static struct key_entry *key; @@ -604,6 +635,18 @@ static int eeepc_hotk_add(struct acpi_device *device) rfkill_register(ehotk->eeepc_bluetooth_rfkill); } + status = acpi_get_handle(NULL, "\\_SB.PCI0.P0P7", ehotk->rfkill_handle); + + if (ACPI_FAILURE(status)) { + printk(KERN_WARNING "Unable to find rfkill port handle\n"); + goto end; + } + + status = acpi_install_notify_handler(ehotk->rfkill_handle, + ACPI_SYSTEM_NOTIFY, + eeepc_rfkill_notify, NULL); + if (ACPI_FAILURE(status)) + printk(KERN_WARNING "Unable to register rfkill notifier\n"); end: if (result) { kfree(ehotk); @@ -622,6 +665,10 @@ static int eeepc_hotk_remove(struct acpi_device *device, int type) eeepc_hotk_notify); if (ACPI_FAILURE(status)) printk(EEEPC_ERR "Error removing notify handler\n"); + status = acpi_remove_notify_handler(ehotk->handle, ACPI_SYSTEM_NOTIFY, + eeepc_rfkill_notify); + if (ACPI_FAILURE(status)) + printk(EEEPC_ERR "Error removing rfkill notify handler\n"); kfree(ehotk); return 0; } -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-14 16:16 ` Matthew Garrett @ 2008-11-14 17:07 ` Alan Jenkins 2008-11-14 17:12 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-14 17:07 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel, linux-pci Matthew Garrett wrote: > On Sun, Nov 09, 2008 at 04:08:54PM +0000, Alan Jenkins wrote: > > >> Bump. In case you're still slightly confused, I've found out why. It >> skips the slot power check because POWER_CTRL(ctrl) == 0. (See "Power >> Controller" in the debug output below). >> > > Ok. I'm beginning to think that this approach is misguided. The Aspire > One should be handled by the acpiphp changes I've posted. The Eee makes > significantly less sense to me. It runs XP, so it can't depend on native > PCIe hotplugging. It sends ACPI notifications when the kill state > changes but there's no topological relationship between the device that > receives them and the device that needs to be hotplugged. > > What I'm actually beginning to suspect is that this should be handled by > eee-laptop. Can you give the following patch a go, without any pciehp > code loaded? > > Will do. Note that Xandros say the newest model EeePC (S101) 'is now using a "normal" kill of the antenna, which is easier to work with'. http://sourceforge.net/mailarchive/message.php?msg_name=48D6AC5E.70502%40xandros.com So if you're unlucky, the current eeepc-laptop worked perfectly on the S101, and now it will simply refuse to load :). But it's probably safer that way. At least the 701 runs quite adequately without eeepc-laptop. I guess it can be fixed when someone interested gets their hands on an S101. Thanks Alan ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-14 17:07 ` Alan Jenkins @ 2008-11-14 17:12 ` Matthew Garrett 2008-11-14 17:27 ` Alan Jenkins 0 siblings, 1 reply; 17+ messages in thread From: Matthew Garrett @ 2008-11-14 17:12 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel, linux-pci On Fri, Nov 14, 2008 at 05:07:20PM +0000, Alan Jenkins wrote: > Note that Xandros say the newest model EeePC (S101) 'is now using a > "normal" kill of the antenna, which is easier to work with'. Well, it would have been nice of them to try to solve the problem properly rather than jumping through hoops. > So if you're unlucky, the current eeepc-laptop worked perfectly on the > S101, and now it will simply refuse to load :). But it's probably safer > that way. At least the 701 runs quite adequately without eeepc-laptop. > I guess it can be fixed when someone interested gets their hands on an S101. Failing to register the notify handler isn't a fatal error, so shouldn't be an issue. It would be nice to see how it behaves in that case, though. If anyone's got an S101 I'd be interested in an ACPI dump. -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-14 17:12 ` Matthew Garrett @ 2008-11-14 17:27 ` Alan Jenkins 2008-11-14 17:35 ` Matthew Garrett 0 siblings, 1 reply; 17+ messages in thread From: Alan Jenkins @ 2008-11-14 17:27 UTC (permalink / raw) To: Matthew Garrett; +Cc: linux-kernel, linux-pci [-- Attachment #1: Type: text/plain, Size: 1609 bytes --] On 11/14/08, Matthew Garrett <mjg59@srcf.ucam.org> wrote: > On Fri, Nov 14, 2008 at 05:07:20PM +0000, Alan Jenkins wrote: > >> Note that Xandros say the newest model EeePC (S101) 'is now using a >> "normal" kill of the antenna, which is easier to work with'. > > Well, it would have been nice of them to try to solve the problem > properly rather than jumping through hoops. > >> So if you're unlucky, the current eeepc-laptop worked perfectly on the >> S101, and now it will simply refuse to load :). But it's probably safer >> that way. At least the 701 runs quite adequately without eeepc-laptop. >> I guess it can be fixed when someone interested gets their hands on an >> S101. > > Failing to register the notify handler isn't a fatal error, so shouldn't > be an issue. It would be nice to see how it behaves in that case, > though. If anyone's got an S101 I'd be interested in an ACPI dump. Ok, I can't read :). Sounds reasonable. Unfortunately all I can give you is confirmation that this failure is indeed non-fatal [ 5.606957] eeepc: Eee PC Hotkey Driver [ 5.607165] eeepc: Hotkey init flags 0x41 [ 5.608431] eeepc: Get control methods supported: 0x101711 [ 5.608570] input: Asus EeePC extra buttons as /class/input/input5 [ 5.635564] Unable to find rfkill port handle (eeepc-laptop still loads and e.g. the hotkeys still work) so I guess you would like my acpidump (attached). Thanks Alan -- A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? >> A: Top-posting. >>> Q: What is the most annoying thing in e-mail? [-- Attachment #2: acpidump.out --] [-- Type: text/plain, Size: 115664 bytes --] DSDT @ 0x1f780400 0000: 44 53 44 54 61 5f 00 00 01 ee 41 30 37 39 37 00 DSDTa_....A0797. 0010: 41 30 37 39 37 30 30 30 00 00 00 00 49 4e 54 4c A0797000....INTL 0020: 17 11 05 20 10 4a 1f 5c 5f 50 52 5f 5b 83 41 1f ... .J.\_PR_[.A. 0030: 43 50 55 31 01 10 08 00 00 06 5b 80 53 54 42 4c CPU1......[.STBL 0040: 00 0c 00 00 ff ff 0b ff ff 08 4e 43 50 55 0a 80 ..........NCPU.. 0050: 08 54 59 50 45 0c 00 00 00 80 08 48 4e 44 4c 0c .TYPE......HNDL. 0060: 00 00 00 80 08 43 46 47 44 0c 00 00 00 80 08 54 .....CFGD......T 0070: 42 4c 44 0a 80 14 48 06 5f 50 44 43 01 8a 68 0a BLD...H._PDC..h. 0080: 00 52 45 56 53 8a 68 0a 04 53 49 5a 45 70 87 68 .REVS.h..SIZEp.h 0090: 60 70 74 60 0a 08 00 61 5b 13 68 0a 40 77 61 0a `pt`...a[.h.@wa. 00a0: 08 00 54 45 4d 50 08 53 54 53 30 11 07 0a 04 00 ..TEMP.STS0..... 00b0: 00 00 00 73 53 54 53 30 54 45 4d 50 62 5f 4f 53 ...sSTS0TEMPb_OS 00c0: 43 11 13 0a 10 16 a6 77 40 0c 29 be 47 9e bd d8 C......w@.).G... 00d0: 70 58 71 39 53 52 45 56 53 53 49 5a 45 62 14 40 pXq9SREVSSIZEb.@ 00e0: 14 5f 4f 53 43 04 8a 6b 0a 00 53 54 53 30 8a 6b ._OSC..k..STS0.k 00f0: 0a 04 43 41 50 30 8a 68 0a 00 49 49 44 30 8a 68 ..CAP0.h..IID0.h 0100: 0a 04 49 49 44 31 8a 68 0a 08 49 49 44 32 8a 68 ..IID1.h..IID2.h 0110: 0a 0c 49 49 44 33 08 55 49 44 30 11 13 0a 10 16 ..IID3.UID0..... 0120: a6 77 40 0c 29 be 47 9e bd d8 70 58 71 39 53 8a .w@.).G...pXq9S. 0130: 55 49 44 30 0a 00 45 49 44 30 8a 55 49 44 30 0a UID0..EID0.UID0. 0140: 04 45 49 44 31 8a 55 49 44 30 0a 08 45 49 44 32 .EID1.UID0..EID2 0150: 8a 55 49 44 30 0a 0c 45 49 44 33 a0 32 92 90 90 .UID0..EID3.2... 0160: 93 49 49 44 30 45 49 44 30 93 49 49 44 31 45 49 .IID0EID0.IID1EI 0170: 44 31 90 93 49 49 44 32 45 49 44 32 93 49 49 44 D1..IID2EID2.IID 0180: 33 45 49 44 33 70 0a 06 53 54 53 30 a4 6b a0 0f 3EID3p..STS0.k.. 0190: 92 93 69 0a 01 70 0a 0a 53 54 53 30 a4 6b 7d 7b ..i..p..STS0.k}{ 01a0: 54 59 50 45 0c ff ff ff 7f 00 43 41 50 30 54 59 TYPE......CAP0TY 01b0: 50 45 a0 35 7b 43 46 47 44 0a 01 00 a0 2b 90 93 PE.5{CFGD....+.. 01c0: 7b 54 59 50 45 0a 09 00 0a 09 92 7b 54 42 4c 44 {TYPE......{TBLD 01d0: 0a 01 00 7d 54 42 4c 44 0a 01 54 42 4c 44 5b 20 ...}TBLD..TBLD[ 01e0: 53 54 42 4c 48 4e 44 4c a0 34 7b 43 46 47 44 0a STBLHNDL.4{CFGD. 01f0: f0 00 a0 2a 90 90 7b 43 46 47 44 0c 00 00 00 01 ...*..{CFGD..... 0200: 00 7b 54 59 50 45 0a 18 00 92 7b 54 42 4c 44 0a .{TYPE....{TBLD. 0210: 02 00 7d 54 42 4c 44 0a 02 54 42 4c 44 a4 6b 08 ..}TBLD..TBLD.k. 0220: 41 43 50 48 0a de 08 50 4d 42 53 0b 00 08 08 46 ACPH...PMBS....F 0230: 48 44 43 0a d9 08 50 4d 4c 4e 0a 80 08 47 50 42 HDC...PMLN...GPB 0240: 53 0b 80 04 08 47 50 4c 4e 0a 40 08 53 4d 42 53 S....GPLN.@.SMBS 0250: 0a 00 08 53 4d 42 4c 0a 20 08 50 4d 33 30 0b 30 ...SMBL. .PM30.0 0260: 08 08 53 55 53 57 0a ff 08 41 50 49 43 0a 01 08 ..SUSW...APIC... 0270: 50 30 43 54 0a 82 08 50 31 43 54 0a 83 08 50 32 P0CT...P1CT...P2 0280: 43 54 0a 84 08 50 43 49 42 0c 00 00 00 e0 08 50 CT...PCIB......P 0290: 43 49 4c 0c 00 00 00 10 08 4e 43 50 55 0a 01 5b CIL......NCPU..[ 02a0: 80 42 49 4f 53 00 0c 64 00 79 1f 0a ff 5b 81 41 .BIOS..d.y...[.A 02b0: 05 42 49 4f 53 01 53 53 31 5f 01 53 53 32 5f 01 .BIOS.SS1_.SS2_. 02c0: 53 53 33 5f 01 53 53 34 5f 01 00 04 49 4f 53 54 SS3_.SS4_...IOST 02d0: 10 54 4f 50 4d 20 52 4f 4d 53 20 4d 47 31 42 20 .TOPM ROMS MG1B 02e0: 4d 47 31 4c 20 4d 47 32 42 20 4d 47 32 4c 20 00 MG1L MG2B MG2L . 02f0: 08 41 53 53 42 08 41 4f 54 42 08 41 41 58 42 20 .ASSB.AOTB.AAXB 0300: 14 0f 52 52 49 4f 04 70 0d 52 52 49 4f 00 5b 31 ..RRIO.p.RRIO.[1 0310: 14 0f 52 44 4d 41 03 70 0d 72 44 4d 41 00 5b 31 ..RDMA.p.rDMA.[1 0320: 08 50 49 43 4d 0a 00 14 1f 5f 50 49 43 01 a0 09 .PICM...._PIC... 0330: 68 70 0a aa 44 42 47 38 a1 08 70 0a ac 44 42 47 hp..DBG8..p..DBG 0340: 38 70 68 50 49 43 4d 08 4f 53 56 52 ff 14 46 09 8phPICM.OSVR..F. 0350: 4f 53 46 4c 00 a0 0d 92 93 4f 53 56 52 ff a4 4f OSFL.....OSVR..O 0360: 53 56 52 a0 0f 93 50 49 43 4d 0a 00 70 0a ac 44 SVR...PICM..p..D 0370: 42 47 38 70 0a 01 4f 53 56 52 a0 27 4d 43 54 48 BG8p..OSVR.'MCTH 0380: 5c 5f 4f 53 5f 0d 4d 69 63 72 6f 73 6f 66 74 20 \_OS_.Microsoft 0390: 57 69 6e 64 6f 77 73 20 4e 54 00 70 0a 00 4f 53 Windows NT.p..OS 03a0: 56 52 a1 3c a0 3a 4d 43 54 48 5c 5f 4f 53 5f 0d VR.<.:MCTH\_OS_. 03b0: 4d 69 63 72 6f 73 6f 66 74 20 57 69 6e 64 6f 77 Microsoft Window 03c0: 73 4d 45 3a 20 4d 69 6c 6c 65 6e 6e 69 75 6d 20 sME: Millennium 03d0: 45 64 69 74 69 6f 6e 00 70 0a 02 4f 53 56 52 a4 Edition.p..OSVR. 03e0: 4f 53 56 52 14 4f 04 4d 43 54 48 02 a0 08 95 87 OSVR.O.MCTH..... 03f0: 68 87 69 a4 00 72 87 68 0a 01 60 08 42 55 46 30 h.i..r.h..`.BUF0 0400: 11 02 60 08 42 55 46 31 11 02 60 70 68 42 55 46 ..`.BUF1..`phBUF 0410: 30 70 69 42 55 46 31 a2 1a 60 76 60 a0 15 92 93 0piBUF1..`v`.... 0420: 83 88 42 55 46 30 60 00 83 88 42 55 46 31 60 00 ..BUF0`...BUF1`. 0430: a4 00 a4 01 08 50 52 57 50 12 04 02 00 00 14 43 .....PRWP......C 0440: 08 47 50 52 57 02 70 68 88 50 52 57 50 0a 00 00 .GPRW.ph.PRWP... 0450: 70 79 53 53 31 5f 0a 01 00 60 7d 60 79 53 53 32 pySS1_...`}`ySS2 0460: 5f 0a 02 00 60 7d 60 79 53 53 33 5f 0a 03 00 60 _...`}`ySS3_...` 0470: 7d 60 79 53 53 34 5f 0a 04 00 60 a0 13 7b 79 0a }`ySS4_...`..{y. 0480: 01 69 00 60 00 70 69 88 50 52 57 50 0a 01 00 a1 .i.`.pi.PRWP.... 0490: 2d 7a 60 0a 01 60 a0 1a 91 93 4f 53 46 4c 0a 01 -z`..`....OSFL.. 04a0: 93 4f 53 46 4c 0a 02 81 60 88 50 52 57 50 0a 01 .OSFL...`.PRWP.. 04b0: 00 a1 0b 82 60 88 50 52 57 50 0a 01 00 a4 50 52 ....`.PRWP....PR 04c0: 57 50 08 57 41 4b 50 12 04 02 00 00 5b 80 44 45 WP.WAKP.....[.DE 04d0: 42 30 01 0a 80 0a 01 5b 81 0b 44 45 42 30 01 44 B0.....[..DEB0.D 04e0: 42 47 38 08 10 81 d0 04 5c 5f 53 42 5f 08 50 52 BG8.....\_SB_.PR 04f0: 30 30 12 43 10 10 12 0f 04 0c ff ff 02 00 0a 01 00.C............ 0500: 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 1c 00 0a 00 LNKB............ 0510: 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1c 00 0a 01 LNKA............ 0520: 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 1c 00 0a 02 LNKB............ 0530: 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1c 00 0a 03 LNKC............ 0540: 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1f 00 0a 00 LNKD............ 0550: 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1f 00 0a 01 LNKC............ 0560: 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1e 00 0a 00 LNKD............ 0570: 4c 4e 4b 42 0a 00 12 0f 04 0c ff ff 1e 00 0a 01 LNKB............ 0580: 4c 4e 4b 45 0a 00 12 0f 04 0c ff ff 1f 00 0a 03 LNKE............ 0590: 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1d 00 0a 00 LNKD............ 05a0: 4c 4e 4b 48 0a 00 12 0f 04 0c ff ff 1d 00 0a 01 LNKH............ 05b0: 4c 4e 4b 44 0a 00 12 0f 04 0c ff ff 1d 00 0a 02 LNKD............ 05c0: 4c 4e 4b 43 0a 00 12 0f 04 0c ff ff 1d 00 0a 03 LNKC............ 05d0: 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 1b 00 0a 00 LNKA............ 05e0: 4c 4e 4b 41 0a 00 12 0f 04 0c ff ff 02 00 0a 00 LNKA............ 05f0: 4c 4e 4b 41 0a 00 08 41 52 30 30 12 43 0e 10 12 LNKA...AR00.C... 0600: 0d 04 0c ff ff 02 00 0a 01 0a 00 0a 11 12 0d 04 ................ 0610: 0c ff ff 1c 00 0a 00 0a 00 0a 10 12 0d 04 0c ff ................ 0620: ff 1c 00 0a 01 0a 00 0a 11 12 0d 04 0c ff ff 1c ................ 0630: 00 0a 02 0a 00 0a 12 12 0d 04 0c ff ff 1c 00 0a ................ 0640: 03 0a 00 0a 13 12 0d 04 0c ff ff 1f 00 0a 00 0a ................ 0650: 00 0a 12 12 0d 04 0c ff ff 1f 00 0a 01 0a 00 0a ................ 0660: 13 12 0d 04 0c ff ff 1e 00 0a 00 0a 00 0a 11 12 ................ 0670: 0d 04 0c ff ff 1e 00 0a 01 0a 00 0a 14 12 0d 04 ................ 0680: 0c ff ff 1f 00 0a 03 0a 00 0a 13 12 0d 04 0c ff ................ 0690: ff 1d 00 0a 00 0a 00 0a 17 12 0d 04 0c ff ff 1d ................ 06a0: 00 0a 01 0a 00 0a 13 12 0d 04 0c ff ff 1d 00 0a ................ 06b0: 02 0a 00 0a 12 12 0d 04 0c ff ff 1d 00 0a 03 0a ................ 06c0: 00 0a 10 12 0d 04 0c ff ff 1b 00 0a 00 0a 00 0a ................ 06d0: 10 12 0d 04 0c ff ff 02 00 0a 00 0a 00 0a 10 08 ................ 06e0: 50 52 30 33 12 12 01 12 0f 04 0c ff ff 08 00 0a PR03............ 06f0: 00 4c 4e 4b 45 0a 00 08 41 52 30 33 12 10 01 12 .LNKE...AR03.... 0700: 0d 04 0c ff ff 08 00 0a 00 0a 00 0a 14 08 50 52 ..............PR 0710: 30 35 12 10 01 12 0d 04 0b ff ff 0a 00 4c 4e 4b 05...........LNK 0720: 42 0a 00 08 41 52 30 35 12 0e 01 12 0b 04 0b ff B...AR05........ 0730: ff 0a 00 0a 00 0a 11 08 50 52 30 36 12 3a 04 12 ........PR06.:.. 0740: 0d 04 0b ff ff 0a 00 4c 4e 4b 43 0a 00 12 0d 04 .......LNKC..... 0750: 0b ff ff 0a 01 4c 4e 4b 44 0a 00 12 0d 04 0b ff .....LNKD....... 0760: ff 0a 02 4c 4e 4b 41 0a 00 12 0d 04 0b ff ff 0a ...LNKA......... 0770: 03 4c 4e 4b 42 0a 00 08 41 52 30 36 12 32 04 12 .LNKB...AR06.2.. 0780: 0b 04 0b ff ff 0a 00 0a 00 0a 12 12 0b 04 0b ff ................ 0790: ff 0a 01 0a 00 0a 13 12 0b 04 0b ff ff 0a 02 0a ................ 07a0: 00 0a 10 12 0b 04 0b ff ff 0a 03 0a 00 0a 11 08 ................ 07b0: 50 52 53 41 11 09 0a 06 23 f8 dc 18 79 00 06 50 PRSA....#...y..P 07c0: 52 53 41 50 52 53 42 06 50 52 53 41 50 52 53 43 RSAPRSB.PRSAPRSC 07d0: 06 50 52 53 41 50 52 53 44 06 50 52 53 41 50 52 .PRSAPRSD.PRSAPR 07e0: 53 45 06 50 52 53 41 50 52 53 46 06 50 52 53 41 SE.PRSAPRSF.PRSA 07f0: 50 52 53 47 06 50 52 53 41 50 52 53 48 5b 82 86 PRSG.PRSAPRSH[.. 0800: 86 04 50 43 49 30 08 5f 48 49 44 0c 41 d0 0a 08 ..PCI0._HID.A... 0810: 08 5f 43 49 44 0c 41 d0 0a 03 08 5f 41 44 52 0a ._CID.A...._ADR. 0820: 00 14 0a 5e 42 4e 30 30 00 a4 0a 00 14 0b 5f 42 ...^BN00......_B 0830: 42 4e 00 a4 42 4e 30 30 08 5f 55 49 44 0a 00 14 BN..BN00._UID... 0840: 16 5f 50 52 54 00 a0 0a 50 49 43 4d a4 41 52 30 ._PRT...PICM.AR0 0850: 30 a4 50 52 30 30 14 1f 5f 53 33 44 00 a0 13 91 0.PR00.._S3D.... 0860: 93 4f 53 46 4c 0a 01 93 4f 53 46 4c 0a 02 a4 0a .OSFL...OSFL.... 0870: 02 a1 04 a4 0a 03 5b 82 2d 4d 43 48 5f 08 5f 48 ......[.-MCH_._H 0880: 49 44 0c 41 d0 0c 01 08 5f 55 49 44 0a 0a 08 5f ID.A...._UID..._ 0890: 43 52 53 11 11 0a 0e 86 09 00 01 00 30 d1 fe 00 CRS.........0... 08a0: 70 00 00 79 00 10 2e 5c 5f 53 42 5f 5b 82 26 50 p..y...\_SB_[.&P 08b0: 43 49 45 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 43 CIE._HID.A...._C 08c0: 52 53 11 11 0a 0e 86 09 00 01 00 00 00 e0 00 00 RS.............. 08d0: 00 10 79 00 14 06 4e 50 54 53 01 14 06 4e 57 41 ..y...NPTS...NWA 08e0: 4b 01 5b 82 36 50 30 50 33 08 5f 41 44 52 0c 00 K.[.6P0P3._ADR.. 08f0: 00 1e 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a ....._PRW..GPRW. 0900: 0b 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 4d ....._PRT...PICM 0910: a4 41 52 30 33 a4 50 52 30 33 5b 82 1f 50 30 50 .AR03.PR03[..P0P 0920: 34 08 5f 41 44 52 0c 00 00 1c 00 14 0f 5f 50 52 4._ADR......._PR 0930: 57 00 a4 47 50 52 57 0a 09 0a 04 5b 82 36 50 30 W..GPRW....[.6P0 0940: 50 35 08 5f 41 44 52 0c 01 00 1c 00 14 0f 5f 50 P5._ADR......._P 0950: 52 57 00 a4 47 50 52 57 0a 09 0a 04 14 16 5f 50 RW..GPRW......_P 0960: 52 54 00 a0 0a 50 49 43 4d a4 41 52 30 35 a4 50 RT...PICM.AR05.P 0970: 52 30 35 5b 82 36 50 30 50 36 08 5f 41 44 52 0c R05[.6P0P6._ADR. 0980: 02 00 1c 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 ......_PRW..GPRW 0990: 0a 09 0a 04 14 16 5f 50 52 54 00 a0 0a 50 49 43 ......_PRT...PIC 09a0: 4d a4 41 52 30 36 a4 50 52 30 36 5b 82 1f 50 30 M.AR06.PR06[..P0 09b0: 50 37 08 5f 41 44 52 0c 03 00 1c 00 14 0f 5f 50 P7._ADR......._P 09c0: 52 57 00 a4 47 50 52 57 0a 09 0a 04 5b 82 8d 60 RW..GPRW....[..` 09d0: 03 53 42 52 47 08 5f 41 44 52 0c 00 00 1f 00 14 .SBRG._ADR...... 09e0: 1e 53 50 54 53 01 70 01 50 53 31 53 70 01 50 53 .SPTS.p.PS1Sp.PS 09f0: 31 45 70 01 5c 2e 5f 53 42 5f 53 4c 50 53 14 2f 1Ep.\._SB_SLPS./ 0a00: 53 57 41 4b 01 70 00 5c 2e 5f 53 42 5f 53 4c 50 SWAK.p.\._SB_SLP 0a10: 53 70 00 50 53 31 45 a0 16 7b 41 41 58 42 0a 02 Sp.PS1E..{AAXB.. 0a20: 00 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 5b 80 ..\._SB_PWRB..[. 0a30: 47 50 4d 43 02 0a a0 0a 04 5b 81 0d 47 50 4d 43 GPMC.....[..GPMC 0a40: 03 00 07 45 43 33 34 01 5b 80 50 4d 53 30 01 50 ...EC34.[.PMS0.P 0a50: 4d 42 53 0a 40 5b 81 30 50 4d 53 30 01 00 0a 52 MBS.@[.0PMS0...R 0a60: 54 43 53 01 00 04 57 41 4b 53 01 00 08 50 57 42 TCS...WAKS...PWB 0a70: 54 01 00 07 00 40 16 00 04 50 53 31 45 01 00 1f T....@...PS1E... 0a80: 50 53 31 53 01 00 1b 5b 80 47 50 42 58 01 47 50 PS1S...[.GPBX.GP 0a90: 42 53 0a 40 10 0d 5c 5f 53 42 5f 08 53 4c 50 53 BS.@..\_SB_.SLPS 0aa0: 0a 00 5b 82 2b 50 49 43 5f 08 5f 48 49 44 0b 41 ..[.+PIC_._HID.A 0ab0: d0 08 5f 43 52 53 11 18 0a 15 47 01 20 00 20 00 .._CRS....G. . . 0ac0: 00 02 47 01 a0 00 a0 00 00 02 22 04 00 79 00 5b ..G......."..y.[ 0ad0: 82 4e 04 44 4d 41 44 08 5f 48 49 44 0c 41 d0 02 .N.DMAD._HID.A.. 0ae0: 00 08 5f 43 52 53 11 38 0a 35 2a 10 04 47 01 00 .._CRS.8.5*..G.. 0af0: 00 00 00 00 10 47 01 81 00 81 00 00 03 47 01 87 .....G.......G.. 0b00: 00 87 00 00 01 47 01 89 00 89 00 00 03 47 01 8f .....G.......G.. 0b10: 00 8f 00 00 01 47 01 c0 00 c0 00 00 20 79 00 5b .....G...... y.[ 0b20: 82 25 54 4d 52 5f 08 5f 48 49 44 0c 41 d0 01 00 .%TMR_._HID.A... 0b30: 08 5f 43 52 53 11 10 0a 0d 47 01 40 00 40 00 00 ._CRS....G.@.@.. 0b40: 04 22 01 00 79 00 5b 82 25 52 54 43 30 08 5f 48 ."..y.[.%RTC0._H 0b50: 49 44 0c 41 d0 0b 00 08 5f 43 52 53 11 10 0a 0d ID.A...._CRS.... 0b60: 47 01 70 00 70 00 00 02 22 00 01 79 00 5b 82 44 G.p.p..."..y.[.D 0b70: 05 50 53 32 4b 08 5f 48 49 44 0c 41 d0 03 03 08 .PS2K._HID.A.... 0b80: 5f 43 49 44 0c 41 d0 03 0b 14 1b 5f 53 54 41 00 _CID.A....._STA. 0b90: 79 0a 01 0a 0a 60 a0 0b 7b 49 4f 53 54 60 00 a4 y....`..{IOST`.. 0ba0: 0a 0f a4 0a 00 08 5f 43 52 53 11 18 0a 15 47 01 ......_CRS....G. 0bb0: 60 00 60 00 00 01 47 01 64 00 64 00 00 01 22 02 `.`...G.d.d...". 0bc0: 00 79 00 5b 82 46 09 50 53 32 4d 08 5f 48 49 44 .y.[.F.PS2M._HID 0bd0: 0c 4f 2e 0a 00 08 5f 43 49 44 12 16 04 0c 4f 2e .O...._CID....O. 0be0: 0a 01 0c 4f 2e 0a 04 0c 4f 2e 00 02 0c 41 d0 0f ...O....O....A.. 0bf0: 13 14 1b 5f 53 54 41 00 79 0a 01 0a 0c 60 a0 0b ..._STA.y....`.. 0c00: 7b 49 4f 53 54 60 00 a4 0a 0f a4 0a 00 08 43 52 {IOST`........CR 0c10: 53 31 11 08 0a 05 22 00 10 79 00 08 43 52 53 32 S1...."..y..CRS2 0c20: 11 18 0a 15 47 01 60 00 60 00 00 01 47 01 64 00 ....G.`.`...G.d. 0c30: 64 00 00 01 22 00 10 79 00 14 21 5f 43 52 53 00 d..."..y..!_CRS. 0c40: 79 0a 01 0a 0a 60 a0 0d 7b 49 4f 53 54 60 00 a4 y....`..{IOST`.. 0c50: 43 52 53 31 a1 06 a4 43 52 53 32 5b 82 22 53 50 CRS1...CRS2[."SP 0c60: 4b 52 08 5f 48 49 44 0c 41 d0 08 00 08 5f 43 52 KR._HID.A...._CR 0c70: 53 11 0d 0a 0a 47 01 61 00 61 00 00 01 79 00 5b S....G.a.a...y.[ 0c80: 82 25 43 4f 50 52 08 5f 48 49 44 0c 41 d0 0c 04 .%COPR._HID.A... 0c90: 08 5f 43 52 53 11 10 0a 0d 47 01 f0 00 f0 00 00 ._CRS....G...... 0ca0: 10 22 00 20 79 00 5b 82 43 35 45 43 30 5f 08 5f .". y.[.C5EC0_._ 0cb0: 48 49 44 0c 41 d0 0c 09 08 5f 43 52 53 11 15 0a HID.A...._CRS... 0cc0: 12 47 01 62 00 62 00 00 01 47 01 66 00 66 00 00 .G.b.b...G.f.f.. 0cd0: 01 79 00 08 5f 47 50 45 0a 18 08 52 45 47 43 0a .y.._GPE...REGC. 0ce0: 00 14 12 5f 52 45 47 02 a0 0b 93 68 0a 03 70 69 ..._REG....h..pi 0cf0: 52 45 47 43 14 23 45 43 41 56 00 a0 17 93 52 45 REGC.#ECAV....RE 0d00: 47 43 ff a0 0b 92 95 5f 52 45 56 0a 02 a4 01 a1 GC....._REV..... 0d10: 03 a4 00 a4 52 45 47 43 5b 80 45 43 4f 52 03 0a ....REGC[.ECOR.. 0d20: 00 0a ff 5b 81 41 09 45 43 4f 52 11 00 48 14 42 ...[.A.ECOR..H.B 0d30: 54 30 30 08 42 54 30 31 08 42 54 30 32 08 42 54 T00.BT01.BT02.BT 0d40: 30 33 08 42 54 30 34 08 42 54 30 35 08 42 54 30 03.BT04.BT05.BT0 0d50: 36 08 42 54 30 37 08 42 54 30 38 08 42 54 30 39 6.BT07.BT08.BT09 0d60: 08 42 54 31 30 08 42 54 31 31 08 42 54 31 32 08 .BT10.BT11.BT12. 0d70: 42 54 31 33 08 42 54 31 34 08 42 54 31 35 08 42 BT13.BT14.BT15.B 0d80: 54 31 36 08 42 54 31 37 08 42 54 31 38 08 42 54 T16.BT17.BT18.BT 0d90: 31 39 08 42 54 32 30 08 42 54 32 31 08 42 54 32 19.BT20.BT21.BT2 0da0: 32 08 42 54 32 33 08 42 54 32 34 08 42 54 32 35 2.BT23.BT24.BT25 0db0: 08 42 54 32 36 08 5b 81 31 45 43 4f 52 11 00 48 .BT26.[.1ECOR..H 0dc0: 1f 42 54 53 30 01 42 54 53 31 01 42 54 53 32 01 .BTS0.BTS1.BTS2. 0dd0: 42 54 53 33 01 42 54 53 34 01 42 54 53 35 01 42 BTS3.BTS4.BTS5.B 0de0: 54 53 36 01 42 54 53 37 01 5b 81 36 45 43 4f 52 TS6.BTS7.[.6ECOR 0df0: 11 00 48 28 53 54 30 30 08 53 54 30 31 08 53 54 ..H(ST00.ST01.ST 0e00: 30 32 08 53 54 30 33 08 53 54 30 34 08 53 54 30 02.ST03.ST04.ST0 0e10: 35 08 53 54 30 36 08 53 54 30 37 08 53 54 30 38 5.ST06.ST07.ST08 0e20: 08 5b 81 2c 45 43 4f 52 11 00 48 30 53 43 30 30 .[.,ECOR..H0SC00 0e30: 08 53 43 30 31 08 53 43 30 32 08 53 43 30 33 08 .SC01.SC02.SC03. 0e40: 53 43 30 34 08 53 43 30 35 08 53 43 30 36 08 5b SC04.SC05.SC06.[ 0e50: 81 22 45 43 4f 52 11 00 48 38 54 4d 30 30 08 54 ."ECOR..H8TM00.T 0e60: 4d 30 31 08 54 4d 30 32 08 54 4d 30 33 08 54 4d M01.TM02.TM03.TM 0e70: 30 34 08 5b 81 45 05 45 43 4f 52 11 00 48 3c 53 04.[.E.ECOR..H<S 0e80: 4d 30 30 08 53 4d 30 31 08 53 4d 30 32 08 53 4d M00.SM01.SM02.SM 0e90: 30 33 08 53 4d 30 34 08 53 4d 30 35 08 53 4d 30 03.SM04.SM05.SM0 0ea0: 36 08 53 4d 30 37 08 53 4d 30 38 08 53 4d 30 39 6.SM07.SM08.SM09 0eb0: 08 53 4d 31 30 08 53 4d 31 31 08 53 4d 31 32 08 .SM10.SM11.SM12. 0ec0: 53 4d 31 33 08 53 4d 31 34 08 5b 81 25 45 43 4f SM13.SM14.[.%ECO 0ed0: 52 11 00 40 68 53 46 42 30 08 53 46 42 31 08 53 R..@hSFB0.SFB1.S 0ee0: 46 42 32 08 53 46 42 33 08 00 48 0d 53 46 42 45 FB2.SFB3..H.SFBE 0ef0: 08 5b 81 45 0d 45 43 4f 52 11 00 40 68 53 46 30 .[.E.ECOR..@hSF0 0f00: 30 01 53 46 30 31 01 53 46 30 32 01 53 46 30 33 0.SF01.SF02.SF03 0f10: 01 53 46 30 34 01 53 46 30 35 01 53 46 30 36 01 .SF04.SF05.SF06. 0f20: 53 46 30 37 01 53 46 30 38 01 53 46 30 39 01 53 SF07.SF08.SF09.S 0f30: 46 31 30 01 53 46 31 31 01 53 46 31 32 01 53 46 F10.SF11.SF12.SF 0f40: 31 33 01 53 46 31 34 01 53 46 31 35 01 53 46 31 13.SF14.SF15.SF1 0f50: 36 01 53 46 31 37 01 53 46 31 38 01 53 46 31 39 6.SF17.SF18.SF19 0f60: 01 53 46 32 30 01 53 46 32 31 01 53 46 32 32 01 .SF20.SF21.SF22. 0f70: 53 46 32 33 01 53 46 32 34 01 53 46 32 35 01 53 SF23.SF24.SF25.S 0f80: 46 32 36 01 53 46 32 37 01 53 46 32 38 01 53 46 F26.SF27.SF28.SF 0f90: 32 39 01 53 46 33 30 01 53 46 33 31 01 00 48 0d 29.SF30.SF31..H. 0fa0: 53 32 34 38 01 53 32 34 39 01 53 32 35 30 01 53 S248.S249.S250.S 0fb0: 32 35 31 01 53 32 35 32 01 53 32 35 33 01 53 32 251.S252.S253.S2 0fc0: 35 34 01 53 32 35 35 01 14 15 45 43 30 53 01 a0 54.S255...EC0S.. 0fd0: 05 93 68 0a 03 a0 08 68 a0 05 95 68 0a 04 14 1c ..h....h...h.... 0fe0: 45 43 30 57 01 a0 15 68 a0 05 95 68 0a 04 a0 0c EC0W...h...h.... 0ff0: 93 68 0a 03 70 0a 01 53 46 31 37 10 44 36 5c 2f .h..p..SF17.D6\/ 1000: 04 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 1010: 5f 5b 01 4d 55 45 43 00 5b 80 44 4c 59 50 01 0a _[.MUEC.[.DLYP.. 1020: e1 0a 01 5b 81 0b 44 4c 59 50 01 44 45 4c 59 08 ...[..DLYP.DELY. 1030: 5b 80 4b 42 43 50 01 0a 00 0a ff 5b 81 23 4b 42 [.KBCP.....[.#KB 1040: 43 50 11 00 40 30 4b 42 43 44 08 00 08 45 43 36 CP..@0KBCD...EC6 1050: 32 08 00 08 4b 42 43 43 08 00 08 45 43 36 36 08 2...KBCC...EC66. 1060: 5b 81 23 4b 42 43 50 11 00 40 31 4b 42 4f 46 01 [.#KBCP..@1KBOF. 1070: 4b 42 49 45 01 00 06 00 18 45 43 4f 46 01 45 43 KBIE.....ECOF.EC 1080: 49 45 01 00 06 14 1b 49 42 46 52 08 70 0b 00 10 IE.....IBFR.p... 1090: 60 a2 0f 90 76 60 4b 42 49 45 70 0a 00 44 45 4c `...v`KBIEp..DEL 10a0: 59 14 1c 4f 42 46 4c 08 70 0b 00 10 60 a2 10 90 Y..OBFL.p...`... 10b0: 76 60 92 4b 42 4f 46 70 0a 00 44 45 4c 59 14 1e v`.KBOFp..DELY.. 10c0: 57 4b 42 43 0a 49 42 46 52 70 68 4b 42 43 43 49 WKBC.IBFRphKBCCI 10d0: 42 46 52 70 69 4b 42 43 44 49 42 46 52 14 1b 49 BFRpiKBCDIBFR..I 10e0: 42 46 58 08 70 0b 00 10 60 a2 0f 90 76 60 45 43 BFX.p...`...v`EC 10f0: 49 45 70 0a 00 44 45 4c 59 14 1c 4f 42 46 58 08 IEp..DELY..OBFX. 1100: 70 0b 00 10 60 a2 10 90 76 60 92 45 43 4f 46 70 p...`...v`.ECOFp 1110: 0a 00 44 45 4c 59 14 1e 45 43 58 57 0a 49 42 46 ..DELY..ECXW.IBF 1120: 58 70 68 45 43 36 36 49 42 46 58 70 69 45 43 36 XphEC66IBFXpiEC6 1130: 32 49 42 46 58 14 41 04 42 57 52 4e 09 70 ff 62 2IBFX.A.BWRN.p.b 1140: a0 34 45 43 41 56 a0 2e 92 5b 23 4d 55 45 43 ff .4ECAV...[#MUEC. 1150: ff 7b 68 0a ff 60 7a 7b 68 0b 00 ff 00 0a 08 61 .{h..`z{h......a 1160: 70 61 42 54 31 32 70 60 42 54 31 33 5b 27 4d 55 paBT12p`BT13['MU 1170: 45 43 70 00 62 a4 62 14 41 04 42 4c 4f 57 09 70 ECp.b.b.A.BLOW.p 1180: ff 62 a0 34 45 43 41 56 a0 2e 92 5b 23 4d 55 45 .b.4ECAV...[#MUE 1190: 43 ff ff 7b 68 0a ff 60 7a 7b 68 0b 00 ff 00 0a C..{h..`z{h..... 11a0: 08 61 70 61 42 54 31 34 70 60 42 54 31 35 5b 27 .apaBT14p`BT15[' 11b0: 4d 55 45 43 70 00 62 a4 62 14 41 04 42 43 52 54 MUECp.b.b.A.BCRT 11c0: 09 70 ff 62 a0 34 45 43 41 56 a0 2e 92 5b 23 4d .p.b.4ECAV...[#M 11d0: 55 45 43 ff ff 7b 68 0a ff 60 7a 7b 68 0b 00 ff UEC..{h..`z{h... 11e0: 00 0a 08 61 70 61 42 54 31 36 70 60 42 54 31 37 ...apaBT16p`BT17 11f0: 5b 27 4d 55 45 43 70 00 62 a4 62 14 36 42 49 46 ['MUECp.b.b.6BIF 1200: 31 08 70 ff 60 a0 2a 45 43 41 56 a0 24 92 5b 23 1.p.`.*ECAV.$.[# 1210: 4d 55 45 43 ff ff 70 42 54 30 30 60 70 42 54 30 MUEC..pBT00`pBT0 1220: 31 61 7d 79 60 0a 08 00 61 60 5b 27 4d 55 45 43 1a}y`...a`['MUEC 1230: a4 60 14 36 42 49 46 32 08 70 ff 60 a0 2a 45 43 .`.6BIF2.p.`.*EC 1240: 41 56 a0 24 92 5b 23 4d 55 45 43 ff ff 70 42 54 AV.$.[#MUEC..pBT 1250: 32 33 60 70 42 54 32 34 61 7d 79 60 0a 08 00 61 23`pBT24a}y`...a 1260: 60 5b 27 4d 55 45 43 a4 60 14 36 42 49 46 34 08 `['MUEC.`.6BIF4. 1270: 70 ff 60 a0 2a 45 43 41 56 a0 24 92 5b 23 4d 55 p.`.*ECAV.$.[#MU 1280: 45 43 ff ff 70 42 54 30 32 60 70 42 54 30 33 61 EC..pBT02`pBT03a 1290: 7d 79 60 0a 08 00 61 60 5b 27 4d 55 45 43 a4 60 }y`...a`['MUEC.` 12a0: 14 36 42 53 54 31 08 70 ff 60 a0 2a 45 43 41 56 .6BST1.p.`.*ECAV 12b0: a0 24 92 5b 23 4d 55 45 43 ff ff 70 42 54 32 35 .$.[#MUEC..pBT25 12c0: 60 70 42 54 32 36 61 7d 79 60 0a 08 00 61 60 5b `pBT26a}y`...a`[ 12d0: 27 4d 55 45 43 a4 60 14 36 42 53 54 33 08 70 ff 'MUEC.`.6BST3.p. 12e0: 60 a0 2a 45 43 41 56 a0 24 92 5b 23 4d 55 45 43 `.*ECAV.$.[#MUEC 12f0: ff ff 70 42 54 30 34 60 70 42 54 30 35 61 7d 79 ..pBT04`pBT05a}y 1300: 60 0a 08 00 61 60 5b 27 4d 55 45 43 a4 60 14 28 `...a`['MUEC.`.( 1310: 45 42 54 53 08 70 ff 60 a0 1c 45 43 41 56 a0 16 EBTS.p.`..ECAV.. 1320: 92 5b 23 4d 55 45 43 ff ff 70 42 54 32 32 60 5b .[#MUEC..pBT22`[ 1330: 27 4d 55 45 43 a4 60 14 28 52 43 54 50 08 70 ff 'MUEC.`.(RCTP.p. 1340: 60 a0 1c 45 43 41 56 a0 16 92 5b 23 4d 55 45 43 `..ECAV...[#MUEC 1350: ff ff 70 53 54 30 30 60 5b 27 4d 55 45 43 a4 60 ..pST00`['MUEC.` 1360: 5b 82 46 1a 52 4d 53 43 08 5f 48 49 44 0c 41 d0 [.F.RMSC._HID.A. 1370: 0c 02 08 5f 55 49 44 0a 10 08 43 52 53 5f 11 4a ..._UID...CRS_.J 1380: 0b 0a b6 47 01 10 00 10 00 00 10 47 01 22 00 22 ...G.......G."." 1390: 00 00 1e 47 01 44 00 44 00 00 1c 47 01 63 00 63 ...G.D.D...G.c.c 13a0: 00 00 01 47 01 67 00 67 00 00 09 47 01 72 00 72 ...G.g.g...G.r.r 13b0: 00 00 0e 47 01 80 00 80 00 00 01 47 01 84 00 84 ...G.......G.... 13c0: 00 00 03 47 01 88 00 88 00 00 01 47 01 8c 00 8c ...G.......G.... 13d0: 00 00 03 47 01 90 00 90 00 00 10 47 01 a2 00 a2 ...G.......G.... 13e0: 00 00 1e 47 01 e0 00 e0 00 00 10 47 01 80 03 80 ...G.......G.... 13f0: 03 00 04 47 01 d0 04 d0 04 00 02 47 01 00 00 00 ...G.......G.... 1400: 00 00 00 47 01 00 00 00 00 00 00 47 01 00 00 00 ...G.......G.... 1410: 00 00 00 86 09 00 01 00 c0 d1 fe 00 40 00 00 86 ............@... 1420: 09 00 01 00 00 d2 fe 00 00 07 00 86 09 00 01 00 ................ 1430: 00 f0 ff 00 00 10 00 79 00 14 4e 0c 5f 43 52 53 .......y..N._CRS 1440: 00 8b 43 52 53 5f 0a 7a 47 50 30 30 8b 43 52 53 ..CRS_.zGP00.CRS 1450: 5f 0a 7c 47 50 30 31 8c 43 52 53 5f 0a 7f 47 50 _.|GP01.CRS_..GP 1460: 30 4c 70 50 4d 42 53 47 50 30 30 70 50 4d 42 53 0LpPMBSGP00pPMBS 1470: 47 50 30 31 70 50 4d 4c 4e 47 50 30 4c a0 42 04 GP01pPMLNGP0L.B. 1480: 53 4d 42 53 8b 43 52 53 5f 0a 82 47 50 31 30 8b SMBS.CRS_..GP10. 1490: 43 52 53 5f 0a 84 47 50 31 31 8c 43 52 53 5f 0a CRS_..GP11.CRS_. 14a0: 87 47 50 31 4c 70 53 4d 42 53 47 50 31 30 70 53 .GP1LpSMBSGP10pS 14b0: 4d 42 53 47 50 31 31 70 53 4d 42 4c 47 50 31 4c MBSGP11pSMBLGP1L 14c0: a0 42 04 47 50 42 53 8b 43 52 53 5f 0a 8a 47 50 .B.GPBS.CRS_..GP 14d0: 32 30 8b 43 52 53 5f 0a 8c 47 50 32 31 8c 43 52 20.CRS_..GP21.CR 14e0: 53 5f 0a 8f 47 50 32 4c 70 47 50 42 53 47 50 32 S_..GP2LpGPBSGP2 14f0: 30 70 47 50 42 53 47 50 32 31 70 47 50 4c 4e 47 0pGPBSGP21pGPLNG 1500: 50 32 4c a4 43 52 53 5f 5b 82 4d 08 50 33 46 36 P2L.CRS_[.M.P3F6 1510: 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 49 44 0b ._HID.A...._UID. 1520: f6 03 14 45 05 5f 53 54 41 00 70 0a 0f 61 70 5c ...E._STA.p..ap\ 1530: 2f 04 5f 53 42 5f 50 43 49 30 49 44 45 30 50 41 /._SB_PCI0IDE0PA 1540: 4d 44 60 7b 60 0a f5 60 a0 09 93 60 0a 80 70 0a MD`{`..`...`..p. 1550: 00 61 70 5c 2f 04 5f 53 42 5f 50 43 49 30 49 44 .ap\/._SB_PCI0ID 1560: 45 31 53 41 4d 44 60 7b 60 0a f5 60 a0 09 93 60 E1SAMD`{`..`...` 1570: 0a 80 70 0a 00 61 a4 61 08 43 52 53 5f 11 0d 0a ..p..a.a.CRS_... 1580: 0a 47 01 f6 03 f6 03 00 01 79 00 14 0b 5f 43 52 .G.......y..._CR 1590: 53 00 a4 43 52 53 5f 5b 80 49 4f 44 43 02 0a 80 S..CRS_[.IODC... 15a0: 0a 0a 5b 81 4d 07 49 4f 44 43 01 43 41 44 43 03 ..[.M.IODC.CADC. 15b0: 00 01 43 42 44 43 03 00 01 4c 50 44 43 02 00 02 ..CBDC...LPDC... 15c0: 46 44 44 43 01 00 03 43 41 45 4e 01 43 42 45 4e FDDC...CAEN.CBEN 15d0: 01 4c 50 45 4e 01 46 44 45 4e 01 00 04 47 4c 45 .LPEN.FDEN...GLE 15e0: 4e 01 47 48 45 4e 01 4b 42 45 4e 01 4d 43 45 4e N.GHEN.KBEN.MCEN 15f0: 01 43 31 45 4e 01 43 32 45 4e 01 00 02 47 31 45 .C1EN.C2EN...G1E 1600: 4e 01 00 06 47 31 44 31 01 47 31 44 32 08 00 10 N...G1D1.G1D2... 1610: 47 32 45 4e 01 00 03 47 32 44 31 04 47 32 44 32 G2EN...G2D1.G2D2 1620: 08 14 43 0f 50 44 45 43 02 a0 44 04 93 68 0a 00 ..C.PDEC..D..h.. 1630: a0 0d 93 69 0b f8 03 70 0a 00 43 41 44 43 a0 0d ...i...p..CADC.. 1640: 93 69 0b f8 02 70 0a 01 43 41 44 43 a0 0d 93 69 .i...p..CADC...i 1650: 0b e8 02 70 0a 05 43 41 44 43 a0 0d 93 69 0b e8 ...p..CADC...i.. 1660: 03 70 0a 07 43 41 44 43 70 01 43 41 45 4e a0 44 .p..CADCp.CAEN.D 1670: 04 93 68 0a 01 a0 0d 93 69 0b f8 03 70 0a 00 43 ..h.....i...p..C 1680: 42 44 43 a0 0d 93 69 0b f8 02 70 0a 01 43 42 44 BDC...i...p..CBD 1690: 43 a0 0d 93 69 0b e8 02 70 0a 05 43 42 44 43 a0 C...i...p..CBDC. 16a0: 0d 93 69 0b e8 03 70 0a 07 43 42 44 43 70 01 43 ..i...p..CBDCp.C 16b0: 42 45 4e a0 35 93 68 0a 02 a0 0d 93 69 0b 78 03 BEN.5.h.....i.x. 16c0: 70 0a 00 4c 50 44 43 a0 0d 93 69 0b 78 02 70 0a p..LPDC...i.x.p. 16d0: 01 4c 50 44 43 a0 0d 93 69 0b bc 03 70 0a 02 4c .LPDC...i...p..L 16e0: 50 44 43 70 01 4c 50 45 4e a0 2b 93 68 0a 08 a0 PDCp.LPEN.+.h... 16f0: 12 93 69 0b 00 02 70 01 47 4c 45 4e 70 00 47 48 ..i...p.GLENp.GH 1700: 45 4e a0 12 93 69 0b 08 02 70 00 47 4c 45 4e 70 EN...i...p.GLENp 1710: 01 47 48 45 4e 10 4f 08 5c 00 5b 80 5c 52 41 4d .GHEN.O.\.[.\RAM 1720: 57 00 74 54 4f 50 4d 0c 00 00 01 00 00 0c 00 00 W.tTOPM......... 1730: 01 00 5b 81 16 5c 52 41 4d 57 01 50 41 52 30 20 ..[..\RAMW.PAR0 1740: 50 41 52 31 20 50 41 52 32 20 5b 80 49 4f 42 32 PAR1 PAR2 [.IOB2 1750: 01 0a b2 0a 02 5b 81 10 49 4f 42 32 01 53 4d 49 .....[..IOB2.SMI 1760: 43 08 53 4d 49 53 08 14 0c 49 53 4d 49 09 70 68 C.SMIS...ISMI.ph 1770: 53 4d 49 43 14 17 47 4e 56 53 09 70 68 50 41 52 SMIC..GNVS.phPAR 1780: 30 49 53 4d 49 0a 70 a4 50 41 52 31 14 18 53 4e 0ISMI.p.PAR1..SN 1790: 56 53 0a 70 68 50 41 52 30 70 69 50 41 52 31 49 VS.phPAR0piPAR1I 17a0: 53 4d 49 0a 71 5b 80 53 4d 52 47 01 0b 00 04 0a SMI.q[.SMRG..... 17b0: 10 5b 81 2e 53 4d 52 47 01 48 53 54 53 08 53 53 .[..SMRG.HSTS.SS 17c0: 54 53 08 48 53 54 43 08 48 43 4d 44 08 48 41 44 TS.HSTC.HCMD.HAD 17d0: 52 08 48 44 54 30 08 48 44 54 31 08 42 4c 4b 44 R.HDT0.HDT1.BLKD 17e0: 08 5b 81 0d 53 4d 52 47 01 00 28 48 44 54 57 10 .[..SMRG..(HDTW. 17f0: 14 49 09 53 43 4d 44 0c 70 0a 05 60 a2 4b 08 76 .I.SCMD.p..`.K.v 1800: 60 70 0b ff ff 61 a2 13 90 48 53 54 53 76 61 70 `p...a...HSTSvap 1810: 0a fe 48 53 54 53 5b 21 0a 0a 70 68 48 41 44 52 ..HSTS[!..phHADR 1820: 70 69 48 43 4d 44 70 6a 48 44 54 57 70 6b 48 53 piHCMDpjHDTWpkHS 1830: 54 43 70 0b ff ff 61 a2 27 76 61 a0 0d 7b 48 53 TCp...a.'va..{HS 1840: 54 53 0a 0c 00 70 0a 01 61 a0 11 93 7b 48 53 54 TS...p..a...{HST 1850: 53 0a 03 00 0a 02 a4 48 44 54 57 5b 21 0a 0a 70 S......HDTW[!..p 1860: 0a 42 48 53 54 43 70 0b ff ff 61 a2 15 76 61 a0 .BHSTCp...a..va. 1870: 0d 7b 48 53 54 53 0a 10 00 70 0a 01 61 5b 21 0a .{HSTS...p..a[!. 1880: 0a 70 0a 00 48 53 54 43 a4 ff 14 10 53 42 59 54 .p..HSTC....SBYT 1890: 02 53 43 4d 44 68 69 0a 00 0a 44 14 0f 57 42 59 .SCMDhi...D..WBY 18a0: 54 03 53 43 4d 44 68 69 6a 0a 48 14 0f 57 57 52 T.SCMDhij.H..WWR 18b0: 44 03 53 43 4d 44 68 69 6a 0a 4c 14 1a 52 53 42 D.SCMDhij.L..RSB 18c0: 54 02 7d 68 0a 01 68 a4 7b 53 43 4d 44 68 69 0a T.}h..h.{SCMDhi. 18d0: 00 0a 44 0a ff 00 14 1a 52 42 59 54 02 7d 68 0a ..D.....RBYT.}h. 18e0: 01 68 a4 7b 53 43 4d 44 68 69 0a 00 0a 48 0a ff .h.{SCMDhi...H.. 18f0: 00 14 16 52 57 52 44 02 7d 68 0a 01 68 a4 53 43 ...RWRD.}h..h.SC 1900: 4d 44 68 69 0a 00 0a 4c 5b 82 4f 06 5c 2f 03 5f MDhi...L[.O.\/._ 1910: 53 42 5f 50 43 49 30 50 43 49 45 08 5f 48 49 44 SB_PCI0PCIE._HID 1920: 0c 41 d0 0c 02 08 5f 55 49 44 0a 11 08 43 52 53 .A...._UID...CRS 1930: 5f 11 11 0a 0e 86 09 00 00 00 00 00 e0 00 00 00 _............... 1940: 10 79 00 14 35 5f 43 52 53 00 8a 43 52 53 5f 0a .y..5_CRS..CRS_. 1950: 04 42 41 53 31 8a 43 52 53 5f 0a 08 4c 45 4e 31 .BAS1.CRS_..LEN1 1960: 70 5c 50 43 49 42 42 41 53 31 70 5c 50 43 49 4c p\PCIBBAS1p\PCIL 1970: 4c 45 4e 31 a4 43 52 53 5f 5b 82 4e 09 4f 4d 53 LEN1.CRS_[.N.OMS 1980: 43 08 5f 48 49 44 0c 41 d0 0c 02 08 5f 55 49 44 C._HID.A...._UID 1990: 0a 00 08 43 52 53 5f 11 1d 0a 1a 86 09 00 00 00 ...CRS_......... 19a0: 00 00 00 00 00 00 00 86 09 00 00 00 00 00 00 00 ................ 19b0: 00 00 00 79 00 14 43 06 5f 43 52 53 00 a0 46 05 ...y..C._CRS..F. 19c0: 41 50 49 43 8a 43 52 53 5f 0a 08 4d 4c 30 31 8a APIC.CRS_..ML01. 19d0: 43 52 53 5f 0a 04 4d 42 30 31 8a 43 52 53 5f 0a CRS_..MB01.CRS_. 19e0: 14 4d 4c 30 32 8a 43 52 53 5f 0a 10 4d 42 30 32 .ML02.CRS_..MB02 19f0: 70 0c 00 00 c0 fe 4d 42 30 31 70 0b 00 10 4d 4c p.....MB01p...ML 1a00: 30 31 70 0c 00 00 e0 fe 4d 42 30 32 70 0b 00 10 01p.....MB02p... 1a10: 4d 4c 30 32 a4 43 52 53 5f 5b 82 46 14 5c 2e 5f ML02.CRS_[.F.\._ 1a20: 53 42 5f 52 4d 45 4d 08 5f 48 49 44 0c 41 d0 0c SB_RMEM._HID.A.. 1a30: 01 08 5f 55 49 44 0a 01 08 43 52 53 5f 11 42 04 .._UID...CRS_.B. 1a40: 0a 3e 86 09 00 01 00 00 00 00 00 00 0a 00 86 09 .>.............. 1a50: 00 00 00 00 00 00 00 00 00 00 86 09 00 00 00 00 ................ 1a60: 0e 00 00 00 02 00 86 09 00 01 00 00 10 00 00 00 ................ 1a70: 00 00 86 09 00 00 00 00 00 00 00 00 00 00 79 00 ..............y. 1a80: 14 40 0e 5f 43 52 53 00 8a 43 52 53 5f 0a 10 42 .@._CRS..CRS_..B 1a90: 41 53 31 8a 43 52 53 5f 0a 14 4c 45 4e 31 8a 43 AS1.CRS_..LEN1.C 1aa0: 52 53 5f 0a 1c 42 41 53 32 8a 43 52 53 5f 0a 20 RS_..BAS2.CRS_. 1ab0: 4c 45 4e 32 8a 43 52 53 5f 0a 2c 4c 45 4e 33 8a LEN2.CRS_.,LEN3. 1ac0: 43 52 53 5f 0a 34 42 41 53 34 8a 43 52 53 5f 0a CRS_.4BAS4.CRS_. 1ad0: 38 4c 45 4e 34 a0 40 06 92 4f 53 46 4c a0 48 05 8LEN4.@..OSFL.H. 1ae0: 4d 47 31 42 a0 22 94 4d 47 31 42 0c 00 00 0c 00 MG1B.".MG1B..... 1af0: 70 0c 00 00 0c 00 42 41 53 31 74 4d 47 31 42 42 p.....BAS1tMG1BB 1b00: 41 53 31 4c 45 4e 31 a1 13 70 4d 47 31 42 42 41 AS1LEN1..pMG1BBA 1b10: 53 31 70 4d 47 31 4c 4c 45 4e 31 72 4d 47 31 42 S1pMG1LLEN1rMG1B 1b20: 4d 47 31 4c 42 41 53 32 74 0c 00 00 10 00 42 41 MG1LBAS2t.....BA 1b30: 53 32 4c 45 4e 32 74 4d 47 32 42 0c 00 00 10 00 S2LEN2tMG2B..... 1b40: 4c 45 4e 33 72 4d 47 32 42 4d 47 32 4c 42 41 53 LEN3rMG2BMG2LBAS 1b50: 34 74 0a 00 42 41 53 34 4c 45 4e 34 a4 43 52 53 4t..BAS4LEN4.CRS 1b60: 5f 10 40 6e 5c 2e 5f 53 42 5f 50 43 49 30 5b 82 _.@n\._SB_PCI0[. 1b70: 4e 06 42 41 54 30 08 5f 48 49 44 0c 41 d0 0c 0a N.BAT0._HID.A... 1b80: 08 5f 55 49 44 0a 00 08 5f 50 43 4c 12 0c 01 5c ._UID..._PCL...\ 1b90: 2e 5f 53 42 5f 50 43 49 30 14 0b 5f 53 54 41 00 ._SB_PCI0.._STA. 1ba0: a4 43 53 54 41 14 1e 5f 42 49 46 00 a0 0e 93 5c .CSTA.._BIF....\ 1bb0: 44 43 50 53 0a 00 a4 4e 42 49 46 43 42 49 46 a4 DCPS...NBIFCBIF. 1bc0: 50 42 49 46 14 19 5f 42 53 54 00 a0 0d 7b 0a 10 PBIF.._BST...{.. 1bd0: 5f 53 54 41 00 43 42 53 54 a4 50 42 53 54 08 4e _STA.CBST.PBST.N 1be0: 42 49 46 12 35 0d 0a 01 0c ff ff ff ff 0c ff ff BIF.5........... 1bf0: ff ff 0a 01 0c ff ff ff ff 0c ff ff ff ff 0c ff ................ 1c00: ff ff ff 0c ff ff ff ff 0c ff ff ff ff 0d 20 00 .............. . 1c10: 0d 20 00 0d 20 00 0d 20 00 08 50 42 49 46 12 2d . .. .. ..PBIF.- 1c20: 0d 0a 01 0b cc 10 0b 68 10 0a 01 0b d0 36 0b a4 .......h.....6.. 1c30: 01 0a d2 0a 1c 0b 0a 05 0d 37 30 31 00 0d 20 00 .........701.. . 1c40: 0d 4c 49 4f 4e 00 0d 41 53 55 53 00 08 42 41 54 .LION..ASUS..BAT 1c50: 46 11 03 0a 02 8b 42 41 54 46 0a 00 44 41 54 57 F.....BATF..DATW 1c60: 08 42 41 46 31 11 03 0a 02 8b 42 41 46 31 0a 00 .BAF1.....BAF1.. 1c70: 44 41 54 32 14 18 43 53 54 41 08 70 5c 44 43 50 DAT2..CSTA.p\DCP 1c80: 53 60 a0 05 60 a4 0a 1f a1 04 a4 0a 0f 14 45 0c S`..`.........E. 1c90: 43 42 49 46 08 5c 2f 05 5f 53 42 5f 50 43 49 30 CBIF.\/._SB_PCI0 1ca0: 53 42 52 47 45 43 30 5f 55 42 43 46 5c 2f 05 5f SBRGEC0_UBCF\/._ 1cb0: 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f 55 SB_PCI0SBRGEC0_U 1cc0: 42 43 53 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 BCS\/._SB_PCI0SB 1cd0: 52 47 45 43 30 5f 55 42 45 43 55 42 4c 50 a0 44 RGEC0_UBECUBLP.D 1ce0: 07 92 93 47 42 50 54 0a 00 ff 70 47 42 50 54 0a ...GBPT...pGBPT. 1cf0: 01 88 50 42 49 46 0a 01 00 70 47 42 50 54 0a 02 ..PBIF...pGBPT.. 1d00: 88 50 42 49 46 0a 02 00 70 47 42 50 54 0a 03 88 .PBIF...pGBPT... 1d10: 50 42 49 46 0a 04 00 70 47 42 50 54 0a 04 88 50 PBIF...pGBPT...P 1d20: 42 49 46 0a 05 00 70 47 42 50 54 0a 05 88 50 42 BIF...pGBPT...PB 1d30: 49 46 0a 06 00 70 47 42 50 54 0a 06 88 50 42 49 IF...pGBPT...PBI 1d40: 46 0a 07 00 70 47 42 50 54 0a 07 88 50 42 49 46 F...pGBPT...PBIF 1d50: 0a 08 00 08 50 42 53 54 12 0d 04 0a 00 0b 00 80 ....PBST........ 1d60: 0b 00 80 0b b0 36 14 47 4a 43 42 53 54 08 5c 2f .....6.GJCBST.\/ 1d70: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 1d80: 5f 55 42 43 53 70 5c 42 43 47 53 88 50 42 53 54 _UBCSp\BCGS.PBST 1d90: 0a 00 00 70 0c ff ff ff ff 88 50 42 53 54 0a 01 ...p......PBST.. 1da0: 00 08 5f 54 5f 30 00 70 5c 42 43 47 53 5f 54 5f .._T_0.p\BCGS_T_ 1db0: 30 a0 19 93 5f 54 5f 30 0a 00 70 0a 64 44 41 54 0..._T_0..p.dDAT 1dc0: 57 70 44 41 54 57 5c 42 4c 54 43 a1 4a 3f a0 44 WpDATW\BLTC.J?.D 1dd0: 1e 93 5f 54 5f 30 0a 01 70 5c 2f 05 5f 53 42 5f .._T_0..p\/._SB_ 1de0: 50 43 49 30 53 42 52 47 45 43 30 5f 42 53 54 33 PCI0SBRGEC0_BST3 1df0: 44 41 54 57 a0 1e 92 94 44 41 54 57 47 42 50 44 DATW....DATWGBPD 1e00: 0c 00 00 0c 00 70 47 42 50 44 0c 01 00 0c 00 44 .....pGBPD.....D 1e10: 41 54 57 a1 4d 17 a0 1e 92 94 44 41 54 57 47 42 ATW.M.....DATWGB 1e20: 50 44 0c 00 01 0c 00 70 47 42 50 44 0c 01 01 0c PD.....pGBPD.... 1e30: 00 44 41 54 57 a1 4b 15 a0 1e 92 94 44 41 54 57 .DATW.K.....DATW 1e40: 47 42 50 44 0c 00 02 0c 00 70 47 42 50 44 0c 01 GBPD.....pGBPD.. 1e50: 02 0c 00 44 41 54 57 a1 49 13 a0 1e 92 94 44 41 ...DATW.I.....DA 1e60: 54 57 47 42 50 44 0c 00 03 0c 00 70 47 42 50 44 TWGBPD.....pGBPD 1e70: 0c 01 03 0c 00 44 41 54 57 a1 47 11 a0 1e 92 94 .....DATW.G..... 1e80: 44 41 54 57 47 42 50 44 0c 00 04 0c 00 70 47 42 DATWGBPD.....pGB 1e90: 50 44 0c 01 04 0c 00 44 41 54 57 a1 45 0f a0 1e PD.....DATW.E... 1ea0: 92 94 44 41 54 57 47 42 50 44 0c 00 05 0c 00 70 ..DATWGBPD.....p 1eb0: 47 42 50 44 0c 01 05 0c 00 44 41 54 57 a1 43 0d GBPD.....DATW.C. 1ec0: a0 1e 92 94 44 41 54 57 47 42 50 44 0c 00 06 0c ....DATWGBPD.... 1ed0: 00 70 47 42 50 44 0c 01 06 0c 00 44 41 54 57 a1 .pGBPD.....DATW. 1ee0: 41 0b a0 1e 92 94 44 41 54 57 47 42 50 44 0c 00 A.....DATWGBPD.. 1ef0: 07 0c 00 70 47 42 50 44 0c 01 07 0c 00 44 41 54 ...pGBPD.....DAT 1f00: 57 a1 4f 08 a0 1e 92 94 44 41 54 57 47 42 50 44 W.O.....DATWGBPD 1f10: 0c 00 08 0c 00 70 47 42 50 44 0c 01 08 0c 00 44 .....pGBPD.....D 1f20: 41 54 57 a1 4d 06 a0 1e 92 94 44 41 54 57 47 42 ATW.M.....DATWGB 1f30: 50 44 0c 00 09 0c 00 70 47 42 50 44 0c 01 09 0c PD.....pGBPD.... 1f40: 00 44 41 54 57 a1 4b 04 a0 1e 92 94 44 41 54 57 .DATW.K.....DATW 1f50: 47 42 50 44 0c 00 0a 0c 00 70 47 42 50 44 0c 01 GBPD.....pGBPD.. 1f60: 0a 0c 00 44 41 54 57 a1 29 a0 1e 92 94 44 41 54 ...DATW.)....DAT 1f70: 57 47 42 50 44 0c 00 0b 0c 00 70 47 42 50 44 0c WGBPD.....pGBPD. 1f80: 01 0b 0c 00 44 41 54 57 a1 08 70 0a 64 44 41 54 ....DATW..p.dDAT 1f90: 57 a0 15 94 5c 42 4c 54 43 44 41 54 57 70 44 41 W...\BLTCDATWpDA 1fa0: 54 57 5c 42 4c 54 43 a1 0b 70 5c 42 4c 54 43 44 TW\BLTC..p\BLTCD 1fb0: 41 54 57 a1 42 21 a0 4d 20 93 5f 54 5f 30 0a 02 ATW.B!.M ._T_0.. 1fc0: 70 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 p\/._SB_PCI0SBRG 1fd0: 45 43 30 5f 42 49 46 34 44 41 54 57 70 5c 2f 05 EC0_BIF4DATWp\/. 1fe0: 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f _SB_PCI0SBRGEC0_ 1ff0: 42 53 54 31 44 41 54 32 a0 2b 90 92 95 44 41 54 BST1DAT2.+...DAT 2000: 57 47 42 50 43 0c 00 0c 0d 00 92 94 44 41 54 32 WGBPC.......DAT2 2010: 47 42 50 54 0a 0b 70 47 42 50 43 0c 01 0c 0d 00 GBPT..pGBPC..... 2020: 44 41 54 57 a1 4d 17 a0 1e 92 95 44 41 54 57 47 DATW.M.....DATWG 2030: 42 50 43 0c 00 0b 0d 00 70 47 42 50 43 0c 01 0b BPC.....pGBPC... 2040: 0d 00 44 41 54 57 a1 4b 15 a0 1e 92 95 44 41 54 ..DATW.K.....DAT 2050: 57 47 42 50 43 0c 00 0a 0d 00 70 47 42 50 43 0c WGBPC.....pGBPC. 2060: 01 0a 0d 00 44 41 54 57 a1 49 13 a0 1e 92 95 44 ....DATW.I.....D 2070: 41 54 57 47 42 50 43 0c 00 09 0d 00 70 47 42 50 ATWGBPC.....pGBP 2080: 43 0c 01 09 0d 00 44 41 54 57 a1 47 11 a0 1e 92 C.....DATW.G.... 2090: 95 44 41 54 57 47 42 50 43 0c 00 08 0d 00 70 47 .DATWGBPC.....pG 20a0: 42 50 43 0c 01 08 0d 00 44 41 54 57 a1 45 0f a0 BPC.....DATW.E.. 20b0: 1e 92 95 44 41 54 57 47 42 50 43 0c 00 07 0d 00 ...DATWGBPC..... 20c0: 70 47 42 50 43 0c 01 07 0d 00 44 41 54 57 a1 43 pGBPC.....DATW.C 20d0: 0d a0 1e 92 95 44 41 54 57 47 42 50 43 0c 00 06 .....DATWGBPC... 20e0: 0d 00 70 47 42 50 43 0c 01 06 0d 00 44 41 54 57 ..pGBPC.....DATW 20f0: a1 41 0b a0 1e 92 95 44 41 54 57 47 42 50 43 0c .A.....DATWGBPC. 2100: 00 05 0d 00 70 47 42 50 43 0c 01 05 0d 00 44 41 ....pGBPC.....DA 2110: 54 57 a1 4f 08 a0 1e 92 95 44 41 54 57 47 42 50 TW.O.....DATWGBP 2120: 43 0c 00 04 0d 00 70 47 42 50 43 0c 01 04 0d 00 C.....pGBPC..... 2130: 44 41 54 57 a1 4d 06 a0 1e 92 95 44 41 54 57 47 DATW.M.....DATWG 2140: 42 50 43 0c 00 03 0d 00 70 47 42 50 43 0c 01 03 BPC.....pGBPC... 2150: 0d 00 44 41 54 57 a1 4b 04 a0 1e 92 95 44 41 54 ..DATW.K.....DAT 2160: 57 47 42 50 43 0c 00 02 0d 00 70 47 42 50 43 0c WGBPC.....pGBPC. 2170: 01 02 0d 00 44 41 54 57 a1 29 a0 1e 92 95 44 41 ....DATW.)....DA 2180: 54 57 47 42 50 43 0c 00 01 0d 00 70 47 42 50 43 TWGBPC.....pGBPC 2190: 0c 01 01 0d 00 44 41 54 57 a1 08 70 0a 00 44 41 .....DATW..p..DA 21a0: 54 57 a0 15 94 5c 42 4c 54 43 44 41 54 57 70 5c TW...\BLTCDATWp\ 21b0: 42 4c 54 43 44 41 54 57 a1 0b 70 44 41 54 57 5c BLTCDATW..pDATW\ 21c0: 42 4c 54 43 a1 01 a0 15 92 93 44 41 54 57 ff 70 BLTC......DATW.p 21d0: 44 41 54 57 88 50 42 53 54 0a 02 00 70 5c 2f 05 DATW.PBST...p\/. 21e0: 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f _SB_PCI0SBRGEC0_ 21f0: 42 53 54 33 44 41 54 57 a0 15 92 93 44 41 54 57 BST3DATW....DATW 2200: ff 70 44 41 54 57 88 50 42 53 54 0a 03 00 14 33 .pDATW.PBST....3 2210: 55 42 4c 50 08 a0 11 93 5c 42 43 47 53 0a 01 70 UBLP....\BCGS..p 2220: 0a 64 5c 42 4c 54 43 a0 1a 91 93 5c 42 43 47 53 .d\BLTC....\BCGS 2230: 0a 00 93 5c 42 43 47 53 0a 02 70 0a 00 5c 42 4c ...\BCGS..p..\BL 2240: 54 43 10 43 d3 5c 2e 5f 53 42 5f 50 43 49 30 08 TC.C.\._SB_PCI0. 2250: 42 4e 55 4d 0a 06 08 42 41 49 46 12 49 5a 06 12 BNUM...BAIF.IZ.. 2260: 40 0f 0e 0a 0a 0b 28 0a 0a 64 0b d0 20 0a 14 0a @.....(..d.. ... 2270: 0a 0a 1a 0a 1a 0b 67 1b 0b 37 1b 0b a7 1a 0a fa ......g..7...... 2280: 12 43 06 0c 12 07 02 0b 70 17 0a 00 12 07 02 0b .C......p....... 2290: a6 18 0a 01 12 07 02 0b a7 1a 0a 07 12 07 02 0b ................ 22a0: 37 1b 0a 0a 12 07 02 0b 67 1b 0a 14 12 07 02 0b 7.......g....... 22b0: af 1b 0a 1e 12 07 02 0b e1 1b 0a 28 12 07 02 0b ...........(.... 22c0: 1a 1c 0a 32 12 07 02 0b 6b 1c 0a 3c 12 07 02 0b ...2....k..<.... 22d0: d3 1c 0a 46 12 07 02 0b 5a 1d 0a 50 12 07 02 0b ...F....Z..P.... 22e0: 04 1e 0a 5a 12 4b 06 0d 12 07 02 0b 12 1c 0a 00 ...Z.K.......... 22f0: 12 07 02 0b f4 1c 0a 01 12 07 02 0b 11 1e 0a 07 ................ 2300: 12 07 02 0b 37 1e 0a 0a 12 07 02 0b cc 1e 0a 14 ....7........... 2310: 12 07 02 0b 08 1f 0a 1e 12 07 02 0b 44 1f 0a 28 ............D..( 2320: 12 07 02 0b 82 1f 0a 32 12 07 02 0b ce 1f 0a 3c .......2.......< 2330: 12 07 02 0b 37 20 0a 46 12 07 02 0b b9 20 0a 50 ....7 .F..... .P 2340: 12 07 02 0b ce 20 0a 5a 12 07 02 0b cd 20 0a 64 ..... .Z..... .d 2350: 12 40 0f 0e 0a 0b 0b 50 14 0a 64 0b d0 20 0a 14 .@.....P..d.. .. 2360: 0a 0a 0a 34 0a 34 0b 86 1c 0b 0c 1c 0b d3 1b 0a ...4.4.......... 2370: f9 12 43 06 0c 12 07 02 0b 70 17 0a 00 12 07 02 ..C......p...... 2380: 0b 68 19 0a 01 12 07 02 0b d3 1b 0a 07 12 07 02 .h.............. 2390: 0b 0c 1c 0a 0a 12 07 02 0b 86 1c 0a 14 12 07 02 ................ 23a0: 0b bc 1c 0a 1e 12 07 02 0b e3 1c 0a 28 12 07 02 ............(... 23b0: 0b 1e 1d 0a 32 12 07 02 0b 79 1d 0a 3c 12 07 02 ....2....y..<... 23c0: 0b f3 1d 0a 46 12 07 02 0b 86 1e 0a 50 12 07 02 ....F.......P... 23d0: 0b 34 1f 0a 5a 12 4b 06 0d 12 07 02 0b 70 17 0a .4..Z.K......p.. 23e0: 00 12 07 02 0b 04 1c 0a 01 12 07 02 0b ac 1d 0a ................ 23f0: 07 12 07 02 0b d2 1d 0a 0a 12 07 02 0b 66 1e 0a .............f.. 2400: 14 12 07 02 0b 9b 1e 0a 1e 12 07 02 0b d1 1e 0a ................ 2410: 28 12 07 02 0b 0c 1f 0a 32 12 07 02 0b 60 1f 0a (.......2....`.. 2420: 3c 12 07 02 0b cc 1f 0a 46 12 07 02 0b 56 20 0a <.......F....V . 2430: 50 12 07 02 0b cf 20 0a 5a 12 07 02 0b cf 20 0a P..... .Z..... . 2440: 64 12 40 0f 0e 0a 0c 0b 78 1e 0a 64 0b d0 20 0a d.@.....x..d.. . 2450: 14 0a 0a 0a 4e 0a 4e 0b 68 1c 0b e0 1b 0b bd 1b ....N.N.h....... 2460: 0a fa 12 43 06 0c 12 07 02 0b 6f 17 0a 00 12 07 ...C......o..... 2470: 02 0b 5e 19 0a 01 12 07 02 0b bd 1b 0a 07 12 07 ..^............. 2480: 02 0b e0 1b 0a 0a 12 07 02 0b 68 1c 0a 14 12 07 ..........h..... 2490: 02 0b 98 1c 0a 1e 12 07 02 0b b9 1c 0a 28 12 07 .............(.. 24a0: 02 0b f7 1c 0a 32 12 07 02 0b 56 1d 0a 3c 12 07 .....2....V..<.. 24b0: 02 0b d8 1d 0a 46 12 07 02 0b 65 1e 0a 50 12 07 .....F....e..P.. 24c0: 02 0b 15 1f 0a 5a 12 4b 06 0d 12 07 02 0b d1 1a .....Z.K........ 24d0: 0a 00 12 07 02 0b 2b 1c 0a 01 12 07 02 0b 00 1e ......+......... 24e0: 0a 07 12 07 02 0b 1d 1e 0a 0a 12 07 02 0b a8 1e ................ 24f0: 0a 14 12 07 02 0b de 1e 0a 1e 12 07 02 0b 0b 1f ................ 2500: 0a 28 12 07 02 0b 51 1f 0a 32 12 07 02 0b 9e 1f .(....Q..2...... 2510: 0a 3c 12 07 02 0b 00 20 0a 46 12 07 02 0b 83 20 .<..... .F..... 2520: 0a 50 12 07 02 0b cf 20 0a 5a 12 07 02 0b cf 20 .P..... .Z..... 2530: 0a 64 12 40 0f 0e 0a 0d 0b 98 08 0a 64 0b d0 20 .d.@........d.. 2540: 0a 14 0a 0a 0a 16 0a 16 0b 4c 1a 0b 1e 1a 0b 91 .........L...... 2550: 19 0a fa 12 43 06 0c 12 07 02 0b 70 17 0a 00 12 ....C......p.... 2560: 07 02 0b 54 18 0a 01 12 07 02 0b 91 19 0a 07 12 ...T............ 2570: 07 02 0b 1e 1a 0a 0a 12 07 02 0b 4c 1a 0a 14 12 ...........L.... 2580: 07 02 0b a7 1a 0a 1e 12 07 02 0b fb 1a 0a 28 12 ..............(. 2590: 07 02 0b 5e 1b 0a 32 12 07 02 0b e9 1b 0a 3c 12 ...^..2.......<. 25a0: 07 02 0b a4 1c 0a 46 12 07 02 0b 78 1d 0a 50 12 ......F....x..P. 25b0: 07 02 0b 4e 1e 0a 5a 12 4b 06 0d 12 07 02 0b 19 ...N..Z.K....... 25c0: 1c 0a 00 12 07 02 0b 81 1c 0a 01 12 07 02 0b 1a ................ 25d0: 1d 0a 07 12 07 02 0b 57 1d 0a 0a 12 07 02 0b ce .......W........ 25e0: 1d 0a 14 12 07 02 0b 14 1e 0a 1e 12 07 02 0b 56 ...............V 25f0: 1e 0a 28 12 07 02 0b a9 1e 0a 32 12 07 02 0b 29 ..(.......2....) 2600: 1f 0a 3c 12 07 02 0b e2 1f 0a 46 12 07 02 0b bf ..<.......F..... 2610: 20 0a 50 12 07 02 0b d1 20 0a 5a 12 07 02 0b cf .P..... .Z..... 2620: 20 0a 64 12 40 0f 0e 0a 0e 0b 30 11 0a 64 0b d0 .d.@.....0..d.. 2630: 20 0a 14 0a 0a 0a 2c 0a 2c 0b fb 1a 0b 7f 1a 0b .....,.,....... 2640: 26 1a 0a fa 12 43 06 0c 12 07 02 0b 70 17 0a 00 &....C......p... 2650: 12 07 02 0b b5 18 0a 01 12 07 02 0b 26 1a 0a 07 ............&... 2660: 12 07 02 0b 7f 1a 0a 0a 12 07 02 0b fb 1a 0a 14 ................ 2670: 12 07 02 0b 50 1b 0a 1e 12 07 02 0b 9b 1b 0a 28 ....P..........( 2680: 12 07 02 0b f6 1b 0a 32 12 07 02 0b 83 1c 0a 3c .......2.......< 2690: 12 07 02 0b 49 1d 0a 46 12 07 02 0b 24 1e 0a 50 ....I..F....$..P 26a0: 12 07 02 0b fc 1e 0a 5a 12 4b 06 0d 12 07 02 0b .......Z.K...... 26b0: 70 17 0a 00 12 07 02 0b ca 1b 0a 01 12 07 02 0b p............... 26c0: 47 1c 0a 07 12 07 02 0b 7d 1c 0a 0a 12 07 02 0b G.......}....... 26d0: 09 1d 0a 14 12 07 02 0b 4b 1d 0a 1e 12 07 02 0b ........K....... 26e0: 8d 1d 0a 28 12 07 02 0b e2 1d 0a 32 12 07 02 0b ...(.......2.... 26f0: 65 1e 0a 3c 12 07 02 0b 1c 1f 0a 46 12 07 02 0b e..<.......F.... 2700: f5 1f 0a 50 12 07 02 0b d0 20 0a 5a 12 07 02 0b ...P..... .Z.... 2710: d0 20 0a 64 12 40 0f 0e 0a 0f 0b c8 19 0a 64 0b . .d.@........d. 2720: d0 20 0a 14 0a 0a 0a 42 0a 42 0b cc 1a 0b 40 1a . .....B.B....@. 2730: 0b fd 19 0a fa 12 43 06 0c 12 07 02 0b 6f 17 0a ......C......o.. 2740: 00 12 07 02 0b c7 18 0a 01 12 07 02 0b fd 19 0a ................ 2750: 07 12 07 02 0b 40 1a 0a 0a 12 07 02 0b cc 1a 0a .....@.......... 2760: 14 12 07 02 0b 26 1b 0a 1e 12 07 02 0b 76 1b 0a .....&.......v.. 2770: 28 12 07 02 0b d2 1b 0a 32 12 07 02 0b 5a 1c 0a (.......2....Z.. 2780: 3c 12 07 02 0b 1d 1d 0a 46 12 07 02 0b f0 1d 0a <.......F....... 2790: 50 12 07 02 0b c9 1e 0a 5a 12 4b 06 0d 12 07 02 P.......Z.K..... 27a0: 0b f4 1b 0a 00 12 07 02 0b 2e 1c 0a 01 12 07 02 ................ 27b0: 0b 8f 1c 0a 07 12 07 02 0b c3 1c 0a 0a 12 07 02 ................ 27c0: 0b 3d 1d 0a 14 12 07 02 0b 7d 1d 0a 1e 12 07 02 .=.......}...... 27d0: 0b c4 1d 0a 28 12 07 02 0b 1a 1e 0a 32 12 07 02 ....(.......2... 27e0: 0b 96 1e 0a 3c 12 07 02 0b 45 1f 0a 46 12 07 02 ....<....E..F... 27f0: 0b 17 20 0a 50 12 07 02 0b d1 20 0a 5a 12 07 02 .. .P..... .Z... 2800: 0b d0 20 0a 64 14 46 13 47 42 50 54 09 a0 0b 93 .. .d.F.GBPT.... 2810: 5c 42 43 41 54 ff 70 ff 60 a1 0c 70 47 49 44 58 \BCAT.p.`..pGIDX 2820: 5c 42 43 41 54 60 a0 4e 10 92 93 60 ff 08 5f 54 \BCAT`.N...`.._T 2830: 5f 30 00 70 68 5f 54 5f 30 a0 11 93 5f 54 5f 30 _0.ph_T_0..._T_0 2840: 0a 00 70 47 45 32 41 60 0a 00 67 a1 49 0e a0 11 ..pGE2A`..g.I... 2850: 93 5f 54 5f 30 0a 01 70 47 45 32 41 60 0a 01 67 ._T_0..pGE2A`..g 2860: a1 44 0d a0 11 93 5f 54 5f 30 0a 02 70 47 45 32 .D...._T_0..pGE2 2870: 41 60 0a 02 67 a1 4f 0b a0 11 93 5f 54 5f 30 0a A`..g.O...._T_0. 2880: 03 70 47 45 32 41 60 0a 03 67 a1 4a 0a a0 11 93 .pGE2A`..g.J.... 2890: 5f 54 5f 30 0a 04 70 47 45 32 41 60 0a 04 67 a1 _T_0..pGE2A`..g. 28a0: 45 09 a0 11 93 5f 54 5f 30 0a 05 70 47 45 32 41 E...._T_0..pGE2A 28b0: 60 0a 05 67 a1 40 08 a0 11 93 5f 54 5f 30 0a 06 `..g.@...._T_0.. 28c0: 70 47 45 32 41 60 0a 06 67 a1 4b 06 a0 11 93 5f pGE2A`..g.K...._ 28d0: 54 5f 30 0a 07 70 47 45 32 41 60 0a 07 67 a1 46 T_0..pGE2A`..g.F 28e0: 05 a0 11 93 5f 54 5f 30 0a 08 70 47 45 32 41 60 ...._T_0..pGE2A` 28f0: 0a 08 67 a1 41 04 a0 11 93 5f 54 5f 30 0a 09 70 ..g.A...._T_0..p 2900: 47 45 32 41 60 0a 09 67 a1 2c a0 11 93 5f 54 5f GE2A`..g.,..._T_ 2910: 30 0a 0a 70 47 45 32 41 60 0a 0a 67 a1 18 a0 11 0..pGE2A`..g.... 2920: 93 5f 54 5f 30 0a 0b 70 47 45 32 41 60 0a 0b 67 ._T_0..pGE2A`..g 2930: a1 04 70 ff 67 a1 04 70 ff 67 a4 67 14 42 2c 47 ..p.g..p.g.g.B,G 2940: 42 50 44 09 a0 0b 93 5c 42 43 41 54 ff 70 ff 60 BPD....\BCAT.p.` 2950: a1 0c 70 47 49 44 58 5c 42 43 41 54 60 a0 4a 29 ..pGIDX\BCAT`.J) 2960: 92 93 60 ff 08 5f 54 5f 30 00 70 68 5f 54 5f 30 ..`.._T_0.ph_T_0 2970: a0 17 93 5f 54 5f 30 0c 00 00 0c 00 70 47 45 34 ..._T_0.....pGE4 2980: 41 60 0c 00 00 0c 00 67 a1 4f 26 a0 17 93 5f 54 A`.....g.O&..._T 2990: 5f 30 0c 00 01 0c 00 70 47 45 34 41 60 0c 00 01 _0.....pGE4A`... 29a0: 0c 00 67 a1 44 25 a0 17 93 5f 54 5f 30 0c 00 02 ..g.D%..._T_0... 29b0: 0c 00 70 47 45 34 41 60 0c 00 02 0c 00 67 a1 49 ..pGE4A`.....g.I 29c0: 23 a0 17 93 5f 54 5f 30 0c 00 03 0c 00 70 47 45 #..._T_0.....pGE 29d0: 34 41 60 0c 00 03 0c 00 67 a1 4e 21 a0 17 93 5f 4A`.....g.N!..._ 29e0: 54 5f 30 0c 00 04 0c 00 70 47 45 34 41 60 0c 00 T_0.....pGE4A`.. 29f0: 04 0c 00 67 a1 43 20 a0 17 93 5f 54 5f 30 0c 00 ...g.C ..._T_0.. 2a00: 05 0c 00 70 47 45 34 41 60 0c 00 05 0c 00 67 a1 ...pGE4A`.....g. 2a10: 48 1e a0 17 93 5f 54 5f 30 0c 00 06 0c 00 70 47 H...._T_0.....pG 2a20: 45 34 41 60 0c 00 06 0c 00 67 a1 4d 1c a0 17 93 E4A`.....g.M.... 2a30: 5f 54 5f 30 0c 00 07 0c 00 70 47 45 34 41 60 0c _T_0.....pGE4A`. 2a40: 00 07 0c 00 67 a1 42 1b a0 17 93 5f 54 5f 30 0c ....g.B...._T_0. 2a50: 00 08 0c 00 70 47 45 34 41 60 0c 00 08 0c 00 67 ....pGE4A`.....g 2a60: a1 47 19 a0 17 93 5f 54 5f 30 0c 00 09 0c 00 70 .G...._T_0.....p 2a70: 47 45 34 41 60 0c 00 09 0c 00 67 a1 4c 17 a0 17 GE4A`.....g.L... 2a80: 93 5f 54 5f 30 0c 00 0a 0c 00 70 47 45 34 41 60 ._T_0.....pGE4A` 2a90: 0c 00 0a 0c 00 67 a1 41 16 a0 17 93 5f 54 5f 30 .....g.A...._T_0 2aa0: 0c 00 0b 0c 00 70 47 45 34 41 60 0c 00 0b 0c 00 .....pGE4A`..... 2ab0: 67 a1 46 14 a0 17 93 5f 54 5f 30 0c 01 00 0c 00 g.F...._T_0..... 2ac0: 70 47 45 34 41 60 0c 01 00 0c 00 67 a1 4b 12 a0 pGE4A`.....g.K.. 2ad0: 17 93 5f 54 5f 30 0c 01 01 0c 00 70 47 45 34 41 .._T_0.....pGE4A 2ae0: 60 0c 01 01 0c 00 67 a1 40 11 a0 17 93 5f 54 5f `.....g.@...._T_ 2af0: 30 0c 01 02 0c 00 70 47 45 34 41 60 0c 01 02 0c 0.....pGE4A`.... 2b00: 00 67 a1 45 0f a0 17 93 5f 54 5f 30 0c 01 03 0c .g.E...._T_0.... 2b10: 00 70 47 45 34 41 60 0c 01 03 0c 00 67 a1 4a 0d .pGE4A`.....g.J. 2b20: a0 17 93 5f 54 5f 30 0c 01 04 0c 00 70 47 45 34 ..._T_0.....pGE4 2b30: 41 60 0c 01 04 0c 00 67 a1 4f 0b a0 17 93 5f 54 A`.....g.O...._T 2b40: 5f 30 0c 01 05 0c 00 70 47 45 34 41 60 0c 01 05 _0.....pGE4A`... 2b50: 0c 00 67 a1 44 0a a0 17 93 5f 54 5f 30 0c 01 06 ..g.D...._T_0... 2b60: 0c 00 70 47 45 34 41 60 0c 01 06 0c 00 67 a1 49 ..pGE4A`.....g.I 2b70: 08 a0 17 93 5f 54 5f 30 0c 01 07 0c 00 70 47 45 ...._T_0.....pGE 2b80: 34 41 60 0c 01 07 0c 00 67 a1 4e 06 a0 17 93 5f 4A`.....g.N...._ 2b90: 54 5f 30 0c 01 08 0c 00 70 47 45 34 41 60 0c 01 T_0.....pGE4A`.. 2ba0: 08 0c 00 67 a1 43 05 a0 17 93 5f 54 5f 30 0c 01 ...g.C...._T_0.. 2bb0: 09 0c 00 70 47 45 34 41 60 0c 01 09 0c 00 67 a1 ...pGE4A`.....g. 2bc0: 38 a0 17 93 5f 54 5f 30 0c 01 0a 0c 00 70 47 45 8..._T_0.....pGE 2bd0: 34 41 60 0c 01 0a 0c 00 67 a1 1e a0 17 93 5f 54 4A`.....g....._T 2be0: 5f 30 0c 01 0b 0c 00 70 47 45 34 41 60 0c 01 0b _0.....pGE4A`... 2bf0: 0c 00 67 a1 04 70 ff 67 a1 04 70 ff 67 a4 67 14 ..g..p.g..p.g.g. 2c00: 48 2f 47 42 50 43 09 a0 0b 93 5c 42 43 41 54 ff H/GBPC....\BCAT. 2c10: 70 ff 60 a1 0c 70 47 49 44 58 5c 42 43 41 54 60 p.`..pGIDX\BCAT` 2c20: a0 40 2d 92 93 60 ff 08 5f 54 5f 30 00 70 68 5f .@-..`.._T_0.ph_ 2c30: 54 5f 30 a0 17 93 5f 54 5f 30 0c 00 00 0d 00 70 T_0..._T_0.....p 2c40: 47 45 34 41 60 0c 00 00 0d 00 67 a1 45 2a a0 17 GE4A`.....g.E*.. 2c50: 93 5f 54 5f 30 0c 00 01 0d 00 70 47 45 34 41 60 ._T_0.....pGE4A` 2c60: 0c 00 01 0d 00 67 a1 4a 28 a0 17 93 5f 54 5f 30 .....g.J(..._T_0 2c70: 0c 00 02 0d 00 70 47 45 34 41 60 0c 00 02 0d 00 .....pGE4A`..... 2c80: 67 a1 4f 26 a0 17 93 5f 54 5f 30 0c 00 03 0d 00 g.O&..._T_0..... 2c90: 70 47 45 34 41 60 0c 00 03 0d 00 67 a1 44 25 a0 pGE4A`.....g.D%. 2ca0: 17 93 5f 54 5f 30 0c 00 04 0d 00 70 47 45 34 41 .._T_0.....pGE4A 2cb0: 60 0c 00 04 0d 00 67 a1 49 23 a0 17 93 5f 54 5f `.....g.I#..._T_ 2cc0: 30 0c 00 05 0d 00 70 47 45 34 41 60 0c 00 05 0d 0.....pGE4A`.... 2cd0: 00 67 a1 4e 21 a0 17 93 5f 54 5f 30 0c 00 06 0d .g.N!..._T_0.... 2ce0: 00 70 47 45 34 41 60 0c 00 06 0d 00 67 a1 43 20 .pGE4A`.....g.C 2cf0: a0 17 93 5f 54 5f 30 0c 00 07 0d 00 70 47 45 34 ..._T_0.....pGE4 2d00: 41 60 0c 00 07 0d 00 67 a1 48 1e a0 17 93 5f 54 A`.....g.H...._T 2d10: 5f 30 0c 00 08 0d 00 70 47 45 34 41 60 0c 00 08 _0.....pGE4A`... 2d20: 0d 00 67 a1 4d 1c a0 17 93 5f 54 5f 30 0c 00 09 ..g.M...._T_0... 2d30: 0d 00 70 47 45 34 41 60 0c 00 09 0d 00 67 a1 42 ..pGE4A`.....g.B 2d40: 1b a0 17 93 5f 54 5f 30 0c 00 0a 0d 00 70 47 45 ...._T_0.....pGE 2d50: 34 41 60 0c 00 0a 0d 00 67 a1 47 19 a0 17 93 5f 4A`.....g.G...._ 2d60: 54 5f 30 0c 00 0b 0d 00 70 47 45 34 41 60 0c 00 T_0.....pGE4A`.. 2d70: 0b 0d 00 67 a1 4c 17 a0 17 93 5f 54 5f 30 0c 00 ...g.L...._T_0.. 2d80: 0c 0d 00 70 47 45 34 41 60 0c 00 0c 0d 00 67 a1 ...pGE4A`.....g. 2d90: 41 16 a0 17 93 5f 54 5f 30 0c 01 00 0d 00 70 47 A...._T_0.....pG 2da0: 45 34 41 60 0c 01 00 0d 00 67 a1 46 14 a0 17 93 E4A`.....g.F.... 2db0: 5f 54 5f 30 0c 01 01 0d 00 70 47 45 34 41 60 0c _T_0.....pGE4A`. 2dc0: 01 01 0d 00 67 a1 4b 12 a0 17 93 5f 54 5f 30 0c ....g.K...._T_0. 2dd0: 01 02 0d 00 70 47 45 34 41 60 0c 01 02 0d 00 67 ....pGE4A`.....g 2de0: a1 40 11 a0 17 93 5f 54 5f 30 0c 01 03 0d 00 70 .@...._T_0.....p 2df0: 47 45 34 41 60 0c 01 03 0d 00 67 a1 45 0f a0 17 GE4A`.....g.E... 2e00: 93 5f 54 5f 30 0c 01 04 0d 00 70 47 45 34 41 60 ._T_0.....pGE4A` 2e10: 0c 01 04 0d 00 67 a1 4a 0d a0 17 93 5f 54 5f 30 .....g.J...._T_0 2e20: 0c 01 05 0d 00 70 47 45 34 41 60 0c 01 05 0d 00 .....pGE4A`..... 2e30: 67 a1 4f 0b a0 17 93 5f 54 5f 30 0c 01 06 0d 00 g.O...._T_0..... 2e40: 70 47 45 34 41 60 0c 01 06 0d 00 67 a1 44 0a a0 pGE4A`.....g.D.. 2e50: 17 93 5f 54 5f 30 0c 01 07 0d 00 70 47 45 34 41 .._T_0.....pGE4A 2e60: 60 0c 01 07 0d 00 67 a1 49 08 a0 17 93 5f 54 5f `.....g.I...._T_ 2e70: 30 0c 01 08 0d 00 70 47 45 34 41 60 0c 01 08 0d 0.....pGE4A`.... 2e80: 00 67 a1 4e 06 a0 17 93 5f 54 5f 30 0c 01 09 0d .g.N...._T_0.... 2e90: 00 70 47 45 34 41 60 0c 01 09 0d 00 67 a1 43 05 .pGE4A`.....g.C. 2ea0: a0 17 93 5f 54 5f 30 0c 01 0a 0d 00 70 47 45 34 ..._T_0.....pGE4 2eb0: 41 60 0c 01 0a 0d 00 67 a1 38 a0 17 93 5f 54 5f A`.....g.8..._T_ 2ec0: 30 0c 01 0b 0d 00 70 47 45 34 41 60 0c 01 0b 0d 0.....pGE4A`.... 2ed0: 00 67 a1 1e a0 17 93 5f 54 5f 30 0c 01 0c 0d 00 .g....._T_0..... 2ee0: 70 47 45 34 41 60 0c 01 0c 0d 00 67 a1 04 70 ff pGE4A`.....g..p. 2ef0: 67 a1 04 70 ff 67 a4 67 14 29 47 49 44 58 09 70 g..p.g.g.)GIDX.p 2f00: 0a 00 60 a2 1c 95 60 42 4e 55 4d a0 12 93 68 83 ..`...`BNUM...h. 2f10: 88 83 88 42 41 49 46 60 00 0a 00 00 a4 60 75 60 ...BAIF`.....`u` 2f20: a4 ff 14 16 47 45 32 41 0a 70 83 88 83 88 42 41 ....GE2A.p....BA 2f30: 49 46 68 00 69 00 67 a4 67 14 3c 47 45 34 41 0a IFh.i.g.g.<GE4A. 2f40: 70 69 63 7a 7b 63 0c 00 00 ff 00 00 0a 10 61 7a picz{c........az 2f50: 7b 63 0b 00 ff 00 0a 08 62 7b 63 0a ff 63 70 83 {c......b{c..cp. 2f60: 88 83 88 83 88 83 88 42 41 49 46 68 00 61 00 62 .......BAIFh.a.b 2f70: 00 63 00 67 a4 67 10 42 04 5c 5f 53 42 5f 10 3a .c.g.g.B.\_SB_.: 2f80: 50 43 49 30 5b 82 33 41 43 30 5f 08 5f 48 49 44 PCI0[.3AC0_._HID 2f90: 0d 41 43 50 49 30 30 30 33 00 14 0c 5f 50 53 52 .ACPI0003..._PSR 2fa0: 00 a4 5c 41 43 50 53 08 5f 50 43 4c 12 0c 01 5c ..\ACPS._PCL...\ 2fb0: 2e 5f 53 42 5f 50 43 49 30 10 48 10 5c 00 08 4d ._SB_PCI0.H.\..M 2fc0: 4e 41 4d 0d 37 30 31 00 5b 81 4f 06 5c 52 41 4d NAM.701.[.O.\RAM 2fd0: 57 01 00 40 08 41 43 50 53 01 44 43 50 53 01 4c W..@.ACPS.DCPS.L 2fe0: 43 44 43 01 43 50 55 43 01 50 4c 43 4b 01 46 41 CDC.CPUC.PLCK.FA 2ff0: 4e 43 01 42 4c 54 53 01 44 43 32 53 01 46 53 37 NC.BLTS.DC2S.FS7 3000: 30 01 00 07 42 43 41 54 10 42 4c 54 43 08 42 43 0...BCAT.BLTC.BC 3010: 47 53 08 44 53 41 46 20 4d 44 4c 43 20 00 40 49 GS.DSAF MDLC .@I 3020: 54 52 54 59 08 46 53 46 4e 08 46 53 54 41 10 46 TRTY.FSFN.FSTA.F 3030: 41 44 52 20 46 53 49 5a 10 5b 81 39 5c 52 41 4d ADR FSIZ.[.9\RAM 3040: 57 01 00 40 0b 44 41 57 4c 01 44 41 42 54 01 44 W..@.DAWL.DABT.D 3050: 41 49 52 01 44 41 43 4d 01 44 41 54 56 01 44 41 AIR.DACM.DATV.DA 3060: 47 50 01 44 41 44 53 01 44 41 4d 44 01 44 41 43 GP.DADS.DAMD.DAC 3070: 52 01 00 17 14 24 41 54 4b 4e 01 70 0a 00 61 a0 R....$ATKN.p..a. 3080: 17 5c 2f 03 5f 53 42 5f 4c 49 44 5f 5f 4c 49 44 .\/._SB_LID__LID 3090: 70 41 54 4b 52 68 61 a4 61 14 28 41 54 4b 52 01 pATKRha.a.(ATKR. 30a0: 70 0a 00 61 a0 1b 5c 2e 5f 53 42 5f 41 54 4b 50 p..a..\._SB_ATKP 30b0: 86 5c 2e 5f 53 42 5f 41 54 4b 44 68 70 0a 01 61 .\._SB_ATKDhp..a 30c0: a4 61 10 4e a5 5c 5f 53 42 5f 08 41 54 4b 50 00 .a.N.\_SB_.ATKP. 30d0: 5b 82 42 4e 41 54 4b 44 08 5f 48 49 44 0d 41 53 [.BNATKD._HID.AS 30e0: 55 53 30 31 30 00 08 5f 55 49 44 0c 00 01 01 01 US010.._UID..... 30f0: 14 0b 54 59 50 45 08 a4 4d 44 4c 43 14 15 56 45 ..TYPE..MDLC..VE 3100: 52 47 08 79 0a 01 0a 08 60 70 0a 30 61 a4 72 60 RG.y....`p.0a.r` 3110: 61 00 14 48 15 51 55 52 59 09 08 5f 54 5f 30 00 a..H.QURY.._T_0. 3120: 70 68 5f 54 5f 30 a0 0f 93 5f 54 5f 30 0c 50 42 ph_T_0..._T_0.PB 3130: 4c 53 70 0a 01 61 a1 42 13 a0 0f 93 5f 54 5f 30 LSp..a.B...._T_0 3140: 0c 50 42 4c 47 70 0a 01 61 a1 4f 11 a0 0f 93 5f .PBLGp..a.O...._ 3150: 54 5f 30 0c 53 44 53 50 70 0a 01 61 a1 4c 10 a0 T_0.SDSPp..a.L.. 3160: 0f 93 5f 54 5f 30 0c 43 46 56 53 70 0a 01 61 a1 .._T_0.CFVSp..a. 3170: 49 0f a0 0f 93 5f 54 5f 30 0c 43 46 56 47 70 0a I...._T_0.CFVGp. 3180: 01 61 a1 46 0e a0 0f 93 5f 54 5f 30 0c 57 4c 44 .a.F...._T_0.WLD 3190: 53 70 0a 01 61 a1 43 0d a0 0f 93 5f 54 5f 30 0c Sp..a.C...._T_0. 31a0: 57 4c 44 47 70 0a 01 61 a1 40 0c a0 0f 93 5f 54 WLDGp..a.@...._T 31b0: 5f 30 0c 43 41 4d 53 70 0a 01 61 a1 4d 0a a0 0f _0.CAMSp..a.M... 31c0: 93 5f 54 5f 30 0c 43 41 4d 47 70 0a 01 61 a1 4a ._T_0.CAMGp..a.J 31d0: 09 a0 0f 93 5f 54 5f 30 0c 43 52 44 53 70 0a 01 ...._T_0.CRDSp.. 31e0: 61 a1 47 08 a0 0f 93 5f 54 5f 30 0c 43 52 44 47 a.G...._T_0.CRDG 31f0: 70 0a 01 61 a1 44 07 a0 0f 93 5f 54 5f 30 0c 4d p..a.D...._T_0.M 3200: 4f 44 53 70 0a 01 61 a1 41 06 a0 0f 93 5f 54 5f ODSp..a.A...._T_ 3210: 30 0c 4d 4f 44 47 70 0a 01 61 a1 4e 04 a0 0f 93 0.MODGp..a.N.... 3220: 5f 54 5f 30 0c 55 53 42 53 70 0a 00 61 a1 3b a0 _T_0.USBSp..a.;. 3230: 0f 93 5f 54 5f 30 0c 55 53 42 47 70 0a 00 61 a1 .._T_0.USBGp..a. 3240: 29 a0 0f 93 5f 54 5f 30 0c 48 44 50 53 70 0a 01 )..._T_0.HDPSp.. 3250: 61 a1 17 a0 0f 93 5f 54 5f 30 0c 54 59 50 45 70 a....._T_0.TYPEp 3260: 0a 01 61 a1 05 70 0a 00 61 a4 61 14 16 49 4e 49 ..a..p..a.a..INI 3270: 54 09 70 01 41 54 4b 50 70 68 5c 44 53 41 46 a4 T.p.ATKPph\DSAF. 3280: 0a 01 14 37 43 4d 53 47 08 70 0c 11 17 18 00 60 ...7CMSG.p.....` 3290: a0 13 93 47 4e 56 53 0b 01 16 0a 00 7b 60 0c ef ...GNVS.....{`.. 32a0: ff ff ff 60 a0 13 93 47 4e 56 53 0b 02 16 0a 00 ...`...GNVS..... 32b0: 7b 60 0c ff ff f7 ff 60 a4 60 14 44 09 57 4c 44 {`.....`.`.D.WLD 32c0: 53 09 70 68 60 7f 60 0a 01 60 53 4e 56 53 0b eb S.ph`.`..`SNVS.. 32d0: 15 60 a0 3d 68 70 0a 01 53 42 31 39 70 0a 00 53 .`.=hp..SB19p..S 32e0: 42 32 34 5b 22 0b e8 03 86 5c 2f 03 5f 53 42 5f B24["....\/._SB_ 32f0: 50 43 49 30 50 30 50 36 0a 00 5b 22 0a 64 86 5c PCI0P0P6..[".d.\ 3300: 2f 03 5f 53 42 5f 50 43 49 30 50 30 50 36 0a 00 /._SB_PCI0P0P6.. 3310: a1 3b 70 0a 00 53 42 31 39 70 0a 01 53 42 32 34 .;p..SB19p..SB24 3320: 5b 22 0a 64 86 5c 2f 03 5f 53 42 5f 50 43 49 30 [".d.\/._SB_PCI0 3330: 50 30 50 36 0a 00 5b 22 0a 64 86 5c 2f 03 5f 53 P0P6..[".d.\/._S 3340: 42 5f 50 43 49 30 50 30 50 36 0a 00 a4 0a 01 14 B_PCI0P0P6...... 3350: 16 57 4c 44 47 08 70 47 4e 56 53 0b eb 15 60 7f .WLDG.pGNVS...`. 3360: 60 0a 01 60 a4 60 14 28 50 42 4c 53 09 53 4e 56 `..`.`.(PBLS.SNV 3370: 53 0b 68 44 68 5c 2f 05 5f 53 42 5f 50 43 49 30 S.hDh\/._SB_PCI0 3380: 53 42 52 47 45 43 30 5f 53 54 42 52 a4 0a 01 14 SBRGEC0_STBR.... 3390: 0e 50 42 4c 47 08 a4 47 4e 56 53 0b 68 44 14 1d .PBLG..GNVS.hD.. 33a0: 43 46 56 53 09 5c 2f 04 5f 53 42 5f 50 43 49 30 CFVS.\/._SB_PCI0 33b0: 53 42 52 47 46 53 42 41 68 a4 0a 01 14 1a 43 46 SBRGFSBAh.....CF 33c0: 56 47 08 a4 5c 2f 04 5f 53 42 5f 50 43 49 30 53 VG..\/._SB_PCI0S 33d0: 42 52 47 46 53 42 47 14 44 04 43 41 4d 53 09 70 BRGFSBG.D.CAMS.p 33e0: 68 60 7f 60 0a 01 60 53 4e 56 53 0b ec 15 60 a0 h`.`..`SNVS...`. 33f0: 09 68 70 0a 01 53 42 32 31 a1 08 70 0a 00 53 42 .hp..SB21..p..SB 3400: 32 31 5b 22 0b f4 01 86 5c 2f 03 5f 53 42 5f 50 21["....\/._SB_P 3410: 43 49 30 55 53 42 34 0a 00 a4 0a 01 14 16 43 41 CI0USB4.......CA 3420: 4d 47 08 70 47 4e 56 53 0b ec 15 60 7f 60 0a 01 MG.pGNVS...`.`.. 3430: 60 a4 60 14 09 55 53 42 53 09 a4 0a 00 14 09 55 `.`..USBS......U 3440: 53 42 47 08 a4 0a 01 14 1d 53 44 53 50 09 5c 2f SBG......SDSP.\/ 3450: 04 5f 53 42 5f 50 43 49 30 56 47 41 5f 53 57 48 ._SB_PCI0VGA_SWH 3460: 44 68 a4 0a 01 14 2c 4d 4f 44 53 09 70 68 60 7f Dh....,MODS.ph`. 3470: 60 0a 01 60 53 4e 56 53 0b ee 15 60 a0 09 68 70 `..`SNVS...`..hp 3480: 0a 01 53 42 32 38 a1 08 70 0a 00 53 42 32 38 a4 ..SB28..p..SB28. 3490: 0a 01 14 16 4d 4f 44 47 08 70 47 4e 56 53 0b ee ....MODG.pGNVS.. 34a0: 15 60 7f 60 0a 01 60 a4 60 14 43 04 43 52 44 53 .`.`..`.`.C.CRDS 34b0: 09 70 68 60 7f 60 0a 01 60 53 4e 56 53 0b ef 15 .ph`.`..`SNVS... 34c0: 60 a0 09 68 70 0a 00 53 42 32 37 a1 08 70 0a 01 `..hp..SB27..p.. 34d0: 53 42 32 37 5b 22 0a 64 86 5c 2f 03 5f 53 42 5f SB27[".d.\/._SB_ 34e0: 50 43 49 30 55 53 42 33 0a 00 a4 0a 01 14 16 43 PCI0USB3.......C 34f0: 52 44 47 08 70 47 4e 56 53 0b ef 15 60 7f 60 0a RDG.pGNVS...`.`. 3500: 01 60 a4 60 14 4f 0a 48 44 50 53 09 70 68 60 70 .`.`.O.HDPS.ph`p 3510: 68 61 7a 60 0a 08 60 7b 61 0a ff 61 08 5f 54 5f haz`..`{a..a._T_ 3520: 30 00 70 61 5f 54 5f 30 a0 08 93 5f 54 5f 30 0a 0.pa_T_0..._T_0. 3530: 04 a1 3b a0 08 93 5f 54 5f 30 0a 06 a1 30 a0 08 ..;..._T_0...0.. 3540: 93 5f 54 5f 30 0a 07 a1 25 a0 08 93 5f 54 5f 30 ._T_0...%..._T_0 3550: 0a 0b a1 1a a0 08 93 5f 54 5f 30 0a 0c a1 0f a0 ......._T_0..... 3560: 08 93 5f 54 5f 30 0a 0e a1 04 a4 0a 00 a0 43 04 .._T_0........C. 3570: 7b 95 60 0a 05 94 60 0a 00 00 53 4e 56 53 0b c0 {.`...`...SNVS.. 3580: 81 61 53 4e 56 53 0b c8 81 60 53 4e 56 53 0b 80 .aSNVS...`SNVS.. 3590: 81 0a 46 53 4e 56 53 0b 88 81 0a 57 53 4e 56 53 ..FSNVS....WSNVS 35a0: 0b 98 81 7d 47 4e 56 53 0b 98 81 0a 40 00 a4 0a ...}GNVS....@... 35b0: 01 a4 0a 00 10 4b 0e 5c 00 08 50 34 50 52 0a 00 .....K.\..P4PR.. 35c0: 5b 80 5c 50 4d 49 4f 01 0b 00 08 0a 80 5b 81 27 [.\PMIO......[.' 35d0: 5c 50 4d 49 4f 01 00 40 08 00 01 54 44 54 59 03 \PMIO..@...TDTY. 35e0: 54 45 4e 41 01 54 54 44 54 03 54 54 45 4e 01 00 TENA.TTDT.TTEN.. 35f0: 08 54 48 4c 53 01 14 29 4c 50 46 53 01 a0 13 93 .THLS..)LPFS.... 3600: 68 0a 05 53 4e 56 53 0b 68 82 47 4e 56 53 0b 78 h..SNVS.h.GNVS.x 3610: 80 49 53 4d 49 0a 76 70 50 41 52 30 50 34 50 52 .ISMI.vpPAR0P4PR 3620: 14 4f 07 4c 50 57 4b 01 a0 33 93 68 0a 03 5c 2f .O.LPWK..3.h..\/ 3630: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 3640: 5f 55 41 50 46 5c 2f 05 5f 53 42 5f 50 43 49 30 _UAPF\/._SB_PCI0 3650: 53 42 52 47 45 43 30 5f 55 42 50 46 a0 1d 93 68 SBRGEC0_UBPF...h 3660: 0a 04 a0 17 44 43 50 53 86 5c 2f 03 5f 53 42 5f ....DCPS.\/._SB_ 3670: 50 43 49 30 42 41 54 30 0a 81 a0 16 92 47 4e 56 PCI0BAT0.....GNV 3680: 53 0b 04 16 86 5c 2e 5f 53 42 5f 50 57 52 42 0a S....\._SB_PWRB. 3690: 02 70 50 34 50 52 50 41 52 30 49 53 4d 49 0a 77 .pP4PRPAR0ISMI.w 36a0: 10 48 05 5c 5f 53 42 5f 5b 82 3e 4c 49 44 5f 08 .H.\_SB_[.>LID_. 36b0: 5f 48 49 44 0c 41 d0 0c 0d 08 4c 49 44 53 0a 01 _HID.A....LIDS.. 36c0: 14 27 5f 4c 49 44 00 70 5c 2f 05 5f 53 42 5f 50 .'_LID.p\/._SB_P 36d0: 43 49 30 53 42 52 47 45 43 30 5f 53 46 31 33 4c CI0SBRGEC0_SF13L 36e0: 49 44 53 a4 4c 49 44 53 5b 82 0f 53 4c 50 42 08 IDS.LIDS[..SLPB. 36f0: 5f 48 49 44 0c 41 d0 0c 0e 10 47 42 5c 2f 04 5f _HID.A....GB\/._ 3700: 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f 14 SB_PCI0SBRGEC0_. 3710: 13 5f 51 30 34 00 86 5c 2e 5f 53 42 5f 53 4c 50 ._Q04..\._SB_SLP 3720: 42 0a 80 14 4f 04 5f 51 30 36 00 a0 0d 93 5c 44 B...O._Q06....\D 3730: 41 57 4c 0a 01 70 0a 10 60 a1 34 70 5c 2f 03 5f AWL..p..`.4p\/._ 3740: 53 42 5f 41 54 4b 44 57 4c 44 47 60 7f 60 0a 01 SB_ATKDWLDG`.`.. 3750: 60 5c 2f 03 5f 53 42 5f 41 54 4b 44 57 4c 44 53 `\/._SB_ATKDWLDS 3760: 60 a0 06 60 70 0a 10 60 a1 05 70 0a 11 60 41 54 `..`p..`..p..`AT 3770: 4b 4e 60 14 36 5f 51 30 37 00 70 47 4e 56 53 0b KN`.6_Q07.pGNVS. 3780: 68 44 60 a0 07 94 60 0a 00 76 60 a0 09 94 60 0a hD`...`..v`...`. 3790: 0e 70 0a 0e 60 53 4e 56 53 0b 68 44 60 53 54 42 .p..`SNVS.hD`STB 37a0: 52 41 54 4b 4e 72 60 0a 20 00 14 32 5f 51 30 39 RATKNr`. ..2_Q09 37b0: 00 70 47 4e 56 53 0b 68 44 60 a0 07 95 60 0a 0f .pGNVS.hD`...`.. 37c0: 75 60 a1 05 70 0a 0f 60 53 4e 56 53 0b 68 44 60 u`..p..`SNVS.hD` 37d0: 53 54 42 52 41 54 4b 4e 72 60 0a 20 00 14 24 5f STBRATKNr`. ..$_ 37e0: 51 30 43 00 70 5c 2f 04 5f 53 42 5f 50 43 49 30 Q0C.p\/._SB_PCI0 37f0: 56 47 41 5f 47 45 54 4e 60 41 54 4b 4e 72 60 0a VGA_GETN`ATKNr`. 3800: 2f 00 14 0c 5f 51 30 45 00 41 54 4b 4e 0a 12 14 /..._Q0E.ATKN... 3810: 0c 5f 51 31 30 00 41 54 4b 4e 0a 13 14 0c 5f 51 ._Q10.ATKN...._Q 3820: 31 31 00 41 54 4b 4e 0a 14 14 0c 5f 51 31 33 00 11.ATKN...._Q13. 3830: 41 54 4b 4e 0a 15 14 0c 5f 51 31 35 00 41 54 4b ATKN...._Q15.ATK 3840: 4e 0a 16 14 23 5f 51 35 44 00 a0 1c 45 43 41 56 N...#_Q5D...ECAV 3850: a0 16 92 5b 23 4d 55 45 43 ff ff 49 53 4d 49 0a ...[#MUEC..ISMI. 3860: 79 5b 27 4d 55 45 43 14 13 5f 51 32 42 00 86 5c y['MUEC.._Q2B..\ 3870: 2e 5f 53 42 5f 4c 49 44 5f 0a 80 14 13 5f 51 32 ._SB_LID_...._Q2 3880: 43 00 86 5c 2e 5f 53 42 5f 4c 49 44 5f 0a 80 14 C..\._SB_LID_... 3890: 4c 04 5f 51 33 31 00 55 41 50 46 53 54 42 52 86 L._Q31.UAPFSTBR. 38a0: 5c 2f 03 5f 53 42 5f 50 43 49 30 41 43 30 5f 0a \/._SB_PCI0AC0_. 38b0: 80 86 5c 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 ..\/._SB_PCI0BAT 38c0: 30 0a 80 5b 22 0a 0a a0 0c 5c 41 43 50 53 41 54 0..["....\ACPSAT 38d0: 4b 4e 0a 50 a1 07 41 54 4b 4e 0a 51 14 41 05 5f KN.P..ATKN.Q.A._ 38e0: 51 33 32 00 55 42 50 46 a0 0b 5c 44 43 50 53 5b Q32.UBPF..\DCPS[ 38f0: 22 0b f4 01 53 54 42 52 86 5c 2f 03 5f 53 42 5f "...STBR.\/._SB_ 3900: 50 43 49 30 42 41 54 30 0a 01 86 5c 2f 03 5f 53 PCI0BAT0...\/._S 3910: 42 5f 50 43 49 30 42 41 54 30 0a 81 86 5c 2f 03 B_PCI0BAT0...\/. 3920: 5f 53 42 5f 50 43 49 30 41 43 30 5f 0a 80 14 2a _SB_PCI0AC0_...* 3930: 5f 51 33 33 00 86 5c 2f 03 5f 53 42 5f 50 43 49 _Q33..\/._SB_PCI 3940: 30 42 41 54 30 0a 80 86 5c 2f 03 5f 53 42 5f 50 0BAT0...\/._SB_P 3950: 43 49 30 41 43 30 5f 0a 80 14 2a 5f 51 33 35 00 CI0AC0_...*_Q35. 3960: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 30 .\/._SB_PCI0BAT0 3970: 0a 80 86 5c 2f 03 5f 53 42 5f 50 43 49 30 41 43 ...\/._SB_PCI0AC 3980: 30 5f 0a 80 14 2a 5f 51 33 36 00 86 5c 2f 03 5f 0_...*_Q36..\/._ 3990: 53 42 5f 50 43 49 30 42 41 54 30 0a 80 86 5c 2f SB_PCI0BAT0...\/ 39a0: 03 5f 53 42 5f 50 43 49 30 41 43 30 5f 0a 80 14 ._SB_PCI0AC0_... 39b0: 20 5f 51 33 37 00 a0 19 41 54 4b 4e 0a 52 86 5c _Q37...ATKN.R.\ 39c0: 2f 03 5f 53 42 5f 50 43 49 30 42 41 54 30 0a 80 /._SB_PCI0BAT0.. 39d0: 14 18 5f 51 34 34 00 5c 44 46 54 4c 86 5c 2e 5f .._Q44.\DFTL.\._ 39e0: 54 5a 5f 54 5a 30 30 0a 80 14 0b 5f 51 33 41 00 TZ_TZ00...._Q3A. 39f0: 5c 45 46 54 4c 14 06 5f 51 33 42 00 14 06 5f 51 \EFTL.._Q3B..._Q 3a00: 33 38 00 14 0c 53 54 42 52 08 49 53 4d 49 0a 78 38...STBR.ISMI.x 3a10: 14 2a 55 42 50 46 08 a0 23 45 43 41 56 a0 1d 92 .*UBPF..#ECAV... 3a20: 5b 23 4d 55 45 43 ff ff 70 53 46 30 31 60 5b 27 [#MUEC..pSF01`[' 3a30: 4d 55 45 43 70 60 5c 44 43 50 53 14 2a 55 41 50 MUECp`\DCPS.*UAP 3a40: 46 08 a0 23 45 43 41 56 a0 1d 92 5b 23 4d 55 45 F..#ECAV...[#MUE 3a50: 43 ff ff 70 53 46 30 30 60 5b 27 4d 55 45 43 70 C..pSF00`['MUECp 3a60: 60 5c 41 43 50 53 14 23 55 42 43 46 08 70 5c 2f `\ACPS.#UBCF.p\/ 3a70: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 3a80: 5f 42 49 46 31 5c 42 43 41 54 14 4e 04 55 42 43 _BIF1\BCAT.N.UBC 3a90: 53 08 a0 3c 5c 41 43 50 53 70 0a 02 5c 42 43 47 S..<\ACPSp..\BCG 3aa0: 53 70 5c 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 Sp\/._SB_PCI0SBR 3ab0: 47 45 43 30 5f 45 42 54 53 61 a0 14 92 93 61 ff GEC0_EBTSa....a. 3ac0: a0 0e 7b 61 0a 40 00 70 0a 00 5c 42 43 47 53 a1 ..{a.@.p..\BCGS. 3ad0: 09 70 0a 01 5c 42 43 47 53 14 47 04 55 42 45 43 .p..\BCGS.G.UBEC 3ae0: 08 a0 3f 5c 44 43 50 53 70 47 42 50 54 0a 08 60 ..?\DCPSpGBPT..` 3af0: a0 0a 92 93 60 ff 42 57 52 4e 60 70 47 42 50 54 ....`.BWRN`pGBPT 3b00: 0a 09 60 a0 0a 92 93 60 ff 42 4c 4f 57 60 70 47 ..`....`.BLOW`pG 3b10: 42 50 54 0a 0a 60 a0 0a 92 93 60 ff 42 43 52 54 BPT..`....`.BCRT 3b20: 60 10 4c 08 5c 00 5b 81 4a 06 5c 2f 04 5f 53 42 `.L.\.[.J.\/._SB 3b30: 5f 50 43 49 30 53 42 52 47 47 50 42 58 01 00 40 _PCI0SBRGGPBX..@ 3b40: 06 00 13 53 42 31 39 01 00 01 53 42 32 31 01 00 ...SB19...SB21.. 3b50: 01 53 42 32 33 01 53 42 32 34 01 53 42 32 35 01 .SB23.SB24.SB25. 3b60: 00 01 53 42 32 37 01 53 42 32 38 01 00 43 04 00 ..SB27.SB28..C.. 3b70: 19 42 4c 4e 4b 01 00 46 08 00 0b 49 56 30 42 01 .BLNK..F...IV0B. 3b80: 00 44 05 53 42 33 32 01 53 42 33 33 01 53 42 33 .D.SB32.SB33.SB3 3b90: 34 01 14 0d 44 46 54 4c 00 70 0a 00 54 54 45 4e 4...DFTL.p..TTEN 3ba0: 14 0d 45 46 54 4c 00 70 0a 01 54 54 45 4e 10 4c ..EFTL.p..TTEN.L 3bb0: 42 5c 2f 03 5f 53 42 5f 50 43 49 30 53 42 52 47 B\/._SB_PCI0SBRG 3bc0: 14 1f 4f 45 4d 49 00 80 5c 41 43 50 53 5c 2f 04 ..OEMI..\ACPS\/. 3bd0: 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 33 34 _SB_PCI0SBRGEC34 3be0: 14 13 4f 45 4d 53 01 a0 05 93 68 0a 03 70 0a 00 ..OEMS....h..p.. 3bf0: 53 42 31 39 08 43 4c 4b 42 11 03 0a 20 14 14 52 SB19.CLKB... ..R 3c00: 43 4c 4b 00 52 42 4c 4b 0a d2 0a 0f 43 4c 4b 42 CLK.RBLK....CLKB 3c10: 0a 0f 14 14 57 43 4c 4b 00 57 42 4c 4b 0a d2 0a ....WCLK.WBLK... 3c20: 0f 0a 0f 43 4c 4b 42 14 16 52 43 4b 42 01 52 43 ...CLKB..RCKB.RC 3c30: 4c 4b 70 83 88 43 4c 4b 42 68 00 60 a4 60 14 0f LKp..CLKBh.`.`.. 3c40: 57 43 4b 42 02 70 69 88 43 4c 4b 42 68 00 08 44 WCKB.pi.CLKBh..D 3c50: 41 54 41 12 06 02 0a 00 0a 00 5b 01 53 4d 42 41 ATA.......[.SMBA 3c60: 00 14 40 17 53 4d 42 43 04 5b 23 53 4d 42 41 ff ..@.SMBC.[#SMBA. 3c70: ff 70 0a ff 48 53 54 53 5b 22 0a 0a 70 48 53 54 .p..HSTS["..pHST 3c80: 53 60 7b 60 0a 1f 60 70 0a ff 61 a2 23 90 94 61 S`{`..`p..a.#..a 3c90: 0a 00 92 93 60 0a 00 76 61 70 0a ff 48 53 54 53 ....`..vap..HSTS 3ca0: 5b 22 0a 0a 70 48 53 54 53 60 7b 60 0a 1f 60 a0 ["..pHSTS`{`..`. 3cb0: 46 06 60 70 0a 02 48 53 54 43 5b 22 0a 0a 70 0a F.`p..HSTC["..p. 3cc0: 00 48 53 54 43 70 0a ff 48 53 54 53 5b 22 0a 0a .HSTCp..HSTS[".. 3cd0: 70 48 53 54 53 60 7b 60 0a 1f 60 70 0a ff 61 a2 pHSTS`{`..`p..a. 3ce0: 23 90 94 61 0a 00 92 93 60 0a 00 76 61 70 0a ff #..a....`..vap.. 3cf0: 48 53 54 53 5b 22 0a 0a 70 48 53 54 53 60 7b 60 HSTS["..pHSTS`{` 3d00: 0a 1f 60 a0 12 60 70 0a 01 88 44 41 54 41 0a 00 ..`..`p...DATA.. 3d10: 00 a4 44 41 54 41 70 69 48 43 4d 44 70 68 48 41 ..DATApiHCMDphHA 3d20: 44 52 7b 68 0a 01 60 a0 19 92 60 7b 6a 0a 04 60 DR{h..`...`{j..` 3d30: a0 08 60 70 6b 48 44 54 57 a1 07 70 6b 48 44 54 ..`pkHDTW..pkHDT 3d40: 30 70 6a 48 53 54 43 5b 22 0a 0a 70 48 53 54 53 0pjHSTC["..pHSTS 3d50: 60 70 0a ff 61 a2 46 06 94 61 0a 00 7b 60 0a 1c `p..a.F..a..{`.. 3d60: 62 a0 12 62 70 0a 01 88 44 41 54 41 0a 00 00 a4 b..bp...DATA.... 3d70: 44 41 54 41 7b 60 0a 02 62 a0 36 62 70 0a 00 88 DATA{`..b.6bp... 3d80: 44 41 54 41 0a 00 00 7b 6a 0a 04 62 a0 0f 60 70 DATA...{j..b..`p 3d90: 48 44 54 57 88 44 41 54 41 0a 01 00 a1 0e 70 48 HDTW.DATA.....pH 3da0: 44 54 30 88 44 41 54 41 0a 01 00 a4 44 41 54 41 DT0.DATA....DATA 3db0: 5b 22 0a 0a 70 48 53 54 53 60 76 61 70 0a 01 88 ["..pHSTS`vap... 3dc0: 44 41 54 41 0a 00 00 5b 27 53 4d 42 41 a4 44 41 DATA...['SMBA.DA 3dd0: 54 41 14 44 05 53 4d 42 42 02 70 00 48 43 4d 44 TA.D.SMBB.p.HCMD 3de0: 5b 22 0a 02 70 68 48 41 44 52 5b 22 0a 02 70 0a ["..phHADR["..p. 3df0: ff 48 53 54 53 5b 22 0a 02 70 0a 54 48 53 54 43 .HSTS["..p.THSTC 3e00: 70 0a ff 60 a2 1a 60 76 60 5b 22 0a 02 a0 11 7b p..`..`v`["....{ 3e10: 48 53 54 53 0a 02 00 70 0a 00 60 70 0a 01 61 70 HSTS...p..`p..ap 3e20: 48 44 54 30 62 a4 62 14 45 04 57 42 4c 4b 04 5b HDT0b.b.E.WBLK.[ 3e30: 23 53 4d 42 41 ff ff 70 48 53 54 43 60 70 6a 60 #SMBA..pHSTC`pj` 3e40: 70 0a 00 61 a2 10 60 70 83 88 6b 61 00 42 4c 4b p..a..`p..ka.BLK 3e50: 44 76 60 75 61 70 48 53 54 43 60 70 6a 48 44 54 Dv`uapHSTC`pjHDT 3e60: 30 53 4d 42 42 68 69 5b 27 53 4d 42 41 14 44 04 0SMBBhi['SMBA.D. 3e70: 52 42 4c 4b 04 5b 23 53 4d 42 41 ff ff 7d 68 0a RBLK.[#SMBA..}h. 3e80: 01 60 70 53 4d 42 42 60 69 61 70 48 53 54 43 60 .`pSMBB`iapHSTC` 3e90: 70 6b 60 72 61 0a 01 62 70 0a 00 61 a2 0f 60 70 pk`ra..bp..a..`p 3ea0: 42 4c 4b 44 88 6a 61 00 76 60 75 61 5b 27 53 4d BLKD.ja.v`ua['SM 3eb0: 42 41 08 43 4b 46 47 12 1c 02 12 0c 05 0a 18 0a BA.CKFG......... 3ec0: 55 0a 18 0a 64 0a 01 12 0c 05 0a 18 0a 55 0a 18 U...d........U.. 3ed0: 0a 46 0a 00 14 47 0d 46 53 42 41 01 70 68 60 7b .F...G.FSBA.ph`{ 3ee0: 60 0a ff 60 a0 08 93 60 5c 46 53 37 30 a1 4e 0b `..`...`\FS70.N. 3ef0: a0 2b 93 60 0a 00 5c 2f 05 5f 53 42 5f 50 43 49 .+.`..\/._SB_PCI 3f00: 30 53 42 52 47 45 43 30 5f 45 43 58 57 0a e1 83 0SBRGEC0_ECXW... 3f10: 88 83 88 43 4b 46 47 68 00 0a 04 00 52 43 4c 4b ...CKFGh....RCLK 3f20: 57 43 4b 42 0a 0b 83 88 83 88 43 4b 46 47 68 00 WCKB......CKFGh. 3f30: 0a 00 00 57 43 4b 42 0a 0c 83 88 83 88 43 4b 46 ...WCKB......CKF 3f40: 47 68 00 0a 01 00 57 43 4c 4b 5b 22 0a 0a 52 43 Gh....WCLK["..RC 3f50: 4c 4b 57 43 4b 42 0a 0b 83 88 83 88 43 4b 46 47 LKWCKB......CKFG 3f60: 68 00 0a 02 00 57 43 4b 42 0a 0c 83 88 83 88 43 h....WCKB......C 3f70: 4b 46 47 68 00 0a 03 00 57 43 4c 4b a0 28 60 5c KFGh....WCLK.(`\ 3f80: 2f 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 /._SB_PCI0SBRGEC 3f90: 30 5f 45 43 58 57 0a e1 83 88 83 88 43 4b 46 47 0_ECXW......CKFG 3fa0: 68 00 0a 04 00 70 60 5c 46 53 37 30 14 2e 46 53 h....p`\FS70..FS 3fb0: 42 47 08 70 87 43 4b 46 47 60 70 87 88 43 4b 46 BG.p.CKFG`p..CKF 3fc0: 47 0a 00 00 61 78 60 61 60 00 70 5c 46 53 37 30 G...ax`a`.p\FS70 3fd0: 61 79 60 0a 08 60 a4 72 60 61 00 5b 82 4f d1 49 ay`..`.r`a.[.O.I 3fe0: 44 45 30 08 5f 41 44 52 0c 02 00 1f 00 08 5c 2f DE0._ADR......\/ 3ff0: 03 5f 53 42 5f 50 43 49 30 4e 41 54 41 12 07 01 ._SB_PCI0NATA... 4000: 0c 02 00 1f 00 08 52 45 47 46 0a 01 14 12 5f 52 ......REGF...._R 4010: 45 47 02 a0 0b 93 68 0a 02 70 69 52 45 47 46 08 EG....h..piREGF. 4020: 54 49 4d 30 12 48 06 08 12 0b 04 0a 78 0a b4 0a TIM0.H......x... 4030: f0 0b 84 03 12 0a 04 0a 23 0a 21 0a 10 0a 00 12 ........#.!..... 4040: 0a 04 0a 0b 0a 09 0a 04 0a 00 12 0e 06 0a 70 0a ..............p. 4050: 49 0a 36 0a 27 0a 19 0a 0f 12 0e 06 0a 00 0a 01 I.6.'........... 4060: 0a 02 0a 01 0a 02 0a 01 12 0e 06 0a 00 0a 00 0a ................ 4070: 00 0a 01 0a 01 0a 01 12 0a 04 0a 04 0a 03 0a 02 ................ 4080: 0a 00 12 0a 04 0a 02 0a 01 0a 00 0a 00 08 54 4d ..............TM 4090: 44 30 11 03 0a 14 8a 54 4d 44 30 0a 00 50 49 4f D0.....TMD0..PIO 40a0: 30 8a 54 4d 44 30 0a 04 44 4d 41 30 8a 54 4d 44 0.TMD0..DMA0.TMD 40b0: 30 0a 08 50 49 4f 31 8a 54 4d 44 30 0a 0c 44 4d 0..PIO1.TMD0..DM 40c0: 41 31 8a 54 4d 44 30 0a 10 43 48 4e 46 5b 80 43 A1.TMD0..CHNF[.C 40d0: 46 47 32 02 0a 40 0a 20 5b 81 48 0a 43 46 47 32 FG2..@. [.H.CFG2 40e0: 03 50 4d 50 54 04 50 53 50 54 04 50 4d 52 49 06 .PMPT.PSPT.PMRI. 40f0: 00 02 53 4d 50 54 04 53 53 50 54 04 53 4d 52 49 ..SMPT.SSPT.SMRI 4100: 06 00 02 50 53 52 49 04 53 53 52 49 04 00 18 50 ...PSRI.SSRI...P 4110: 4d 33 45 01 50 53 33 45 01 53 4d 33 45 01 53 53 M3E.PS3E.SM3E.SS 4120: 33 45 01 00 0c 50 4d 55 54 02 00 02 50 53 55 54 3E...PMUT...PSUT 4130: 02 00 02 53 4d 55 54 02 00 02 53 53 55 54 02 00 ...SMUT...SSUT.. 4140: 02 00 40 04 50 4d 36 45 01 50 53 36 45 01 53 4d ..@.PM6E.PS6E.SM 4150: 36 45 01 53 53 36 45 01 50 4d 43 52 01 50 53 43 6E.SS6E.PMCR.PSC 4160: 52 01 53 4d 43 52 01 53 53 43 52 01 00 04 50 4d R.SMCR.SSCR...PM 4170: 41 45 01 50 53 41 45 01 53 4d 41 45 01 53 53 41 AE.PSAE.SMAE.SSA 4180: 45 01 08 47 4d 50 54 0a 00 08 47 4d 55 45 0a 00 E..GMPT...GMUE.. 4190: 08 47 4d 55 54 0a 00 08 47 4d 43 52 0a 00 08 47 .GMUT...GMCR...G 41a0: 53 50 54 0a 00 08 47 53 55 45 0a 00 08 47 53 55 SPT...GSUE...GSU 41b0: 54 0a 00 08 47 53 43 52 0a 00 5b 82 47 24 43 48 T...GSCR..[.G$CH 41c0: 4e 30 08 5f 41 44 52 0a 00 14 4c 07 5f 47 54 4d N0._ADR...L._GTM 41d0: 00 79 50 53 43 52 0a 01 61 7d 50 4d 43 52 61 60 .yPSCR..a}PMCRa` 41e0: 79 50 4d 41 45 0a 02 63 79 50 4d 36 45 0a 01 64 yPMAE..cyPM6E..d 41f0: 7d 63 64 63 7d 50 4d 33 45 63 61 79 50 4d 50 54 }cdc}PM3EcayPMPT 4200: 0a 04 63 7d 61 63 61 79 50 53 41 45 0a 02 63 79 ..c}acayPSAE..cy 4210: 50 53 36 45 0a 01 64 7d 63 64 63 7d 50 53 33 45 PS6E..d}cdc}PS3E 4220: 63 62 79 50 53 50 54 0a 04 63 7d 62 63 62 a4 47 cbyPSPT..c}bcb.G 4230: 54 4d 5f 50 4d 52 49 61 50 4d 55 54 50 53 52 49 TM_PMRIaPMUTPSRI 4240: 62 50 53 55 54 60 14 40 18 5f 53 54 4d 03 70 68 bPSUT`.@._STM.ph 4250: 5b 31 70 68 54 4d 44 30 79 50 4d 41 45 0a 02 63 [1phTMD0yPMAE..c 4260: 79 50 4d 36 45 0a 01 64 7d 63 64 63 7d 50 4d 33 yPM6E..d}cdc}PM3 4270: 45 63 60 79 50 4d 50 54 0a 04 63 7d 60 63 60 79 Ec`yPMPT..c}`c`y 4280: 50 53 41 45 0a 02 63 79 50 53 36 45 0a 01 64 7d PSAE..cyPS6E..d} 4290: 63 64 63 7d 50 53 33 45 63 61 79 50 53 50 54 0a cdc}PS3EcayPSPT. 42a0: 04 63 7d 61 63 61 70 50 4d 52 49 47 4d 50 54 70 .c}acapPMRIGMPTp 42b0: 60 47 4d 55 45 70 50 4d 55 54 47 4d 55 54 70 50 `GMUEpPMUTGMUTpP 42c0: 4d 43 52 47 4d 43 52 70 50 53 52 49 47 53 50 54 MCRGMCRpPSRIGSPT 42d0: 70 61 47 53 55 45 70 50 53 55 54 47 53 55 54 70 paGSUEpPSUTGSUTp 42e0: 50 53 43 52 47 53 43 52 53 54 4d 5f 70 47 4d 50 PSCRGSCRSTM_pGMP 42f0: 54 50 4d 52 49 70 47 4d 55 45 60 70 47 4d 55 54 TPMRIpGMUE`pGMUT 4300: 50 4d 55 54 70 47 4d 43 52 50 4d 43 52 70 47 53 PMUTpGMCRPMCRpGS 4310: 55 45 61 70 47 53 55 54 50 53 55 54 70 47 53 43 UEapGSUTPSUTpGSC 4320: 52 50 53 43 52 a0 0d 7b 60 0a 01 00 70 0a 01 50 RPSCR..{`...p..P 4330: 4d 33 45 a1 08 70 0a 00 50 4d 33 45 a0 0d 7b 60 M3E..p..PM3E..{` 4340: 0a 02 00 70 0a 01 50 4d 36 45 a1 08 70 0a 00 50 ...p..PM6E..p..P 4350: 4d 36 45 a0 0d 7b 60 0a 04 00 70 0a 01 50 4d 41 M6E..{`...p..PMA 4360: 45 a1 08 70 0a 00 50 4d 41 45 a0 0d 7b 61 0a 01 E..p..PMAE..{a.. 4370: 00 70 0a 01 50 53 33 45 a1 08 70 0a 00 50 53 33 .p..PS3E..p..PS3 4380: 45 a0 0d 7b 61 0a 02 00 70 0a 01 50 53 36 45 a1 E..{a...p..PS6E. 4390: 08 70 0a 00 50 53 36 45 a0 0d 7b 61 0a 04 00 70 .p..PS6E..{a...p 43a0: 0a 01 50 53 41 45 a1 08 70 0a 00 50 53 41 45 70 ..PSAE..p..PSAEp 43b0: 47 54 46 5f 0a 00 69 41 54 41 30 70 47 54 46 5f GTF_..iATA0pGTF_ 43c0: 0a 01 6a 41 54 41 31 5b 82 1c 44 52 56 30 08 5f ..jATA1[..DRV0._ 43d0: 41 44 52 0a 00 14 0f 5f 47 54 46 00 a4 52 41 54 ADR...._GTF..RAT 43e0: 41 41 54 41 30 5b 82 1c 44 52 56 31 08 5f 41 44 AATA0[..DRV1._AD 43f0: 52 0a 01 14 0f 5f 47 54 46 00 a4 52 41 54 41 41 R...._GTF..RATAA 4400: 54 41 31 5b 82 47 24 43 48 4e 31 08 5f 41 44 52 TA1[.G$CHN1._ADR 4410: 0a 01 14 4c 07 5f 47 54 4d 00 79 53 53 43 52 0a ...L._GTM.ySSCR. 4420: 01 61 7d 53 4d 43 52 61 60 79 53 4d 41 45 0a 02 .a}SMCRa`ySMAE.. 4430: 63 79 53 4d 36 45 0a 01 64 7d 63 64 63 7d 53 4d cySM6E..d}cdc}SM 4440: 33 45 63 61 79 53 4d 50 54 0a 04 63 7d 61 63 61 3EcaySMPT..c}aca 4450: 79 53 53 41 45 0a 02 63 79 53 53 36 45 0a 01 64 ySSAE..cySS6E..d 4460: 7d 63 64 63 7d 53 53 33 45 63 62 79 53 53 50 54 }cdc}SS3EcbySSPT 4470: 0a 04 63 7d 62 63 62 a4 47 54 4d 5f 53 4d 52 49 ..c}bcb.GTM_SMRI 4480: 61 53 4d 55 54 53 53 52 49 62 53 53 55 54 60 14 aSMUTSSRIbSSUT`. 4490: 40 18 5f 53 54 4d 03 70 68 5b 31 70 68 54 4d 44 @._STM.ph[1phTMD 44a0: 30 79 53 4d 41 45 0a 02 63 79 53 4d 36 45 0a 01 0ySMAE..cySM6E.. 44b0: 64 7d 63 64 63 7d 53 4d 33 45 63 60 79 53 4d 50 d}cdc}SM3Ec`ySMP 44c0: 54 0a 04 63 7d 60 63 60 79 53 53 41 45 0a 02 63 T..c}`c`ySSAE..c 44d0: 79 53 53 36 45 0a 01 64 7d 63 64 63 7d 53 53 33 ySS6E..d}cdc}SS3 44e0: 45 63 61 79 53 53 50 54 0a 04 63 7d 61 63 61 70 EcaySSPT..c}acap 44f0: 53 4d 52 49 47 4d 50 54 70 60 47 4d 55 45 70 53 SMRIGMPTp`GMUEpS 4500: 4d 55 54 47 4d 55 54 70 53 4d 43 52 47 4d 43 52 MUTGMUTpSMCRGMCR 4510: 70 53 53 52 49 47 53 50 54 70 61 47 53 55 45 70 pSSRIGSPTpaGSUEp 4520: 53 53 55 54 47 53 55 54 70 53 53 43 52 47 53 43 SSUTGSUTpSSCRGSC 4530: 52 53 54 4d 5f 70 47 4d 50 54 53 4d 52 49 70 47 RSTM_pGMPTSMRIpG 4540: 4d 55 45 60 70 47 4d 55 54 53 4d 55 54 70 47 4d MUE`pGMUTSMUTpGM 4550: 43 52 53 4d 43 52 70 47 53 55 45 61 70 47 53 55 CRSMCRpGSUEapGSU 4560: 54 53 53 55 54 70 47 53 43 52 53 53 43 52 a0 0d TSSUTpGSCRSSCR.. 4570: 7b 60 0a 01 00 70 0a 01 53 4d 33 45 a1 08 70 0a {`...p..SM3E..p. 4580: 00 53 4d 33 45 a0 0d 7b 60 0a 02 00 70 0a 01 53 .SM3E..{`...p..S 4590: 4d 36 45 a1 08 70 0a 00 53 4d 36 45 a0 0d 7b 60 M6E..p..SM6E..{` 45a0: 0a 04 00 70 0a 01 53 4d 41 45 a1 08 70 0a 00 53 ...p..SMAE..p..S 45b0: 4d 41 45 a0 0d 7b 61 0a 01 00 70 0a 01 53 53 33 MAE..{a...p..SS3 45c0: 45 a1 08 70 0a 00 53 53 33 45 a0 0d 7b 61 0a 02 E..p..SS3E..{a.. 45d0: 00 70 0a 01 53 53 36 45 a1 08 70 0a 00 53 53 36 .p..SS6E..p..SS6 45e0: 45 a0 0d 7b 61 0a 04 00 70 0a 01 53 53 41 45 a1 E..{a...p..SSAE. 45f0: 08 70 0a 00 53 53 41 45 70 47 54 46 5f 0a 00 69 .p..SSAEpGTF_..i 4600: 41 54 41 32 70 47 54 46 5f 0a 01 6a 41 54 41 33 ATA2pGTF_..jATA3 4610: 5b 82 1c 44 52 56 30 08 5f 41 44 52 0a 00 14 0f [..DRV0._ADR.... 4620: 5f 47 54 46 00 a4 52 41 54 41 41 54 41 32 5b 82 _GTF..RATAATA2[. 4630: 1c 44 52 56 31 08 5f 41 44 52 0a 01 14 0f 5f 47 .DRV1._ADR...._G 4640: 54 46 00 a4 52 41 54 41 41 54 41 33 14 4d 13 47 TF..RATAATA3.M.G 4650: 54 4d 5f 0f 70 ff 50 49 4f 30 70 ff 50 49 4f 31 TM_.p.PIO0p.PIO1 4660: 70 ff 44 4d 41 30 70 ff 44 4d 41 31 70 0a 10 43 p.DMA0p.DMA1p..C 4670: 48 4e 46 a0 05 52 45 47 46 a1 06 a4 54 4d 44 30 HNF..REGF...TMD0 4680: a0 11 7b 69 0a 20 00 7d 43 48 4e 46 0a 02 43 48 ..{i. .}CHNF..CH 4690: 4e 46 70 89 83 88 54 49 4d 30 0a 01 00 01 68 00 NFp...TIM0....h. 46a0: 0a 00 0a 00 66 70 83 88 83 88 54 49 4d 30 0a 00 ....fp....TIM0.. 46b0: 00 66 00 67 70 67 44 4d 41 30 70 67 50 49 4f 30 .f.gpgDMA0pgPIO0 46c0: a0 11 7b 6c 0a 20 00 7d 43 48 4e 46 0a 08 43 48 ..{l. .}CHNF..CH 46d0: 4e 46 70 89 83 88 54 49 4d 30 0a 02 00 01 6b 00 NFp...TIM0....k. 46e0: 0a 00 0a 00 66 70 83 88 83 88 54 49 4d 30 0a 00 ....fp....TIM0.. 46f0: 00 66 00 67 70 67 44 4d 41 31 70 67 50 49 4f 31 .f.gpgDMA1pgPIO1 4700: a0 3e 7b 69 0a 07 00 70 6a 65 a0 0b 7b 69 0a 02 .>{i...pje..{i.. 4710: 00 72 65 0a 02 65 a0 0b 7b 69 0a 04 00 72 65 0a .re..e..{i...re. 4720: 04 65 70 83 88 83 88 54 49 4d 30 0a 03 00 65 00 .ep....TIM0...e. 4730: 44 4d 41 30 7d 43 48 4e 46 0a 01 43 48 4e 46 a0 DMA0}CHNF..CHNF. 4740: 3e 7b 6c 0a 07 00 70 6d 65 a0 0b 7b 6c 0a 02 00 >{l...pme..{l... 4750: 72 65 0a 02 65 a0 0b 7b 6c 0a 04 00 72 65 0a 04 re..e..{l...re.. 4760: 65 70 83 88 83 88 54 49 4d 30 0a 03 00 65 00 44 ep....TIM0...e.D 4770: 4d 41 31 7d 43 48 4e 46 0a 04 43 48 4e 46 70 54 MA1}CHNF..CHNFpT 4780: 4d 44 30 5b 31 a4 54 4d 44 30 14 4c 22 53 54 4d MD0[1.TMD0.L"STM 4790: 5f 08 a0 05 52 45 47 46 a1 4e 21 70 0a 00 47 4d _...REGF.N!p..GM 47a0: 55 45 70 0a 00 47 4d 55 54 70 0a 00 47 53 55 45 UEp..GMUTp..GSUE 47b0: 70 0a 00 47 53 55 54 a0 44 07 7b 43 48 4e 46 0a p..GSUT.D.{CHNF. 47c0: 01 00 70 89 83 88 54 49 4d 30 0a 03 00 02 44 4d ..p...TIM0....DM 47d0: 41 30 00 0a 00 0a 00 60 a0 09 94 60 0a 05 70 0a A0.....`...`..p. 47e0: 05 60 70 83 88 83 88 54 49 4d 30 0a 04 00 60 00 .`p....TIM0...`. 47f0: 47 4d 55 54 7d 47 4d 55 45 0a 01 47 4d 55 45 a0 GMUT}GMUE..GMUE. 4800: 10 94 60 0a 02 7d 47 4d 55 45 0a 02 47 4d 55 45 ..`..}GMUE..GMUE 4810: a0 1b 94 60 0a 04 7b 47 4d 55 45 0a fd 47 4d 55 ...`..{GMUE..GMU 4820: 45 7d 47 4d 55 45 0a 04 47 4d 55 45 a1 37 a0 35 E}GMUE..GMUE.7.5 4830: 7d 93 50 49 4f 30 ff 93 50 49 4f 30 0a 00 00 a0 }.PIO0..PIO0.... 4840: 24 7b 95 44 4d 41 30 ff 94 44 4d 41 30 0a 00 00 ${.DMA0..DMA0... 4850: 70 44 4d 41 30 50 49 4f 30 7d 47 4d 55 45 0a 80 pDMA0PIO0}GMUE.. 4860: 47 4d 55 45 a0 44 07 7b 43 48 4e 46 0a 04 00 70 GMUE.D.{CHNF...p 4870: 89 83 88 54 49 4d 30 0a 03 00 02 44 4d 41 31 00 ...TIM0....DMA1. 4880: 0a 00 0a 00 60 a0 09 94 60 0a 05 70 0a 05 60 70 ....`...`..p..`p 4890: 83 88 83 88 54 49 4d 30 0a 04 00 60 00 47 53 55 ....TIM0...`.GSU 48a0: 54 7d 47 53 55 45 0a 01 47 53 55 45 a0 10 94 60 T}GSUE..GSUE...` 48b0: 0a 02 7d 47 53 55 45 0a 02 47 53 55 45 a0 1b 94 ..}GSUE..GSUE... 48c0: 60 0a 04 7b 47 53 55 45 0a fd 47 53 55 45 7d 47 `..{GSUE..GSUE}G 48d0: 53 55 45 0a 04 47 53 55 45 a1 37 a0 35 7d 93 50 SUE..GSUE.7.5}.P 48e0: 49 4f 31 ff 93 50 49 4f 31 0a 00 00 a0 24 7b 95 IO1..PIO1....${. 48f0: 44 4d 41 31 ff 94 44 4d 41 31 0a 00 00 70 44 4d DMA1..DMA1...pDM 4900: 41 31 50 49 4f 31 7d 47 53 55 45 0a 80 47 53 55 A1PIO1}GSUE..GSU 4910: 45 a0 14 7b 43 48 4e 46 0a 02 00 7d 47 4d 55 45 E..{CHNF...}GMUE 4920: 0a 20 47 4d 55 45 a0 14 7b 43 48 4e 46 0a 08 00 . GMUE..{CHNF... 4930: 7d 47 53 55 45 0a 20 47 53 55 45 7b 89 83 88 54 }GSUE. GSUE{...T 4940: 49 4d 30 0a 00 00 04 50 49 4f 30 00 0a 00 0a 00 IM0....PIO0..... 4950: 0a 07 60 70 83 88 83 88 54 49 4d 30 0a 01 00 60 ..`p....TIM0...` 4960: 00 61 70 61 47 4d 50 54 a0 10 95 60 0a 03 7d 47 .apaGMPT...`..}G 4970: 4d 55 45 0a 50 47 4d 55 45 7b 89 83 88 54 49 4d MUE.PGMUE{...TIM 4980: 30 0a 00 00 04 50 49 4f 31 00 0a 00 0a 00 0a 07 0....PIO1....... 4990: 60 70 83 88 83 88 54 49 4d 30 0a 02 00 60 00 61 `p....TIM0...`.a 49a0: 70 61 47 53 50 54 a0 10 95 60 0a 03 7d 47 53 55 paGSPT...`..}GSU 49b0: 45 0a 50 47 53 55 45 08 41 54 30 31 11 0a 0a 07 E.PGSUE.AT01.... 49c0: 03 00 00 00 00 00 ef 08 41 54 30 32 11 0a 0a 07 ........AT02.... 49d0: 00 00 00 00 00 00 90 08 41 54 30 33 11 0a 0a 07 ........AT03.... 49e0: 00 00 00 00 00 00 c6 08 41 54 30 34 11 0a 0a 07 ........AT04.... 49f0: 00 00 00 00 00 00 91 08 41 54 41 30 11 03 0a 1d ........ATA0.... 4a00: 08 41 54 41 31 11 03 0a 1d 08 41 54 41 32 11 03 .ATA1.....ATA2.. 4a10: 0a 1d 08 41 54 41 33 11 03 0a 1d 08 41 54 41 42 ...ATA3.....ATAB 4a20: 11 03 0a 1d 8c 41 54 41 42 0a 00 43 4d 44 43 14 .....ATAB..CMDC. 4a30: 4c 05 47 54 46 42 0b 77 43 4d 44 43 0a 38 60 72 L.GTFB.wCMDC.8`r 4a40: 60 0a 08 61 5b 13 41 54 41 42 61 0a 38 43 4d 44 `..a[.ATABa.8CMD 4a50: 58 77 43 4d 44 43 0a 07 60 8c 41 54 41 42 72 60 XwCMDC..`.ATABr` 4a60: 0a 02 00 41 30 30 31 8c 41 54 41 42 72 60 0a 06 ...A001.ATABr`.. 4a70: 00 41 30 30 35 70 68 43 4d 44 58 70 69 41 30 30 .A005phCMDXpiA00 4a80: 31 70 6a 41 30 30 35 75 43 4d 44 43 14 42 24 47 1pjA005uCMDC.B$G 4a90: 54 46 5f 0a 70 69 5b 31 70 0a 00 43 4d 44 43 08 TF_.pi[1p..CMDC. 4aa0: 49 44 34 39 0b 00 0c 08 49 44 35 39 0a 00 08 49 ID49....ID59...I 4ab0: 44 35 33 0a 04 08 49 44 36 33 0b 00 0f 08 49 44 D53...ID63....ID 4ac0: 38 38 0b 00 0f 08 49 52 44 59 0a 01 08 50 49 4f 88....IRDY...PIO 4ad0: 54 0a 00 08 44 4d 41 54 0a 00 a0 4d 05 93 87 69 T...DMAT...M...i 4ae0: 0b 00 02 8b 69 0a 62 49 57 34 39 70 49 57 34 39 ....i.bIW49pIW49 4af0: 49 44 34 39 8b 69 0a 6a 49 57 35 33 70 49 57 35 ID49.i.jIW53pIW5 4b00: 33 49 44 35 33 8b 69 0a 7e 49 57 36 33 70 49 57 3ID53.i.~IW63pIW 4b10: 36 33 49 44 36 33 8b 69 0a 76 49 57 35 39 70 49 63ID63.i.vIW59pI 4b20: 57 35 39 49 44 35 39 8b 69 0a b0 49 57 38 38 70 W59ID59.i..IW88p 4b30: 49 57 38 38 49 44 38 38 70 0a a0 67 a0 48 05 68 IW88ID88p..g.H.h 4b40: 70 0a b0 67 7b 43 48 4e 46 0a 08 49 52 44 59 a0 p..g{CHNF..IRDY. 4b50: 12 7b 43 48 4e 46 0a 10 00 70 50 49 4f 31 50 49 .{CHNF...pPIO1PI 4b60: 4f 54 a1 0a 70 50 49 4f 30 50 49 4f 54 a0 27 7b OT..pPIO0PIOT.'{ 4b70: 43 48 4e 46 0a 04 00 a0 12 7b 43 48 4e 46 0a 10 CHNF.....{CHNF.. 4b80: 00 70 44 4d 41 31 44 4d 41 54 a1 0a 70 44 4d 41 .pDMA1DMAT..pDMA 4b90: 30 44 4d 41 54 a1 28 7b 43 48 4e 46 0a 02 49 52 0DMAT.({CHNF..IR 4ba0: 44 59 70 50 49 4f 30 50 49 4f 54 a0 12 7b 43 48 DYpPIO0PIOT..{CH 4bb0: 4e 46 0a 01 00 70 44 4d 41 30 44 4d 41 54 a0 47 NF...pDMA0DMAT.G 4bc0: 04 90 90 7b 49 44 35 33 0a 04 00 7b 49 44 38 38 ...{ID53...{ID88 4bd0: 0b 00 ff 00 44 4d 41 54 70 89 83 88 54 49 4d 30 ....DMATp...TIM0 4be0: 0a 03 00 02 44 4d 41 54 00 0a 00 0a 00 61 a0 09 ....DMAT.....a.. 4bf0: 94 61 0a 05 70 0a 05 61 47 54 46 42 41 54 30 31 .a..p..aGTFBAT01 4c00: 7d 0a 40 61 00 67 a1 46 04 a0 43 04 90 7b 49 44 }.@a.g.F..C..{ID 4c10: 36 33 0b 00 ff 00 50 49 4f 54 7b 89 83 88 54 49 63....PIOT{...TI 4c20: 4d 30 0a 00 00 04 50 49 4f 54 00 0a 00 0a 00 0a M0....PIOT...... 4c30: 03 60 7d 0a 20 83 88 83 88 54 49 4d 30 0a 07 00 .`}. ....TIM0... 4c40: 60 00 61 47 54 46 42 41 54 30 31 61 67 a0 38 49 `.aGTFBAT01ag.8I 4c50: 52 44 59 7b 89 83 88 54 49 4d 30 0a 00 00 04 50 RDY{...TIM0....P 4c60: 49 4f 54 00 0a 00 0a 00 0a 07 60 7d 0a 08 83 88 IOT.......`}.... 4c70: 83 88 54 49 4d 30 0a 06 00 60 00 61 47 54 46 42 ..TIM0...`.aGTFB 4c80: 41 54 30 31 61 67 a1 17 a0 15 7b 49 44 34 39 0b AT01ag....{ID49. 4c90: 00 04 00 47 54 46 42 41 54 30 31 0a 01 67 a0 24 ...GTFBAT01..g.$ 4ca0: 90 7b 49 44 35 39 0b 00 01 00 7b 49 44 35 39 0a .{ID59....{ID59. 4cb0: ff 00 47 54 46 42 41 54 30 33 7b 49 44 35 39 0a ..GTFBAT03{ID59. 4cc0: ff 00 67 70 41 54 41 42 5b 31 a4 41 54 41 42 14 ..gpATAB[1.ATAB. 4cd0: 2c 52 41 54 41 01 8c 68 0a 00 43 4d 44 4e 77 43 ,RATA..h..CMDNwC 4ce0: 4d 44 4e 0a 38 60 5b 13 68 0a 08 60 52 45 54 42 MDN.8`[.h..`RETB 4cf0: 70 52 45 54 42 5b 31 a4 52 45 54 42 5b 82 1f 4d pRETB[1.RETB[..M 4d00: 43 39 37 08 5f 41 44 52 0c 03 00 1e 00 14 0f 5f C97._ADR......._ 4d10: 50 52 57 00 a4 47 50 52 57 0a 05 0a 04 5b 82 1f PRW..GPRW....[.. 4d20: 55 53 42 31 08 5f 41 44 52 0c 00 00 1d 00 14 0f USB1._ADR....... 4d30: 5f 50 52 57 00 a4 47 50 52 57 0a 03 0a 03 5b 82 _PRW..GPRW....[. 4d40: 1f 55 53 42 32 08 5f 41 44 52 0c 01 00 1d 00 14 .USB2._ADR...... 4d50: 0f 5f 50 52 57 00 a4 47 50 52 57 0a 04 0a 03 5b ._PRW..GPRW....[ 4d60: 82 1f 55 53 42 33 08 5f 41 44 52 0c 02 00 1d 00 ..USB3._ADR..... 4d70: 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 0c 0a 03 .._PRW..GPRW.... 4d80: 5b 82 1f 55 53 42 34 08 5f 41 44 52 0c 03 00 1d [..USB4._ADR.... 4d90: 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 0e 0a ..._PRW..GPRW... 4da0: 03 5b 82 1f 45 55 53 42 08 5f 41 44 52 0c 07 00 .[..EUSB._ADR... 4db0: 1d 00 14 0f 5f 50 52 57 00 a4 47 50 52 57 0a 0d ...._PRW..GPRW.. 4dc0: 0a 03 5b 82 0f 48 44 41 55 08 5f 41 44 52 0c 00 ..[..HDAU._ADR.. 4dd0: 00 1b 00 5b 82 0f 49 44 45 31 08 5f 41 44 52 0c ...[..IDE1._ADR. 4de0: 01 00 1f 00 5b 82 4f 27 56 47 41 5f 08 5f 41 44 ....[.O'VGA_._AD 4df0: 52 0c 00 00 02 00 08 56 47 41 42 11 03 0a 02 8b R......VGAB..... 4e00: 56 47 41 42 0a 00 44 49 53 44 8c 56 47 41 42 0a VGAB..DISD.VGAB. 4e10: 00 4e 58 54 44 8c 56 47 41 42 0a 01 41 56 4c 44 .NXTD.VGAB..AVLD 4e20: 08 4c 43 44 4d 0a 01 08 43 52 54 4d 0a 02 08 54 .LCDM...CRTM...T 4e30: 56 4f 4d 0a 04 08 44 4f 4e 45 0a 00 08 44 4f 53 VOM...DONE...DOS 4e40: 46 0a 01 14 15 5f 49 4e 49 00 70 47 45 54 44 44 F...._INI.pGETDD 4e50: 49 53 44 70 01 44 4f 4e 45 14 0c 5f 44 4f 53 01 ISDp.DONE.._DOS. 4e60: 70 68 44 4f 53 46 14 19 5f 44 4f 44 00 a4 12 11 phDOSF.._DOD.... 4e70: 03 0c 00 01 01 00 0c 00 02 01 00 0c 00 04 01 00 ................ 4e80: 14 28 43 44 43 53 01 70 0a 0d 60 a0 0d 7b 4e 58 .(CDCS.p..`..{NX 4e90: 54 44 68 00 7d 60 0a 02 60 a0 0d 7b 41 56 4c 44 TDh.}`..`..{AVLD 4ea0: 68 00 7d 60 0a 10 60 a4 60 14 15 43 44 47 53 01 h.}`..`.`..CDGS. 4eb0: a0 0b 7b 4e 58 54 44 68 00 a4 0a 01 a4 0a 00 5b ..{NXTDh.......[ 4ec0: 82 4f 04 43 52 54 44 08 5f 41 44 52 0b 00 01 14 .O.CRTD._ADR.... 4ed0: 0f 5f 44 43 53 00 a4 43 44 43 53 43 52 54 4d 14 ._DCS..CDCSCRTM. 4ee0: 0f 5f 44 47 53 00 a4 43 44 47 53 43 52 54 4d 14 ._DGS..CDGSCRTM. 4ef0: 20 5f 44 53 53 01 a0 19 7b 68 0c 00 00 00 40 00 _DSS...{h....@. 4f00: a0 0f 7b 68 0c 00 00 00 80 00 70 01 44 4f 4e 45 ..{h......p.DONE 4f10: 5b 82 4f 04 54 56 4f 44 08 5f 41 44 52 0b 00 02 [.O.TVOD._ADR... 4f20: 14 0f 5f 44 43 53 00 a4 43 44 43 53 54 56 4f 4d .._DCS..CDCSTVOM 4f30: 14 0f 5f 44 47 53 00 a4 43 44 47 53 54 56 4f 4d .._DGS..CDGSTVOM 4f40: 14 20 5f 44 53 53 01 a0 19 7b 68 0c 00 00 00 40 . _DSS...{h....@ 4f50: 00 a0 0f 7b 68 0c 00 00 00 80 00 70 01 44 4f 4e ...{h......p.DON 4f60: 45 5b 82 4f 04 4c 43 44 44 08 5f 41 44 52 0b 00 E[.O.LCDD._ADR.. 4f70: 04 14 0f 5f 44 43 53 00 a4 43 44 43 53 4c 43 44 ..._DCS..CDCSLCD 4f80: 4d 14 0f 5f 44 47 53 00 a4 43 44 47 53 4c 43 44 M.._DGS..CDGSLCD 4f90: 4d 14 20 5f 44 53 53 01 a0 19 7b 68 0c 00 00 00 M. _DSS...{h.... 4fa0: 40 00 a0 0f 7b 68 0c 00 00 00 80 00 70 01 44 4f @...{h......p.DO 4fb0: 4e 45 14 42 04 53 57 48 44 09 a0 20 5c 2f 04 5f NE.B.SWHD.. \/._ 4fc0: 53 42 5f 50 43 49 30 56 47 41 5f 44 4f 53 46 70 SB_PCI0VGA_DOSFp 4fd0: 68 50 41 52 31 49 53 4d 49 0a 73 a1 13 86 5c 2f hPAR1ISMI.s...\/ 4fe0: 03 5f 53 42 5f 50 43 49 30 56 47 41 5f 0a 80 70 ._SB_PCI0VGA_..p 4ff0: 01 44 4f 4e 45 14 11 47 45 54 44 00 49 53 4d 49 .DONE..GETD.ISMI 5000: 0a 72 a4 50 41 52 31 14 4d 05 47 45 54 4e 08 a0 .r.PAR1.M.GETN.. 5010: 0e 44 4f 4e 45 70 47 45 54 44 44 49 53 44 70 0a .DONEpGETDDISDp. 5020: 00 44 4f 4e 45 70 0a 00 60 a2 36 92 93 4e 58 54 .DONEp..`.6..NXT 5030: 44 60 75 4e 58 54 44 a0 0d 93 4e 58 54 44 0a 07 D`uNXTD...NXTD.. 5040: 75 4e 58 54 44 a0 10 7b 4e 58 54 44 0a f8 00 70 uNXTD..{NXTD...p 5050: 0a 01 4e 58 54 44 7b 4e 58 54 44 41 56 4c 44 60 ..NXTD{NXTDAVLD` 5060: a4 4e 58 54 44 10 41 16 5c 5f 47 50 45 14 25 5f .NXTD.A.\_GPE.%_ 5070: 4c 30 42 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 L0B..\/._SB_PCI0 5080: 50 30 50 33 0a 02 86 5c 2e 5f 53 42 5f 50 57 52 P0P3...\._SB_PWR 5090: 42 0a 02 14 4f 04 5f 4c 30 39 00 86 5c 2f 03 5f B...O._L09..\/._ 50a0: 53 42 5f 50 43 49 30 50 30 50 34 0a 02 86 5c 2f SB_PCI0P0P4...\/ 50b0: 03 5f 53 42 5f 50 43 49 30 50 30 50 35 0a 02 86 ._SB_PCI0P0P5... 50c0: 5c 2f 03 5f 53 42 5f 50 43 49 30 50 30 50 36 0a \/._SB_PCI0P0P6. 50d0: 02 86 5c 2f 03 5f 53 42 5f 50 43 49 30 50 30 50 ..\/._SB_PCI0P0P 50e0: 37 0a 02 14 25 5f 4c 30 35 00 86 5c 2f 03 5f 53 7...%_L05..\/._S 50f0: 42 5f 50 43 49 30 4d 43 39 37 0a 02 86 5c 2e 5f B_PCI0MC97...\._ 5100: 53 42 5f 50 57 52 42 0a 02 14 25 5f 4c 30 33 00 SB_PWRB...%_L03. 5110: 86 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 42 31 .\/._SB_PCI0USB1 5120: 0a 02 86 5c 2e 5f 53 42 5f 50 57 52 42 0a 02 14 ...\._SB_PWRB... 5130: 25 5f 4c 30 34 00 86 5c 2f 03 5f 53 42 5f 50 43 %_L04..\/._SB_PC 5140: 49 30 55 53 42 32 0a 02 86 5c 2e 5f 53 42 5f 50 I0USB2...\._SB_P 5150: 57 52 42 0a 02 14 25 5f 4c 30 43 00 86 5c 2f 03 WRB...%_L0C..\/. 5160: 5f 53 42 5f 50 43 49 30 55 53 42 33 0a 02 86 5c _SB_PCI0USB3...\ 5170: 2e 5f 53 42 5f 50 57 52 42 0a 02 14 25 5f 4c 30 ._SB_PWRB...%_L0 5180: 45 00 86 5c 2f 03 5f 53 42 5f 50 43 49 30 55 53 E..\/._SB_PCI0US 5190: 42 34 0a 02 86 5c 2e 5f 53 42 5f 50 57 52 42 0a B4...\._SB_PWRB. 51a0: 02 14 25 5f 4c 30 44 00 86 5c 2f 03 5f 53 42 5f ..%_L0D..\/._SB_ 51b0: 50 43 49 30 45 55 53 42 0a 02 86 5c 2e 5f 53 42 PCI0EUSB...\._SB 51c0: 5f 50 57 52 42 0a 02 5b 82 1d 50 57 52 42 08 5f _PWRB..[..PWRB._ 51d0: 48 49 44 0c 41 d0 0c 0c 08 5f 55 49 44 0a aa 08 HID.A...._UID... 51e0: 5f 53 54 41 0a 0b 5b 80 53 4d 52 47 01 0b 00 04 _STA..[.SMRG.... 51f0: 0a 10 5b 81 2e 53 4d 52 47 01 48 53 54 53 08 53 ..[..SMRG.HSTS.S 5200: 53 54 53 08 48 53 54 43 08 48 43 4d 44 08 48 41 STS.HSTC.HCMD.HA 5210: 44 52 08 48 44 54 30 08 48 44 54 31 08 42 4c 4b DR.HDT0.HDT1.BLK 5220: 44 08 5b 81 0d 53 4d 52 47 01 00 28 48 44 54 57 D.[..SMRG..(HDTW 5230: 10 14 49 09 53 43 4d 44 0c 70 0a 05 60 a2 4b 08 ..I.SCMD.p..`.K. 5240: 76 60 70 0b ff ff 61 a2 13 90 48 53 54 53 76 61 v`p...a...HSTSva 5250: 70 0a fe 48 53 54 53 5b 21 0a 0a 70 68 48 41 44 p..HSTS[!..phHAD 5260: 52 70 69 48 43 4d 44 70 6a 48 44 54 57 70 6b 48 RpiHCMDpjHDTWpkH 5270: 53 54 43 70 0b ff ff 61 a2 27 76 61 a0 0d 7b 48 STCp...a.'va..{H 5280: 53 54 53 0a 0c 00 70 0a 01 61 a0 11 93 7b 48 53 STS...p..a...{HS 5290: 54 53 0a 03 00 0a 02 a4 48 44 54 57 5b 21 0a 0a TS......HDTW[!.. 52a0: 70 0a 42 48 53 54 43 70 0b ff ff 61 a2 15 76 61 p.BHSTCp...a..va 52b0: a0 0d 7b 48 53 54 53 0a 10 00 70 0a 01 61 5b 21 ..{HSTS...p..a[! 52c0: 0a 0a 70 0a 00 48 53 54 43 a4 ff 14 10 53 42 59 ..p..HSTC....SBY 52d0: 54 02 53 43 4d 44 68 69 0a 00 0a 44 14 0f 57 42 T.SCMDhi...D..WB 52e0: 59 54 03 53 43 4d 44 68 69 6a 0a 48 14 0f 57 57 YT.SCMDhij.H..WW 52f0: 52 44 03 53 43 4d 44 68 69 6a 0a 4c 14 1a 52 53 RD.SCMDhij.L..RS 5300: 42 54 02 7d 68 0a 01 68 a4 7b 53 43 4d 44 68 69 BT.}h..h.{SCMDhi 5310: 0a 00 0a 44 0a ff 00 14 1a 52 42 59 54 02 7d 68 ...D.....RBYT.}h 5320: 0a 01 68 a4 7b 53 43 4d 44 68 69 0a 00 0a 48 0a ..h.{SCMDhi...H. 5330: ff 00 14 16 52 57 52 44 02 7d 68 0a 01 68 a4 53 ....RWRD.}h..h.S 5340: 43 4d 44 68 69 0a 00 0a 4c 5b 80 5c 2f 04 5f 53 CMDhi...L[.\/._S 5350: 42 5f 50 43 49 30 53 42 52 47 50 49 58 30 02 0a B_PCI0SBRGPIX0.. 5360: 60 0a 0c 5b 81 3f 5c 2f 04 5f 53 42 5f 50 43 49 `..[.?\/._SB_PCI 5370: 30 53 42 52 47 50 49 58 30 01 50 49 52 41 08 50 0SBRGPIX0.PIRA.P 5380: 49 52 42 08 50 49 52 43 08 50 49 52 44 08 00 20 IRB.PIRC.PIRD.. 5390: 50 49 52 45 08 50 49 52 46 08 50 49 52 47 08 50 PIRE.PIRF.PIRG.P 53a0: 49 52 48 08 10 41 47 5c 5f 53 42 5f 08 42 55 46 IRH..AG\_SB_.BUF 53b0: 41 11 09 0a 06 23 00 80 18 79 00 8b 42 55 46 41 A....#...y..BUFA 53c0: 0a 01 49 52 41 30 5b 82 48 08 4c 4e 4b 41 08 5f ..IRA0[.H.LNKA._ 53d0: 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 01 14 HID.A...._UID... 53e0: 19 5f 53 54 41 00 7b 50 49 52 41 0a 80 60 a0 05 ._STA.{PIRA..`.. 53f0: 60 a4 0a 09 a1 04 a4 0a 0b 14 0b 5f 50 52 53 00 `.........._PRS. 5400: a4 50 52 53 41 14 11 5f 44 49 53 00 7d 50 49 52 .PRSA.._DIS.}PIR 5410: 41 0a 80 50 49 52 41 14 1b 5f 43 52 53 00 7b 50 A..PIRA.._CRS.{P 5420: 49 52 41 0a 0f 60 79 0a 01 60 49 52 41 30 a4 42 IRA..`y..`IRA0.B 5430: 55 46 41 14 1c 5f 53 52 53 01 8b 68 0a 01 49 52 UFA.._SRS..h..IR 5440: 41 5f 82 49 52 41 5f 60 76 60 70 60 50 49 52 41 A_.IRA_`v`p`PIRA 5450: 5b 82 48 08 4c 4e 4b 42 08 5f 48 49 44 0c 41 d0 [.H.LNKB._HID.A. 5460: 0c 0f 08 5f 55 49 44 0a 02 14 19 5f 53 54 41 00 ..._UID...._STA. 5470: 7b 50 49 52 42 0a 80 60 a0 05 60 a4 0a 09 a1 04 {PIRB..`..`..... 5480: a4 0a 0b 14 0b 5f 50 52 53 00 a4 50 52 53 42 14 ....._PRS..PRSB. 5490: 11 5f 44 49 53 00 7d 50 49 52 42 0a 80 50 49 52 ._DIS.}PIRB..PIR 54a0: 42 14 1b 5f 43 52 53 00 7b 50 49 52 42 0a 0f 60 B.._CRS.{PIRB..` 54b0: 79 0a 01 60 49 52 41 30 a4 42 55 46 41 14 1c 5f y..`IRA0.BUFA.._ 54c0: 53 52 53 01 8b 68 0a 01 49 52 41 5f 82 49 52 41 SRS..h..IRA_.IRA 54d0: 5f 60 76 60 70 60 50 49 52 42 5b 82 48 08 4c 4e _`v`p`PIRB[.H.LN 54e0: 4b 43 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 KC._HID.A...._UI 54f0: 44 0a 03 14 19 5f 53 54 41 00 7b 50 49 52 43 0a D...._STA.{PIRC. 5500: 80 60 a0 05 60 a4 0a 09 a1 04 a4 0a 0b 14 0b 5f .`..`.........._ 5510: 50 52 53 00 a4 50 52 53 43 14 11 5f 44 49 53 00 PRS..PRSC.._DIS. 5520: 7d 50 49 52 43 0a 80 50 49 52 43 14 1b 5f 43 52 }PIRC..PIRC.._CR 5530: 53 00 7b 50 49 52 43 0a 0f 60 79 0a 01 60 49 52 S.{PIRC..`y..`IR 5540: 41 30 a4 42 55 46 41 14 1c 5f 53 52 53 01 8b 68 A0.BUFA.._SRS..h 5550: 0a 01 49 52 41 5f 82 49 52 41 5f 60 76 60 70 60 ..IRA_.IRA_`v`p` 5560: 50 49 52 43 5b 82 48 08 4c 4e 4b 44 08 5f 48 49 PIRC[.H.LNKD._HI 5570: 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a 04 14 19 5f D.A...._UID...._ 5580: 53 54 41 00 7b 50 49 52 44 0a 80 60 a0 05 60 a4 STA.{PIRD..`..`. 5590: 0a 09 a1 04 a4 0a 0b 14 0b 5f 50 52 53 00 a4 50 ........._PRS..P 55a0: 52 53 44 14 11 5f 44 49 53 00 7d 50 49 52 44 0a RSD.._DIS.}PIRD. 55b0: 80 50 49 52 44 14 1b 5f 43 52 53 00 7b 50 49 52 .PIRD.._CRS.{PIR 55c0: 44 0a 0f 60 79 0a 01 60 49 52 41 30 a4 42 55 46 D..`y..`IRA0.BUF 55d0: 41 14 1c 5f 53 52 53 01 8b 68 0a 01 49 52 41 5f A.._SRS..h..IRA_ 55e0: 82 49 52 41 5f 60 76 60 70 60 50 49 52 44 5b 82 .IRA_`v`p`PIRD[. 55f0: 48 08 4c 4e 4b 45 08 5f 48 49 44 0c 41 d0 0c 0f H.LNKE._HID.A... 5600: 08 5f 55 49 44 0a 05 14 19 5f 53 54 41 00 7b 50 ._UID...._STA.{P 5610: 49 52 45 0a 80 60 a0 05 60 a4 0a 09 a1 04 a4 0a IRE..`..`....... 5620: 0b 14 0b 5f 50 52 53 00 a4 50 52 53 45 14 11 5f ..._PRS..PRSE.._ 5630: 44 49 53 00 7d 50 49 52 45 0a 80 50 49 52 45 14 DIS.}PIRE..PIRE. 5640: 1b 5f 43 52 53 00 7b 50 49 52 45 0a 0f 60 79 0a ._CRS.{PIRE..`y. 5650: 01 60 49 52 41 30 a4 42 55 46 41 14 1c 5f 53 52 .`IRA0.BUFA.._SR 5660: 53 01 8b 68 0a 01 49 52 41 5f 82 49 52 41 5f 60 S..h..IRA_.IRA_` 5670: 76 60 70 60 50 49 52 45 5b 82 48 08 4c 4e 4b 46 v`p`PIRE[.H.LNKF 5680: 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f 55 49 44 0a ._HID.A...._UID. 5690: 06 14 19 5f 53 54 41 00 7b 50 49 52 46 0a 80 60 ..._STA.{PIRF..` 56a0: a0 05 60 a4 0a 09 a1 04 a4 0a 0b 14 0b 5f 50 52 ..`.........._PR 56b0: 53 00 a4 50 52 53 46 14 11 5f 44 49 53 00 7d 50 S..PRSF.._DIS.}P 56c0: 49 52 46 0a 80 50 49 52 46 14 1b 5f 43 52 53 00 IRF..PIRF.._CRS. 56d0: 7b 50 49 52 46 0a 0f 60 79 0a 01 60 49 52 41 30 {PIRF..`y..`IRA0 56e0: a4 42 55 46 41 14 1c 5f 53 52 53 01 8b 68 0a 01 .BUFA.._SRS..h.. 56f0: 49 52 41 5f 82 49 52 41 5f 60 76 60 70 60 50 49 IRA_.IRA_`v`p`PI 5700: 52 46 5b 82 48 08 4c 4e 4b 47 08 5f 48 49 44 0c RF[.H.LNKG._HID. 5710: 41 d0 0c 0f 08 5f 55 49 44 0a 07 14 19 5f 53 54 A...._UID...._ST 5720: 41 00 7b 50 49 52 47 0a 80 60 a0 05 60 a4 0a 09 A.{PIRG..`..`... 5730: a1 04 a4 0a 0b 14 0b 5f 50 52 53 00 a4 50 52 53 ......._PRS..PRS 5740: 47 14 11 5f 44 49 53 00 7d 50 49 52 47 0a 80 50 G.._DIS.}PIRG..P 5750: 49 52 47 14 1b 5f 43 52 53 00 7b 50 49 52 47 0a IRG.._CRS.{PIRG. 5760: 0f 60 79 0a 01 60 49 52 41 30 a4 42 55 46 41 14 .`y..`IRA0.BUFA. 5770: 1c 5f 53 52 53 01 8b 68 0a 01 49 52 41 5f 82 49 ._SRS..h..IRA_.I 5780: 52 41 5f 60 76 60 70 60 50 49 52 47 5b 82 48 08 RA_`v`p`PIRG[.H. 5790: 4c 4e 4b 48 08 5f 48 49 44 0c 41 d0 0c 0f 08 5f LNKH._HID.A...._ 57a0: 55 49 44 0a 08 14 19 5f 53 54 41 00 7b 50 49 52 UID...._STA.{PIR 57b0: 48 0a 80 60 a0 05 60 a4 0a 09 a1 04 a4 0a 0b 14 H..`..`......... 57c0: 0b 5f 50 52 53 00 a4 50 52 53 48 14 11 5f 44 49 ._PRS..PRSH.._DI 57d0: 53 00 7d 50 49 52 48 0a 80 50 49 52 48 14 1b 5f S.}PIRH..PIRH.._ 57e0: 43 52 53 00 7b 50 49 52 48 0a 0f 60 79 0a 01 60 CRS.{PIRH..`y..` 57f0: 49 52 41 30 a4 42 55 46 41 14 1c 5f 53 52 53 01 IRA0.BUFA.._SRS. 5800: 8b 68 0a 01 49 52 41 5f 82 49 52 41 5f 60 76 60 .h..IRA_.IRA_`v` 5810: 70 60 50 49 52 48 10 41 0c 5c 5f 54 5a 5f 08 4c p`PIRH.A.\_TZ_.L 5820: 54 4d 50 0a 3c 08 54 43 52 54 0a 5a 08 54 53 50 TMP.<.TCRT.Z.TSP 5830: 5f 0a 1e 14 18 4b 45 4c 56 01 7b 68 0a ff 60 77 _....KELV.{h..`w 5840: 60 0a 0a 60 72 60 0b ac 0a 60 a4 60 14 30 52 54 `..`r`...`.`.0RT 5850: 4d 50 08 70 5c 2f 05 5f 53 42 5f 50 43 49 30 53 MP.p\/._SB_PCI0S 5860: 42 52 47 45 43 30 5f 52 43 54 50 60 a0 0b 95 60 BRGEC0_RCTP`...` 5870: 0a ff 70 60 4c 54 4d 50 a4 4c 54 4d 50 5b 85 49 ..p`LTMP.LTMP[.I 5880: 05 54 5a 30 30 08 5f 54 5a 50 0b 2c 01 14 0f 5f .TZ00._TZP.,..._ 5890: 43 52 54 00 a4 4b 45 4c 56 54 43 52 54 14 29 5f CRT..KELVTCRT.)_ 58a0: 54 4d 50 00 70 0a 05 61 a2 18 61 70 52 54 4d 50 TMP.p..a..apRTMP 58b0: 60 a0 09 94 60 54 43 52 54 76 61 a1 05 70 0a 00 `...`TCRTva..p.. 58c0: 61 a4 4b 45 4c 56 60 14 10 5f 54 53 50 00 77 54 a.KELV`.._TSP.wT 58d0: 53 50 5f 0a 01 60 a4 60 10 4b 27 5c 5f 53 42 5f SP_..`.`.K'\_SB_ 58e0: 08 58 43 50 44 0a 00 08 58 4e 50 54 0a 01 08 58 .XCPD...XNPT...X 58f0: 43 41 50 0a 02 08 58 44 43 50 0a 04 08 58 44 43 CAP...XDCP...XDC 5900: 54 0a 08 08 58 44 53 54 0a 0a 08 58 4c 43 50 0a T...XDST...XLCP. 5910: 0c 08 58 4c 43 54 0a 10 08 58 4c 53 54 0a 12 08 ..XLCT...XLST... 5920: 58 53 43 50 0a 14 08 58 53 43 54 0a 18 08 58 53 XSCP...XSCT...XS 5930: 53 54 0a 1a 08 58 52 43 54 0a 1c 5b 01 4d 55 54 ST...XRCT..[.MUT 5940: 45 00 14 38 52 42 50 45 01 5b 23 4d 55 54 45 e8 E..8RBPE.[#MUTE. 5950: 03 72 68 5c 50 43 49 42 60 5b 80 50 43 46 47 00 .rh\PCIB`[.PCFG. 5960: 60 0a 01 5b 81 0b 50 43 46 47 01 58 43 46 47 08 `..[..PCFG.XCFG. 5970: 5b 27 4d 55 54 45 a4 58 43 46 47 14 41 04 52 57 ['MUTE.XCFG.A.RW 5980: 50 45 01 5b 23 4d 55 54 45 e8 03 7b 68 0c fe ff PE.[#MUTE..{h... 5990: ff ff 68 72 68 5c 50 43 49 42 60 5b 80 50 43 46 ..hrh\PCIB`[.PCF 59a0: 47 00 60 0a 02 5b 81 0b 50 43 46 47 02 58 43 46 G.`..[..PCFG.XCF 59b0: 47 10 5b 27 4d 55 54 45 a4 58 43 46 47 14 41 04 G.['MUTE.XCFG.A. 59c0: 52 44 50 45 01 5b 23 4d 55 54 45 e8 03 7b 68 0c RDPE.[#MUTE..{h. 59d0: fc ff ff ff 68 72 68 5c 50 43 49 42 60 5b 80 50 ....hrh\PCIB`[.P 59e0: 43 46 47 00 60 0a 04 5b 81 0b 50 43 46 47 03 58 CFG.`..[..PCFG.X 59f0: 43 46 47 20 5b 27 4d 55 54 45 a4 58 43 46 47 14 CFG ['MUTE.XCFG. 5a00: 39 57 42 50 45 02 5b 23 4d 55 54 45 ff 0f 72 68 9WBPE.[#MUTE..rh 5a10: 5c 50 43 49 42 60 5b 80 50 43 46 47 00 60 0a 01 \PCIB`[.PCFG.`.. 5a20: 5b 81 0b 50 43 46 47 01 58 43 46 47 08 70 69 58 [..PCFG.XCFG.piX 5a30: 43 46 47 5b 27 4d 55 54 45 14 42 04 57 57 50 45 CFG['MUTE.B.WWPE 5a40: 02 5b 23 4d 55 54 45 e8 03 7b 68 0c fe ff ff ff .[#MUTE..{h..... 5a50: 68 72 68 5c 50 43 49 42 60 5b 80 50 43 46 47 00 hrh\PCIB`[.PCFG. 5a60: 60 0a 02 5b 81 0b 50 43 46 47 02 58 43 46 47 10 `..[..PCFG.XCFG. 5a70: 70 69 58 43 46 47 5b 27 4d 55 54 45 14 42 04 57 piXCFG['MUTE.B.W 5a80: 44 50 45 02 5b 23 4d 55 54 45 e8 03 7b 68 0c fc DPE.[#MUTE..{h.. 5a90: ff ff ff 68 72 68 5c 50 43 49 42 60 5b 80 50 43 ...hrh\PCIB`[.PC 5aa0: 46 47 00 60 0a 04 5b 81 0b 50 43 46 47 03 58 43 FG.`..[..PCFG.XC 5ab0: 46 47 20 70 69 58 43 46 47 5b 27 4d 55 54 45 14 FG piXCFG['MUTE. 5ac0: 4a 04 52 57 44 50 03 5b 23 4d 55 54 45 e8 03 7b J.RWDP.[#MUTE..{ 5ad0: 68 0c fc ff ff ff 68 72 68 5c 50 43 49 42 60 5b h.....hrh\PCIB`[ 5ae0: 80 50 43 46 47 00 60 0a 04 5b 81 0b 50 43 46 47 .PCFG.`..[..PCFG 5af0: 03 58 43 46 47 20 7b 58 43 46 47 6a 61 7d 61 69 .XCFG {XCFGja}ai 5b00: 58 43 46 47 5b 27 4d 55 54 45 14 49 04 52 50 4d XCFG['MUTE.I.RPM 5b10: 45 01 72 68 0a 84 60 70 5c 2e 5f 53 42 5f 52 44 E.rh..`p\._SB_RD 5b20: 50 45 60 61 a0 0b 93 61 0c ff ff ff ff a4 0a 00 PE`a...a........ 5b30: a1 23 a0 1e 90 61 0c 00 00 01 00 5c 2e 5f 53 42 .#...a.....\._SB 5b40: 5f 57 44 50 45 60 7b 61 0c 00 00 01 00 00 a4 0a _WDPE`{a........ 5b50: 01 a4 0a 00 10 44 15 5c 5f 53 42 5f 10 4c 14 50 .....D.\_SB_.L.P 5b60: 43 49 30 08 43 52 53 5f 11 4c 08 0a 88 88 0d 00 CI0.CRS_.L...... 5b70: 02 0c 00 00 00 00 00 ff 00 00 00 00 01 47 01 f8 .............G.. 5b80: 0c f8 0c 01 08 88 0d 00 01 0c 03 00 00 00 00 f7 ................ 5b90: 0c 00 00 f8 0c 88 0d 00 01 0c 03 00 00 00 0d ff ................ 5ba0: ff 00 00 00 f3 87 17 00 00 0c 03 00 00 00 00 00 ................ 5bb0: 00 0a 00 ff ff 0b 00 00 00 00 00 00 00 02 00 87 ................ 5bc0: 17 00 00 0c 03 00 00 00 00 00 00 00 00 00 00 00 ................ 5bd0: 00 00 00 00 00 00 00 00 00 87 17 00 00 0c 03 00 ................ 5be0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 5bf0: 00 00 00 79 00 8a 43 52 53 5f 0a 5c 4d 49 4e 35 ...y..CRS_.\MIN5 5c00: 8a 43 52 53 5f 0a 60 4d 41 58 35 8a 43 52 53 5f .CRS_.`MAX5.CRS_ 5c10: 0a 68 4c 45 4e 35 8a 43 52 53 5f 0a 76 4d 49 4e .hLEN5.CRS_.vMIN 5c20: 36 8a 43 52 53 5f 0a 7a 4d 41 58 36 8a 43 52 53 6.CRS_.zMAX6.CRS 5c30: 5f 0a 82 4c 45 4e 36 14 41 07 5f 43 52 53 00 70 _..LEN6.A._CRS.p 5c40: 4d 47 31 42 4d 49 4e 35 70 4d 47 31 4c 4c 45 4e MG1BMIN5pMG1LLEN 5c50: 35 70 4d 47 31 4c 60 a0 0d 60 72 4d 49 4e 35 76 5pMG1L`..`rMIN5v 5c60: 60 4d 41 58 35 70 4d 47 32 42 4d 49 4e 36 72 4d `MAX5pMG2BMIN6rM 5c70: 49 4e 36 0c 00 00 01 00 4d 49 4e 36 70 4d 47 32 IN6.....MIN6pMG2 5c80: 4c 4c 45 4e 36 74 4c 45 4e 36 0c 00 00 01 00 4c LLEN6tLEN6.....L 5c90: 45 4e 36 70 4c 45 4e 36 60 72 4d 49 4e 36 76 60 EN6pLEN6`rMIN6v` 5ca0: 4d 41 58 36 a4 43 52 53 5f 08 57 4f 54 42 0a 00 MAX6.CRS_.WOTB.. 5cb0: 08 57 53 53 42 0a 00 08 57 41 58 42 0a 00 14 4b .WSSB...WAXB...K 5cc0: 06 5f 50 54 53 01 70 68 44 42 47 38 50 54 53 5f ._PTS.phDBG8PTS_ 5cd0: 68 70 0a 00 88 57 41 4b 50 0a 00 00 70 0a 00 88 hp...WAKP...p... 5ce0: 57 41 4b 50 0a 01 00 a0 12 90 93 68 0a 04 93 4f WAKP.......h...O 5cf0: 53 46 4c 0a 02 5b 22 0b b8 0b 70 41 53 53 42 57 SFL..["...pASSBW 5d00: 53 53 42 70 41 4f 54 42 57 4f 54 42 70 41 41 58 SSBpAOTBWOTBpAAX 5d10: 42 57 41 58 42 70 68 41 53 53 42 70 4f 53 46 4c BWAXBphASSBpOSFL 5d20: 41 4f 54 42 70 00 41 41 58 42 14 4c 05 5f 57 41 AOTBp.AAXB.L._WA 5d30: 4b 01 79 68 0a 04 44 42 47 38 57 41 4b 5f 68 a0 K.yh..DBG8WAK_h. 5d40: 20 41 53 53 42 70 57 53 53 42 41 53 53 42 70 57 ASSBpWSSBASSBpW 5d50: 4f 54 42 41 4f 54 42 70 57 41 58 42 41 41 58 42 OTBAOTBpWAXBAAXB 5d60: a0 15 83 88 57 41 4b 50 0a 00 00 70 0a 00 88 57 ....WAKP...p...W 5d70: 41 4b 50 0a 01 00 a1 0b 70 68 88 57 41 4b 50 0a AKP.....ph.WAKP. 5d80: 01 00 a4 57 41 4b 50 5b 80 5c 2f 03 5f 53 42 5f ...WAKP[.\/._SB_ 5d90: 50 43 49 30 53 4b 50 44 02 41 43 50 48 0a 02 5b PCI0SKPD.ACPH..[ 5da0: 81 22 5c 2f 03 5f 53 42 5f 50 43 49 30 53 4b 50 ."\/._SB_PCI0SKP 5db0: 44 01 41 50 57 52 08 53 50 4c 56 03 4f 53 46 47 D.APWR.SPLV.OSFG 5dc0: 02 00 03 10 28 5c 2f 03 5f 53 42 5f 50 43 49 30 ....(\/._SB_PCI0 5dd0: 49 44 45 30 5b 80 50 41 52 39 02 0a 09 0a 01 5b IDE0[.PAR9.....[ 5de0: 81 0b 50 41 52 39 01 50 41 4d 44 08 10 28 5c 2f ..PAR9.PAMD..(\/ 5df0: 03 5f 53 42 5f 50 43 49 30 49 44 45 31 5b 80 53 ._SB_PCI0IDE1[.S 5e00: 41 52 39 02 0a 09 0a 01 5b 81 0b 53 41 52 39 01 AR9.....[..SAR9. 5e10: 53 41 4d 44 08 08 5c 5f 53 30 5f 12 0a 04 0a 00 SAMD..\_S0_..... 5e20: 0a 00 0a 00 0a 00 a0 16 53 53 31 5f 08 5c 5f 53 ........SS1_.\_S 5e30: 31 5f 12 0a 04 0a 01 0a 00 0a 00 0a 00 a0 16 53 1_.............S 5e40: 53 33 5f 08 5c 5f 53 33 5f 12 0a 04 0a 05 0a 00 S3_.\_S3_....... 5e50: 0a 00 0a 00 a0 16 53 53 34 5f 08 5c 5f 53 34 5f ......SS4_.\_S4_ 5e60: 12 0a 04 0a 06 0a 00 0a 00 0a 00 08 5c 5f 53 35 ............\_S5 5e70: 5f 12 0a 04 0a 07 0a 00 0a 00 0a 00 10 25 5c 2e _............%\. 5e80: 5f 53 42 5f 50 43 49 30 14 19 5f 49 4e 49 00 5c _SB_PCI0.._INI.\ 5e90: 2f 04 5f 53 42 5f 50 43 49 30 53 42 52 47 4f 45 /._SB_PCI0SBRGOE 5ea0: 4d 49 14 41 06 50 54 53 5f 01 a0 49 05 68 5c 2f MI.A.PTS_..I.h\/ 5eb0: 05 5f 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 ._SB_PCI0SBRGEC0 5ec0: 5f 45 43 30 53 68 5c 2f 03 5f 53 42 5f 50 43 49 _EC0Sh\/._SB_PCI 5ed0: 30 4e 50 54 53 68 5c 2f 04 5f 53 42 5f 50 43 49 0NPTSh\/._SB_PCI 5ee0: 30 53 42 52 47 53 50 54 53 68 5c 2f 04 5f 53 42 0SBRGSPTSh\/._SB 5ef0: 5f 50 43 49 30 53 42 52 47 4f 45 4d 53 68 5c 4c _PCI0SBRGOEMSh\L 5f00: 50 46 53 68 14 4c 05 57 41 4b 5f 01 5c 2f 05 5f PFSh.L.WAK_.\/._ 5f10: 53 42 5f 50 43 49 30 53 42 52 47 45 43 30 5f 45 SB_PCI0SBRGEC0_E 5f20: 43 30 57 68 5c 2f 03 5f 53 42 5f 50 43 49 30 4e C0Wh\/._SB_PCI0N 5f30: 57 41 4b 68 5c 2f 04 5f 53 42 5f 50 43 49 30 53 WAKh\/._SB_PCI0S 5f40: 42 52 47 53 57 41 4b 68 5c 2f 04 5f 53 42 5f 50 BRGSWAKh\/._SB_P 5f50: 43 49 30 53 42 52 47 4f 45 4d 49 5c 4c 50 57 4b CI0SBRGOEMI\LPWK 5f60: 68 h FACS @ 0x1f790000 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: 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 @ 0x1f780200 0000: 46 41 43 50 81 00 00 00 01 b7 41 20 4d 20 49 20 FACP......A M I 0010: 4f 45 4d 46 41 43 50 20 03 08 00 03 4d 53 46 54 OEMFACP ....MSFT 0020: 97 00 00 00 00 00 79 1f 00 04 78 1f 01 02 09 00 ......y...x..... 0030: b2 00 00 00 e1 1e 00 e2 00 08 00 00 00 00 00 00 ................ 0040: 04 08 00 00 00 00 00 00 20 08 00 00 08 08 00 00 ........ ....... 0050: 28 08 00 00 00 00 00 00 04 02 01 04 08 00 00 e3 (............... 0060: 64 00 e8 03 00 04 10 00 01 03 0d 00 00 03 00 00 d............... 0070: a5 08 00 00 01 08 00 00 f9 0c 00 00 00 00 00 00 ................ 0080: 06 . APIC @ 0x1f780390 0000: 41 50 49 43 68 00 00 00 01 1f 41 20 4d 20 49 20 APICh.....A M I 0010: 4f 45 4d 41 50 49 43 20 03 08 00 03 4d 53 46 54 OEMAPIC ....MSFT 0020: 97 00 00 00 00 00 e0 fe 01 00 00 00 00 08 01 00 ................ 0030: 01 00 00 00 01 0c 01 00 00 00 c0 fe 00 00 00 00 ................ 0040: 02 0a 00 00 02 00 00 00 00 00 02 0a 00 09 09 00 ................ 0050: 00 00 0d 00 02 0a 00 00 02 00 00 00 00 00 02 0a ................ 0060: 00 09 09 00 00 00 0d 00 ........ OEMB @ 0x1f790040 0000: 4f 45 4d 42 46 00 00 00 01 86 41 20 4d 20 49 20 OEMBF.....A M I 0010: 41 4d 49 5f 4f 45 4d 20 03 08 00 03 4d 53 46 54 AMI_OEM ....MSFT 0020: 97 00 00 00 0c 00 14 00 00 80 1f 00 00 f8 ff 00 ................ 0030: 00 0d 00 00 00 01 00 00 00 80 1f 00 00 80 e0 00 ................ 0040: 00 00 00 00 00 00 ...... MCFG @ 0x1f786370 0000: 4d 43 46 47 3c 00 00 00 01 93 41 20 4d 20 49 20 MCFG<.....A M I 0010: 4f 45 4d 4d 43 46 47 20 03 08 00 03 4d 53 46 54 OEMMCFG ....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 ff 00 00 00 00 ............ RSDT @ 0x1f780000 0000: 52 53 44 54 34 00 00 00 01 35 41 20 4d 20 49 20 RSDT4....5A M I 0010: 4f 45 4d 52 53 44 54 20 03 08 00 03 4d 53 46 54 OEMRSDT ....MSFT 0020: 97 00 00 00 00 02 78 1f 90 03 78 1f 40 00 79 1f ......x...x.@.y. 0030: 70 63 78 1f pcx. RSD PTR @ 0xfbe60 0000: 52 53 44 20 50 54 52 20 9f 41 43 50 49 41 4d 00 RSD PTR .ACPIAM. 0010: 00 00 78 1f ..x. ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Add option to passively listen for PCIE hotplug events 2008-11-14 17:27 ` Alan Jenkins @ 2008-11-14 17:35 ` Matthew Garrett 0 siblings, 0 replies; 17+ messages in thread From: Matthew Garrett @ 2008-11-14 17:35 UTC (permalink / raw) To: Alan Jenkins; +Cc: linux-kernel, linux-pci Ha. Right. Can you change the references to P0P7 to P0P6 instead and see if that's any happier? -- Matthew Garrett | mjg59@srcf.ucam.org ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2008-11-14 17:36 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <bspwK-420-11@gated-at.bofh.it>
[not found] ` <bujnh-2fr-5@gated-at.bofh.it>
[not found] ` <bujwT-2Ew-5@gated-at.bofh.it>
[not found] ` <buml1-6du-3@gated-at.bofh.it>
2008-11-04 11:29 ` Add option to passively listen for PCIE hotplug events Alan Jenkins
2008-11-04 12:47 ` Matthew Garrett
2008-11-04 13:32 ` Matthew Garrett
2008-11-04 14:26 ` Alan Jenkins
2008-11-04 14:33 ` Matthew Garrett
2008-11-04 15:01 ` Alan Jenkins
2008-11-04 15:11 ` Matthew Garrett
2008-11-04 15:44 ` Alan Jenkins
2008-11-04 15:57 ` Matthew Garrett
2008-11-04 16:22 ` Alan Jenkins
2008-11-09 16:08 ` Alan Jenkins
2008-11-12 23:34 ` Matthew Garrett
2008-11-14 16:16 ` Matthew Garrett
2008-11-14 17:07 ` Alan Jenkins
2008-11-14 17:12 ` Matthew Garrett
2008-11-14 17:27 ` Alan Jenkins
2008-11-14 17:35 ` Matthew Garrett
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox