[sisyphus] возвращаясь к вопросу о i915g

Artem u2u на nm.ru
Пн Авг 1 03:37:42 MSD 2005


Sergey Vlasov wrote:

>Впрочем, ни один модуль drm не будет полностью нормально работать при
>активном vesafb (или вообще любом *fb), пока эти подсистемы ядра не
>перепишут очередной раз, чтобы drm и fb использовали какие-то общие
>компоненты. 
>
Да, при попытке запуска gears во время работающего в framebuffer-e 
mplayer-а  xorg перезагружается (интересно только - почему иногда он 
перезагружается на 8-ю консоль? А второй раз он - на 7-й перезапустился...).
    Теперь - непосредственно об fb. В результате непродолжительных 
мозговых усилий мной был порожден до банальности простой патч для 
kernel-2.6.12, позволяющий intelfb работать с i915GM . Затем, 
подозревая, что могут быть "подлянки" наподобие имевшихся у vesafb, я 
опробовал video / b44(выгрузка-загрузка) / xorg-drm во всевозможных 
сочетаниях и извращениях. Вплоть до запуска mplayer в fb и чего-либо 
glx-ного в xorg и конфигуряния сетевухи / модулей из xterm. Никаких 
мертвых зависаний / ранее описанных глюков сетевухи не наблюдалось и 
пока не наблюдается. Сообщения об irq16 так же не наблюдались. в dmesg и 
12-й консоли - ничего подозрительного замечено не было. Приаттачил патч 
и вещдок в виде dmesg.    :-D
C suspend уже сегодня разбираться нету сил.
    Особенность моей ситуации - согласно инфы с 
http://www.xfree86.org/~dawes/intelfb.html - при наличии non-CRT 
устройства модуль intelfb надо встраивать в ядро и передавать ему 
параметр vga=xxx при bootstrap.


-------------- next part --------------
diff -Nur kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfbdrv.c kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfbdrv.c
--- kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfbdrv.c	2005-07-31 18:43:07 +0300
+++ kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfbdrv.c	2005-07-31 21:43:30 +0300
@@ -1,7 +1,7 @@
 /*
  * intelfb
  *
- * Linux framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G
+ * Linux framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G/915GM
  * integrated graphics chips.
  *
  * Copyright ╘ 2002, 2003 David Dawes <dawes at xfree86.org>
@@ -190,6 +190,7 @@
 	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_85XGM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_85XGM },
 	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_865G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_865G },
 	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915G },
+	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915GM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915GM },
 	{ 0, }
 };
 
@@ -549,7 +550,7 @@
 	}
 
 	/* Set base addresses. */
