1## 2## This file is part of the coreboot project. 3## 4## Copyright (C) 2007 coresystems GmbH 5## (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH) 6## 7## This program is free software; you can redistribute it and/or modify 8## it under the terms of the GNU General Public License as published by 9## the Free Software Foundation; either version 2 of the License, or 10## (at your option) any later version. 11## 12## This program is distributed in the hope that it will be useful, 13## but WITHOUT ANY WARRANTY; without even the implied warranty of 14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15## GNU General Public License for more details. 16## 17## You should have received a copy of the GNU General Public License 18## along with this program; if not, write to the Free Software 19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20## 21 22ifeq ($(CONFIG_SOUTHBRIDGE_AMD_SB600),y) 23 24STAGE2_CHIPSET_SRC += $(src)/southbridge/amd/sb600/sb600.c 25 26STAGE2_CHIPSET_SRC += \ 27 $(src)/southbridge/amd/sb600/ac97.c \ 28 $(src)/southbridge/amd/sb600/hda.c \ 29 $(src)/southbridge/amd/sb600/ide.c \ 30 $(src)/southbridge/amd/sb600/lpc.c \ 31 $(src)/southbridge/amd/sb600/pci.c \ 32 $(src)/southbridge/amd/sb600/sata.c \ 33 $(src)/southbridge/amd/sb600/sm.c \ 34 $(src)/southbridge/amd/sb600/usb.c 35 36STAGE0_CHIPSET_SRC += $(src)/southbridge/amd/sb600/stage1.c \ 37 $(src)/southbridge/amd/sb600/stage1_reset.c \ 38 $(src)/southbridge/amd/sb600/stage1_smbus.c 39 40endif 41

