mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-01 20:11:32 +00:00
Set Rev 2.x 86xx PIC in mixed mode.
Prevent false interrupt from hanging Linux as MSR[EE] is set to enable interrupts by changing the PIC out of the default pass through mode into mixed mode. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com>
This commit is contained in:
parent
5a58a73ceb
commit
9964a4dd0d
2 changed files with 22 additions and 0 deletions
|
@ -80,6 +80,26 @@ int interrupt_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The IRQ0 on Rev 2 is pulled high (low in Rev 1.x) to
|
||||||
|
* implement PEX10 errata. As INT is active high, it
|
||||||
|
* will cause core to take 0x500 interrupt.
|
||||||
|
*
|
||||||
|
* Due to the PIC's default pass through mode, as soon
|
||||||
|
* as interrupts are enabled (MSR[EE] = 1), an interrupt
|
||||||
|
* will be taken and u-boot will hang. This is due to a
|
||||||
|
* hardware change (per an errata fix) on new revisions
|
||||||
|
* of the board with Rev 2.x parts.
|
||||||
|
*
|
||||||
|
* Setting the PIC to mixed mode prevents the hang.
|
||||||
|
*/
|
||||||
|
if ((get_svr() & 0xf0) == 0x20) {
|
||||||
|
volatile immap_t *immr = (immap_t *)CFG_IMMR;
|
||||||
|
immr->im_pic.gcr = MPC86xx_PICGCR_RST;
|
||||||
|
while (immr->im_pic.gcr & MPC86xx_PICGCR_RST);
|
||||||
|
immr->im_pic.gcr = MPC86xx_PICGCR_MODE;
|
||||||
|
}
|
||||||
|
|
||||||
/* call cpu specific function from $(CPU)/interrupts.c */
|
/* call cpu specific function from $(CPU)/interrupts.c */
|
||||||
ret = interrupt_init_cpu(&decrementer_count);
|
ret = interrupt_init_cpu(&decrementer_count);
|
||||||
|
|
||||||
|
|
|
@ -721,6 +721,8 @@ typedef struct ccsr_pic {
|
||||||
uint frr; /* 0x41000 - Feature Reporting Register */
|
uint frr; /* 0x41000 - Feature Reporting Register */
|
||||||
char res10[28];
|
char res10[28];
|
||||||
uint gcr; /* 0x41020 - Global Configuration Register */
|
uint gcr; /* 0x41020 - Global Configuration Register */
|
||||||
|
#define MPC86xx_PICGCR_RST 0x80000000
|
||||||
|
#define MPC86xx_PICGCR_MODE 0x20000000
|
||||||
char res11[92];
|
char res11[92];
|
||||||
uint vir; /* 0x41080 - Vendor Identification Register */
|
uint vir; /* 0x41080 - Vendor Identification Register */
|
||||||
char res12[12];
|
char res12[12];
|
||||||
|
|
Loading…
Add table
Reference in a new issue