Skip to content

Commit

Permalink
powerpc/85xx: Reserve a partition of NOR flash for QE ucode firmware
Browse files Browse the repository at this point in the history
Due to the partition of JFFS2 overlaps with QE ucode firmware, So JFFS2
will break QE ucode. Shrink JFFS2's partition to reserve the space of
QE ucode firmware.

Signed-off-by: Jiucheng Xu <Jiucheng.Xu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  • Loading branch information
Jiucheng Xu authored and Kumar Gala committed Mar 12, 2013
1 parent 0655149 commit 1e612bc
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions arch/powerpc/boot/dts/p1021rdb-pc.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,19 @@
};

partition@400000 {
/* 11MB for JFFS2 based Root file System */
reg = <0x00400000 0x00b00000>;
/* 10.75MB for JFFS2 based Root file System */
reg = <0x00400000 0x00ac0000>;
label = "NOR JFFS2 Root File System";
};

partition@ec0000 {
/* This location must not be altered */
/* 256KB for QE ucode firmware*/
reg = <0x00ec0000 0x00040000>;
label = "NOR QE microcode firmware";
read-only;
};

partition@f00000 {
/* This location must not be altered */
/* 512KB for u-boot Bootloader Image */
Expand Down

0 comments on commit 1e612bc

Please sign in to comment.