Page 6 of 15 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 145

Thread: failed to get i915 symbols, graphics turbo disabled error on boot

  1. #51
    Join Date
    Dec 2010
    Beans
    1

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    Same problem on my Samsung RF-510.

  2. #52
    Join Date
    Oct 2009
    Beans
    30

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    With Ubuntu 10.10: Same on my Samsung Q330 (Nvidia Optimus). But Bios does not have option to disable one or the other, so both kept running -> laptop became lapHOT

    Changed it for an HP DM4 1160 because of that (too bad Nvidia - you are loosing customers). Everything runs out of the box - great. Even Compiz advanced effects...but... during start up I get the same error - briefly... Please note: this DM4 1160 does *not* have any discrete graphics , just the intel core i5 integrated
    Last edited by tomtom12; January 8th, 2011 at 12:08 PM.

  3. #53

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    Hi there all you guys that cannot run your laptops!

    Did you try to look at bios for graphic settings something like: Discreet/Switchable ?

    For now switchable doesn't work for me, but discreet does, I'm on Acer 5745G, i5, nVidia 330m.

  4. #54
    Join Date
    Nov 2007
    Beans
    5

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    Quote Originally Posted by obi22 View Post
    Hi there all you guys that cannot run your laptops!

    Did you try to look at bios for graphic settings something like: Discreet/Switchable ?

    For now switchable doesn't work for me, but discreet does, I'm on Acer 5745G, i5, nVidia 330m.
    Mine runs, but I always get this message on start up.
    the other issue I have is if I close the lid, upon opening, I have to do Ctrl-Alt-F1, then Ctrl-Alt-F7 to get the display back... wasn't an issue under 10.04...

  5. #55
    Join Date
    Dec 2010
    Beans
    1

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    I had the issue too,but i found a method to forbiden it

    sudo gedit /etc/modprobe.d/blacklist.conf
    add
    blacklist intel_ips
    that will work

  6. #56
    Join Date
    Dec 2010
    Beans
    2

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    I had a similar problem with my Thinkpad Edge 11. It has an Intel i3 and only has the integrated graphics on the CPU.

    Using the 2.6.36-24 kernel image the output from the intel_ips module in dmesg was:
    Code:
    [    6.864987] intel ips 0000:00:1f.6: Warning: CPU TDP doesn't match expected value (found 11, expected 18)
    [    6.865045] intel ips 0000:00:1f.6: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [    6.865316] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled
    [    6.916727] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 65535
    I found what appears to be a fix to the overall problem but you still get the error on bootup. Run the following:

    Removing the intel_ips module and inserting it again with:
    Code:
    modprobe -r intel_ips
    modprobe intel_ips
    gave this output from intel_ips in dmesg:
    Code:
    [   82.337585] intel ips 0000:00:1f.6: Warning: CPU TDP doesn't match expected value (found 11, expected 18)
    [   82.340231] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 65535
    If you care, this is how I found this. It'll involve looking through chunks of C in the kernel source:
    The problem was with the intel_ips kernel module, so I got the kernel source, found the code for the module ("find ./ -name intel_ips*" in the root of the kernel source found the file) which was src/linux-2.6.36.2/drivers/platform/x86/intel_ips.c

    In there the error from the module could only come from this code:
    Code:
            if (!ips_get_i915_syms(ips)) {
                    dev_err(&dev->dev, "failed to get i915 symbols, graphics turbo disabled\n");
    And the function it runs starts with

    Code:
    static bool ips_get_i915_syms(struct ips_driver *ips)
    {
            ips->read_mch_val = symbol_get(i915_read_mch_val);
    And the symbols it gets are in the i915 driver. Unfortunately until that module is loaded into the kernel the IPS driver can't get the i915 symbols and so throws the error. There isn't a dependency set within the intel_ips module for the i915 module so it always gives off an error. I tried changing options in grub to get the i915 module loaded first but the intel_ips module always seems to be loaded first. The only way I found was to wait until linux had fully booted and then remove the module and reload it. Incidentally, this also fixed a problem where the intel_ips module was giving out errors like this:

    Code:
    [   67.047376] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
    [   72.039844] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
    It looks as though not being able to figure out the details of the GPU meant the IPS module meant it couldn't figure out the thermal/power budgets and kept using too much power.

  7. #57
    Join Date
    Jan 2011
    Beans
    24

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    I also have this problem. Dell Inspiron n7010. I have received the error since install, but was always able to boot up until now.

    Now the error message shows, then I get a scaled down purple Ubuntu screen followed by a terminal like screen which asks for login/pass. I can't use the sudo gedit screen as I get a WARNING: graphics disabled error.

    Is there any fix to at least get me back up and running?

  8. #58
    Join Date
    Oct 2009
    Beans
    30

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    @Andys42...interesting... Could this also be reason why my HP DM4 does not show remaining battery? It always shows:

    Laptop battery (estimating....)

  9. #59
    Join Date
    Sep 2010
    Beans
    3

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    Quote Originally Posted by daragon View Post
    I had the issue too,but i found a method to forbiden it

    Quote:
    sudo gedit /etc/modprobe.d/blacklist.conf
    add
    Quote:
    blacklist intel_ips
    that will work
    that worked for me too

  10. #60
    Join Date
    Oct 2009
    Beans
    30

    Re: failed to get i915 symbols, graphics turbo disabled error on boot

    Well... it will hide the warning... but does it mean we do not have optimal graphics?

Page 6 of 15 FirstFirst ... 45678 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •