Commit a014554e667d702a3a7ae1cf500ebd358e7991be

Authored by Yang Shi
Committed by Linus Torvalds
1 parent 9064a6787a

edac: mpc85xx add P2020DS support

Based on Kumar's new compatible types patch, add P2020 into MPC85xx EDAC
compatible lists so that EDAC can recognize P2020 meomry controller and L2
cache controller and export the relevant fields to sysfs.

EDAC MPC85xx DDR3 support is needed if DDR3 memory stick is installed on a
P2020DS board so that EDAC core can recognize DDR3 memory type.

Signed-off-by: Yang Shi <yang.shi@windriver.com>
Acked-by: Dave Jiang <djiang@mvista.com>
Signed-off-by: Doug Thompson <dougthompson@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/edac/mpc85xx_edac.c
... ... @@ -646,6 +646,7 @@
646 646 { .compatible = "fsl,mpc8560-l2-cache-controller", },
647 647 { .compatible = "fsl,mpc8568-l2-cache-controller", },
648 648 { .compatible = "fsl,mpc8572-l2-cache-controller", },
  649 + { .compatible = "fsl,p2020-l2-cache-controller", },
649 650 {},
650 651 };
651 652  
... ... @@ -984,6 +985,7 @@
984 985 { .compatible = "fsl,mpc8560-memory-controller", },
985 986 { .compatible = "fsl,mpc8568-memory-controller", },
986 987 { .compatible = "fsl,mpc8572-memory-controller", },
  988 + { .compatible = "fsl,p2020-memory-controller", },
987 989 {},
988 990 };
989 991