RE: [PATCH v3 4/9] add platform support for MPC837x MDS board
From: Li Yang-r58472 <hidden>
Date: 2007-10-18 03:51:59
-----Original Message----- From: Kumar Gala [mailto:galak@kernel.crashing.org]=20 Sent: Wednesday, October 17, 2007 9:47 PM To: Li Yang-r58472 Cc: paulus@samba.org; linuxppc-dev@ozlabs.org Subject: Re: [PATCH v3 4/9] add platform support for MPC837x MDS board =20 =20 On Oct 12, 2007, at 8:28 AM, Li Yang wrote: =20quoted
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=20 100644 arch/powerpc/platforms/83xx/mpc837x_mds.cdiff --git a/arch/powerpc/platforms/83xx/Kconfig b/arch/powerpc/=20platforms/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=20Processor Board.quoted
+config MPC837x_MDS + bool "Freescale MPC837x MDS" + select DEFAULT_UIMAGE + help + This option enables support for the MPC837x MDS=20Processor Board.quoted
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=20 Do we really need this Kconfig option for anything?
The chip series can be used on other boards. This option is a container for CPU related selects and can be reused by other boards. - Leo