public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card
@ 2013-05-10 18:04 Walter Dnes
  2013-05-10 18:16 ` Michael Mol
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Walter Dnes @ 2013-05-10 18:04 UTC (permalink / raw
  To: Gentoo Users List

  OK, I'm getting serious with the install on my new machine, so here
come the questions.  "lspci -v" shows the onboard GPU as...

00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
        Subsystem: Dell Device 0581
        Flags: bus master, fast devsel, latency 0, IRQ 11
        Memory at f7800000 (64-bit, non-prefetchable) [size=4M]
        Memory at e0000000 (64-bit, prefetchable) [size=256M]
        I/O ports at f000 [size=64]
        Expansion ROM at <unassigned> [disabled]
        Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
        Capabilities: [d0] Power Management version 2
        Capabilities: [a4] PCI Advanced Features

  What settings do I use for VIDEO_CARDS= in make.conf? Is "intel" good
enough?

  Also, any special stuff in "make menuconfig"?

-- 
Walter Dnes <waltdnes@waltdnes.org>
I don't run "desktop environments"; I run useful applications


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card
  2013-05-10 18:04 [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card Walter Dnes
@ 2013-05-10 18:16 ` Michael Mol
  2013-05-12  1:58   ` Walter Dnes
  2013-05-12 16:43 ` Fast Turtle
  2013-05-12 16:45 ` Fast Turtle
  2 siblings, 1 reply; 5+ messages in thread
From: Michael Mol @ 2013-05-10 18:16 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1796 bytes --]

On 05/10/2013 02:04 PM, Walter Dnes wrote:
>   OK, I'm getting serious with the install on my new machine, so here
> come the questions.  "lspci -v" shows the onboard GPU as...
> 
> 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
>         Subsystem: Dell Device 0581
>         Flags: bus master, fast devsel, latency 0, IRQ 11
>         Memory at f7800000 (64-bit, non-prefetchable) [size=4M]
>         Memory at e0000000 (64-bit, prefetchable) [size=256M]
>         I/O ports at f000 [size=64]
>         Expansion ROM at <unassigned> [disabled]
>         Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
>         Capabilities: [d0] Power Management version 2
>         Capabilities: [a4] PCI Advanced Features

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09) (prog-if 00
[VGA controller])
        Subsystem: Toshiba America Info Systems Device fc70
        Flags: bus master, fast devsel, latency 0, IRQ 44
        Memory at f5000000 (64-bit, non-prefetchable) [size=4M]
        Memory at e0000000 (64-bit, prefetchable) [size=256M]
        I/O ports at e000 [size=64]
        Expansion ROM at <unassigned> [disabled]
        Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
        Capabilities: [d0] Power Management version 2
        Capabilities: [a4] PCI Advanced Features
        Kernel driver in use: i915

> 
>   What settings do I use for VIDEO_CARDS= in make.conf? Is "intel" good
> enough?

That's what I have.

> 
>   Also, any special stuff in "make menuconfig"?

I have:

* CONFIG_DRM
* CONFIG_DRM_I915
* CONFIG_DRM_I915_KMS




[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 555 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card
  2013-05-10 18:16 ` Michael Mol
@ 2013-05-12  1:58   ` Walter Dnes
  0 siblings, 0 replies; 5+ messages in thread
From: Walter Dnes @ 2013-05-12  1:58 UTC (permalink / raw
  To: gentoo-user

On Fri, May 10, 2013 at 02:16:34PM -0400, Michael Mol wrote
> On 05/10/2013 02:04 PM, Walter Dnes wrote:
> > 
> >   What settings do I use for VIDEO_CARDS= in make.conf? Is "intel" good
> > enough?
> 
> That's what I have.

  I just remembered "an excellent adventure" I had several months ago
when setting up my HTPC (desktop Intel with onboard GPU).  Do you get
any hits when you run...

grep 965 /var/log/Xorg.0.log

  Let me know if you do, because it would affect what I need to do.
If you see complaints about not being able to find a driver, for a trial
run, which doesn't make any permanent changes, try (one long line)...

USE="-video_cards_i915 video_cards_i965 classic" emerge -pv --deep --changed-use @world

  The permanent equivalant would be changing to...

VIDEO_CARDS="intel i965"

...in your make.conf, adding the "classic" USE flag if you don't already
have it, and running...

emerge --deep --changed-use @world

  As near as I can tell...
* the kernel uses an i915 driver
* userspace programs (e.g. mesa) default to a userspace i915 driver.
* but they can use the additional capacity of the newer Intel chips,
  hence the i965 userspace driver
* result is faster acceleration

  You may need both "classic" and "gallium" USE flags.  If you do make
this change, can you do a video speedtest/benchmark before and after?

-- 
Walter Dnes <waltdnes@waltdnes.org>
I don't run "desktop environments"; I run useful applications


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card
  2013-05-10 18:04 [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card Walter Dnes
  2013-05-10 18:16 ` Michael Mol
@ 2013-05-12 16:43 ` Fast Turtle
  2013-05-12 16:45 ` Fast Turtle
  2 siblings, 0 replies; 5+ messages in thread
From: Fast Turtle @ 2013-05-12 16:43 UTC (permalink / raw
  To: Gentoo User List

[-- Attachment #1: Type: text/plain, Size: 1261 bytes --]

Problem is that CPU does not have any onboard graphics. For the Xeon you
need one ending in 5 (1205/1225/1245) in order to get the onboard gpu.


On Fri, May 10, 2013 at 11:04 AM, Walter Dnes <waltdnes@waltdnes.org> wrote:

>   OK, I'm getting serious with the install on my new machine, so here
> come the questions.  "lspci -v" shows the onboard GPU as...
>
> 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd
> Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA
> controller])
>         Subsystem: Dell Device 0581
>         Flags: bus master, fast devsel, latency 0, IRQ 11
>         Memory at f7800000 (64-bit, non-prefetchable) [size=4M]
>         Memory at e0000000 (64-bit, prefetchable) [size=256M]
>         I/O ports at f000 [size=64]
>         Expansion ROM at <unassigned> [disabled]
>         Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
>         Capabilities: [d0] Power Management version 2
>         Capabilities: [a4] PCI Advanced Features
>
>   What settings do I use for VIDEO_CARDS= in make.conf? Is "intel" good
> enough?
>
>   Also, any special stuff in "make menuconfig"?
>
> --
> Walter Dnes <waltdnes@waltdnes.org>
> I don't run "desktop environments"; I run useful applications
>
>

[-- Attachment #2: Type: text/html, Size: 1836 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card
  2013-05-10 18:04 [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card Walter Dnes
  2013-05-10 18:16 ` Michael Mol
  2013-05-12 16:43 ` Fast Turtle
@ 2013-05-12 16:45 ` Fast Turtle
  2 siblings, 0 replies; 5+ messages in thread
From: Fast Turtle @ 2013-05-12 16:45 UTC (permalink / raw
  To: Gentoo User List

[-- Attachment #1: Type: text/plain, Size: 1316 bytes --]

If you don't have the cpu yet, my suggestion is to go with the 1245 v2 as
it offers the best bang for the buck. It also includes the HD4000 GPU (same
as the i5/i7 Ivy Bridge and with same settings).


On Fri, May 10, 2013 at 11:04 AM, Walter Dnes <waltdnes@waltdnes.org> wrote:

>   OK, I'm getting serious with the install on my new machine, so here
> come the questions.  "lspci -v" shows the onboard GPU as...
>
> 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd
> Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA
> controller])
>         Subsystem: Dell Device 0581
>         Flags: bus master, fast devsel, latency 0, IRQ 11
>         Memory at f7800000 (64-bit, non-prefetchable) [size=4M]
>         Memory at e0000000 (64-bit, prefetchable) [size=256M]
>         I/O ports at f000 [size=64]
>         Expansion ROM at <unassigned> [disabled]
>         Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
>         Capabilities: [d0] Power Management version 2
>         Capabilities: [a4] PCI Advanced Features
>
>   What settings do I use for VIDEO_CARDS= in make.conf? Is "intel" good
> enough?
>
>   Also, any special stuff in "make menuconfig"?
>
> --
> Walter Dnes <waltdnes@waltdnes.org>
> I don't run "desktop environments"; I run useful applications
>
>

[-- Attachment #2: Type: text/html, Size: 1895 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-05-12 16:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-10 18:04 [gentoo-user] Settings for Xeon E3-1200 v2/3rd Gen video card Walter Dnes
2013-05-10 18:16 ` Michael Mol
2013-05-12  1:58   ` Walter Dnes
2013-05-12 16:43 ` Fast Turtle
2013-05-12 16:45 ` Fast Turtle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox