blob: 3dd0b14c5a1b9fe0cbbe9aa209d3ad3890309dfe [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:
92 /* Use flat data segment */
93 movw $0x10, %ax
94 movw %ax, %ds
95 movw %ax, %es
96 movw %ax, %ss
97 movw %ax, %fs
98 movw %ax, %gs
99
100 /* Get this CPU's LAPIC ID */
101 movl $LAPIC_ID, %esi
102 movl (%esi), %ecx
103 shr $24, %ecx
Stefan Reinauer14e22772010-04-27 06:56:47 +0000104
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000105 /* calculate stack offset by multiplying the APIC ID
106 * by 1024 (0x400), and save that offset in ebp.
107 */
108 shl $10, %ecx
109 movl %ecx, %ebp
110
Stefan Reinauer14e22772010-04-27 06:56:47 +0000111 /* We put the stack for each core right above
112 * its SMM entry point. Core 0 starts at 0xa8000,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000113 * we spare 0x10 bytes for the jump to be sure.
114 */
115 movl $0xa8010, %eax
116 subl %ecx, %eax /* subtract offset, see above */
117 movl %eax, %ebx /* Save bottom of stack in ebx */
118
119#define SMM_STACK_SIZE (0x400 - 0x10)
120 /* clear stack */
121 cld
122 movl %eax, %edi
123 movl $(SMM_STACK_SIZE >> 2), %ecx
124 xorl %eax, %eax
125 rep stosl
126
127 /* set new stack */
128 addl $SMM_STACK_SIZE, %ebx
129 movl %ebx, %esp
130
131 /* Get SMM revision */
132 movl $0xa8000 + 0x7efc, %ebx /* core 0 address */
133 subl %ebp, %ebx /* subtract core X offset */
134 movl (%ebx), %eax
135 pushl %eax
136
137 /* Call 32bit C handler */
138 call smi_handler
139
140 /* To return, just do rsm. It will "clean up" protected mode */
141 rsm
142
143.code16
144
145.align 4, 0xff
146
147smm_gdtptr16:
148 .word smm_gdt_end - smm_gdt - 1
149 .long smm_gdt - smm_handler_start + 0xa0000 + SMM_HANDLER_OFFSET
150
151.code32
152
153smm_gdt:
154 /* The first GDT entry can not be used. Keep it zero */
155 .long 0x00000000, 0x00000000
156
157 /* gdt selector 0x08, flat code segment */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000158 .word 0xffff, 0x0000
159 .byte 0x00, 0x9b, 0xcf, 0x00 /* G=1 and 0x0f, 4GB limit */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000160
161 /* gdt selector 0x10, flat data segment */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000162 .word 0xffff, 0x0000
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000163 .byte 0x00, 0x93, 0xcf, 0x00
164
165smm_gdt_end:
166
167
168.section ".jumptable", "a", @progbits
169
170/* This is the SMM jump table. All cores use the same SMM handler
Stefan Reinauer14e22772010-04-27 06:56:47 +0000171 * for simplicity. But SMM Entry needs to be different due to the
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000172 * save state area. The jump table makes sure all CPUs jump into the
173 * real handler on SMM entry.
174 */
175
176/* This code currently supports up to 4 CPU cores. If more than 4 CPU cores
177 * shall be used, below table has to be updated, as well as smm.ld
178 */
179
180/* GNU AS/LD will always generate code that assumes CS is 0xa000. In reality
181 * CS will be set to SMM_BASE[19:4] though. Knowing that the smm handler is the
182 * first thing in the ASEG, we do a far jump here, to set CS to 0xa000.
183 */
184
185.code16
186jumptable:
187 /* core 3 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000188 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000189.align 1024, 0x00
190 /* core 2 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000191 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000192.align 1024, 0x00
193 /* core 1 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000194 ljmp $0xa000, $SMM_HANDLER_OFFSET
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000195.align 1024, 0x00
196 /* core 0 */
197 ljmp $0xa000, $SMM_HANDLER_OFFSET
198.align 1024, 0x00
199