Rename {CPU|NB|SB}/amd/*_wrapper folders

This change renames the cpu/amd/agesa_wrapper, northbridge/
amd/agesa_wrapper, and southbridge/amd/cimx_wrapper folders
to {cpu|NB}/amd/agesa and {SB}/amd/agesa to shorten and
simplify the folder names.
There is also a fix to vendorcode/amd/agesa/lib/amdlib.c to
append "ull" to a trio of 64-bit hexadecimal constants to
allow abuild to run successfully.

Change-Id: I2455e0afb0361ad2e11da2b869ffacbd552cb715
Signed-off-by: Frank Vibrans <frank.vibrans@amd.com>
Signed-off-by: efdesign98 <efdesign98@gmail.com>
Reviewed-on: http://review.coreboot.org/51
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
efdesign98
2011-06-20 17:38:49 -07:00
committed by Marc Jones
parent ee39ea7e7e
commit 05a89ab922
62 changed files with 192 additions and 192 deletions

View File

@ -22,4 +22,4 @@ source src/cpu/amd/model_lx/Kconfig
source src/cpu/amd/sc520/Kconfig
source src/cpu/amd/agesa_wrapper/Kconfig
source src/cpu/amd/agesa/Kconfig

View File

@ -14,5 +14,5 @@ subdirs-$(CONFIG_CPU_AMD_LX) += model_lx
subdirs-$(CONFIG_CPU_AMD_SC520) += sc520
subdirs-$(CONFIG_CPU_AMD_SOCKET_S1G1) += socket_S1G1
subdirs-$(CONFIG_AMD_AGESA) += agesa_wrapper
subdirs-$(CONFIG_AMD_AGESA) += agesa
subdirs-$(CONFIG_AMD_AGESA) += ../../vendorcode/amd/agesa

View File

@ -17,4 +17,4 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
source src/cpu/amd/agesa_wrapper/family14/Kconfig
source src/cpu/amd/agesa/family14/Kconfig

View File

@ -16,4 +16,4 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
subdirs-$(CONFIG_CPU_AMD_AGESA_WRAPPER_FAMILY14) += family14
subdirs-$(CONFIG_CPU_AMD_AGESA_FAMILY14) += family14

View File

@ -17,58 +17,58 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
config CPU_AMD_AGESA_WRAPPER_FAMILY14
config CPU_AMD_AGESA_FAMILY14
bool
select PCI_IO_CFG_EXT
config CPU_ADDR_BITS
int
default 36
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config CPU_SOCKET_TYPE
hex
default 0x10
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
# DDR2 and REG
config DIMM_SUPPORT
hex
default 0x0104
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config EXT_RT_TBL_SUPPORT
bool
default n
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config EXT_CONF_SUPPORT
bool
default n
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config CBB
hex
default 0x0
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config CDB
hex
default 0x18
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config XIP_ROM_BASE
hex
default 0xfff80000
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config XIP_ROM_SIZE
hex
default 0x80000
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14
config HAVE_INIT_TIMER
bool
default y
depends on CPU_AMD_AGESA_WRAPPER_FAMILY14
depends on CPU_AMD_AGESA_FAMILY14

View File

@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
ramstage-y += chip_name.c
driver-y += model_14_init.c
@ -279,4 +279,4 @@ subdirs-y += ../../../x86/pae
subdirs-y += ../../../x86/smm
ramstage-y += apic_timer.c
cpu_incs += $(src)/cpu/amd/agesa_wrapper/family14/cache_as_ram.inc
cpu_incs += $(src)/cpu/amd/agesa/family14/cache_as_ram.inc

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
extern struct chip_operations cpu_amd_agesa_wrapper_family14_ops;
extern struct chip_operations cpu_amd_agesa_family14_ops;
struct cpu_amd_agesa_wrapper_family14_config {
struct cpu_amd_agesa_family14_config {
};

View File

@ -20,6 +20,6 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations cpu_amd_agesa_wrapper_family14_ops = {
struct chip_operations cpu_amd_agesa_family14_ops = {
CHIP_NAME("AMD CPU Family 14h")
};