blob: a73abab6d8c711131394ad54c1dd4be4c28f97fb [file] [log] [blame]
hailfinger52384c92010-07-28 15:08:35 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010 Carl-Daniel Hailfinger
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
uwee15beb92010-08-08 17:01:18 +000020/* Driver for the NVIDIA MCP6x/MCP7x MCP6X_SPI controller.
hailfinger52384c92010-07-28 15:08:35 +000021 * Based on clean room reverse engineered docs from
Patrick Georgie39d6442017-03-22 21:23:35 +010022 * https://flashrom.org/pipermail/flashrom/2009-December/001180.html
hailfinger52384c92010-07-28 15:08:35 +000023 * created by Michael Karcher.
24 */
25
26#if defined(__i386__) || defined(__x86_64__)
27
hailfinger52384c92010-07-28 15:08:35 +000028#include <stdlib.h>
29#include <ctype.h>
30#include "flash.h"
31#include "programmer.h"
32
33/* Bit positions for each pin. */
34
35#define MCP6X_SPI_CS 1
36#define MCP6X_SPI_SCK 2
37#define MCP6X_SPI_MOSI 3
38#define MCP6X_SPI_MISO 4
39#define MCP6X_SPI_REQUEST 0
40#define MCP6X_SPI_GRANT 8
41
42void *mcp6x_spibar = NULL;
43
hailfinger935a20c2010-09-14 01:29:49 +000044/* Cached value of last GPIO state. */
45static uint8_t mcp_gpiostate;
46
hailfinger52384c92010-07-28 15:08:35 +000047static void mcp6x_request_spibus(void)
48{
hailfinger935a20c2010-09-14 01:29:49 +000049 mcp_gpiostate = mmio_readb(mcp6x_spibar + 0x530);
50 mcp_gpiostate |= 1 << MCP6X_SPI_REQUEST;
51 mmio_writeb(mcp_gpiostate, mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000052
53 /* Wait until we are allowed to use the SPI bus. */
54 while (!(mmio_readw(mcp6x_spibar + 0x530) & (1 << MCP6X_SPI_GRANT))) ;
hailfinger935a20c2010-09-14 01:29:49 +000055
56 /* Update the cache. */
57 mcp_gpiostate = mmio_readb(mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000058}
59
60static void mcp6x_release_spibus(void)
61{
hailfinger935a20c2010-09-14 01:29:49 +000062 mcp_gpiostate &= ~(1 << MCP6X_SPI_REQUEST);
63 mmio_writeb(mcp_gpiostate, mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000064}
65
66static void mcp6x_bitbang_set_cs(int val)
67{
hailfinger935a20c2010-09-14 01:29:49 +000068 mcp_gpiostate &= ~(1 << MCP6X_SPI_CS);
69 mcp_gpiostate |= (val << MCP6X_SPI_CS);
70 mmio_writeb(mcp_gpiostate, mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000071}
72
73static void mcp6x_bitbang_set_sck(int val)
74{
hailfinger935a20c2010-09-14 01:29:49 +000075 mcp_gpiostate &= ~(1 << MCP6X_SPI_SCK);
76 mcp_gpiostate |= (val << MCP6X_SPI_SCK);
77 mmio_writeb(mcp_gpiostate, mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000078}
79
80static void mcp6x_bitbang_set_mosi(int val)
81{
hailfinger935a20c2010-09-14 01:29:49 +000082 mcp_gpiostate &= ~(1 << MCP6X_SPI_MOSI);
83 mcp_gpiostate |= (val << MCP6X_SPI_MOSI);
84 mmio_writeb(mcp_gpiostate, mcp6x_spibar + 0x530);
hailfinger52384c92010-07-28 15:08:35 +000085}
86
87static int mcp6x_bitbang_get_miso(void)
88{
hailfinger935a20c2010-09-14 01:29:49 +000089 mcp_gpiostate = mmio_readb(mcp6x_spibar + 0x530);
90 return (mcp_gpiostate >> MCP6X_SPI_MISO) & 0x1;
hailfinger52384c92010-07-28 15:08:35 +000091}
92
93static const struct bitbang_spi_master bitbang_spi_master_mcp6x = {
94 .type = BITBANG_SPI_MASTER_MCP,
95 .set_cs = mcp6x_bitbang_set_cs,
96 .set_sck = mcp6x_bitbang_set_sck,
97 .set_mosi = mcp6x_bitbang_set_mosi,
98 .get_miso = mcp6x_bitbang_get_miso,
hailfinger12cba9a2010-09-15 00:17:37 +000099 .request_bus = mcp6x_request_spibus,
100 .release_bus = mcp6x_release_spibus,
Patrick Georgie081d5d2017-03-22 21:18:18 +0100101 .half_period = 0,
hailfinger52384c92010-07-28 15:08:35 +0000102};
103
104int mcp6x_spi_init(int want_spi)
105{
106 uint16_t status;
107 uint32_t mcp6x_spibaraddr;
108 struct pci_dev *smbusdev;
109
110 /* Look for the SMBus device (SMBus PCI class) */
111 smbusdev = pci_dev_find_vendorclass(0x10de, 0x0c05);
112 if (!smbusdev) {
113 if (want_spi) {
114 msg_perr("ERROR: SMBus device not found. Not enabling "
115 "SPI.\n");
116 return 1;
117 } else {
118 msg_pinfo("Odd. SMBus device not found.\n");
119 return 0;
120 }
121 }
122 msg_pdbg("Found SMBus device %04x:%04x at %02x:%02x:%01x\n",
123 smbusdev->vendor_id, smbusdev->device_id,
124 smbusdev->bus, smbusdev->dev, smbusdev->func);
125
126
127 /* Locate the BAR where the SPI interface lives. */
128 mcp6x_spibaraddr = pci_read_long(smbusdev, 0x74);
129 /* BAR size is 64k, bits 15..4 are zero, bit 3..0 declare a
130 * 32-bit non-prefetchable memory BAR.
131 */
132 mcp6x_spibaraddr &= ~0xffff;
133 msg_pdbg("MCP SPI BAR is at 0x%08x\n", mcp6x_spibaraddr);
134
135 /* Accessing a NULL pointer BAR is evil. Don't do it. */
136 if (!mcp6x_spibaraddr && want_spi) {
Patrick Georgie39d6442017-03-22 21:23:35 +0100137 msg_perr("Error: Chipset is strapped for SPI, but MCP SPI BAR is invalid.\n");
hailfinger52384c92010-07-28 15:08:35 +0000138 return 1;
139 } else if (!mcp6x_spibaraddr && !want_spi) {
140 msg_pdbg("MCP SPI is not used.\n");
141 return 0;
142 } else if (mcp6x_spibaraddr && !want_spi) {
Patrick Georgie39d6442017-03-22 21:23:35 +0100143 msg_pdbg("Strange. MCP SPI BAR is valid, but chipset apparently doesn't have SPI enabled.\n");
hailfinger52384c92010-07-28 15:08:35 +0000144 /* FIXME: Should we enable SPI anyway? */
145 return 0;
146 }
147 /* Map the BAR. Bytewise/wordwise access at 0x530 and 0x540. */
Patrick Georgi124bd002017-03-21 17:25:59 +0100148 mcp6x_spibar = rphysmap("NVIDIA MCP6x SPI", mcp6x_spibaraddr, 0x544);
149 if (mcp6x_spibar == ERROR_PTR)
150 return 1;
hailfinger52384c92010-07-28 15:08:35 +0000151
152 status = mmio_readw(mcp6x_spibar + 0x530);
153 msg_pdbg("SPI control is 0x%04x, req=%i, gnt=%i\n",
154 status, (status >> MCP6X_SPI_REQUEST) & 0x1,
155 (status >> MCP6X_SPI_GRANT) & 0x1);
hailfinger935a20c2010-09-14 01:29:49 +0000156 mcp_gpiostate = status & 0xff;
hailfinger52384c92010-07-28 15:08:35 +0000157
Patrick Georgie081d5d2017-03-22 21:18:18 +0100158 if (register_spi_bitbang_master(&bitbang_spi_master_mcp6x)) {
hailfinger52384c92010-07-28 15:08:35 +0000159 /* This should never happen. */
160 msg_perr("MCP6X bitbang SPI master init failed!\n");
161 return 1;
162 }
163
hailfinger52384c92010-07-28 15:08:35 +0000164 return 0;
165}
166
167#endif