Linux MIPS Architecture development
 help / color / mirror / Atom feed
From: Ralf Baechle <ralf@linux-mips.org>
To: "Kevin D. Kissell" <kevink@mips.com>
Cc: Linux-MIPS Mailing List <linux-mips@linux-mips.org>
Subject: Re: Dubious MIPS kernel SMP Structures
Date: Wed, 17 Nov 2004 17:46:29 +0100	[thread overview]
Message-ID: <20041117164629.GA10920@linux-mips.org> (raw)
In-Reply-To: <006d01c4ccba$36a43110$10eca8c0@grendel>

On Wed, Nov 17, 2004 at 04:29:21PM +0100, Kevin D. Kissell wrote:

> In arch/mips/kerenl/smp.c, there are two tables defined, __cpu_number_map[]
> and __cpu_logical_map[], which would appear to provide forward and backward
> mapping between a set of unique but arbitrary CPU numbers and a monotonically
> increasing number 0..n of indices into per-CPU data.   As near as I can tell, the
> only use of this is in the sb1250 code for setting up interrupt hardware.  Is there
> a reason why it's defined at the mips/kernel level, and not down in the SiByte
> platform subtree?  Is there a generic, architectural definition of how these mappings
> should and should not be set up and used?

The Linux kernel is living in the assumption of having a dense CPU number
space and being started by cpu 0 - something that isn't necessarily
reflected by the underlying hardware.  The system for which this concept
was introduced into Linux is SGI's IP27.  IP27 permits dividing of large
systems into multiple independant partitions.  Assume a two module
Origin 2000; let's assume it's fully configured with 16 processors.
Parititioning results in two domains.  The first consists of processors
0 - 7; the second 8 - 15.  Just for the kicks let's assume physical
processors 11 and 13 are broken and therfor were disabled.  From point of
view of the generic Linux kernel this leaves a 6 processor system.  So
when we boot the kernel it will initialize these two mappings to the
following mapping:

  logical     physical
   CPU #  ->    CPU #
    0            8
    1            9
    2           10
    3           12
    4           14
    5           15

  physical     logical  
   CPU #   ->   CPU #
     8           0
     9           1
    10           2
    11	  			# broken CPU, we're skipping this CPU number
    12           3
    13	  			# broken CPU, we're skipping this CPU number
    14           4
    15           5

As you found the IP27 code doesn't properly setup these mappings anymore;
partly because it's SMP initialization code is twisted to the point
where nobody understands it anymore.  Partly also because the systems
we used as SGI were too large to leave CPU numbers unused :)

Honestly no idea why the Sibyte code is using that mapping stuff.  The
Sibyte firmware is always launching the kernel on CPU 0 anyway so we have
the case of either only CPU 0 or both CPU 0 and CPU 1 which means the
mapping would always be a 1:1 mapping.

For most simple SMP or ccNUMA configurations assuming a 1:1 mapping is
reasonable.  For some uniprocessor configurations where a uniprocessor
kernel is running on a single processor other than processor number 0 on
a multiprocessor platform this also may be useful.

  Ralf

  reply	other threads:[~2004-11-17 16:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-17 15:29 Dubious MIPS kernel SMP Structures Kevin D. Kissell
2004-11-17 16:46 ` Ralf Baechle [this message]
2004-11-17 17:07   ` Kevin D. Kissell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20041117164629.GA10920@linux-mips.org \
    --to=ralf@linux-mips.org \
    --cc=kevink@mips.com \
    --cc=linux-mips@linux-mips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox