blob: fe49fe802ca618635c014ce3d340a682859ef898 [file] [log] [blame]
Furquan Shaikhf318e032020-05-04 23:38:53 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Furquan Shaikhf318e032020-05-04 23:38:53 -07002
3#include <amdblocks/chip.h>
4#include <amdblocks/espi.h>
5#include <amdblocks/lpc.h>
6#include <arch/mmio.h>
7#include <console/console.h>
Furquan Shaikh70063ff52020-05-11 14:28:13 -07008#include <espi.h>
Furquan Shaikhf318e032020-05-04 23:38:53 -07009#include <soc/pci_devs.h>
Furquan Shaikh70063ff52020-05-11 14:28:13 -070010#include <timer.h>
Furquan Shaikhf318e032020-05-04 23:38:53 -070011#include <types.h>
12
Furquan Shaikh98bc9612020-05-09 19:31:55 -070013static uintptr_t espi_bar;
14
15void espi_update_static_bar(uintptr_t bar)
16{
17 espi_bar = bar;
18}
19
Furquan Shaikhf318e032020-05-04 23:38:53 -070020static uintptr_t espi_get_bar(void)
21{
Martin Rothb39e10d2020-07-14 11:08:55 -060022 if (ENV_X86 && !espi_bar)
23 espi_update_static_bar(lpc_get_spibase() + ESPI_OFFSET_FROM_BAR);
Furquan Shaikh98bc9612020-05-09 19:31:55 -070024 return espi_bar;
Furquan Shaikhf318e032020-05-04 23:38:53 -070025}
26
Felix Held92dd6782020-08-10 20:27:58 +020027static uint32_t espi_read32(unsigned int reg)
Furquan Shaikhf318e032020-05-04 23:38:53 -070028{
29 return read32((void *)(espi_get_bar() + reg));
30}
31
Felix Held92dd6782020-08-10 20:27:58 +020032static void espi_write32(unsigned int reg, uint32_t val)
Furquan Shaikhf318e032020-05-04 23:38:53 -070033{
34 write32((void *)(espi_get_bar() + reg), val);
35}
36
Felix Held92dd6782020-08-10 20:27:58 +020037static uint16_t espi_read16(unsigned int reg)
Furquan Shaikhf318e032020-05-04 23:38:53 -070038{
39 return read16((void *)(espi_get_bar() + reg));
40}
41
Felix Held92dd6782020-08-10 20:27:58 +020042static void espi_write16(unsigned int reg, uint16_t val)
Furquan Shaikhf318e032020-05-04 23:38:53 -070043{
44 write16((void *)(espi_get_bar() + reg), val);
45}
46
Felix Held92dd6782020-08-10 20:27:58 +020047static uint8_t espi_read8(unsigned int reg)
Furquan Shaikhf318e032020-05-04 23:38:53 -070048{
49 return read8((void *)(espi_get_bar() + reg));
50}
51
Felix Held92dd6782020-08-10 20:27:58 +020052static void espi_write8(unsigned int reg, uint8_t val)
Furquan Shaikhf318e032020-05-04 23:38:53 -070053{
54 write8((void *)(espi_get_bar() + reg), val);
55}
56
Felix Heldf08fbf82020-08-10 20:30:36 +020057static void espi_enable_decode(uint32_t decode_en)
Furquan Shaikhf318e032020-05-04 23:38:53 -070058{
59 uint32_t val;
60
61 val = espi_read32(ESPI_DECODE);
62 val |= decode_en;
63 espi_write32(ESPI_DECODE, val);
64}
65
Felix Heldf08fbf82020-08-10 20:30:36 +020066static bool espi_is_decode_enabled(uint32_t decode)
Furquan Shaikhf318e032020-05-04 23:38:53 -070067{
68 uint32_t val;
69
70 val = espi_read32(ESPI_DECODE);
71 return !!(val & decode);
72}
73
74static int espi_find_io_window(uint16_t win_base)
75{
76 int i;
77
78 for (i = 0; i < ESPI_GENERIC_IO_WIN_COUNT; i++) {
79 if (!espi_is_decode_enabled(ESPI_DECODE_IO_RANGE_EN(i)))
80 continue;
81
82 if (espi_read16(ESPI_IO_RANGE_BASE(i)) == win_base)
83 return i;
84 }
85
86 return -1;
87}
88
89static int espi_get_unused_io_window(void)
90{
91 int i;
92
93 for (i = 0; i < ESPI_GENERIC_IO_WIN_COUNT; i++) {
94 if (!espi_is_decode_enabled(ESPI_DECODE_IO_RANGE_EN(i)))
95 return i;
96 }
97
98 return -1;
99}
100
Martin Roth011bf132021-03-23 13:20:42 -0600101void espi_clear_decodes(void)
102{
103 unsigned int idx;
104
105 /* First turn off all enable bits, then zero base, range, and size registers */
106 /*
107 * There is currently a bug where the SMU will lock up at times if the port80h enable
108 * bit is cleared. See b/183974365
109 */
110 espi_write16(ESPI_DECODE, (espi_read16(ESPI_DECODE) & ESPI_DECODE_IO_0x80_EN));
111
112 for (idx = 0; idx < ESPI_GENERIC_IO_WIN_COUNT; idx++) {
113 espi_write16(ESPI_IO_RANGE_BASE(idx), 0);
114 espi_write8(ESPI_IO_RANGE_SIZE(idx), 0);
115 }
116 for (idx = 0; idx < ESPI_GENERIC_MMIO_WIN_COUNT; idx++) {
117 espi_write32(ESPI_MMIO_RANGE_BASE(idx), 0);
118 espi_write16(ESPI_MMIO_RANGE_SIZE(idx), 0);
119 }
120}
121
Furquan Shaikhf318e032020-05-04 23:38:53 -0700122/*
123 * Returns decode enable bits for standard IO port addresses. If port address is not supported
124 * by standard decode or if the size of window is not 1, then it returns -1.
125 */
126static int espi_std_io_decode(uint16_t base, size_t size)
127{
Felix Heldc0d4eeb2020-08-10 20:37:16 +0200128 if (size == 2 && base == 0x2e)
129 return ESPI_DECODE_IO_0X2E_0X2F_EN;
130
Furquan Shaikhf318e032020-05-04 23:38:53 -0700131 if (size != 1)
Felix Held4bf419f2020-08-10 20:33:25 +0200132 return -1;
Furquan Shaikhf318e032020-05-04 23:38:53 -0700133
134 switch (base) {
135 case 0x80:
Felix Held4bf419f2020-08-10 20:33:25 +0200136 return ESPI_DECODE_IO_0x80_EN;
Furquan Shaikhf318e032020-05-04 23:38:53 -0700137 case 0x60:
138 case 0x64:
Felix Held4bf419f2020-08-10 20:33:25 +0200139 return ESPI_DECODE_IO_0X60_0X64_EN;
Furquan Shaikhf318e032020-05-04 23:38:53 -0700140 case 0x2e:
141 case 0x2f:
Felix Held4bf419f2020-08-10 20:33:25 +0200142 return ESPI_DECODE_IO_0X2E_0X2F_EN;
Furquan Shaikhf318e032020-05-04 23:38:53 -0700143 default:
Felix Held4bf419f2020-08-10 20:33:25 +0200144 return -1;
Furquan Shaikhf318e032020-05-04 23:38:53 -0700145 }
Furquan Shaikhf318e032020-05-04 23:38:53 -0700146}
147
148static size_t espi_get_io_window_size(int idx)
149{
150 return espi_read8(ESPI_IO_RANGE_SIZE(idx)) + 1;
151}
152
153static void espi_write_io_window(int idx, uint16_t base, size_t size)
154{
155 espi_write16(ESPI_IO_RANGE_BASE(idx), base);
156 espi_write8(ESPI_IO_RANGE_SIZE(idx), size - 1);
157}
158
159static int espi_open_generic_io_window(uint16_t base, size_t size)
160{
161 size_t win_size;
162 int idx;
163
164 for (; size; size -= win_size, base += win_size) {
165 win_size = MIN(size, ESPI_GENERIC_IO_MAX_WIN_SIZE);
166
167 idx = espi_find_io_window(base);
168 if (idx != -1) {
169 size_t curr_size = espi_get_io_window_size(idx);
170
171 if (curr_size > win_size) {
172 printk(BIOS_INFO, "eSPI window already configured to be larger than requested! ");
173 printk(BIOS_INFO, "Base: 0x%x, Requested size: 0x%zx, Actual size: 0x%zx\n",
174 base, win_size, curr_size);
175 } else if (curr_size < win_size) {
176 espi_write_io_window(idx, base, win_size);
177 printk(BIOS_INFO, "eSPI window at base: 0x%x resized from 0x%zx to 0x%zx\n",
178 base, curr_size, win_size);
179 }
180
181 continue;
182 }
183
184 idx = espi_get_unused_io_window();
185 if (idx == -1) {
186 printk(BIOS_ERR, "Cannot open IO window base %x size %zx\n", base,
187 size);
188 printk(BIOS_ERR, "ERROR: No more available IO windows!\n");
189 return -1;
190 }
191
192 espi_write_io_window(idx, base, win_size);
193 espi_enable_decode(ESPI_DECODE_IO_RANGE_EN(idx));
194 }
195
196 return 0;
197}
198
199int espi_open_io_window(uint16_t base, size_t size)
200{
201 int std_io;
202
203 std_io = espi_std_io_decode(base, size);
204 if (std_io != -1) {
205 espi_enable_decode(std_io);
206 return 0;
Felix Heldb026c7c2020-08-10 20:43:53 +0200207 } else {
208 return espi_open_generic_io_window(base, size);
Furquan Shaikhf318e032020-05-04 23:38:53 -0700209 }
Furquan Shaikhf318e032020-05-04 23:38:53 -0700210}
211
212static int espi_find_mmio_window(uint32_t win_base)
213{
214 int i;
215
216 for (i = 0; i < ESPI_GENERIC_MMIO_WIN_COUNT; i++) {
217 if (!espi_is_decode_enabled(ESPI_DECODE_MMIO_RANGE_EN(i)))
218 continue;
219
220 if (espi_read32(ESPI_MMIO_RANGE_BASE(i)) == win_base)
221 return i;
222 }
223
224 return -1;
225}
226
227static int espi_get_unused_mmio_window(void)
228{
229 int i;
230
231 for (i = 0; i < ESPI_GENERIC_MMIO_WIN_COUNT; i++) {
232 if (!espi_is_decode_enabled(ESPI_DECODE_MMIO_RANGE_EN(i)))
233 return i;
234 }
235
236 return -1;
237
238}
239
240static size_t espi_get_mmio_window_size(int idx)
241{
242 return espi_read16(ESPI_MMIO_RANGE_SIZE(idx)) + 1;
243}
244
245static void espi_write_mmio_window(int idx, uint32_t base, size_t size)
246{
247 espi_write32(ESPI_MMIO_RANGE_BASE(idx), base);
248 espi_write16(ESPI_MMIO_RANGE_SIZE(idx), size - 1);
249}
250
251int espi_open_mmio_window(uint32_t base, size_t size)
252{
253 size_t win_size;
254 int idx;
255
256 for (; size; size -= win_size, base += win_size) {
257 win_size = MIN(size, ESPI_GENERIC_MMIO_MAX_WIN_SIZE);
258
259 idx = espi_find_mmio_window(base);
260 if (idx != -1) {
261 size_t curr_size = espi_get_mmio_window_size(idx);
262
263 if (curr_size > win_size) {
264 printk(BIOS_INFO, "eSPI window already configured to be larger than requested! ");
265 printk(BIOS_INFO, "Base: 0x%x, Requested size: 0x%zx, Actual size: 0x%zx\n",
266 base, win_size, curr_size);
267 } else if (curr_size < win_size) {
268 espi_write_mmio_window(idx, base, win_size);
269 printk(BIOS_INFO, "eSPI window at base: 0x%x resized from 0x%zx to 0x%zx\n",
270 base, curr_size, win_size);
271 }
272
273 continue;
274 }
275
276 idx = espi_get_unused_mmio_window();
277 if (idx == -1) {
278 printk(BIOS_ERR, "Cannot open IO window base %x size %zx\n", base,
279 size);
280 printk(BIOS_ERR, "ERROR: No more available MMIO windows!\n");
281 return -1;
282 }
283
284 espi_write_mmio_window(idx, base, win_size);
285 espi_enable_decode(ESPI_DECODE_MMIO_RANGE_EN(idx));
286 }
287
288 return 0;
289}
290
291static const struct espi_config *espi_get_config(void)
292{
293 const struct soc_amd_common_config *soc_cfg = soc_get_common_config();
294
295 if (!soc_cfg)
296 die("Common config structure is NULL!\n");
297
298 return &soc_cfg->espi_config;
299}
300
301void espi_configure_decodes(void)
302{
303 int i;
304 const struct espi_config *cfg = espi_get_config();
305
306 espi_enable_decode(cfg->std_io_decode_bitmap);
307
308 for (i = 0; i < ESPI_GENERIC_IO_WIN_COUNT; i++) {
309 if (cfg->generic_io_range[i].size == 0)
310 continue;
311 espi_open_generic_io_window(cfg->generic_io_range[i].base,
312 cfg->generic_io_range[i].size);
313 }
314}
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700315
316#define ESPI_DN_TX_HDR0 0x00
317enum espi_cmd_type {
318 CMD_TYPE_SET_CONFIGURATION = 0,
319 CMD_TYPE_GET_CONFIGURATION = 1,
320 CMD_TYPE_IN_BAND_RESET = 2,
321 CMD_TYPE_PERIPHERAL = 4,
322 CMD_TYPE_VW = 5,
323 CMD_TYPE_OOB = 6,
324 CMD_TYPE_FLASH = 7,
325};
326
327#define ESPI_DN_TX_HDR1 0x04
328#define ESPI_DN_TX_HDR2 0x08
329#define ESPI_DN_TX_DATA 0x0c
330
331#define ESPI_MASTER_CAP 0x2c
332#define ESPI_VW_MAX_SIZE_SHIFT 13
333#define ESPI_VW_MAX_SIZE_MASK (0x3f << ESPI_VW_MAX_SIZE_SHIFT)
334
Raul E Rangel1d0e4932021-04-02 10:27:11 -0600335#define ESPI_GLOBAL_CONTROL_0 0x30
336#define ESPI_WAIT_CNT_SHIFT 24
337#define ESPI_WAIT_CNT_MASK (0x3F << ESPI_WAIT_CNT_SHIFT)
338#define ESPI_WDG_CNT_SHIFT 8
339#define ESPI_WDG_CNT_MASK (0xFFFF << ESPI_WDG_CNT_SHIFT)
340#define ESPI_AL_IDLE_TIMER_SHIFT 4
341#define ESPI_AL_IDLE_TIMER_MASK (0x7 << ESPI_AL_IDLE_TIMER_SHIFT)
342#define ESPI_AL_STOP_EN (1 << 3)
343#define ESPI_PR_CLKGAT_EN (1 << 2)
344#define ESPI_WAIT_CHKEN (1 << 1)
345#define ESPI_WDG_EN (1 << 0)
346
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700347#define ESPI_GLOBAL_CONTROL_1 0x34
Raul E Rangel1d0e4932021-04-02 10:27:11 -0600348#define ESPI_RGCMD_INT_MAP_SHIFT 13
349#define ESPI_RGCMD_INT_MAP_MASK (0x1F << ESPI_RGCMD_INT_MAP_SHIFT)
350#define ESPI_RGCMD_INT(irq) ((irq) << ESPI_RGCMD_INT_MAP_SHIFT)
351#define ESPI_RGCMD_INT_SMI (0x1F << ESPI_RGCMD_INT_MAP_SHIFT)
352#define ESPI_ERR_INT_MAP_SHIFT 8
353#define ESPI_ERR_INT_MAP_MASK (0x1F << ESPI_ERR_INT_MAP_SHIFT)
354#define ESPI_ERR_INT(irq) ((irq) << ESPI_ERR_INT_MAP_SHIFT)
355#define ESPI_ERR_INT_SMI (0x1F << ESPI_ERR_INT_MAP_SHIFT)
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700356#define ESPI_SUB_DECODE_SLV_SHIFT 3
357#define ESPI_SUB_DECODE_SLV_MASK (0x3 << ESPI_SUB_DECODE_SLV_SHIFT)
358#define ESPI_SUB_DECODE_EN (1 << 2)
Raul E Rangel1d0e4932021-04-02 10:27:11 -0600359#define ESPI_BUS_MASTER_EN (1 << 1)
360#define ESPI_SW_RST (1 << 0)
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700361
Raul E Rangel1d0e4932021-04-02 10:27:11 -0600362#define ESPI_SLAVE0_INT_EN 0x6C
Raul E Rangel47740122021-04-02 10:16:54 -0600363#define ESPI_SLAVE0_INT_STS 0x70
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700364#define ESPI_STATUS_DNCMD_COMPLETE (1 << 28)
365#define ESPI_STATUS_NON_FATAL_ERROR (1 << 6)
366#define ESPI_STATUS_FATAL_ERROR (1 << 5)
367#define ESPI_STATUS_NO_RESPONSE (1 << 4)
368#define ESPI_STATUS_CRC_ERR (1 << 2)
369#define ESPI_STATUS_WAIT_TIMEOUT (1 << 1)
370#define ESPI_STATUS_BUS_ERROR (1 << 0)
371
372#define ESPI_RXVW_POLARITY 0xac
373
374#define ESPI_CMD_TIMEOUT_US 100
375#define ESPI_CH_READY_TIMEOUT_US 1000
376
377union espi_txhdr0 {
378 uint32_t val;
379 struct {
380 uint32_t cmd_type:3;
381 uint32_t cmd_sts:1;
382 uint32_t slave_sel:2;
383 uint32_t rsvd:2;
384 uint32_t hdata0:8;
385 uint32_t hdata1:8;
386 uint32_t hdata2:8;
387 };
388} __packed;
389
390union espi_txhdr1 {
391 uint32_t val;
392 struct {
393 uint32_t hdata3:8;
394 uint32_t hdata4:8;
395 uint32_t hdata5:8;
396 uint32_t hdata6:8;
397 };
398} __packed;
399
400union espi_txhdr2 {
401 uint32_t val;
402 struct {
403 uint32_t hdata7:8;
404 uint32_t rsvd:24;
405 };
406} __packed;
407
408union espi_txdata {
409 uint32_t val;
410 struct {
411 uint32_t byte0:8;
412 uint32_t byte1:8;
413 uint32_t byte2:8;
414 uint32_t byte3:8;
415 };
416} __packed;
417
418struct espi_cmd {
419 union espi_txhdr0 hdr0;
420 union espi_txhdr1 hdr1;
421 union espi_txhdr2 hdr2;
422 union espi_txdata data;
423} __packed;
424
425/* Wait up to ESPI_CMD_TIMEOUT_US for hardware to clear DNCMD_STATUS bit. */
426static int espi_wait_ready(void)
427{
428 struct stopwatch sw;
429 union espi_txhdr0 hdr0;
430
431 stopwatch_init_usecs_expire(&sw, ESPI_CMD_TIMEOUT_US);
432 do {
433 hdr0.val = espi_read32(ESPI_DN_TX_HDR0);
434 if (!hdr0.cmd_sts)
435 return 0;
436 } while (!stopwatch_expired(&sw));
437
438 return -1;
439}
440
441/* Clear interrupt status register */
442static void espi_clear_status(void)
443{
Raul E Rangel47740122021-04-02 10:16:54 -0600444 uint32_t status = espi_read32(ESPI_SLAVE0_INT_STS);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700445 if (status)
Raul E Rangel47740122021-04-02 10:16:54 -0600446 espi_write32(ESPI_SLAVE0_INT_STS, status);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700447}
448
449/*
450 * Wait up to ESPI_CMD_TIMEOUT_US for interrupt status register to update after sending a
451 * command.
452 */
Felix Held1ba38332020-08-10 20:45:30 +0200453static int espi_poll_status(uint32_t *status)
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700454{
455 struct stopwatch sw;
456
457 stopwatch_init_usecs_expire(&sw, ESPI_CMD_TIMEOUT_US);
458 do {
Raul E Rangel47740122021-04-02 10:16:54 -0600459 *status = espi_read32(ESPI_SLAVE0_INT_STS);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700460 if (*status)
461 return 0;
462 } while (!stopwatch_expired(&sw));
463
464 printk(BIOS_ERR, "Error: eSPI timed out waiting for status update.\n");
465
466 return -1;
467}
468
469static void espi_show_failure(const struct espi_cmd *cmd, const char *str, uint32_t status)
470{
471 printk(BIOS_ERR, "eSPI cmd0-cmd2: %08x %08x %08x data: %08x.\n",
472 cmd->hdr0.val, cmd->hdr1.val, cmd->hdr2.val, cmd->data.val);
473 printk(BIOS_ERR, "%s (Status = 0x%x)\n", str, status);
474}
475
476static int espi_send_command(const struct espi_cmd *cmd)
477{
478 uint32_t status;
479
480 if (CONFIG(ESPI_DEBUG))
481 printk(BIOS_ERR, "eSPI cmd0-cmd2: %08x %08x %08x data: %08x.\n",
482 cmd->hdr0.val, cmd->hdr1.val, cmd->hdr2.val, cmd->data.val);
483
484 if (espi_wait_ready() == -1) {
485 espi_show_failure(cmd, "Error: eSPI was not ready to accept a command", 0);
486 return -1;
487 }
488
489 espi_clear_status();
490
491 espi_write32(ESPI_DN_TX_HDR1, cmd->hdr1.val);
492 espi_write32(ESPI_DN_TX_HDR2, cmd->hdr2.val);
493 espi_write32(ESPI_DN_TX_DATA, cmd->data.val);
494
495 /* Dword 0 must be last as this write triggers the transaction */
496 espi_write32(ESPI_DN_TX_HDR0, cmd->hdr0.val);
497
498 if (espi_wait_ready() == -1) {
499 espi_show_failure(cmd,
500 "Error: eSPI timed out waiting for command to complete", 0);
501 return -1;
502 }
503
Felix Held1ba38332020-08-10 20:45:30 +0200504 if (espi_poll_status(&status) == -1) {
505 espi_show_failure(cmd, "Error: eSPI poll status failed", 0);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700506 return -1;
507 }
508
509 /* If command did not complete downstream, return error. */
510 if (!(status & ESPI_STATUS_DNCMD_COMPLETE)) {
511 espi_show_failure(cmd, "Error: eSPI downstream command completion failure",
512 status);
513 return -1;
514 }
515
516 if (status & ~ESPI_STATUS_DNCMD_COMPLETE) {
Felix Held316d59c2020-08-10 20:42:20 +0200517 espi_show_failure(cmd, "Error: unexpected eSPI status register bits set",
518 status);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700519 return -1;
520 }
521
522 return 0;
523}
524
525static int espi_send_reset(void)
526{
527 struct espi_cmd cmd = {
528 .hdr0 = {
529 .cmd_type = CMD_TYPE_IN_BAND_RESET,
530 .cmd_sts = 1,
531 },
532 };
533
534 return espi_send_command(&cmd);
535}
536
537static int espi_send_pltrst_deassert(const struct espi_config *mb_cfg)
538{
539 struct espi_cmd cmd = {
540 .hdr0 = {
541 .cmd_type = CMD_TYPE_VW,
542 .cmd_sts = 1,
543 .hdata0 = 0, /* 1 VW group */
544 },
545 .data = {
546 .byte0 = ESPI_VW_INDEX_SYSTEM_EVENT_3,
547 .byte1 = ESPI_VW_SIGNAL_HIGH(ESPI_VW_PLTRST),
548 },
549 };
550
551 if (!mb_cfg->vw_ch_en)
552 return 0;
553
554 return espi_send_command(&cmd);
555}
556
557/*
558 * In case of get configuration command, hdata0 contains bits 15:8 of the slave register address
559 * and hdata1 contains bits 7:0 of the slave register address.
560 */
561#define ESPI_CONFIGURATION_HDATA0(a) (((a) >> 8) & 0xff)
562#define ESPI_CONFIGURATION_HDATA1(a) ((a) & 0xff)
563
564static int espi_get_configuration(uint16_t slave_reg_addr, uint32_t *config)
565{
566 struct espi_cmd cmd = {
567 .hdr0 = {
568 .cmd_type = CMD_TYPE_GET_CONFIGURATION,
569 .cmd_sts = 1,
570 .hdata0 = ESPI_CONFIGURATION_HDATA0(slave_reg_addr),
571 .hdata1 = ESPI_CONFIGURATION_HDATA1(slave_reg_addr),
572 },
573 };
574
575 *config = 0;
576
577 if (espi_send_command(&cmd))
578 return -1;
579
580 *config = espi_read32(ESPI_DN_TX_HDR1);
581
582 if (CONFIG(ESPI_DEBUG))
583 printk(BIOS_DEBUG, "Get configuration for slave register(0x%x): 0x%x\n",
584 slave_reg_addr, *config);
585
586 return 0;
587}
588
589static int espi_set_configuration(uint16_t slave_reg_addr, uint32_t config)
590{
591 struct espi_cmd cmd = {
592 .hdr0 = {
593 .cmd_type = CMD_TYPE_SET_CONFIGURATION,
594 .cmd_sts = 1,
595 .hdata0 = ESPI_CONFIGURATION_HDATA0(slave_reg_addr),
596 .hdata1 = ESPI_CONFIGURATION_HDATA1(slave_reg_addr),
597 },
598 .hdr1 = {
599 .val = config,
600 },
601 };
602
603 return espi_send_command(&cmd);
604}
605
606static int espi_get_general_configuration(uint32_t *config)
607{
608 int ret = espi_get_configuration(ESPI_SLAVE_GENERAL_CFG, config);
609 if (ret == -1)
610 return -1;
611
612 espi_show_slave_general_configuration(*config);
613 return 0;
614}
615
616static void espi_set_io_mode_config(enum espi_io_mode mb_io_mode, uint32_t slave_caps,
617 uint32_t *slave_config, uint32_t *ctrlr_config)
618{
619 switch (mb_io_mode) {
620 case ESPI_IO_MODE_QUAD:
621 if (espi_slave_supports_quad_io(slave_caps)) {
622 *slave_config |= ESPI_SLAVE_IO_MODE_SEL_QUAD;
623 *ctrlr_config |= ESPI_IO_MODE_QUAD;
624 break;
625 }
626 printk(BIOS_ERR, "Error: eSPI Quad I/O not supported. Dropping to dual mode.\n");
627 /* Intentional fall-through */
628 case ESPI_IO_MODE_DUAL:
629 if (espi_slave_supports_dual_io(slave_caps)) {
630 *slave_config |= ESPI_SLAVE_IO_MODE_SEL_DUAL;
631 *ctrlr_config |= ESPI_IO_MODE_DUAL;
632 break;
633 }
634 printk(BIOS_ERR,
635 "Error: eSPI Dual I/O not supported. Dropping to single mode.\n");
636 /* Intentional fall-through */
637 case ESPI_IO_MODE_SINGLE:
638 /* Single I/O mode is always supported. */
639 *slave_config |= ESPI_SLAVE_IO_MODE_SEL_SINGLE;
640 *ctrlr_config |= ESPI_IO_MODE_SINGLE;
641 break;
642 default:
643 die("No supported eSPI I/O modes!\n");
644 }
645}
646
647static void espi_set_op_freq_config(enum espi_op_freq mb_op_freq, uint32_t slave_caps,
648 uint32_t *slave_config, uint32_t *ctrlr_config)
649{
650 int slave_max_speed_mhz = espi_slave_max_speed_mhz_supported(slave_caps);
651
652 switch (mb_op_freq) {
653 case ESPI_OP_FREQ_66_MHZ:
654 if (slave_max_speed_mhz >= 66) {
655 *slave_config |= ESPI_SLAVE_OP_FREQ_SEL_66_MHZ;
656 *ctrlr_config |= ESPI_OP_FREQ_66_MHZ;
657 break;
658 }
659 printk(BIOS_ERR, "Error: eSPI 66MHz not supported. Dropping to 33MHz.\n");
660 /* Intentional fall-through */
661 case ESPI_OP_FREQ_33_MHZ:
662 if (slave_max_speed_mhz >= 33) {
663 *slave_config |= ESPI_SLAVE_OP_FREQ_SEL_33_MHZ;
664 *ctrlr_config |= ESPI_OP_FREQ_33_MHZ;
665 break;
666 }
667 printk(BIOS_ERR, "Error: eSPI 33MHz not supported. Dropping to 16MHz.\n");
668 /* Intentional fall-through */
669 case ESPI_OP_FREQ_16_MHZ:
670 /*
671 * eSPI spec says the minimum frequency is 20MHz, but AMD datasheets support
672 * 16.7 Mhz.
673 */
674 if (slave_max_speed_mhz > 0) {
675 *slave_config |= ESPI_SLAVE_OP_FREQ_SEL_20_MHZ;
676 *ctrlr_config |= ESPI_OP_FREQ_16_MHZ;
677 break;
678 }
679 /* Intentional fall-through */
680 default:
681 die("No supported eSPI Operating Frequency!\n");
682 }
683}
684
685static int espi_set_general_configuration(const struct espi_config *mb_cfg, uint32_t slave_caps)
686{
687 uint32_t slave_config = 0;
688 uint32_t ctrlr_config = 0;
689
690 if (mb_cfg->crc_check_enable) {
691 slave_config |= ESPI_SLAVE_CRC_ENABLE;
692 ctrlr_config |= ESPI_CRC_CHECKING_EN;
693 }
694
695 if (mb_cfg->dedicated_alert_pin) {
696 slave_config |= ESPI_SLAVE_ALERT_MODE_PIN;
697 ctrlr_config |= ESPI_ALERT_MODE;
698 }
699
700 espi_set_io_mode_config(mb_cfg->io_mode, slave_caps, &slave_config, &ctrlr_config);
701 espi_set_op_freq_config(mb_cfg->op_freq_mhz, slave_caps, &slave_config, &ctrlr_config);
702
703 if (CONFIG(ESPI_DEBUG))
704 printk(BIOS_INFO, "Setting general configuration: slave: 0x%x controller: 0x%x\n",
705 slave_config, ctrlr_config);
706
707 if (espi_set_configuration(ESPI_SLAVE_GENERAL_CFG, slave_config) == -1)
708 return -1;
709
710 espi_write32(ESPI_SLAVE0_CONFIG, ctrlr_config);
711 return 0;
712}
713
714static int espi_wait_channel_ready(uint16_t slave_reg_addr)
715{
716 struct stopwatch sw;
717 uint32_t config;
718
719 stopwatch_init_usecs_expire(&sw, ESPI_CH_READY_TIMEOUT_US);
720 do {
721 espi_get_configuration(slave_reg_addr, &config);
722 if (espi_slave_is_channel_ready(config))
723 return 0;
724 } while (!stopwatch_expired(&sw));
725
726 printk(BIOS_ERR, "Error: Channel is not ready after %d usec (slave addr: 0x%x)\n",
727 ESPI_CH_READY_TIMEOUT_US, slave_reg_addr);
728 return -1;
729
730}
731
732static void espi_enable_ctrlr_channel(uint32_t channel_en)
733{
734 uint32_t reg = espi_read32(ESPI_SLAVE0_CONFIG);
735
736 reg |= channel_en;
737
738 espi_write32(ESPI_SLAVE0_CONFIG, reg);
739}
740
741static int espi_set_channel_configuration(uint32_t slave_config, uint32_t slave_reg_addr,
742 uint32_t ctrlr_enable)
743{
744 if (espi_set_configuration(slave_reg_addr, slave_config) == -1)
745 return -1;
746
747 if (!(slave_config & ESPI_SLAVE_CHANNEL_ENABLE))
748 return 0;
749
750 if (espi_wait_channel_ready(slave_reg_addr) == -1)
751 return -1;
752
753 espi_enable_ctrlr_channel(ctrlr_enable);
754 return 0;
755}
756
757static int espi_setup_vw_channel(const struct espi_config *mb_cfg, uint32_t slave_caps)
758{
759 uint32_t slave_vw_caps;
760 uint32_t ctrlr_vw_caps;
761 uint32_t slave_vw_count_supp;
762 uint32_t ctrlr_vw_count_supp;
763 uint32_t use_vw_count;
764 uint32_t slave_config;
765
766 if (!mb_cfg->vw_ch_en)
767 return 0;
768
769 if (!espi_slave_supports_vw_channel(slave_caps)) {
770 printk(BIOS_ERR, "Error: eSPI slave doesn't support VW channel!\n");
771 return -1;
772 }
773
774 if (espi_get_configuration(ESPI_SLAVE_VW_CFG, &slave_vw_caps) == -1)
775 return -1;
776
777 ctrlr_vw_caps = espi_read32(ESPI_MASTER_CAP);
778 ctrlr_vw_count_supp = (ctrlr_vw_caps & ESPI_VW_MAX_SIZE_MASK) >> ESPI_VW_MAX_SIZE_SHIFT;
779
780 slave_vw_count_supp = espi_slave_get_vw_count_supp(slave_vw_caps);
781 use_vw_count = MIN(ctrlr_vw_count_supp, slave_vw_count_supp);
782
783 slave_config = ESPI_SLAVE_CHANNEL_ENABLE | ESPI_SLAVE_VW_COUNT_SEL_VAL(use_vw_count);
784 return espi_set_channel_configuration(slave_config, ESPI_SLAVE_VW_CFG, ESPI_VW_CH_EN);
785}
786
787static int espi_setup_periph_channel(const struct espi_config *mb_cfg, uint32_t slave_caps)
788{
789 uint32_t slave_config;
790 /* Peripheral channel requires BME bit to be set when enabling the channel. */
791 const uint32_t slave_en_mask = ESPI_SLAVE_CHANNEL_READY |
792 ESPI_SLAVE_PERIPH_BUS_MASTER_ENABLE;
793
794 if (espi_get_configuration(ESPI_SLAVE_PERIPH_CFG, &slave_config) == -1)
795 return -1;
796
797 /*
798 * Peripheral channel is the only one which is enabled on reset. So, if the mainboard
799 * wants to disable it, set configuration to disable peripheral channel. It also
800 * requires that BME bit be cleared.
801 */
802 if (mb_cfg->periph_ch_en) {
803 if (!espi_slave_supports_periph_channel(slave_caps)) {
804 printk(BIOS_ERR, "Error: eSPI slave doesn't support periph channel!\n");
805 return -1;
806 }
807 slave_config |= slave_en_mask;
808 } else {
809 slave_config &= ~slave_en_mask;
810 }
811
812 return espi_set_channel_configuration(slave_config, ESPI_SLAVE_PERIPH_CFG,
813 ESPI_PERIPH_CH_EN);
814}
815
816static int espi_setup_oob_channel(const struct espi_config *mb_cfg, uint32_t slave_caps)
817{
818 uint32_t slave_config;
819
820 if (!mb_cfg->oob_ch_en)
821 return 0;
822
823 if (!espi_slave_supports_oob_channel(slave_caps)) {
824 printk(BIOS_ERR, "Error: eSPI slave doesn't support OOB channel!\n");
825 return -1;
826 }
827
828 if (espi_get_configuration(ESPI_SLAVE_OOB_CFG, &slave_config) == -1)
829 return -1;
830
831 slave_config |= ESPI_SLAVE_CHANNEL_ENABLE;
832
833 return espi_set_channel_configuration(slave_config, ESPI_SLAVE_OOB_CFG,
834 ESPI_OOB_CH_EN);
835}
836
837static int espi_setup_flash_channel(const struct espi_config *mb_cfg, uint32_t slave_caps)
838{
839 uint32_t slave_config;
840
841 if (!mb_cfg->flash_ch_en)
842 return 0;
843
844 if (!espi_slave_supports_flash_channel(slave_caps)) {
845 printk(BIOS_ERR, "Error: eSPI slave doesn't support flash channel!\n");
846 return -1;
847 }
848
849 if (espi_get_configuration(ESPI_SLAVE_FLASH_CFG, &slave_config) == -1)
850 return -1;
851
852 slave_config |= ESPI_SLAVE_CHANNEL_ENABLE;
853
854 return espi_set_channel_configuration(slave_config, ESPI_SLAVE_FLASH_CFG,
855 ESPI_FLASH_CH_EN);
856}
857
858static void espi_set_initial_config(const struct espi_config *mb_cfg)
859{
860 uint32_t espi_initial_mode = ESPI_OP_FREQ_16_MHZ | ESPI_IO_MODE_SINGLE;
861
862 if (mb_cfg->dedicated_alert_pin)
863 espi_initial_mode |= ESPI_ALERT_MODE;
864
865 espi_write32(ESPI_SLAVE0_CONFIG, espi_initial_mode);
866}
867
868static void espi_setup_subtractive_decode(const struct espi_config *mb_cfg)
869{
870 uint32_t global_ctrl_reg;
871 global_ctrl_reg = espi_read32(ESPI_GLOBAL_CONTROL_1);
872
873 if (mb_cfg->subtractive_decode) {
874 global_ctrl_reg &= ~ESPI_SUB_DECODE_SLV_MASK;
875 global_ctrl_reg |= ESPI_SUB_DECODE_EN;
876
877 } else {
878 global_ctrl_reg &= ~ESPI_SUB_DECODE_EN;
879 }
880 espi_write32(ESPI_GLOBAL_CONTROL_1, global_ctrl_reg);
881}
882
883int espi_setup(void)
884{
885 uint32_t slave_caps;
886 const struct espi_config *cfg = espi_get_config();
887
Raul E Rangelb92383a2021-04-02 10:32:03 -0600888 espi_write32(ESPI_GLOBAL_CONTROL_0, ESPI_AL_STOP_EN);
889 espi_write32(ESPI_GLOBAL_CONTROL_1, ESPI_RGCMD_INT(23) | ESPI_ERR_INT_SMI);
890 espi_write32(ESPI_SLAVE0_INT_EN, 0);
891 espi_clear_status();
892
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700893 /*
894 * Boot sequence: Step 1
895 * Set correct initial configuration to talk to the slave:
896 * Set clock frequency to 16.7MHz and single IO mode.
897 */
898 espi_set_initial_config(cfg);
899
900 /*
901 * Boot sequence: Step 2
902 * Send in-band reset
903 * The resets affects both host and slave devices, so set initial config again.
904 */
905 if (espi_send_reset() == -1) {
906 printk(BIOS_ERR, "Error: In-band reset failed!\n");
907 return -1;
908 }
909 espi_set_initial_config(cfg);
910
911 /*
912 * Boot sequence: Step 3
913 * Get configuration of slave device.
914 */
915 if (espi_get_general_configuration(&slave_caps) == -1) {
916 printk(BIOS_ERR, "Error: Slave GET_CONFIGURATION failed!\n");
917 return -1;
918 }
919
920 /*
921 * Boot sequence:
922 * Step 4: Write slave device general config
923 * Step 5: Set host slave config
924 */
925 if (espi_set_general_configuration(cfg, slave_caps) == -1) {
926 printk(BIOS_ERR, "Error: Slave SET_CONFIGURATION failed!\n");
927 return -1;
928 }
929
930 /*
931 * Setup polarity before enabling the VW channel so any interrupts
932 * received will have the correct polarity.
933 */
934 espi_write32(ESPI_RXVW_POLARITY, cfg->vw_irq_polarity);
935
936 /*
937 * Boot Sequences: Steps 6 - 9
938 * Channel setup
939 */
940 /* Set up VW first so we can deassert PLTRST#. */
941 if (espi_setup_vw_channel(cfg, slave_caps) == -1) {
942 printk(BIOS_ERR, "Error: Setup VW channel failed!\n");
943 return -1;
944 }
945
946 /* De-assert PLTRST# if VW channel is enabled by mainboard. */
947 if (espi_send_pltrst_deassert(cfg) == -1) {
948 printk(BIOS_ERR, "Error: PLTRST deassertion failed!\n");
949 return -1;
950 }
951
952 if (espi_setup_periph_channel(cfg, slave_caps) == -1) {
953 printk(BIOS_ERR, "Error: Setup Periph channel failed!\n");
954 return -1;
955 }
956
957 if (espi_setup_oob_channel(cfg, slave_caps) == -1) {
958 printk(BIOS_ERR, "Error: Setup OOB channel failed!\n");
959 return -1;
960 }
961
962 if (espi_setup_flash_channel(cfg, slave_caps) == -1) {
963 printk(BIOS_ERR, "Error: Setup Flash channel failed!\n");
964 return -1;
965 }
966
967 /* Enable subtractive decode if configured */
Felix Helda2642d02021-02-17 00:32:46 +0100968 espi_setup_subtractive_decode(cfg);
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700969
Raul E Rangelb92383a2021-04-02 10:32:03 -0600970 espi_write32(ESPI_GLOBAL_CONTROL_1,
971 espi_read32(ESPI_GLOBAL_CONTROL_1) | ESPI_BUS_MASTER_EN);
972
Furquan Shaikh70063ff52020-05-11 14:28:13 -0700973 return 0;
974}