Skip to content
Snippets Groups Projects
Commit cc1dd33f authored by John Schmoller's avatar John Schmoller Committed by Kumar Gala
Browse files

mpc8[5/6]xx: Ensure POST word does not get reset


The POST word is stored in a spare register in the PIC on MPC8[5/6]xx
processors.  When interrupt_init() is called, this register gets reset
which resulted in all POST_RAM POSTs not being ran due to the corrupted
POST word.  To resolve this, store off POST word before the PIC is
reset, and restore it after the PIC has been initialized.

Signed-off-by: default avatarJohn Schmoller <jschmoller@xes-inc.com>
Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent b71ea336
No related branches found
No related tags found
No related merge requests found
...@@ -32,11 +32,23 @@ ...@@ -32,11 +32,23 @@
#include <command.h> #include <command.h>
#include <asm/processor.h> #include <asm/processor.h>
#include <asm/io.h> #include <asm/io.h>
#ifdef CONFIG_POST
#include <post.h>
#endif
int interrupt_init_cpu(unsigned int *decrementer_count) int interrupt_init_cpu(unsigned int *decrementer_count)
{ {
ccsr_pic_t __iomem *pic = (void *)CONFIG_SYS_MPC8xxx_PIC_ADDR; ccsr_pic_t __iomem *pic = (void *)CONFIG_SYS_MPC8xxx_PIC_ADDR;
#ifdef CONFIG_POST
/*
* The POST word is stored in the PIC's TFRR register which gets
* cleared when the PIC is reset. Save it off so we can restore it
* later.
*/
ulong post_word = post_word_load();
#endif
out_be32(&pic->gcr, MPC85xx_PICGCR_RST); out_be32(&pic->gcr, MPC85xx_PICGCR_RST);
while (in_be32(&pic->gcr) & MPC85xx_PICGCR_RST) while (in_be32(&pic->gcr) & MPC85xx_PICGCR_RST)
; ;
...@@ -78,6 +90,10 @@ int interrupt_init_cpu(unsigned int *decrementer_count) ...@@ -78,6 +90,10 @@ int interrupt_init_cpu(unsigned int *decrementer_count)
pic->ctpr=0; /* 40080 clear current task priority register */ pic->ctpr=0; /* 40080 clear current task priority register */
#endif #endif
#ifdef CONFIG_POST
post_word_store(post_word);
#endif
return (0); return (0);
} }
......
...@@ -35,12 +35,24 @@ ...@@ -35,12 +35,24 @@
#include <mpc86xx.h> #include <mpc86xx.h>
#include <command.h> #include <command.h>
#include <asm/processor.h> #include <asm/processor.h>
#ifdef CONFIG_POST
#include <post.h>
#endif
int interrupt_init_cpu(unsigned long *decrementer_count) int interrupt_init_cpu(unsigned long *decrementer_count)
{ {
volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
volatile ccsr_pic_t *pic = &immr->im_pic; volatile ccsr_pic_t *pic = &immr->im_pic;
#ifdef CONFIG_POST
/*
* The POST word is stored in the PIC's TFRR register which gets
* cleared when the PIC is reset. Save it off so we can restore it
* later.
*/
ulong post_word = post_word_load();
#endif
pic->gcr = MPC86xx_PICGCR_RST; pic->gcr = MPC86xx_PICGCR_RST;
while (pic->gcr & MPC86xx_PICGCR_RST) while (pic->gcr & MPC86xx_PICGCR_RST)
; ;
...@@ -74,6 +86,10 @@ int interrupt_init_cpu(unsigned long *decrementer_count) ...@@ -74,6 +86,10 @@ int interrupt_init_cpu(unsigned long *decrementer_count)
pic->ctpr = 0; /* 40080 clear current task priority register */ pic->ctpr = 0; /* 40080 clear current task priority register */
#endif #endif
#ifdef CONFIG_POST
post_word_store(post_word);
#endif
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment