Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 1 | # |
| 2 | # This file is part of the coreboot project. |
| 3 | # |
Marc Jones | aa31f99 | 2016-09-20 20:30:17 -0600 | [diff] [blame] | 4 | # Copyright (C) 2011 - 2016 Advanced Micro Devices, Inc. |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published by |
| 8 | # the Free Software Foundation; version 2 of the License. |
| 9 | # |
| 10 | # This program is distributed in the hope that it will be useful, |
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | # GNU General Public License for more details. |
| 14 | # |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 15 | |
| 16 | config NORTHBRIDGE_AMD_PI |
Martin Roth | 595e777 | 2015-04-26 18:53:26 -0600 | [diff] [blame] | 17 | bool |
Marc Jones | 21cde8b | 2017-05-07 16:47:36 -0600 | [diff] [blame] | 18 | default y if CPU_AMD_PI |
Marc Jones | 21cde8b | 2017-05-07 16:47:36 -0600 | [diff] [blame] | 19 | default n |
Kyösti Mälkki | 6e37b0a | 2017-04-17 06:45:56 +0300 | [diff] [blame] | 20 | select CBMEM_TOP_BACKUP |
Kyösti Mälkki | e95b6b2 | 2017-04-17 06:45:56 +0300 | [diff] [blame] | 21 | select RELOCATABLE_RAMSTAGE |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 22 | |
| 23 | if NORTHBRIDGE_AMD_PI |
| 24 | |
Ricardo Ribalda Delgado | a132892 | 2016-12-28 15:16:22 +0100 | [diff] [blame] | 25 | config BOTTOMIO_POSITION |
| 26 | hex "Bottom of 32-bit IO space" |
| 27 | default 0xD0000000 |
| 28 | help |
| 29 | If PCI peripherals with big BARs are connected to the system |
| 30 | the bottom of the IO must be decreased to allocate such |
| 31 | devices. |
| 32 | |
| 33 | Declare the beginning of the 128MB-aligned MMIO region. This |
| 34 | option is useful when PCI peripherals requesting large address |
| 35 | ranges are present. |
| 36 | |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 37 | config CONSOLE_VGA_MULTI |
| 38 | bool |
| 39 | default n |
| 40 | |
| 41 | config S3_VGA_ROM_RUN |
| 42 | bool |
| 43 | default n |
| 44 | |
Bruce Griffith | 006364e | 2014-10-22 03:33:49 -0600 | [diff] [blame] | 45 | source src/northbridge/amd/pi/00630F01/Kconfig |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 46 | source src/northbridge/amd/pi/00730F01/Kconfig |
WANG Siyuan | 0563941 | 2015-05-20 14:44:32 +0800 | [diff] [blame] | 47 | source src/northbridge/amd/pi/00660F01/Kconfig |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 48 | |
WANG Siyuan | 2dcd0fc | 2015-06-02 16:25:58 +0800 | [diff] [blame] | 49 | config HW_MEM_HOLE_SIZEK |
| 50 | hex |
| 51 | default 0x200000 |
| 52 | |
| 53 | config HW_MEM_HOLE_SIZE_AUTO_INC |
| 54 | bool |
| 55 | default n |
| 56 | |
| 57 | config RAMTOP |
| 58 | hex |
| 59 | default 0x1000000 |
| 60 | |
| 61 | config HEAP_SIZE |
| 62 | hex |
| 63 | default 0xc0000 |
| 64 | |
| 65 | config RAMBASE |
| 66 | hex |
| 67 | default 0x200000 |
| 68 | |
Kyösti Mälkki | e4c17ce | 2014-10-21 18:22:32 +0300 | [diff] [blame] | 69 | endif # NORTHBRIDGE_AMD_PI |