1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <common.h>
15#include <dm.h>
16#include <errno.h>
17#include <fdtdec.h>
18#include <pch.h>
19#include <asm/cpu.h>
20#include <asm/cpu_common.h>
21#include <asm/intel_regs.h>
22#include <asm/io.h>
23#include <asm/lapic.h>
24#include <asm/lpc_common.h>
25#include <asm/microcode.h>
26#include <asm/msr.h>
27#include <asm/mtrr.h>
28#include <asm/pci.h>
29#include <asm/post.h>
30#include <asm/processor.h>
31#include <asm/arch/model_206ax.h>
32#include <asm/arch/pch.h>
33#include <asm/arch/sandybridge.h>
34
35DECLARE_GLOBAL_DATA_PTR;
36
37static int set_flex_ratio_to_tdp_nominal(void)
38{
39
40 if (cpuid_eax(1) < IVB_CONFIG_TDP_MIN_CPUID)
41 return -EINVAL;
42
43 return cpu_set_flex_ratio_to_tdp_nominal();
44}
45
46int arch_cpu_init(void)
47{
48 post_code(POST_CPU_INIT);
49
50 return x86_cpu_init_f();
51}
52
53int arch_cpu_init_dm(void)
54{
55 struct pci_controller *hose;
56 struct udevice *bus, *dev;
57 int ret;
58
59 post_code(0x70);
60 ret = uclass_get_device(UCLASS_PCI, 0, &bus);
61 post_code(0x71);
62 if (ret)
63 return ret;
64 post_code(0x72);
65 hose = dev_get_uclass_priv(bus);
66
67
68 gd->hose = hose;
69
70 ret = uclass_first_device_err(UCLASS_LPC, &dev);
71 if (ret)
72 return ret;
73
74
75
76
77
78
79 ret = set_flex_ratio_to_tdp_nominal();
80 if (ret)
81 return ret;
82
83 return 0;
84}
85
86#define PCH_EHCI0_TEMP_BAR0 0xe8000000
87#define PCH_EHCI1_TEMP_BAR0 0xe8000400
88#define PCH_XHCI_TEMP_BAR0 0xe8001000
89
90
91
92
93
94
95
96
97
98
99static void enable_usb_bar(struct udevice *bus)
100{
101 pci_dev_t usb0 = PCH_EHCI1_DEV;
102 pci_dev_t usb1 = PCH_EHCI2_DEV;
103 pci_dev_t usb3 = PCH_XHCI_DEV;
104 ulong cmd;
105
106
107 pci_bus_write_config(bus, usb0, PCI_BASE_ADDRESS_0,
108 PCH_EHCI0_TEMP_BAR0, PCI_SIZE_32);
109 pci_bus_read_config(bus, usb0, PCI_COMMAND, &cmd, PCI_SIZE_32);
110 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
111 pci_bus_write_config(bus, usb0, PCI_COMMAND, cmd, PCI_SIZE_32);
112
113
114 pci_bus_write_config(bus, usb1, PCI_BASE_ADDRESS_0,
115 PCH_EHCI1_TEMP_BAR0, PCI_SIZE_32);
116 pci_bus_read_config(bus, usb1, PCI_COMMAND, &cmd, PCI_SIZE_32);
117 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
118 pci_bus_write_config(bus, usb1, PCI_COMMAND, cmd, PCI_SIZE_32);
119
120
121 pci_bus_write_config(bus, usb3, PCI_BASE_ADDRESS_0,
122 PCH_XHCI_TEMP_BAR0, PCI_SIZE_32);
123 pci_bus_read_config(bus, usb3, PCI_COMMAND, &cmd, PCI_SIZE_32);
124 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
125 pci_bus_write_config(bus, usb3, PCI_COMMAND, cmd, PCI_SIZE_32);
126}
127
128int print_cpuinfo(void)
129{
130 enum pei_boot_mode_t boot_mode = PEI_BOOT_NONE;
131 char processor_name[CPU_MAX_NAME_LEN];
132 struct udevice *dev, *lpc;
133 const char *name;
134 uint32_t pm1_cnt;
135 uint16_t pm1_sts;
136 int ret;
137
138
139 if (readl(MCHBAR_REG(SSKPD)) == 0xCAFE) {
140 debug("soft reset detected\n");
141 boot_mode = PEI_BOOT_SOFT_RESET;
142
143
144 debug("Issuing CF9 warm reset\n");
145 reset_cpu(0);
146 }
147
148 ret = cpu_common_init();
149 if (ret)
150 return ret;
151
152
153 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
154
155
156 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
157
158 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
159 debug("Resume from S3 detected, but disabled.\n");
160 } else {
161
162
163
164
165 }
166 post_code(POST_EARLY_INIT);
167
168
169 ret = uclass_first_device_err(UCLASS_I2C, &dev);
170 if (ret)
171 return ret;
172
173
174 if (boot_mode == PEI_BOOT_RESUME) {
175 uclass_first_device(UCLASS_LPC, &lpc);
176 enable_usb_bar(pci_get_controller(lpc->parent));
177 }
178
179 gd->arch.pei_boot_mode = boot_mode;
180
181
182 name = cpu_get_name(processor_name);
183 printf("CPU: %s\n", name);
184
185 post_code(POST_CPU_INFO);
186
187 return 0;
188}
189
190void board_debug_uart_init(void)
191{
192
193 pci_x86_write_config(NULL, PCH_LPC_DEV, LPC_EN, COMA_LPC_EN,
194 PCI_SIZE_16);
195}
196