-	if (ent->device == PCI_DEVICE_ID_INTEL_915G) {
+	if ((ent->device == PCI_DEVICE_ID_INTEL_915G) || (ent->device == PCI_DEVICE_ID_INTEL_915GM)) {
 		aperture_bar = 2;
 		mmio_bar = 0;
 		/* Disable HW cursor on 915G (not implemented yet) */
diff -Nur kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfb.h kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfb.h
--- kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfb.h	2005-06-17 22:48:29 +0300
+++ kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfb.h	2005-07-31 21:36:06 +0300
@@ -10,7 +10,7 @@
 /*** Version/name ***/
 #define INTELFB_VERSION			"0.9.2"
 #define INTELFB_MODULE_NAME		"intelfb"
-#define SUPPORTED_CHIPSETS		"830M/845G/852GM/855GM/865G/915G"
+#define SUPPORTED_CHIPSETS		"830M/845G/852GM/855GM/865G/915G/915GM"
 
 
 /*** Debug/feature defines ***/
@@ -47,6 +47,7 @@
 #define PCI_DEVICE_ID_INTEL_85XGM	0x3582
 #define PCI_DEVICE_ID_INTEL_865G	0x2572
 #define PCI_DEVICE_ID_INTEL_915G	0x2582
+#define PCI_DEVICE_ID_INTEL_915GM	0x2592
 
 /* Size of MMIO region */
 #define INTEL_REG_SIZE			0x80000
@@ -119,7 +120,8 @@
 	INTEL_855GM,
 	INTEL_855GME,
 	INTEL_865G,
-	INTEL_915G
+	INTEL_915G,
+	INTEL_915GM
 };
 
 struct intelfb_hwstate {
diff -Nur kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfbhw.c kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfbhw.c
--- kernel-image-std26-up-2.6.12-alt1.orig/kernel-source-2.6.12/drivers/video/intelfb/intelfbhw.c	2005-06-17 22:48:29 +0300
+++ kernel-image-std26-up-2.6.12-alt1/kernel-source-2.6.12/drivers/video/intelfb/intelfbhw.c	2005-07-31 21:47:23 +0300
@@ -103,6 +103,11 @@
 		*chipset = INTEL_915G;
 		*mobile = 0;
 		return 0;
+	case PCI_DEVICE_ID_INTEL_915GM:
+		*name = "Intel(R) 915GM";
+		*chipset = INTEL_915GM;
+		*mobile = 1;
+		return 0;
 	default:
 		return 1;
 	}
-------------- next part --------------
Linux version 2.6.12-std26-up-alt1 (user at localhost.localdomain) (gcc version 3.3.3 20040412 (ALT Linux, build 3.3.3-alt8)) #1 Mon Aug 1 00:34:01 EEST 2005
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000000f7d0000 (usable)
 BIOS-e820: 000000000f7d0000 - 000000000f7efc00 (reserved)
 BIOS-e820: 000000000f7efc00 - 000000000f7fb000 (ACPI NVS)
 BIOS-e820: 000000000f7fb000 - 000000000f800000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec02000 (reserved)
 BIOS-e820: 00000000fed20000 - 00000000fed9b000 (reserved)
 BIOS-e820: 00000000feda0000 - 00000000fedc0000 (reserved)
 BIOS-e820: 00000000ffb00000 - 00000000ffc00000 (reserved)
 BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
0MB HIGHMEM available.
247MB LOWMEM available.
On node 0 totalpages: 63440
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 59344 pages, LIFO batch:31
  HighMem zone: 0 pages, LIFO batch:1
DMI 2.3 present.
ACPI: RSDP (v000 HP                                    ) @ 0x000fe270
ACPI: RSDT (v001 HP     099C     0x21120420 HP   0x00000001) @ 0x0f7efc84
ACPI: FADT (v002 HP     099C     0x00000002 HP   0x00000001) @ 0x0f7efc00
ACPI: MADT (v001 HP     099C     0x00000001 HP   0x00000001) @ 0x0f7efcb8
ACPI: MCFG (v001 HP     099C     0x00000001 HP   0x00000001) @ 0x0f7efd14
ACPI: SSDT (v001 HP       HPQPpc 0x00001001 MSFT 0x0100000e) @ 0x0f7f74ac
ACPI: DSDT (v001 HP       DAU00  0x00010000 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfec01000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Processor #0 6:13 APIC version 20
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode:  Flat.  Using 1 I/O APICs
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 0f800000 (gap: 0f800000:d0800000)
Built 1 zonelists
Kernel command line: root=/dev/hda5  vga=792
mapped APIC to ffffd000 (fec01000)
mapped IOAPIC to ffffc000 (fec00000)
Initializing CPU#0
PID hash table entries: 1024 (order: 10, 16384 bytes)
Detected 1596.535 MHz processor.
Using pmtmr for high-res timesource
Console: colour dummy device 80x25
Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
Memory: 247888k/253760k available (1633k kernel code, 5288k reserved, 761k data, 200k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 3153.92 BogoMIPS (lpj=1576960)
Security Framework v1.0.0 initialized
Capability LSM initialized
Mount-cache hash table entries: 512
CPU: After generic identify, caps: afe9fbff 00100000 00000000 00000000 00000180 00000000 00000000
CPU: After vendor identify, caps: afe9fbff 00100000 00000000 00000000 00000180 00000000 00000000
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
CPU: After all inits, caps: afe9fbff 00100000 00000000 00000040 00000180 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: Intel(R) Pentium(R) M processor 1.60GHz stepping 08
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ACPI: Looking for DSDT in initrd... not found!
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=-1
checking if image is initramfs...it isn't (no cpio magic); looks like an initrd
Freeing initrd memory: 247k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xf0322, last bus=3
PCI: Using MMCONFIG
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20050309
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [C002] (0000:00)
PCI: Probing PCI hardware (bus 00)
Boot video device is 0000:00:02.0
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1
PCI: Transparent bridge - 0000:00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.C002._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.C002.C067._PRT]
ACPI: Embedded Controller [C004] (gpe 16)
ACPI: Power Resource [C1BD] (on)
ACPI: PCI Interrupt Link [C0D7] (IRQs 10 *11)
ACPI: PCI Interrupt Link [C0D8] (IRQs *10 11)
ACPI: PCI Interrupt Link [C0D9] (IRQs *10 11)
ACPI: PCI Interrupt Link [C0DA] (IRQs *10 11)
ACPI: PCI Interrupt Link [C0ED] (IRQs 10 11) *0, disabled.
ACPI: PCI Interrupt Link [C0EE] (IRQs 10 *11)
ACPI: PCI Interrupt Link [C0EF] (IRQs *10 11)
ACPI: PCI Interrupt Link [C0F0] (IRQs 10 11) *0, disabled.
ACPI: Power Resource [C24F] (off)
ACPI: Power Resource [C250] (off)
ACPI: Power Resource [C251] (off)
ACPI: Power Resource [C252] (off)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 12 devices
PnPBIOS: Disabled by ACPI PNP
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
pnp: 00:09: ioport range 0x4d0-0x4d1 has been reserved
pnp: 00:09: ioport range 0x1000-0x107f could not be reserved
pnp: 00:09: ioport range 0x1100-0x113f has been reserved
pnp: 00:09: ioport range 0x1200-0x121f has been reserved
audit: initializing netlink socket (disabled)
audit(1122862386.955:0): initialized
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Initializing Cryptographic API
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Linux agpgart interface v0.101 (c) Dave Jones
agpgart: Detected an Intel 915GM Chipset.
agpgart: Detected 7932K stolen memory.
agpgart: AGP aperture is 256M @ 0xc0000000
intelfb: intelfb_init
intelfb: Framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G/915GM chipsets
intelfb: Version 0.9.2
intelfb: intelfb_setup
intelfb: no options
intelfb: intelfb_pci_register
ACPI: PCI Interrupt 0000:00:02.0[A] -> GSI 16 (level, low) -> IRQ 16
intelfb: fb aperture: 0xc0000000/0x10000000, MMIO region: 0xd0400000/0x80000
intelfb: 00:02.0: Intel(R) 915GM, aperture size 128MB, stolen memory 8060kB
intelfb: fb: 0xc0000000(+ 0x0)/0x7df000 (0xd0200000)
intelfb: MMIO: 0xd0400000/0x80000 (0xe0280000)
intelfb: ring buffer: 0xc07e0000/0x10000 (0xd09e0000)
intelfb: HW cursor: 0x0/0x0 (0x0) (offset 0x0) (phys 0x0)
intelfb: options: vram = 4, accel = 1, hwcursor = 0, fixed = 0, noinit = 0
intelfb: options: mode = ""
intelfb: Non-CRT device is enabled ( LVDS port ).  Disabling mode switching.
intelfb: get_initial_mode
intelfb: Initial info: FB is 0xc0000000/0x7b0000 (7872 kByte)
intelfb: Initial info: mode is 1024x768-32 (4096)
intelfb: update_dinfo
intelfb: intelfb_var_to_depth: bpp: 32, green.length is 8
intelfb: intelfb_get_fix
intelfb: intelfb_set_fbinfo
intelfb: intelfb_init_var
intelfb: Initial video mode is 1024x768-32 at 60.
intelfb: Initial video mode is from 5.
intelfb: update_dinfo
intelfb: intelfb_var_to_depth: bpp: 32, green.length is 8
intelfb: intelfb_get_fix
intelfb: intelfbhw_print_hw_state
hw state dump start
	VGA0_DIVISOR:		0x00031108
	VGA1_DIVISOR:		0x00031406
	VGAPD: 			0x00800080
	VGA0: (m1, m2, n, p1, p2) = (17, 8, 3, 0, 1)
	VGA0: clock is 126000
	VGA1: (m1, m2, n, p1, p2) = (20, 6, 3, 0, 0)
	VGA1: clock is 283200
	DPLL_A:			0x04800000
	DPLL_B:			0x98040000
	FPA0:			0x00031108
	FPA1:			0x00031108
	FPB0:			0x00021307
	FPB1:			0x00031108
	PLLA0: (m1, m2, n, p1, p2) = (17, 8, 3, 0, 1)
	PLLA0: clock is 126000
	PLLA1: (m1, m2, n, p1, p2) = (17, 8, 3, 0, 1)
	PLLA1: clock is 126000
	HTOTAL_A:		0x031f027f
	HBLANK_A:		0x03170287
	HSYNC_A:		0x02ef028f
	VTOTAL_A:		0x020c01df
	VBLANK_A:		0x020401e7
	VSYNC_A:		0x01eb01e9
	SRC_SIZE_A:		0x027f01df
	BCLRPAT_A:		0x00000000
	HTOTAL_B:		0x053f03ff
	HBLANK_B:		0x053f03ff
	HSYNC_B:		0x049f0417
	VTOTAL_B:		0x032502ff
	VBLANK_B:		0x032502ff
	VSYNC_B:		0x03080302
	SRC_SIZE_B:		0x03ff02ff
	BCLRPAT_B:		0x00000000
	ADPA:			0x40008c18
	DVOA:			0x00000000
	DVOB:			0x00480000
	DVOC:			0x00480000
	DVOA_SRCDIM:		0x00000000
	DVOB_SRCDIM:		0x00000000
	DVOC_SRCDIM:		0x00000000
	LVDS:			0xc0308300
	PIPEACONF:		0x00000000
	PIPEBCONF:		0x80000000
	DISPARB:		0x00001d9c
	CURSOR_A_CONTROL:	0x00000000
	CURSOR_B_CONTROL:	0x00000000
	CURSOR_A_BASEADDR:	0x00000000
	CURSOR_B_BASEADDR:	0x00000000
	CURSOR_A_PALETTE:	0x00000000, 0x00000000, 0x00000000, 0x00000000
	CURSOR_B_PALETTE:	0x00000000, 0x00000000, 0x00000000, 0x00000000
	CURSOR_SIZE:		0x00000000
	DSPACNTR:		0x00000000
	DSPBCNTR:		0x99000000
	DSPABASE:		0x00000000
	DSPBBASE:		0x00000000
	DSPASTRIDE:		0x00000000
	DSPBSTRIDE:		0x00001000
	VGACNTRL:		0xa1c4008e
	ADD_ID:			0x00000000
	SWF00			0x00000000
	SWF01			0x00000001
	SWF02			0x00000000
	SWF03			0x00000000
	SWF04			0x00000000
	SWF05			0x00000000
	SWF06			0x00000000
	SWF10			0x01000800
	SWF11			0x00001c00
	SWF12			0x00000000
	SWF13			0x54540000
	SWF14			0xc0000000
	SWF15			0x0000020b
	SWF16			0x00000000
	SWF30			0x00000000
	SWF31			0x00000000
	SWF32			0x00000000
	FENCE0			0x00000000
	FENCE1			0x00000000
	FENCE2			0x00000000
	FENCE3			0x00000000
	FENCE4			0x00000000
	FENCE5			0x00000000
	FENCE6			0x00000000
	FENCE7			0x00000000
	INSTPM			0x00000000
	MEM_MODE		0x00000000
	FW_BLC_0		0x01080108
	FW_BLC_1		0x00000108
hw state dump end
intelfb: Changing the video mode is not supported.
Console: switching to colour frame buffer device 128x48
PNP: PS/2 Controller [PNP0303:C1BA,PNP0f13:C1BB] at 0x60,0x64 irq 1,12
i8042.c: Detected active multiplexing controller, rev 1.1.
serio: i8042 AUX0 port at 0x60,0x64 irq 12
serio: i8042 AUX1 port at 0x60,0x64 irq 12
serio: i8042 AUX2 port at 0x60,0x64 irq 12
serio: i8042 AUX3 port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered
RAMDISK driver initialized: 16 RAM disks of 12288K size 1024 blocksize
mice: PS/2 mouse device common for all mice
md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP established hash table entries: 8192 (order: 4, 65536 bytes)
TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
TCP: Hash tables configured (established 8192 bind 8192)
NET: Registered protocol family 1
ACPI wakeup devices: 
C067 C0BA C0C1 C0C2 C0C3 C0C4 
ACPI: (supports S0 S3 S4 S4bios S5)
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
RAMDISK: Compressed image found at block 0
VFS: Mounted root (romfs filesystem) readonly.
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH6: IDE controller at PCI slot 0000:00:1f.1
ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 16 (level, low) -> IRQ 16
ICH6: chipset revision 3
ICH6: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0x2580-0x2587, BIOS settings: hda:DMA, hdb:DMA
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard on isa0060/serio0
hda: TOSHIBA MK6025GAS, ATA DISK drive
hdb: TSSTcorpCD/DVDW TS-L532A, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
hda: max request size: 128KiB
hda: 117210240 sectors (60011 MB), CHS=65535/16/63, UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 hda3 hda4 < hda5 hda6 hda7 hda8 >
ReiserFS: hda5: found reiserfs format "3.6" with standard journal
ReiserFS: hda5: using ordered data mode
ReiserFS: hda5: journal params: device hda5, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda5: checking transaction log (hda5)
ReiserFS: hda5: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Trying to move old root to /initrd ... failed
Unmounting old root
Trying to free ramdisk memory ... okay
Freeing unused kernel memory: 200k freed
Executing init=/sbin/init
Adding 1050836k swap on /dev/hda2.  Priority:-1 extents:1
Real Time Clock Driver v1.12
SCSI subsystem initialized
ide_scsi: Unknown parameter `units'
ACPI: Battery Slot [C16D] (battery present)
ACPI: Battery Slot [C16C] (battery absent)
ACPI: AC Adapter [C16B] (on-line)
ACPI: Power Button (FF) [PWRF]
ACPI: Sleep Button (CM) [C1E0]
ACPI: Lid Switch [C1E1]
ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
ACPI: Processor [C000] (supports 8 throttling states)
ACPI: Fan [C253] (off)
ACPI: Fan [C254] (off)
ACPI: Fan [C255] (off)
ACPI: Fan [C256] (off)
ACPI: Thermal Zone [TZ1] (63 C)
ACPI: Thermal Zone [TZ2] (50 C)
ACPI: Thermal Zone [TZ3] (34 C)
device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com
ReiserFS: hda7: found reiserfs format "3.6" with standard journal
ReiserFS: hda7: using ordered data mode
ReiserFS: hda7: journal params: device hda7, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda7: checking transaction log (hda7)
ReiserFS: hda7: Using r5 hash to sort names
ReiserFS: hda6: found reiserfs format "3.6" with standard journal
ReiserFS: hda6: using ordered data mode
ReiserFS: hda6: journal params: device hda6, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda6: checking transaction log (hda6)
ReiserFS: hda6: Using r5 hash to sort names
acpi-cpufreq: CPU0 - ACPI performance management activated.
usbcore: registered new driver usbfs
usbcore: registered new driver hub
ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci_hcd 0000:00:1d.7: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1d.7: irq 23, io mem 0xd0580000
PCI: cache line size of 32 is not supported by device 0000:00:1d.7
ehci_hcd 0000:00:1d.7: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
USB Universal Host Controller Interface driver v2.2
ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 23
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1d.0: irq 23, io base 0x00002000
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 17 (level, low) -> IRQ 17
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1d.1: irq 17, io base 0x00002020
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.3[D] -> GSI 19 (level, low) -> IRQ 19
PCI: Setting latency timer of device 0000:00:1d.3 to 64
uhci_hcd 0000:00:1d.3: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4
uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1d.3: irq 19, io base 0x00002060
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
input.c: calling hotplug without a hotplug agent defined
input: PC Speaker
Synaptics Touchpad, model: 1, fw: 6.2, id: 0x25a0b1, caps: 0xa04793/0x300000
serio: Synaptics pass-through port at isa0060/serio4/input0
input.c: calling hotplug without a hotplug agent defined
input: SynPS/2 Synaptics TouchPad on isa0060/serio4
ACPI: PCI Interrupt 0000:00:1e.2[A] -> GSI 21 (level, low) -> IRQ 21
PCI: Setting latency timer of device 0000:00:1e.2 to 64
intel8x0_measure_ac97_clock: measured 49516 usecs
intel8x0: clocking to 48000
hw_random: RNG not detected
Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled
ACPI: PCI Interrupt 0000:00:1e.3[B] -> GSI 22 (level, low) -> IRQ 22
ieee1394: Initialized config rom entry `ip1394'
ohci1394: $Rev: 1250 $ Ben Collins <bcollins at debian.org>
ACPI: PCI Interrupt 0000:02:06.2[C] -> GSI 22 (level, low) -> IRQ 22
ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[d0002000-d00027ff]  Max Packet=[2048]
b44.c:v0.95 (Aug 3, 2004)
ACPI: PCI Interrupt 0000:02:0e.0[A] -> GSI 16 (level, low) -> IRQ 16
eth0: Broadcom 4400 10/100BaseT Ethernet 00:12:79:c1:b2:1f
hdb: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, DMA
Uniform CD-ROM driver Revision: 3.20
ieee1394: Host added: ID:BUS[0-00:1023]  GUID[718b5000298518a6]
[drm] Initialized drm 1.0.0 20040925
[drm] Initialized i915 1.2.0 20041217 on minor 0: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller
[drm] Used old pci detect: framebuffer loaded
mtrr: base(0xc0020000) is not aligned on a size(0x300000) boundary
b44: eth0: Link is down.
b44: eth0: Link is up at 100 Mbps, full duplex.
b44: eth0: Flow control is on for TX and on for RX.


Подробная информация о списке рассылки Sisyphus