search for: isa_bus_to_virt

Displaying 9 results from an estimated 9 matches for "isa_bus_to_virt".

2006 Jun 11
26
Powernow-k8 support
Hi, I recently subscribed to xen-users asking about a powernow-k8 problem, but in the meantime I am not sure if the users-list was the right place for it. So I decided to repeat my question here ;-) My current config is attached. --- snip --- Hi, I recently installed Xen on my AMD64 for my first time and so far, everything seems to work pretty fine. :-) I tried to enable cpu frequency
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
.../* + * Probe for the VMI option ROM + */ +void __init probe_vmi_rom(void) +{ + unsigned long base; + + hypervisor_found = 0; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + VROMHeader *romstart; + romstart = (VROMHeader *)isa_bus_to_virt(base); + if (romstart->romSignature != 0xaa55) + continue; + if (romstart->vRomSignature == VMI_SIGNATURE && !vmi_rom) { + printk(KERN_WARNING "Detected VMI ROM version %d.%d\n", + romstart->APIVersionMajor, + romstart->APIVersionMinor); + vmi_rom = romst...
2007 Apr 18
7
[RFC, PATCH 5/24] i386 Vmi code patching
.../* + * Probe for the VMI option ROM + */ +void __init probe_vmi_rom(void) +{ + unsigned long base; + + hypervisor_found = 0; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + VROMHeader *romstart; + romstart = (VROMHeader *)isa_bus_to_virt(base); + if (romstart->romSignature != 0xaa55) + continue; + if (romstart->vRomSignature == VMI_SIGNATURE && !vmi_rom) { + printk(KERN_WARNING "Detected VMI ROM version %d.%d\n", + romstart->APIVersionMajor, + romstart->APIVersionMinor); + vmi_rom = romst...
2007 Apr 18
0
[PATCH 4/5] Vmi.patch
...+ +/* + * Probe for the VMI option ROM + */ +static inline int __init probe_vmi_rom(void) +{ + unsigned long base; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + struct vrom_header *romstart; + romstart = (struct vrom_header *)isa_bus_to_virt(base); + if (check_vmi_rom(romstart)) { + vmi_rom = romstart; + return 1; + } + } + return 0; +} + +/* + * VMI setup common to all processors + */ +void vmi_bringup(void) +{ + /* We must establish the lowmem mapping for MMU ops to work */ + vmi_ops.set_linear_mapping(0, __PAGE_OFFSET, max_lo...
2007 Apr 18
0
[PATCH 4/5] Vmi.patch
...+ +/* + * Probe for the VMI option ROM + */ +static inline int __init probe_vmi_rom(void) +{ + unsigned long base; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + struct vrom_header *romstart; + romstart = (struct vrom_header *)isa_bus_to_virt(base); + if (check_vmi_rom(romstart)) { + vmi_rom = romstart; + return 1; + } + } + return 0; +} + +/* + * VMI setup common to all processors + */ +void vmi_bringup(void) +{ + /* We must establish the lowmem mapping for MMU ops to work */ + vmi_ops.set_linear_mapping(0, __PAGE_OFFSET, max_lo...
2007 Apr 18
0
[PATCH 5/6] VMI backend for paravirt-ops
...+ +/* + * Probe for the VMI option ROM + */ +static inline int __init probe_vmi_rom(void) +{ + unsigned long base; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + struct vrom_header *romstart; + romstart = (struct vrom_header *)isa_bus_to_virt(base); + if (check_vmi_rom(romstart)) { + vmi_rom = romstart; + return 1; + } + } + return 0; +} + +/* + * VMI setup common to all processors + */ +void vmi_bringup(void) +{ + /* We must establish the lowmem mapping for MMU ops to work */ + vmi_ops.set_linear_mapping(0, __PAGE_OFFSET, max_lo...
2007 Apr 18
0
[PATCH 5/6] VMI backend for paravirt-ops
...+ +/* + * Probe for the VMI option ROM + */ +static inline int __init probe_vmi_rom(void) +{ + unsigned long base; + + /* VMI ROM is in option ROM area, check signature */ + for (base = 0xC0000; base < 0xE0000; base += 2048) { + struct vrom_header *romstart; + romstart = (struct vrom_header *)isa_bus_to_virt(base); + if (check_vmi_rom(romstart)) { + vmi_rom = romstart; + return 1; + } + } + return 0; +} + +/* + * VMI setup common to all processors + */ +void vmi_bringup(void) +{ + /* We must establish the lowmem mapping for MMU ops to work */ + vmi_ops.set_linear_mapping(0, __PAGE_OFFSET, max_lo...
2010 Aug 23
1
Removing VMI kernel support from 2.6.37
...- -/* - * Probe for the VMI option ROM - */ -static inline int __init probe_vmi_rom(void) -{ - unsigned long base; - - /* VMI ROM is in option ROM area, check signature */ - for (base = 0xC0000; base < 0xE0000; base += 2048) { - struct vrom_header *romstart; - romstart = (struct vrom_header *)isa_bus_to_virt(base); - if (check_vmi_rom(romstart)) { - vmi_rom = romstart; - return 1; - } - } - return 0; -} - -/* - * VMI setup common to all processors - */ -void vmi_bringup(void) -{ - /* We must establish the lowmem mapping for MMU ops to work */ - if (vmi_ops.set_linear_mapping) - vmi_ops.set_line...
2010 Aug 23
1
Removing VMI kernel support from 2.6.37
...- -/* - * Probe for the VMI option ROM - */ -static inline int __init probe_vmi_rom(void) -{ - unsigned long base; - - /* VMI ROM is in option ROM area, check signature */ - for (base = 0xC0000; base < 0xE0000; base += 2048) { - struct vrom_header *romstart; - romstart = (struct vrom_header *)isa_bus_to_virt(base); - if (check_vmi_rom(romstart)) { - vmi_rom = romstart; - return 1; - } - } - return 0; -} - -/* - * VMI setup common to all processors - */ -void vmi_bringup(void) -{ - /* We must establish the lowmem mapping for MMU ops to work */ - if (vmi_ops.set_linear_mapping) - vmi_ops.set_line...