Skip to content

Commit

Permalink
Also restored start.S
Browse files Browse the repository at this point in the history
  • Loading branch information
jad13041 committed Jan 15, 2020
1 parent 6611d3f commit 2bd1651
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions arch/powerpc/cpu/mpc85xx/start.S
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ l2_disabled:
mtspr IVOR0,r4 /* 0: Critical input */
li r4,MachineCheck@l
mtspr IVOR1,r4 /* 1: Machine check */
//li r4,DataStorage@l
//mtspr IVOR2,r4 /* 2: Data storage */
li r4,DataStorage@l
mtspr IVOR2,r4 /* 2: Data storage */
li r4,InstStorage@l
mtspr IVOR3,r4 /* 3: Instruction storage */
li r4,ExtInterrupt@l
Expand Down Expand Up @@ -1247,7 +1247,7 @@ _start_of_vectors:
MCK_EXCEPTION(0x200, MachineCheck, MachineCheckException)

/* Data Storage exception. */
//STD_EXCEPTION(0x0300, DataStorage, UnknownException)
STD_EXCEPTION(0x0300, DataStorage, UnknownException)

/* Instruction Storage exception. */
STD_EXCEPTION(0x0400, InstStorage, UnknownException)
Expand Down Expand Up @@ -1750,8 +1750,8 @@ trap_init:
mtspr IVOR0,r4 /* 0: Critical input */
lwz r4,MachineCheck@got(r12)
mtspr IVOR1,r4 /* 1: Machine check */
//lwz r4,DataStorage@got(r12)
//mtspr IVOR2,r4 /* 2: Data storage */
lwz r4,DataStorage@got(r12)
mtspr IVOR2,r4 /* 2: Data storage */
lwz r4,InstStorage@got(r12)
mtspr IVOR3,r4 /* 3: Instruction storage */
lwz r4,ExtInterrupt@got(r12)
Expand Down

0 comments on commit 2bd1651

Please sign in to comment.