blob: 2522c2e5b5913779ddc7df7a050df6afd2eb6a5c [file] [log] [blame]
zbao01bd79f2012-03-23 11:36:08 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
5 *
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.
9 *
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.
zbao01bd79f2012-03-23 11:36:08 +080014 */
Zheng Bao7bcffa52012-11-28 11:36:52 +080015#include <stdint.h>
16#include <stdlib.h>
17#include <string.h>
zbao01bd79f2012-03-23 11:36:08 +080018#include <arch/io.h>
Kyösti Mälkki9f0a2be2014-06-30 07:34:36 +030019#include <console/console.h>
Furquan Shaikhc28984d2016-11-20 21:04:00 -080020#include <spi_flash.h>
Zheng Bao600784e2013-02-07 17:30:23 +080021#include <spi-generic.h>
zbao01bd79f2012-03-23 11:36:08 +080022#include <device/device.h>
Zheng Bao7bcffa52012-11-28 11:36:52 +080023#include <device/pci.h>
24#include <device/pci_ops.h>
zbao01bd79f2012-03-23 11:36:08 +080025
Martin Roth3316cf22012-12-05 16:22:54 -070026#include "SBPLATFORM.h"
27#include <vendorcode/amd/cimx/sb800/ECfan.h>
28
Kyösti Mälkki11104952014-06-29 16:17:33 +030029#define AMD_SB_SPI_TX_LEN 8
30
Stefan Reinauer12bce3f2015-06-18 01:17:38 -070031static uintptr_t spibar;
zbao01bd79f2012-03-23 11:36:08 +080032
Zheng Bao7bcffa52012-11-28 11:36:52 +080033static void reset_internal_fifo_pointer(void)
zbao01bd79f2012-03-23 11:36:08 +080034{
zbao01bd79f2012-03-23 11:36:08 +080035 do {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080036 write8((void *)(spibar + 2),
37 read8((void *)(spibar + 2)) | 0x10);
38 } while (read8((void *)(spibar + 0xD)) & 0x7);
zbao01bd79f2012-03-23 11:36:08 +080039}
40
Zheng Bao7bcffa52012-11-28 11:36:52 +080041static void execute_command(void)
zbao01bd79f2012-03-23 11:36:08 +080042{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080043 write8((void *)(spibar + 2), read8((void *)(spibar + 2)) | 1);
Zheng Bao7bcffa52012-11-28 11:36:52 +080044
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080045 while ((read8((void *)(spibar + 2)) & 1) &&
46 (read8((void *)(spibar+3)) & 0x80));
zbao01bd79f2012-03-23 11:36:08 +080047}
48
Zheng Bao7bcffa52012-11-28 11:36:52 +080049void spi_init()
zbao01bd79f2012-03-23 11:36:08 +080050{
Zheng Bao7bcffa52012-11-28 11:36:52 +080051 device_t dev;
52
53 dev = dev_find_slot(0, PCI_DEVFN(0x14, 3));
54 spibar = pci_read_config32(dev, 0xA0) & ~0x1F;
zbao01bd79f2012-03-23 11:36:08 +080055}
56
Kyösti Mälkki11104952014-06-29 16:17:33 +030057unsigned int spi_crop_chunk(unsigned int cmd_len, unsigned int buf_len)
58{
59 return min(AMD_SB_SPI_TX_LEN - cmd_len, buf_len);
60}
61
Furquan Shaikh0dba0252016-11-30 04:34:22 -080062int spi_xfer(const struct spi_slave *slave, const void *dout,
63 size_t bytesout, void *din, size_t bytesin)
zbao01bd79f2012-03-23 11:36:08 +080064{
Zheng Bao7bcffa52012-11-28 11:36:52 +080065 /* First byte is cmd which can not being sent through FIFO. */
66 u8 cmd = *(u8 *)dout++;
67 u8 readoffby1;
68 u8 readwrite;
Furquan Shaikh0dba0252016-11-30 04:34:22 -080069 size_t count;
zbao01bd79f2012-03-23 11:36:08 +080070
Gabe Black93d9f922014-03-27 21:52:43 -070071 bytesout--;
zbao01bd79f2012-03-23 11:36:08 +080072
Kyösti Mälkki9f0a2be2014-06-30 07:34:36 +030073 /*
74 * Check if this is a write command attempting to transfer more bytes
75 * than the controller can handle. Iterations for writes are not
76 * supported here because each SPI write command needs to be preceded
77 * and followed by other SPI commands, and this sequence is controlled
78 * by the SPI chip driver.
79 */
80 if (bytesout > AMD_SB_SPI_TX_LEN) {
81 printk(BIOS_DEBUG, "FCH SPI: Too much to write. Does your SPI chip driver use"
82 " spi_crop_chunk()?\n");
83 return -1;
84 }
85
Zheng Bao7bcffa52012-11-28 11:36:52 +080086 readoffby1 = bytesout ? 0 : 1;
zbao01bd79f2012-03-23 11:36:08 +080087
Zheng Bao7bcffa52012-11-28 11:36:52 +080088 readwrite = (bytesin + readoffby1) << 4 | bytesout;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080089 write8((void *)(spibar + 1), readwrite);
90 write8((void *)(spibar + 0), cmd);
zbao01bd79f2012-03-23 11:36:08 +080091
Zheng Bao7bcffa52012-11-28 11:36:52 +080092 reset_internal_fifo_pointer();
93 for (count = 0; count < bytesout; count++, dout++) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080094 write8((void *)(spibar + 0x0C), *(u8 *)dout);
zbao01bd79f2012-03-23 11:36:08 +080095 }
Zheng Bao7bcffa52012-11-28 11:36:52 +080096
97 reset_internal_fifo_pointer();
98 execute_command();
99
100 reset_internal_fifo_pointer();
101 /* Skip the bytes we sent. */
102 for (count = 0; count < bytesout; count++) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800103 cmd = read8((void *)(spibar + 0x0C));
Zheng Bao7bcffa52012-11-28 11:36:52 +0800104 }
105
106 reset_internal_fifo_pointer();
107 for (count = 0; count < bytesin; count++, din++) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800108 *(u8 *)din = read8((void *)(spibar + 0x0C));
Zheng Bao7bcffa52012-11-28 11:36:52 +0800109 }
110
111 return 0;
112}
Martin Roth3316cf22012-12-05 16:22:54 -0700113
Martin Roth3316cf22012-12-05 16:22:54 -0700114static void ImcSleep(void)
115{
116 u8 cmd_val = 0x96; /* Kick off IMC Mailbox command 96 */
117 u8 reg0_val = 0; /* clear response register */
118 u8 reg1_val = 0xB4; /* request ownership flag */
119
120 WriteECmsg (MSG_REG0, AccWidthUint8, &reg0_val);
121 WriteECmsg (MSG_REG1, AccWidthUint8, &reg1_val);
122 WriteECmsg (MSG_SYS_TO_IMC, AccWidthUint8, &cmd_val);
123
124 WaitForEcLDN9MailboxCmdAck();
125}
126
127
128static void ImcWakeup(void)
129{
130 u8 cmd_val = 0x96; /* Kick off IMC Mailbox command 96 */
Idwer Volleringd26da9c2013-12-22 21:38:18 +0000131 u8 reg0_val = 0; /* clear response register */
Martin Roth3316cf22012-12-05 16:22:54 -0700132 u8 reg1_val = 0xB5; /* release ownership flag */
133
134 WriteECmsg (MSG_REG0, AccWidthUint8, &reg0_val);
135 WriteECmsg (MSG_REG1, AccWidthUint8, &reg1_val);
136 WriteECmsg (MSG_SYS_TO_IMC, AccWidthUint8, &cmd_val);
137
138 WaitForEcLDN9MailboxCmdAck();
139}
Martin Roth3316cf22012-12-05 16:22:54 -0700140
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800141int spi_claim_bus(const struct spi_slave *slave)
Zheng Bao7bcffa52012-11-28 11:36:52 +0800142{
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800143 /* Nothing is required. */
Zheng Bao7bcffa52012-11-28 11:36:52 +0800144 return 0;
zbao01bd79f2012-03-23 11:36:08 +0800145}
146
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800147void spi_release_bus(const struct spi_slave *slave)
zbao01bd79f2012-03-23 11:36:08 +0800148{
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800149 /* Nothing is required. */
150 return;
151}
Martin Roth3316cf22012-12-05 16:22:54 -0700152
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800153int chipset_volatile_group_begin(const struct spi_flash *flash)
154{
155 if (!IS_ENABLED(CONFIG_SB800_IMC_FWM))
156 return 0;
157
158 ImcSleep();
159 return 0;
160}
161
162int chipset_volatile_group_end(const struct spi_flash *flash)
163{
164 if (!IS_ENABLED(CONFIG_SB800_IMC_FWM))
165 return 0;
166
167 ImcWakeup();
168 return 0;
zbao01bd79f2012-03-23 11:36:08 +0800169}
170
Gabe Black1e187352014-03-27 20:37:03 -0700171struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs)
Zheng Bao7bcffa52012-11-28 11:36:52 +0800172{
173 struct spi_slave *slave = malloc(sizeof(*slave));
174
175 if (!slave) {
176 return NULL;
177 }
178
179 memset(slave, 0, sizeof(*slave));
180
181 return slave;
zbao01bd79f2012-03-23 11:36:08 +0800182}