Re: [PATCH v3 4/9] add platform support for MPC837x MDS board
From: Kumar Gala <hidden>
Date: 2007-10-17 13:46:49
On Oct 12, 2007, at 8:28 AM, Li Yang wrote:
quoted hunk ↗ jump to hunk
The MPC837x MDS is a new member of Freescale MDS reference system. Signed-off-by: Li Yang <redacted> --- arch/powerpc/platforms/83xx/Kconfig | 12 ++++ arch/powerpc/platforms/83xx/Makefile | 1 + arch/powerpc/platforms/83xx/mpc837x_mds.c | 103 ++++++++++++++++++ +++++++++++ 3 files changed, 116 insertions(+), 0 deletions(-) create mode 100644 arch/powerpc/platforms/83xx/mpc837x_mds.cdiff --git a/arch/powerpc/platforms/83xx/Kconfig b/arch/powerpc/platforms/83xx/Kconfig index ec305f1..0c61e7a 100644--- a/arch/powerpc/platforms/83xx/Kconfig +++ b/arch/powerpc/platforms/83xx/Kconfig@@ -50,6 +50,11 @@ config MPC836x_MDS help This option enables support for the MPC836x MDS Processor Board. +config MPC837x_MDS + bool "Freescale MPC837x MDS" + select DEFAULT_UIMAGE + help + This option enables support for the MPC837x MDS Processor Board. endchoice config PPC_MPC831x@@ -75,3 +80,10 @@ config PPC_MPC836x select PPC_UDBG_16550 select PPC_INDIRECT_PCI default y if MPC836x_MDS + +config PPC_MPC837x + bool + select PPC_UDBG_16550 + select PPC_INDIRECT_PCI + select FSL_SERDES + default y if MPC837x_MDS
Do we really need this Kconfig option for anything? - k