blob: d09facc12f6a4168ae2460b935ab5a81b280e66b [file] [log] [blame]
Idwer Vollering004f4b72010-09-03 18:21:21 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010 Carl-Daniel Hailfinger
5 * Copyright (C) 2010 Idwer Vollering
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of 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, MA 02110-1301 USA
19 */
20
21/*
22 * Datasheet:
23 * PCI/PCI-X Family of Gigabit Ethernet Controllers Software Developer's Manual
24 * 82540EP/EM, 82541xx, 82544GC/EI, 82545GM/EM, 82546GB/EB, and 82547xx
25 * http://download.intel.com/design/network/manuals/8254x_GBe_SDM.pdf
26 */
27
28#include <stdlib.h>
29#include "flash.h"
30#include "programmer.h"
31
32#define PCI_VENDOR_ID_INTEL 0x8086
33
34#define EECD 0x10
35#define FLA 0x1c
36
37/*
38 * Register bits of EECD.
39 *
40 * Bit 04, 05: FWE (Flash Write Enable Control)
41 * 00b = not allowed
42 * 01b = flash writes disabled
43 * 10b = flash writes enabled
44 * 11b = not allowed
45 */
46#define FLASH_WRITES_DISABLED 0x10 /* FWE: 10000b */
47#define FLASH_WRITES_ENABLED 0x20 /* FWE: 100000b */
48
49/* Flash Access register bits */
50/* Table 13-9 */
51#define FL_SCK 0
52#define FL_CS 1
53#define FL_SI 2
54#define FL_SO 3
55#define FL_REQ 4
56#define FL_GNT 5
57/* Currently unused */
58// #define FL_BUSY 30
59// #define FL_ER 31
60
61uint8_t *nicintel_spibar;
62
63const struct pcidev_status nics_intel_spi[] = {
64 {PCI_VENDOR_ID_INTEL, 0x107c, OK, "Intel", "82541PI Gigabit Ethernet Controller"},
65
66 {},
67};
68
69static void nicintel_request_spibus(void)
70{
71 uint32_t tmp;
72
73 tmp = pci_mmio_readl(nicintel_spibar + FLA);
74 tmp |= 1 << FL_REQ;
75 pci_mmio_writel(tmp, nicintel_spibar + FLA);
76
77 /* Wait until we are allowed to use the SPI bus. */
78 while (!(pci_mmio_readl(nicintel_spibar + FLA) & (1 << FL_GNT))) ;
79}
80
81static void nicintel_release_spibus(void)
82{
83 uint32_t tmp;
84
85 tmp = pci_mmio_readl(nicintel_spibar + FLA);
86 tmp &= ~(1 << FL_REQ);
87 pci_mmio_writel(tmp, nicintel_spibar + FLA);
88}
89
90static void nicintel_bitbang_set_cs(int val)
91{
92 uint32_t tmp;
93
94 /*
95 * Requesting and releasing the SPI bus is handled in here to allow
96 * the chipset to use its own SPI engine for native reads.
97 */
98 if (val == 0)
99 nicintel_request_spibus();
100
101 tmp = pci_mmio_readl(nicintel_spibar + FLA);
102 tmp &= ~(1 << FL_CS);
103 tmp |= (val << FL_CS);
104 pci_mmio_writel(tmp, nicintel_spibar + FLA);
105
106 if (val == 1)
107 nicintel_release_spibus();
108}
109
110static void nicintel_bitbang_set_sck(int val)
111{
112 uint32_t tmp;
113
114 tmp = pci_mmio_readl(nicintel_spibar + FLA);
115 tmp &= ~(1 << FL_SCK);
116 tmp |= (val << FL_SCK);
117 pci_mmio_writel(tmp, nicintel_spibar + FLA);
118}
119
120static void nicintel_bitbang_set_mosi(int val)
121{
122 uint32_t tmp;
123
124 tmp = pci_mmio_readl(nicintel_spibar + FLA);
125 tmp &= ~(1 << FL_SI);
126 tmp |= (val << FL_SI);
127 pci_mmio_writel(tmp, nicintel_spibar + FLA);
128}
129
130static int nicintel_bitbang_get_miso(void)
131{
132 uint32_t tmp;
133
134 tmp = pci_mmio_readl(nicintel_spibar + FLA);
135 tmp = (tmp >> FL_SO) & 0x1;
136 return tmp;
137}
138
139static const struct bitbang_spi_master bitbang_spi_master_nicintel = {
140 .type = BITBANG_SPI_MASTER_NICINTEL,
141 .set_cs = nicintel_bitbang_set_cs,
142 .set_sck = nicintel_bitbang_set_sck,
143 .set_mosi = nicintel_bitbang_set_mosi,
144 .get_miso = nicintel_bitbang_get_miso,
145};
146
147int nicintel_spi_init(void)
148{
149 uint32_t tmp;
150
151 get_io_perms();
152
153 io_base_addr = pcidev_init(PCI_VENDOR_ID_INTEL, PCI_BASE_ADDRESS_0,
154 nics_intel_spi);
155
156 nicintel_spibar = physmap("Intel Gigabit NIC w/ SPI flash",
157 io_base_addr, 4096);
158 tmp = pci_mmio_readl(nicintel_spibar + EECD);
159 tmp &= ~FLASH_WRITES_DISABLED;
160 tmp |= FLASH_WRITES_ENABLED;
161 pci_mmio_writel(tmp, nicintel_spibar + EECD);
162
163 /* 1 usec halfperiod delay for now. */
164 if (bitbang_spi_init(&bitbang_spi_master_nicintel, 1))
165 return 1;
166
167 buses_supported = CHIP_BUSTYPE_SPI;
168 spi_controller = SPI_CONTROLLER_NICINTEL;
169
170 return 0;
171}
172
173int nicintel_spi_shutdown(void)
174{
175 uint32_t tmp;
176
177 tmp = pci_mmio_readl(nicintel_spibar + EECD);
178 tmp &= ~FLASH_WRITES_ENABLED;
179 tmp |= FLASH_WRITES_DISABLED;
180 pci_mmio_writel(tmp, nicintel_spibar + EECD);
181
182 physunmap(nicintel_spibar, 4096);
183 pci_cleanup(pacc);
184 release_io_perms();
185
186 return 0;
187}