From: Ralf Baechle <ralf@oss.sgi.com>
To: Jason Gunthorpe <jgg@debian.org>
Cc: linux-mips@oss.sgi.com
Subject: Re: Q about ST0_UX
Date: Wed, 9 Jan 2002 09:30:40 -0200 [thread overview]
Message-ID: <20020109093039.A1468@dea.linux-mips.net> (raw)
In-Reply-To: <Pine.LNX.3.96.1020109000346.9606F-100000@wakko.deltatee.com>; from jgg@debian.org on Wed, Jan 09, 2002 at 12:08:47AM -0700
On Wed, Jan 09, 2002 at 12:08:47AM -0700, Jason Gunthorpe wrote:
> I just noticed that in setup.c there is this little bit:
>
> s = read_32bit_cp0_register(CP0_STATUS);
> s &= ~(ST0_CU1|ST0_CU2|ST0_CU3|ST0_KX|ST0_SX|ST0_FR);
> s |= ST0_CU0;
> write_32bit_cp0_register(CP0_STATUS, s);
>
> And it doesn't mask off ST0_UX - is this an oversight? With my RM7K the
> kernel is called with ST0_UX set, and since it doesn't clear it the XTLB
> handler is called - which faults things..
On all firmware I've made the 32-bit kernel run on it is invoked with UX
cleared so I just didn't bother to clear it myself.
> So, would this patch be appropriate in general:
>
> --- setup.c 2001/12/02 11:34:38 1.96
> +++ setup.c 2002/01/09 08:05:43
> @@ -558,7 +558,7 @@
>
> /* Disable coprocessors and set FPU for 16 FPRs */
> s = read_32bit_cp0_register(CP0_STATUS);
> - s &= ~(ST0_CU1|ST0_CU2|ST0_CU3|ST0_KX|ST0_SX|ST0_FR);
> + s &= ~(ST0_CU1|ST0_CU2|ST0_CU3|ST0_UX|ST0_KX|ST0_SX|ST0_FR);
> s |= ST0_CU0;
> write_32bit_cp0_register(CP0_STATUS, s);
>
> or is it better to make the xtlb handler work in the 32 bit case?
No, your patch is the right thing. Enabeling UX would also permit the
use of 64-bit instructions and that wouldn't work on the 32-bit kernel.
Ralf
prev parent reply other threads:[~2002-01-09 12:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-01-09 7:08 Q about ST0_UX Jason Gunthorpe
2002-01-09 11:30 ` Ralf Baechle [this message]
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=20020109093039.A1468@dea.linux-mips.net \
--to=ralf@oss.sgi.com \
--cc=jgg@debian.org \
--cc=linux-mips@oss.sgi.com \
/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