[LinuxBIOS] r320 - in LinuxBIOSv3/southbridge: . amd amd/cs5536

svn at openbios.org svn at openbios.org
Fri May 18 19:42:14 CEST 2007


Author: stepan
Date: 2007-05-18 19:42:13 +0200 (Fri, 18 May 2007)
New Revision: 320

Added:
   LinuxBIOSv3/southbridge/amd/
   LinuxBIOSv3/southbridge/amd/Kconfig
   LinuxBIOSv3/southbridge/amd/Makefile
   LinuxBIOSv3/southbridge/amd/cs5536/
   LinuxBIOSv3/southbridge/amd/cs5536/Makefile
Modified:
   LinuxBIOSv3/southbridge/Kconfig
   LinuxBIOSv3/southbridge/Makefile
Log:
(trivial) add skeleton for cs5536 southbridge

Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>


Modified: LinuxBIOSv3/southbridge/Kconfig
===================================================================
--- LinuxBIOSv3/southbridge/Kconfig	2007-05-18 16:33:52 UTC (rev 319)
+++ LinuxBIOSv3/southbridge/Kconfig	2007-05-18 17:42:13 UTC (rev 320)
@@ -19,5 +19,6 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
+source southbridge/amd/Kconfig
 source southbridge/intel/Kconfig
 

Modified: LinuxBIOSv3/southbridge/Makefile
===================================================================
--- LinuxBIOSv3/southbridge/Makefile	2007-05-18 16:33:52 UTC (rev 319)
+++ LinuxBIOSv3/southbridge/Makefile	2007-05-18 17:42:13 UTC (rev 320)
@@ -19,5 +19,6 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
+include $(src)/southbridge/amd/Makefile
 include $(src)/southbridge/intel/Makefile
 

Added: LinuxBIOSv3/southbridge/amd/Kconfig
===================================================================
--- LinuxBIOSv3/southbridge/amd/Kconfig	                        (rev 0)
+++ LinuxBIOSv3/southbridge/amd/Kconfig	2007-05-18 17:42:13 UTC (rev 320)
@@ -0,0 +1,27 @@
+##
+## This file is part of the LinuxBIOS project.
+##
+## Copyright (C) 2007 coresystems GmbH
+## Written by Stefan Reinauer <stepan at coresystems.de> for coresystems GmbH.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+config SOUTHBRIDGE_AMD_CS5536
+	boolean
+	help
+	  This option is internally used to decide which southbridge code to
+	  use. It is set in the mainboard Kconfig file.
+

Added: LinuxBIOSv3/southbridge/amd/Makefile
===================================================================
--- LinuxBIOSv3/southbridge/amd/Makefile	                        (rev 0)
+++ LinuxBIOSv3/southbridge/amd/Makefile	2007-05-18 17:42:13 UTC (rev 320)
@@ -0,0 +1,26 @@
+##
+## This file is part of the LinuxBIOS project.
+##
+## Copyright (C) 2007 coresystems GmbH
+## Written by Stefan Reinauer <stepan at coresystems.de> for coresystems GmbH.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+# One entry like the below for each supported AMD southbridge.
+ifeq ($(CONFIG_SOUTHBRIDGE_AMD_CS5536),y)
+	include $(src)/southbridge/amd/cs5536/Makefile
+endif
+

Added: LinuxBIOSv3/southbridge/amd/cs5536/Makefile
===================================================================
--- LinuxBIOSv3/southbridge/amd/cs5536/Makefile	                        (rev 0)
+++ LinuxBIOSv3/southbridge/amd/cs5536/Makefile	2007-05-18 17:42:13 UTC (rev 320)
@@ -0,0 +1,28 @@
+##
+## This file is part of the LinuxBIOS project.
+##
+## Copyright (C) 2007 coresystems GmbH
+## Written by Stefan Reinauer <stepan at coresystems.de> for coresystems GmbH.
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+STAGE2_CHIPSET_OBJ += $(obj)/southbridge/amd/cs5536/cs5536.o
+
+$(obj)/southbridge/amd/cs5536/%.o: $(src)/southbridge/amd/cs5536/%.c
+	$(Q)mkdir -p $(obj)/southbridge/amd/cs5536/
+	$(Q)printf "  CC      $(subst $(shell pwd)/,,$(@))\n"
+	$(Q)$(CC) $(INITCFLAGS) -c $< -o $@
+





More information about the coreboot mailing list