northbridge/intel: Add i89xx header file

The Intel northbridge must be paired with a southbridge. Add
the ii89xx southbridge header based on the config setting.

Change-Id: Ied708006310efaba31afe6977ab7e57fe4e5ceec
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-on: http://review.coreboot.org/12167
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Marc Jones 2015-09-24 21:45:13 -06:00 committed by Martin Roth
parent 5a4554a73f
commit 31f4d00c95
2 changed files with 7 additions and 2 deletions

View File

@ -55,8 +55,10 @@
#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
#define DEFAULT_RCBABASE ((u8 *)0xfed1c000)
#if CONFIG_SOUTHBRIDGE_INTEL_FSP_BD82X6X
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_BD82X6X)
#include <southbridge/intel/fsp_bd82x6x/pch.h>
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_I89XX)
#include <southbridge/intel/fsp_i89xx/pch.h>
#endif
/* Everything below this line is ignored in the DSDT */

View File

@ -18,8 +18,11 @@
#include <arch/cpu.h>
#include <string.h>
#if CONFIG_SOUTHBRIDGE_INTEL_FSP_BD82X6X
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_BD82X6X)
#include <southbridge/intel/fsp_bd82x6x/pch.h>
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_FSP_I89XX)
#include <southbridge/intel/fsp_i89xx/pch.h>
#endif
#include <arch/io.h>