Author: stepan Date: 2007-05-18 19:48:21 +0200 (Fri, 18 May 2007) New Revision: 321
Added: LinuxBIOSv3/northbridge/amd/ LinuxBIOSv3/northbridge/amd/Kconfig LinuxBIOSv3/northbridge/amd/Makefile LinuxBIOSv3/northbridge/amd/geodelx/ LinuxBIOSv3/northbridge/amd/geodelx/Makefile Modified: LinuxBIOSv3/northbridge/Kconfig LinuxBIOSv3/northbridge/Makefile Log: (trivial) add northbridge skeleton for AMD Geode LX(tm) north bridge
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: LinuxBIOSv3/northbridge/Kconfig =================================================================== --- LinuxBIOSv3/northbridge/Kconfig 2007-05-18 17:42:13 UTC (rev 320) +++ LinuxBIOSv3/northbridge/Kconfig 2007-05-18 17:48:21 UTC (rev 321) @@ -19,5 +19,6 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
+source northbridge/amd/Kconfig source northbridge/intel/Kconfig
Modified: LinuxBIOSv3/northbridge/Makefile =================================================================== --- LinuxBIOSv3/northbridge/Makefile 2007-05-18 17:42:13 UTC (rev 320) +++ LinuxBIOSv3/northbridge/Makefile 2007-05-18 17:48:21 UTC (rev 321) @@ -19,5 +19,6 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
+include $(src)/northbridge/amd/Makefile include $(src)/northbridge/intel/Makefile
Added: LinuxBIOSv3/northbridge/amd/Kconfig =================================================================== --- LinuxBIOSv3/northbridge/amd/Kconfig (rev 0) +++ LinuxBIOSv3/northbridge/amd/Kconfig 2007-05-18 17:48:21 UTC (rev 321) @@ -0,0 +1,27 @@ +## +## This file is part of the LinuxBIOS project. +## +## Copyright (C) 2007 coresystems GmbH +## Written by Stefan Reinauer stepan@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 NORTHBRIDGE_AMD_GEODELX + boolean + help + This option is internally used to decide which northbridge code to + use. It is set in the mainboard Kconfig file. +
Added: LinuxBIOSv3/northbridge/amd/Makefile =================================================================== --- LinuxBIOSv3/northbridge/amd/Makefile (rev 0) +++ LinuxBIOSv3/northbridge/amd/Makefile 2007-05-18 17:48:21 UTC (rev 321) @@ -0,0 +1,25 @@ +## +## This file is part of the LinuxBIOS project. +## +## Copyright (C) 2007 coresystems GmbH +## Written by Stefan Reinauer stepan@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 +## + +ifeq ($(CONFIG_NORTHBRIDGE_AMD_GEODELX),y) + include $(src)/northbridge/amd/geodelx/Makefile +endif +
Added: LinuxBIOSv3/northbridge/amd/geodelx/Makefile =================================================================== --- LinuxBIOSv3/northbridge/amd/geodelx/Makefile (rev 0) +++ LinuxBIOSv3/northbridge/amd/geodelx/Makefile 2007-05-18 17:48:21 UTC (rev 321) @@ -0,0 +1,28 @@ +## +## This file is part of the LinuxBIOS project. +## +## Copyright (C) 2007 coresystems GmbH +## Written by Stefan Reinauer stepan@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)/northbridge/amd/geodelx/geodelx.o + +$(obj)/northbridge/amd/geodelx/%.o: $(src)/northbridge/amd/geodelx/%.c + $(Q)mkdir -p $(obj)/northbridge/amd/geodelx + $(Q)printf " CC $(subst $(shell pwd)/,,$(@))\n" + $(Q)$(CC) $(INITCFLAGS) -c $< -o $@ +