tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / include / cpu / amd / amdfam12.h
blob26b283c5f8c08108ef54b9130d0a3fce9dac8e25
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
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.
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.
16 #ifndef CPU_AMD_FAM12_H
17 #define CPU_AMD_FAM12_H
19 #include <cpu/x86/msr.h>
21 #define HWCR_MSR 0xC0010015
22 #define NB_CFG_MSR 0xC001001f
23 #define LS_CFG_MSR 0xC0011020
24 #define IC_CFG_MSR 0xC0011021
25 #define DC_CFG_MSR 0xC0011022
26 #define BU_CFG_MSR 0xC0011023
27 #define BU_CFG2_MSR 0xC001102A
29 #define CPU_ID_FEATURES_MSR 0xC0011004
30 #define CPU_ID_EXT_FEATURES_MSR 0xC0011005
32 #if defined(__PRE_RAM__)
33 void wait_all_core0_started(void);
34 void wait_all_other_cores_started(u32 bsp_apicid);
35 void wait_all_aps_started(u32 bsp_apicid);
36 void allow_all_aps_stop(u32 bsp_apicid);
37 #endif
38 void get_bus_conf(void);
40 #endif /* CPU_AMD_FAM12_H */