From: Ingo Hornberger <ihornberger@sysgo.com>
To: linuxppc-embedded@ozlabs.org
Subject: Re: kernel 2.6.14 on MPC8272ADS
Date: Mon, 28 Nov 2005 11:38:02 +0100 [thread overview]
Message-ID: <1133174282.2663.16.camel@iho.sysgo.com> (raw)
In-Reply-To: <02AA386EB831044F8537A696BA785C7807645A@ILEX5.IL.NDS.COM>
[-- Attachment #1: Type: text/plain, Size: 760 bytes --]
Hi Bracha,
I assume that you're using an 8xx!?
This code isn't completely updated yet, but here is a small patch which
should be more or less working...
regards,
Ingo
On Sun, 2005-11-27 at 12:22 +0200, Landau, Bracha wrote:
> I'm trying to move to the latest kernel release from linux 2.6.13.4 on the MPC8272ADS board.
> 2.6.13.4 works, but from 2.6.14 and up (I don't know where from 2.6.13.4 to 2.6.14 the problem starts) the kernel crashes on bootup with the message
> "Kernel BUG in ppc_sys_init at arch/ppc/syslib/ppc_sys_init.c:131"
> Anyone know how to fix this problem?
>
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>
[-- Attachment #2: ppc_8xx_2.6.14_syslib.patch --]
[-- Type: text/x-patch, Size: 2326 bytes --]
diff -Nurb a/arch/ppc/syslib/m8xx_setup.c b/arch/ppc/syslib/m8xx_setup.c
--- a/arch/ppc/syslib/m8xx_setup.c 2005-10-28 02:02:08.000000000 +0200
+++ b/arch/ppc/syslib/m8xx_setup.c 2005-11-25 11:11:03.000000000 +0100
@@ -82,7 +82,7 @@
ROOT_DEV = Root_HDA1; /* hda1 */
#endif
-#ifdef CONFIG_BLK_DEV_INITRD
+#if defined(CONFIG_BLK_DEV_INITRD) || defined(CONFIG_EXTRACT_ROOTFS)
#if 0
ROOT_DEV = Root_FD0; /* floppy */
rd_prompt = 1;
@@ -389,7 +389,7 @@
m8xx_setup_pci_ptrs();
#endif
-#ifdef CONFIG_BLK_DEV_INITRD
+#if defined(CONFIG_BLK_DEV_INITRD) || defined(CONFIG_EXTRACT_ROOTFS)
/* take care of initrd if we have one */
if ( r4 )
{
@@ -404,6 +404,15 @@
strcpy(cmd_line, (char *)(r6+KERNELBASE));
}
+ /*
+ * Check if we are really on a Power QUICC CPU.
+ * Note, that we do not halt the Kernel at this point,
+ * because we won't get any output here otherwise.
+ */
+ if( (mfspr(SPRN_PVR) >> 16) != 0x0050 )
+ printk( KERN_ERR "ERROR: %s: %d: Wrong CPU Type! (We assumed a Power QUICC CPU)\n" );
+ identify_ppc_sys_by_id(mfspr(SPRN_IMMR));
+
ppc_md.setup_arch = m8xx_setup_arch;
ppc_md.show_percpuinfo = m8xx_show_percpuinfo;
ppc_md.irq_canonicalize = NULL;
diff -Nurb a/arch/ppc/syslib/mpc8xx_sys.c b/arch/ppc/syslib/mpc8xx_sys.c
--- a/arch/ppc/syslib/mpc8xx_sys.c 2005-10-28 02:02:08.000000000 +0200
+++ b/arch/ppc/syslib/mpc8xx_sys.c 2005-11-25 11:11:03.000000000 +0100
@@ -20,9 +20,16 @@
struct ppc_sys_spec *cur_ppc_sys_spec;
struct ppc_sys_spec ppc_sys_specs[] = {
+ /* The mpc85x and 86x, all have the system ID 0x00.
+ * And as it seems that even the 885 has the ID 0x00,
+ * I assume 0x00 for all MPC8XX systems.
+ * For other cases, you should add a new entry above the
+ * MPC8XX. You could use the first 8 bits to make
+ * a more specific match for your system.
+ */
{
- .ppc_sys_name = "MPC86X",
- .mask = 0xFFFFFFFF,
+ .ppc_sys_name = "MPC8XX",
+ .mask = 0x00FF0000,
.value = 0x00000000,
.num_devices = 2,
.device_list = (enum ppc_sys_devices[])
next prev parent reply other threads:[~2005-11-28 10:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-27 10:22 kernel 2.6.14 on MPC8272ADS Landau, Bracha
2005-11-28 10:38 ` Ingo Hornberger [this message]
2005-11-28 10:58 ` Ingo Hornberger
2005-11-28 13:09 ` Vitaly Bordug
2005-11-28 13:04 ` Vitaly Bordug
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=1133174282.2663.16.camel@iho.sysgo.com \
--to=ihornberger@sysgo.com \
--cc=linuxppc-embedded@ozlabs.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;
as well as URLs for NNTP newsgroup(s).