search for: dsdt

Displaying 20 results from an estimated 366 matches for "dsdt".

Did you mean: dsdb
2008 Jan 18
7
[Patch] Make memory hole for PCI Express bigger and prevent roll-over
...: 0xC0000000-0xF5000000. This might be overkill...but it should only matter for 32-bit guest OSes assigned more than 3GB of RAM. - Prevents addresses from above 0xF50000000 from being assigned to PCI devices by the HVM BIOS (and prevents rollover to 0x00000000) I also have some code to parse the DSDT''s ASL code to more dynamically assign the memory hole for PCI BARs. Do you think it''s worth worrying about this, since again it should only come in handy if you have more than 3GB of RAM aassigned to a 32-bit guest OS? I tried the approach of having two different chunks of ASL c...
2008 Sep 17
1
ACPI "blacklist" question
Hello, I have recently updated a machine to 7-stable. ACPI doesn't seem to work correctly on this machine. With earlier versions of FreeBSD (including the latest RELENG_6), I got this line in dmesg: ACPI disabled by blacklist. Contact your BIOS vendor. And everything was fine. The box runs perfectly well with ACPI disabled. (I can't get a BIOS update because the mainboard is too
2012 Nov 07
1
State of memdisk-acpi
I tested the memdisk-acpi branch with following results: - Bochs The BIOS provides a RSDT. Available tables are RSDT, FACP, DSDT, FACS, APIC, SSDT. memdisk-acpi is able to hook the SSDT. - VMware The BIOS provides a RSDT and XSDT. Available tables are RSDT, FACP, DSDT(*), FACS(*), BOOT(*), APIC(*) and XSDT, FACP, DSDT(*), FACS(*), BOOT(*), APIC(*). Tables marked with an asterisk (*) are identical; FACP tables from RSDT and...
2013 Feb 18
5
[PATCH 0/2] genid: ACPI Windows generation ID updates
...device in ACPI table. Frediano Ziglio (2): genid: Update Windows generation ID genid: Introduce again Windows generation ID device docs/misc/xenstore-paths.markdown | 6 ++++ tools/firmware/hvmloader/acpi/build.c | 49 ++++++++++++++++++++++---------- tools/firmware/hvmloader/acpi/dsdt.asl | 25 ++++++++++++++++ 3 files changed, 65 insertions(+), 15 deletions(-) -- 1.7.9.5
2017 Jun 21
4
How to apply a system of ordinary differential equations to a cell grid?
...g a compartmental model based on a system of ordinary differential equations (ODEs). Here is an example to represent the system of ODEs: solve_sir_model <- function (times, parameters) { sir_model <- function (times, states, parameters) { with(as.list(c(states, parameters)), { dSdt <- -beta*S*I dIdt <- beta*S*I-gamma*I dRdt <- gamma*I dNdt <- dSdt + dIdt + dRdt return(list(c(dSdt, dIdt, dRdt, dNdt))) }) } states <- c(S = 99, I = 1, R = 0, N = 100) return(ode(y = states, times = times, func = sir_model, parms = parameters)) }...
2006 Aug 16
0
[PATCH]HVM acpi dsdt table update
Attched please review the patch for hvm acpi dsdt table update: 1)Fixed HCT test "Unreported Memory and I/O Port test" for memory range 0xC0000~0xFFFFF and IO 0x378 2)Make consistent with non-acpi os by enabling LPT1, remove com2 which is conflict with usb mouse 3)Fixed the USB HID-Compliant mouse when set usbdevice=''tablet'...
2015 Mar 12
3
Bug or not?
...morrow at free.fr> wrote: > Hi Evan! > > Sorry for taking so long before answering... > Thanks for the greps! It appears you have a newer version of apple_gmux than I have, so let's see if something also changed in the _DSM method. Could you please run - as root - `acpidump -b -n DSDT` which will create a file named dsdt.dat containing the DSDT table, and then run `iasl -d dsdt.dat` and send me the resulting dsdt.dsl file? > That way I will have the uuid, the available functions and their version for your _DSM method. > > Regarding bringing the clocks down, you could ad...
2013 Oct 28
0
Re: [Qemu-devel] Hvmloader: Modify ACPI to only supply _EJ0 methods for PCIslots that support hotplug by runtime patching
...and doesn''t affect the system with > traditional qemu. > > > > > > > > --- a/tools/firmware/hvmloader/ovmf.c > > > +++ b/tools/firmware/hvmloader/ovmf.c > > > @@ -79,7 +79,11 @@ static void ovmf_acpi_build_tables(void) > > > .dsdt_anycpu = dsdt_anycpu, > > > .dsdt_anycpu_len = dsdt_anycpu_len, > > > .dsdt_15cpu = NULL, > > > - .dsdt_15cpu_len = 0 > > > + .dsdt_15cpu_len = 0, > > > + .aml_ej0_name = NULL, > > > + .aml_adr_dword...
2015 Mar 14
0
Bug or not?
...On Thu, Mar 12, 2015 at 1:37 AM, Pierre Moreau <pierre.morrow at free.fr> wrote: >> Hi Evan, >> >> I didn't know there were so many different versions of acpidump in the wild! :D >> So apparently, you'll need to replace the first command by 'acpidump -b -t DSDT -o dsdt.dat' - we need the DSDT table in binary format for iasl to disassemble. >> >> Regards, >> >> Pierre >> >> >> >>> On 12 Mar 2015, at 06:47, Evan Foss <evanfoss at gmail.com> wrote: >>> >>> Hi Pierre, >>>...
2008 May 11
1
Porting Bochs bios to Xen/hvmloader?
Hello, I found out what the problem in my other thread was, now I need to solve it: I need to port a modified Bochs bios to Xen x86. However, a file of the original source seems missing: acpi-dsdt.hex. It''s neither in the tools/firmware/hvmloader/acpi directory nor in the tools/firmware/rombios one. Also applying the diffs or manually editing the source probably won''t work since the bios included in the Xen soure seems to be a modified Bochs bios. Can anyone of you what has...
2017 Jul 17
0
How to apply a system of ordinary differential equations to a cell grid?
...rmed within > func). I have tested the method but I don't understand why it doesn't work with one time step: solve_sir_model <- function (times, parameters) { sir_model <- function (times, states, parameters) { with(as.list(c(states, parameters)), { dSdt <- -beta*S*I dIdt <- beta*S*I-gamma*I dRdt <- gamma*I dNdt <- dSdt + dIdt + dRdt return(list(c(dSdt, dIdt, dRdt, dNdt))) }) } states <- c(S = 99, I = 1, R = 0, N = 100) return(ode(y = states, times = times, func = s...
2007 Aug 09
2
Bad FADT and timer going backwards
Hello! I am encountering a problem with one of the machines I am using and the timer going backwards. It looks like the problem is due to to a bad PM-Timer entry being found. Though when debugging further, the real source of the problem stems from an ACPI table of type DSDT being parsed as an FADT during boot and certainly a bogus PM-Timer is found there. Here''s the output from ''xm dmesg'' with an additional signature check of the alleged FADT, which now prevents it from picking the bogus PM-Timer port. I am also dumping how the addresses...
2011 Oct 15
1
VGA PassThrough works for EVGA GTX 460 SE 1024 MB
...mpil again make -j4 tools Install make -j4 install-tools PYTHON_PREFIX_ARG= Since my old domU XP 64 bits was using GT 440, I replaced my old graphic card with the EVGA GTX 460 SE. Everything was OK (except that it is impossible to restart the domU withtout restarting the dom0 as usual) About dsdt.asl.patch file ================= There is no real changes from the patches I''ve sent in August/September. The change is only for dsdt.asl.patch For your information concerning the patch for dsd (I''ve already give the informations in an other mail but I will give it again) Get...
2015 Mar 11
0
Bug or not?
Hi Evan! Sorry for taking so long before answering... Thanks for the greps! It appears you have a newer version of apple_gmux than I have, so let's see if something also changed in the _DSM method. Could you please run - as root - `acpidump -b -n DSDT` which will create a file named dsdt.dat containing the DSDT table, and then run `iasl -d dsdt.dat` and send me the resulting dsdt.dsl file? That way I will have the uuid, the available functions and their version for your _DSM method. Regarding bringing the clocks down, you could add a fake perfo...
2015 Feb 15
3
Bug or not?
The first grep of dmesg is for the apple info so you know exactly what box I have. The second is to show that I am booting in EFI mode and not some bogus bios compatibility thing. The third is to show the gmux version. The fourth is to answer the question you actually asked. $ cat /proc/version Linux version 3.19.0 (root at turingatlarge) (gcc version 4.7.3 (Gentoo 4.7.3-r1 p1.4, pie-0.5.5) ) #3
2017 Jun 21
0
How to apply a system of ordinary differential equations to a cell grid?
...stem of ordinary differential equations (ODEs). Here is an example to represent the system of ODEs: > > solve_sir_model <- function (times, parameters) { > > sir_model <- function (times, states, parameters) { > > with(as.list(c(states, parameters)), { > > dSdt <- -beta*S*I > dIdt <- beta*S*I-gamma*I > dRdt <- gamma*I > dNdt <- dSdt + dIdt + dRdt > > return(list(c(dSdt, dIdt, dRdt, dNdt))) > > }) > } > > states <- c(S = 99, I = 1, R = 0, N = 100) > return(ode(y = states, times =...
2012 Apr 24
3
xen acpi cpufreq driver
Hi, i''m not sure if i understood the new acpi xen cpufreq driver - here''s the output when loading xen_acpi_processor module in linux 3.4: dom0 dmesg: [ 32.728151] xen-acpi-processor: (CX): Hypervisor error (-22) for ACPI CPU8 [ 32.728156] xen-acpi-processor: (CX): Hypervisor error (-22) for ACPI CPU9 [ 32.728160] xen-acpi-processor: (CX): Hypervisor error (-22) for
2011 Nov 29
18
[PATCH 0 of 6] Add support for a VM generation ID virtual device (v2)
The following is a revised patch series to add support for a VM generation ID virtual device for HVM guests. The basic requirements of this device are as follows: - It must be exposed somewhere in ACPI namespace with a _CID of "VM_Gen_Counter". - It must also include a _DDN of "VM_Gen_Counter". - It must contain a _HID object but no particular value is required. - It must
2012 Oct 13
6
[Bug 55948] New: [nvd9 optimus] drm/nouveau/bios: attempt to fetch entire acpi rom image in one shot breaks module load
https://bugs.freedesktop.org/show_bug.cgi?id=55948 Priority: medium Bug ID: 55948 Assignee: nouveau at lists.freedesktop.org Summary: [nvd9 optimus] drm/nouveau/bios: attempt to fetch entire acpi rom image in one shot breaks module load QA Contact: xorg-team at lists.x.org Severity: major Classification:
2008 Sep 11
2
alpm(4) I/O range is claimed by ACPI
Hi, How can I load the alpm(4) module for SMBus support on my ASUS Vintage AH-1 system? It appears the I/O range it uses is claimed by the acpi(4) driver. Can I override the mapping in some way i.e. tell ACPI not to claim the range? I don't see anything obvious about this in the acpi(4) man page. thanks, BMS