Re: Monitoring temperature with acpi (sysctls)

2006-08-01 Thread John Baldwin
On Monday 31 July 2006 09:35, Oliver Fromme wrote: > John Baldwin wrote: > > Mike Jakubik wrote: > > > I tried that, unfortunately it does not work. All i want to know is if > > > this a shortcoming of freebsd or the motherboard, if its the later, i > > > will contact the manufacturer. > >

Re: Monitoring temperature with acpi (sysctls)

2006-07-31 Thread Oliver Fromme
John Baldwin wrote: > Mike Jakubik wrote: > > I tried that, unfortunately it does not work. All i want to know is if > > this a shortcoming of freebsd or the motherboard, if its the later, i > > will contact the manufacturer. > > If ACPI doesn't include the sysctl's that's due to your BIOS

Re: Monitoring temperature with acpi (sysctls)

2006-07-30 Thread David Duchscher
On Jul 28, 2006, at 8:38 PM, Nikolas Britton wrote: On 7/26/06, David Duchscher <[EMAIL PROTECTED]> wrote: Yes, the Supermicro PDSMi supports the IPMI 2.0 module and I can confirm that it works with the IPMI ported driver from current on 6.1. The module is optional so you will have to purchas

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread Nikolas Britton
On 7/26/06, David Duchscher <[EMAIL PROTECTED]> wrote: On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: > On Tue, Jul 25, 2006 at 11:51:25AM -0400, Mike Jakubik wrote: >> I need to be able to get the cpu and fan information from my >> motherboard, however none of the monitoring utilities in th

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread Alexey Karagodov
yeeeh, me too need this cooling stuff! :) please, tell me, where to find info about ACPI in FreeBSD on E7520 chip-set my MB is SuperMicro X6-DH8XG2 thanx ... 2006/7/28, Oliver Fromme <[EMAIL PROTECTED]>: Spartak Radchenko <[EMAIL PROTECTED]> wrote: > router# sysctl hw.acpi.thermal > [...] > hw

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread Oliver Fromme
Spartak Radchenko <[EMAIL PROTECTED]> wrote: > router# sysctl hw.acpi.thermal > [...] > hw.acpi.thermal.tz0.temperature: -257.-1C > > If I understand it correctly, the current temperature is -257C, or 16 > degrees from absolute zero. > Motherboard is Via MS8000. Now that's _really_ cool.

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread John Baldwin
On Friday 28 July 2006 10:51, Spartak Radchenko wrote: > John Baldwin ?: > > If ACPI doesn't include the sysctl's that's due to your BIOS, not FreeBSD. > > You can verify by doing an acpidump and seeing if you have any thermal > > zones listed in your ASL. > What if there is a thermal zone, but

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread Spartak Radchenko
John Baldwin ?: If ACPI doesn't include the sysctl's that's due to your BIOS, not FreeBSD. You can verify by doing an acpidump and seeing if you have any thermal zones listed in your ASL. What if there is a thermal zone, but sysctl returns meaningless numbers? router# sysctl hw.acpi.thermal

Re: Monitoring temperature with acpi (sysctls)

2006-07-28 Thread John Baldwin
On Thursday 27 July 2006 02:25, Mike Jakubik wrote: > Jiawei Ye wrote: > > On 7/27/06, Mike Jakubik <[EMAIL PROTECTED]> wrote: > >> I don't want to spend $50 extra per system, just so i can read the > >> temperature, and not even use any of the IPMI functions. I need a simple > >> and scriptable wa

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Julian Elischer
Someone mentionned that you can't reach the smbus on ASUS boards. That's because they turn it off in the BIOS. They turn it on and off as they need to read stuff for their SMI (well on some of their boards at least). you can turn it on again using pciconf. but I forget the exact incantation. (

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Alexey Karagodov
[EMAIL PROTECTED]:31:3: class=0x0c0500 card=0x618015d9 chip=0x24d38086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82801EB/ER (ICH5/ICH5R) SMBus Controller' class= serial bus subclass = SMBus 2006/7/27, Oliver Fromme <[EMAIL PROTECTED]>: Mike Jakubik <[EMA

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Mike Jakubik
Well, here are the patch results. The controller is detected: ichsmb0: port 0x1100-0x111f irq 19 at device 31.3 on pci0 ichsmb0: [GIANT-LOCKED] smbus0: on ichsmb0 smb0: on smbus0 However communication does not seem to work: # smbmsg -p Probing for devices on /dev/smb0: Device @0x30: rw De

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Mike Jakubik
Jung-uk Kim wrote: FYI, see kern/85106: http://www.freebsd.org/cgi/query-pr.cgi?pr=85106 Great, i will try the patch shortly. ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, se

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Mike Jakubik
Bruno Ducrot wrote: It should be ichsmb with a ich7 southbridge IIRC, but there is a missing pci id onto sys/ichsmb/ichsmb_pci.c, (it should be 0x27da8086). Maybe the ich7 isn't supported yet. I don't have time to check more ATM. I'll look intel specs tomorrow. It indeed is a ich7. [EMAI

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Jung-uk Kim
On Thursday 27 July 2006 12:13 pm, Bruno Ducrot wrote: > It should be ichsmb with a ich7 southbridge IIRC, but there is a > missing pci id onto sys/ichsmb/ichsmb_pci.c, (it should be > 0x27da8086). > > Maybe the ich7 isn't supported yet. I don't have time to check > more ATM. I'll look intel spec

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Bruno Ducrot
On Thu, Jul 27, 2006 at 11:09:51AM -0400, Mike Jakubik wrote: > Bruno Ducrot wrote: > >Could you please try (if you have a working smb device) > > > ># smbmsg -p > > > > Well, i don't think its being detected/supported. I tried loading all > the smbus related kernel modules, but no device. > >

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Oliver Fromme
Mike Jakubik <[EMAIL PROTECTED]> wrote: > Bruno Ducrot wrote: > > Could you please try (if you have a working smb device) > > # smbmsg -p > > Well, i don't think its being detected/supported. I tried loading all > the smbus related kernel modules, but no device. > > Id Refs AddressSi

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Mike Jakubik
Bruno Ducrot wrote: Could you please try (if you have a working smb device) # smbmsg -p Well, i don't think its being detected/supported. I tried loading all the smbus related kernel modules, but no device. Id Refs AddressSize Name 19 0xc040 2d1624 kernel 21 0xc06d2

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Roland Smith
On Thu, Jul 27, 2006 at 03:31:56PM +0200, O. Hartmann wrote: > Roland Smith wrote: > >On Wed, Jul 26, 2006 at 02:52:53PM -0400, Mike Jakubik wrote: > >>David Duchscher wrote: > >>>On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: > Does this one support IPMI? > >>>Yes, the Supermicro PDSMi supp

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread O. Hartmann
Roland Smith wrote: On Wed, Jul 26, 2006 at 02:52:53PM -0400, Mike Jakubik wrote: David Duchscher wrote: On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: Does this one support IPMI? Yes, the Supermicro PDSMi supports the IPMI 2.0 module and I can confirm that it works with the IPMI ported dr

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread O. Hartmann
Jiawei Ye wrote: On 7/27/06, Mike Jakubik <[EMAIL PROTECTED]> wrote: I don't want to spend $50 extra per system, just so i can read the temperature, and not even use any of the IPMI functions. I need a simple and scriptable way to get the values, acpi sysctls are ideal for this. What about usin

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Roland Smith
On Wed, Jul 26, 2006 at 02:52:53PM -0400, Mike Jakubik wrote: > David Duchscher wrote: > > > >On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: > >>Does this one support IPMI? > > > >Yes, the Supermicro PDSMi supports the IPMI 2.0 module and I can > >confirm that it works with the IPMI ported drive

Re: Monitoring temperature with acpi (sysctls)

2006-07-27 Thread Bruno Ducrot
On Thu, Jul 27, 2006 at 02:25:19AM -0400, Mike Jakubik wrote: > Jiawei Ye wrote: > >On 7/27/06, Mike Jakubik <[EMAIL PROTECTED]> wrote: > >>I don't want to spend $50 extra per system, just so i can read the > >>temperature, and not even use any of the IPMI functions. I need a simple > >>and scripta

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Mike Jakubik
Jiawei Ye wrote: On 7/27/06, Mike Jakubik <[EMAIL PROTECTED]> wrote: I don't want to spend $50 extra per system, just so i can read the temperature, and not even use any of the IPMI functions. I need a simple and scriptable way to get the values, acpi sysctls are ideal for this. What about usin

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Jiawei Ye
On 7/27/06, Mike Jakubik <[EMAIL PROTECTED]> wrote: I don't want to spend $50 extra per system, just so i can read the temperature, and not even use any of the IPMI functions. I need a simple and scriptable way to get the values, acpi sysctls are ideal for this. What about using SMBus? Is it ava

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Mike Jakubik
David Duchscher wrote: On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: Does this one support IPMI? Yes, the Supermicro PDSMi supports the IPMI 2.0 module and I can confirm that it works with the IPMI ported driver from current on 6.1. The module is optional so you will have to purchase one

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Mike Jakubik
Bruno Ducrot wrote: On Tue, Jul 25, 2006 at 11:51:25AM -0400, Mike Jakubik wrote: I need to be able to get the cpu and fan information from my motherboard, however none of the monitoring utilities in the ports seems to support my motherboard (Supermicro PDSMi, Intel E7230 (Mukilteo) Chipset

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Lists For Simon Phoenix ([EMAIL PROTECTED])
O. Hartmann wrote: > > I need to be able to get the cpu and fan information from my > > motherboard, however none of the monitoring utilities in the ports > > seems to support my motherboard (Supermicro PDSMi, Intel E7230 > > (Mukilteo) Chipset). On my older VIA based motherboards and some > > Nvid

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread David Duchscher
On Jul 26, 2006, at 11:09 AM, Bruno Ducrot wrote: On Tue, Jul 25, 2006 at 11:51:25AM -0400, Mike Jakubik wrote: I need to be able to get the cpu and fan information from my motherboard, however none of the monitoring utilities in the ports seems to support my motherboard (Supermicro PDSMi,

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread O. Hartmann
Bruno Ducrot wrote: On Tue, Jul 25, 2006 at 11:51:25AM -0400, Mike Jakubik wrote: I need to be able to get the cpu and fan information from my motherboard, however none of the monitoring utilities in the ports seems to support my motherboard (Supermicro PDSMi, Intel E7230 (Mukilteo) Chipset

Re: Monitoring temperature with acpi (sysctls)

2006-07-26 Thread Bruno Ducrot
On Tue, Jul 25, 2006 at 11:51:25AM -0400, Mike Jakubik wrote: > I need to be able to get the cpu and fan information from my > motherboard, however none of the monitoring utilities in the ports seems > to support my motherboard (Supermicro PDSMi, Intel E7230 (Mukilteo) > Chipset). On my older VI

Re: Monitoring temperature with acpi (sysctls)

2006-07-25 Thread Alexey Karagodov
"me too". chipset - e7520 ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Monitoring temperature with acpi (sysctls)

2006-07-25 Thread O. Hartmann
Mike Jakubik wrote: I need to be able to get the cpu and fan information from my motherboard, however none of the monitoring utilities in the ports seems to support my motherboard (Supermicro PDSMi, Intel E7230 (Mukilteo) Chipset). On my older VIA based motherboards and some Nvidia, i can get

Monitoring temperature with acpi (sysctls)

2006-07-25 Thread Mike Jakubik
I need to be able to get the cpu and fan information from my motherboard, however none of the monitoring utilities in the ports seems to support my motherboard (Supermicro PDSMi, Intel E7230 (Mukilteo) Chipset). On my older VIA based motherboards and some Nvidia, i can get this information usin