blob: 484b6430175704c064bb0bedd96ff6c7b9070a84 [file] [log] [blame]
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22/* NOTE: This handler assumes the SMM window goes from 0xa0000
23 * to 0xaffff. In fact, at least on Intel Core CPUs (i945 chipset)
24 * the SMM window is 128K big, covering 0xa0000 to 0xbffff.
25 * So there is a lot of potential for growth in here. Let's stick
26 * to 64k if we can though.
27 */
28
29/*
30 * +--------------------------------+ 0xaffff
31 * | Save State Map Node 0 |
32 * | Save State Map Node 1 |
33 * | Save State Map Node 2 |
34 * | Save State Map Node 3 |
35 * | ... |
36 * +--------------------------------+ 0xaf000
37 * | |
38 * | |
39 * | |
40 * +--------------------------------+ 0xa8400
Stefan Reinauer14e22772010-04-27 06:56:47 +000041 * | SMM Entry Node 0 (+ stack) |
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000042 * +--------------------------------+ 0xa8000
Stefan Reinauer14e22772010-04-27 06:56:47 +000043 * | SMM Entry Node 1 (+ stack) |
44 * | SMM Entry Node 2 (+ stack) |
45 * | SMM Entry Node 3 (+ stack) |
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000046 * | ... |
47 * +--------------------------------+ 0xa7400
48 * | |
49 * | SMM Handler |
50 * | |
51 * +--------------------------------+ 0xa0000
52 *
53 */
54
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000055#define LAPIC_ID 0xfee00020
56
57/* SMM_HANDLER_OFFSET is the 16bit offset within the ASEG
58 * at which smm_handler_start lives. At the moment the handler
Stefan Reinauer14e22772010-04-27 06:56:47 +000059 * lives right at 0xa0000, so the offset is 0.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000060 */
61
62#define SMM_HANDLER_OFFSET 0x0000
63
64/* initially SMM is some sort of real mode. Let gcc know
65 * how to treat the SMM handler stub
66 */
67
68.section ".handler", "a", @progbits
69
70.code16
71
72/**
73 * SMM code to enable protected mode and jump to the
74 * C-written function void smi_handler(u32 smm_revision)
75 *
76 * All the bad magic is not all that bad after all.
77 */
78smm_handler_start:
79 movw $(smm_gdtptr16 - smm_handler_start + SMM_HANDLER_OFFSET), %bx
80 data32 lgdt %cs:(%bx)
81
82 movl %cr0, %eax
83 andl $0x7FFAFFD1, %eax /* PG,AM,WP,NE,TS,EM,MP = 0 */
84 orl $0x60000001, %eax /* CD, NW, PE = 1 */
85 movl %eax, %cr0
86
87 /* Enable protected mode */
88 data32 ljmp $0x08, $1f
89
90.code32
911:
Stefan Reinauer31286852011-10-15 11:23:04 -070092 /* flush the cache after disabling it */
93 wbinvd
94
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000095 /* Use flat data segment */
96 movw $0x10, %ax
97 movw %ax, %ds
98 movw %ax, %es
99 movw %ax, %ss
100 movw %ax, %fs
101 movw %ax, %gs
102
103 /* Get this CPU's LAPIC ID */
104 movl $LAPIC_ID, %esi
105 movl (%esi), %ecx
106 shr $24, %ecx
Stefan Reinauer14e22772010-04-27 06:56:47 +0000107
Alexandru Gagniuc53072d82014-04-12 21:57:18 -0500108 /* This is an ugly hack, and we should find a way to read the CPU index
109 * without relying on the LAPIC ID.
110 */
111#if IS_ENABLED(CONFIG_CPU_AMD_AGESA_FAMILY15_TN)
112 /* LAPIC IDs start from 0x10; map that to the proper core index */
113 subl $0x10, %ecx
114#endif
115
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000116 /* calculate stack offset by multiplying the APIC ID
117 * by 1024 (0x400), and save that offset in ebp.
118 */
119 shl $10, %ecx
120 movl %ecx, %ebp
121
Stefan Reinauer14e22772010-04-27 06:56:47 +0000122 /* We put the stack for each core right above
123 * its SMM entry point. Core 0 starts at 0xa8000,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000124 * we spare 0x10 bytes for the jump to be sure.
125 */
126 movl $0xa8010, %eax
127 subl %ecx, %eax /* subtract offset, see above */
128 movl %eax, %ebx /* Save bottom of stack in ebx */
129
130#define SMM_STACK_SIZE (0x400 - 0x10)
131 /* clear stack */
132 cld
133 movl %eax, %edi
134 movl $(SMM_STACK_SIZE >> 2), %ecx
135 xorl %eax, %eax
136 rep stosl
137
138 /* set new stack */
139 addl $SMM_STACK_SIZE, %ebx
140 movl %ebx, %esp
141
142 /* Get SMM revision */
143 movl $0xa8000 + 0x7efc, %ebx /* core 0 address */
144 subl %ebp, %ebx /* subtract core X offset */
145 movl (%ebx), %eax
146 pushl %eax
147
148 /* Call 32bit C handler */
149 call smi_handler
150
151 /* To return, just do rsm. It will "clean up" protected mode */
152 rsm
153
154.code16
155
156.align 4, 0xff
157
158smm_gdtptr16:
159 .word smm_gdt_end - smm_gdt - 1
160 .long smm_gdt - smm_handler_start + 0xa0000 + SMM_HANDLER_OFFSET
161
162.code32
163
164smm_gdt:
165 /* The first GDT entry can not be used. Keep it zero */
166 .long 0x00000000, 0x00000000
167
168 /* gdt selector 0x08, flat code segment */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000169 .word 0xffff, 0x0000
170 .byte 0x00, 0x9b, 0xcf, 0x00 /* G=1 and 0x0f, 4GB limit */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000171
172 /* gdt selector 0x10, flat data segment */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000173 .word 0xffff, 0x0000
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000174 .byte 0x00, 0x93, 0xcf, 0x00
175
176smm_gdt_end:
177
178
179.section ".jumptable", "a", @progbits
180
181/* This is the SMM jump table. All cores use the same SMM handler
Stefan Reinauer14e22772010-04-27 06:56:47 +0000182 * for simplicity. But SMM Entry needs to be different due to the
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000183 * save state area. The jump table makes sure all CPUs jump into the
184 * real handler on SMM entry.
185 */
186
187/* This code currently supports up to 4 CPU cores. If more than 4 CPU cores
188 * shall be used, below table has to be updated, as well as smm.ld
189 */
190
191/* GNU AS/LD will always generate code that assumes CS is 0xa000. In reality
192 * CS will be set to SMM_BASE[19:4] though. Knowing that the smm handler is the
193 * first thing in the ASEG, we do a far jump here, to set CS to 0xa000.
194 */
195
196.code16
197jumptable:
198 /* core 3 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000199 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000200.align 1024, 0x00
201 /* core 2 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000202 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000203.align 1024, 0x00
204 /* core 1 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000205 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000206.align 1024, 0x00
207 /* core 0 */
208 ljmp $0xa000, $SMM_HANDLER_OFFSET
209.align 1024, 0x00
210