linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RE: Athlon cooling
@ 2001-11-12 10:15 Graf Holger
  0 siblings, 0 replies; 5+ messages in thread
From: Graf Holger @ 2001-11-12 10:15 UTC (permalink / raw)
  To: 'David Grant'; +Cc: linux-kernel

Look for LVCool.

http://www.naggelgames.de/vcool/VC_Linux.html

If you have ACPI enabled you can comment out lvcool's idle loop.

Holger
______________________________________________________________________
User error! Please replace user and hit any key to continue...

Disclaimer: My opinions are entirely my own I was assured.
Holger.Graf@icn.siemens.de

> -----Original Message-----
> From:	David Grant [SMTP:davidgrant79@hotmail.com]
> Sent:	Friday, November 09, 2001 3:19 AM
> To:	linux-kernel@vger.kernel.org
> Subject:	Athlon cooling
> 
> There is a program for Windows called CPUIdle, which cools the Athlon
> tremendoulsy.  I can get my temp. from 52C down to 36C.  It makes the CPU
> truly go idle.  Is there anything like this for Linux, and I'm wondering if
> anyone knows the instructions (and/or signals) which could be used to put
> the Athlon into this state.  I guess it's more of a question for some APM
> guys, but I thought some people here might know the interface to the Athlon,
> and might thus know how this software cooling works.  Actually the low-level
> apm stuff is part of the kernel right?  so maybe this is on-topic.
> 
> http://www.cpuidle.de/
> 
> Cheers,
> David Grant
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: Athlon cooling
  2001-11-09  2:01 ` Joel Jaeggli
  2001-11-09 19:14   ` Calin A. Culianu
@ 2001-11-11 23:07   ` Jorge Nerin
  1 sibling, 0 replies; 5+ messages in thread
From: Jorge Nerin @ 2001-11-11 23:07 UTC (permalink / raw)
  To: Joel Jaeggli; +Cc: David Grant, linux-kernel

Joel Jaeggli wrote:

> CONFIG_APM_CPU_IDLE
> 
> in the apm setup...
> 
> clock throttling is a subject of some debate on the linux kernel list... ;) 
> but the apm idle call will at least idle the cpu once the idle loop has 
> been running for a while.
> 
> joelja
> 
> On Thu, 8 Nov 2001, David Grant wrote:
> 
> 
>>There is a program for Windows called CPUIdle, which cools the Athlon
>>tremendoulsy.  I can get my temp. from 52C down to 36C.  It makes the CPU
>>truly go idle.  Is there anything like this for Linux, and I'm wondering if
>>anyone knows the instructions (and/or signals) which could be used to put
>>the Athlon into this state.  I guess it's more of a question for some APM
>>guys, but I thought some people here might know the interface to the Athlon,
>>and might thus know how this software cooling works.  Actually the low-level
>>apm stuff is part of the kernel right?  so maybe this is on-topic.
>>
>>http://www.cpuidle.de/
>>
>>Cheers,
>>David Grant
>>
> 

It has been discused before, it seems that the athlon needs another step 
to really enter in power saving mode, I can't remember the details, but 
I think it was a pci register, and I also remember that some people saw 
corrupts pci tranfer, namely the exact situation was grabbing with a TV 
card.

So the decision was that if this corrupted pci transfers from a tv card 
it could do the same with a pci ide controler, and that was not 
considered safe.

But you should crawl the archives for the same url.

-- 
Jorge Nerin
<comandante@zaralinux.com>


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

* Re: Athlon cooling
  2001-11-09  2:01 ` Joel Jaeggli
@ 2001-11-09 19:14   ` Calin A. Culianu
  2001-11-11 23:07   ` Jorge Nerin
  1 sibling, 0 replies; 5+ messages in thread
From: Calin A. Culianu @ 2001-11-09 19:14 UTC (permalink / raw)
  To: Joel Jaeggli; +Cc: David Grant, linux-kernel

On Thu, 8 Nov 2001, Joel Jaeggli wrote:

> CONFIG_APM_CPU_IDLE
>
> in the apm setup...
>
> clock throttling is a subject of some debate on the linux kernel list... ;)
> but the apm idle call will at least idle the cpu once the idle loop has
> been running for a while.

Yes, and i believe this is done via judicious use of the 'hlt'
instruction.  Also note that on some older K6's there are problems with
this instruction.. namely it halts the machine altogether!

>
> joelja
>
> On Thu, 8 Nov 2001, David Grant wrote:
>
> > There is a program for Windows called CPUIdle, which cools the Athlon
> > tremendoulsy.  I can get my temp. from 52C down to 36C.  It makes the CPU
> > truly go idle.  Is there anything like this for Linux, and I'm wondering if
> > anyone knows the instructions (and/or signals) which could be used to put
> > the Athlon into this state.  I guess it's more of a question for some APM
> > guys, but I thought some people here might know the interface to the Athlon,
> > and might thus know how this software cooling works.  Actually the low-level
> > apm stuff is part of the kernel right?  so maybe this is on-topic.
> >
> > http://www.cpuidle.de/
> >
> > Cheers,
> > David Grant
> > -
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/
> >
>
>


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

* Athlon cooling
@ 2001-11-09  2:18 David Grant
  2001-11-09  2:01 ` Joel Jaeggli
  0 siblings, 1 reply; 5+ messages in thread
From: David Grant @ 2001-11-09  2:18 UTC (permalink / raw)
  To: linux-kernel

There is a program for Windows called CPUIdle, which cools the Athlon
tremendoulsy.  I can get my temp. from 52C down to 36C.  It makes the CPU
truly go idle.  Is there anything like this for Linux, and I'm wondering if
anyone knows the instructions (and/or signals) which could be used to put
the Athlon into this state.  I guess it's more of a question for some APM
guys, but I thought some people here might know the interface to the Athlon,
and might thus know how this software cooling works.  Actually the low-level
apm stuff is part of the kernel right?  so maybe this is on-topic.

http://www.cpuidle.de/

Cheers,
David Grant

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

* Re: Athlon cooling
  2001-11-09  2:18 David Grant
@ 2001-11-09  2:01 ` Joel Jaeggli
  2001-11-09 19:14   ` Calin A. Culianu
  2001-11-11 23:07   ` Jorge Nerin
  0 siblings, 2 replies; 5+ messages in thread
From: Joel Jaeggli @ 2001-11-09  2:01 UTC (permalink / raw)
  To: David Grant; +Cc: linux-kernel

CONFIG_APM_CPU_IDLE

in the apm setup...

clock throttling is a subject of some debate on the linux kernel list... ;) 
but the apm idle call will at least idle the cpu once the idle loop has 
been running for a while.

joelja

On Thu, 8 Nov 2001, David Grant wrote:

> There is a program for Windows called CPUIdle, which cools the Athlon
> tremendoulsy.  I can get my temp. from 52C down to 36C.  It makes the CPU
> truly go idle.  Is there anything like this for Linux, and I'm wondering if
> anyone knows the instructions (and/or signals) which could be used to put
> the Athlon into this state.  I guess it's more of a question for some APM
> guys, but I thought some people here might know the interface to the Athlon,
> and might thus know how this software cooling works.  Actually the low-level
> apm stuff is part of the kernel right?  so maybe this is on-topic.
> 
> http://www.cpuidle.de/
> 
> Cheers,
> David Grant
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

-- 
-------------------------------------------------------------------------- 
Joel Jaeggli				       joelja@darkwing.uoregon.edu    
Academic User Services			     consult@gladstone.uoregon.edu
     PGP Key Fingerprint: 1DE9 8FCA 51FB 4195 B42A 9C32 A30D 121E
--------------------------------------------------------------------------
It is clear that the arm of criticism cannot replace the criticism of
arms.  Karl Marx -- Introduction to the critique of Hegel's Philosophy of
the right, 1843.




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

end of thread, other threads:[~2001-11-12 22:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-12 10:15 Athlon cooling Graf Holger
  -- strict thread matches above, loose matches on Subject: below --
2001-11-09  2:18 David Grant
2001-11-09  2:01 ` Joel Jaeggli
2001-11-09 19:14   ` Calin A. Culianu
2001-11-11 23:07   ` Jorge Nerin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).