linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Please teach me X86 I/O port 0x61
@ 2010-07-15 15:00 tanaka
  2010-07-15 16:07 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: tanaka @ 2010-07-15 15:00 UTC (permalink / raw)
  To: linux-kernel

Dear all.

I investigate about  NMI kernel messages.
Linux kernel read 0x61 address using inb(61h).

I search a amd opteron cpu following manuals.
but I do not find  explanation of 0x61 address.

http://support.amd.com/us/psearch/Pages/psearch.aspx?type=2.1&product=2.1.4&contentType=Tech+Doc+Processor&ostype=&keywords=&items=20

Could you teach me a 0x61 address of X86 arch >

Best regards.

--------------------------------------
Get the new Internet Explorer 8 optimized for Yahoo! JAPAN
http://pr.mail.yahoo.co.jp/ie8/

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

* Re: Please teach me X86 I/O port 0x61
  2010-07-15 15:00 Please teach me X86 I/O port 0x61 tanaka
@ 2010-07-15 16:07 ` Randy Dunlap
  2010-07-22 17:57   ` tanaka
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2010-07-15 16:07 UTC (permalink / raw)
  To: tanaka; +Cc: linux-kernel

On Fri, 16 Jul 2010 00:00:36 +0900 (JST) tanaka wrote:

> Dear all.
> 
> I investigate about  NMI kernel messages.
> Linux kernel read 0x61 address using inb(61h).
> 
> I search a amd opteron cpu following manuals.
> but I do not find  explanation of 0x61 address.
> 
> http://support.amd.com/us/psearch/Pages/psearch.aspx?type=2.1&product=2.1.4&contentType=Tech+Doc+Processor&ostype=&keywords=&items=20
> 
> Could you teach me a 0x61 address of X86 arch >

Hi,

IO port 0x61 (NMI Status & Control register) is not CPU-specific on x86.
It's more of a platform thing.

Intel describes it in ICH (chipset) specs, e.g., ICH7 spec,
section 10.7.1.  Please try that and see if it answers your questions.

---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: Please teach me X86 I/O port 0x61
  2010-07-15 16:07 ` Randy Dunlap
@ 2010-07-22 17:57   ` tanaka
  2010-07-22 18:21     ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: tanaka @ 2010-07-22 17:57 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel

Good evening. Dear all.

I appreciate your responses.
We use AMD CPU machine.

For example,
http://www.sun.com/servers/entry/x4100/arch-wp.pdf

In Figure 1-1 block diagram (page 10) ,
which device is mapped 0x61 address in ?

--- Randy Dunlap <randy.dunlap@oracle.com> wrote:

> On Fri, 16 Jul 2010 00:00:36 +0900 (JST) tanaka wrote:
> 
> > Dear all.
> > 
> > I investigate about  NMI kernel messages.
> > Linux kernel read 0x61 address using inb(61h).
> > 
> > I search a amd opteron cpu following manuals.
> > but I do not find  explanation of 0x61 address.
> > 
> >
>
http://support.amd.com/us/psearch/Pages/psearch.aspx?type=2.1&product=2.1.4&contentType=Tech+Doc+Processor&ostype=&keywords=&items=20
> > 
> > Could you teach me a 0x61 address of X86 arch >
> 
> Hi,
> 
> IO port 0x61 (NMI Status & Control register) is not CPU-specific on
> x86.
> It's more of a platform thing.
> 
> Intel describes it in ICH (chipset) specs, e.g., ICH7 spec,
> section 10.7.1.  Please try that and see if it answers your
> questions.
> 
> ---
> ~Randy
> *** Remember to use Documentation/SubmitChecklist when testing your
> code ***
> --



--------------------------------------
Get the new Internet Explorer 8 optimized for Yahoo! JAPAN
http://pr.mail.yahoo.co.jp/ie8/

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

* Re: Please teach me X86 I/O port 0x61
  2010-07-22 17:57   ` tanaka
@ 2010-07-22 18:21     ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2010-07-22 18:21 UTC (permalink / raw)
  To: tanaka; +Cc: linux-kernel

On 07/22/10 10:57, tanaka wrote:
> Good evening. Dear all.
> 
> I appreciate your responses.
> We use AMD CPU machine.
> 
> For example,
> http://www.sun.com/servers/entry/x4100/arch-wp.pdf
> 
> In Figure 1-1 block diagram (page 10) ,
> which device is mapped 0x61 address in ?

I can't tell from that block diagram.  I tried to see if 0x61 is part of
the AMD-8111 chipset, but it seems that they have removed all downloads
from that web page
(http://www.amd.com/us/products/embedded/chipsets/Pages/other-embedded-chipset-products.aspx,
last 3 links are bad).

I would expect 0x61 to be part of the 8111 or possibly 8132 chipset.


> --- Randy Dunlap <randy.dunlap@oracle.com> wrote:
> 
>> On Fri, 16 Jul 2010 00:00:36 +0900 (JST) tanaka wrote:
>>
>>> Dear all.
>>>
>>> I investigate about  NMI kernel messages.
>>> Linux kernel read 0x61 address using inb(61h).
>>>
>>> I search a amd opteron cpu following manuals.
>>> but I do not find  explanation of 0x61 address.
>>>
>>>
>>
> http://support.amd.com/us/psearch/Pages/psearch.aspx?type=2.1&product=2.1.4&contentType=Tech+Doc+Processor&ostype=&keywords=&items=20
>>>
>>> Could you teach me a 0x61 address of X86 arch >
>>
>> Hi,
>>
>> IO port 0x61 (NMI Status & Control register) is not CPU-specific on
>> x86.
>> It's more of a platform thing.
>>
>> Intel describes it in ICH (chipset) specs, e.g., ICH7 spec,
>> section 10.7.1.  Please try that and see if it answers your
>> questions.
>>
>> ---


-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

end of thread, other threads:[~2010-07-22 18:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-15 15:00 Please teach me X86 I/O port 0x61 tanaka
2010-07-15 16:07 ` Randy Dunlap
2010-07-22 17:57   ` tanaka
2010-07-22 18:21     ` Randy Dunlap

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).