blob: b5d964e99429ec3503162b28c1eef08d53220c28 [file] [log] [blame]
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2010,2011 Carl-Daniel Hailfinger
5 * Written by Carl-Daniel Hailfinger for Angelbird Ltd.
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/* Datasheets are not public (yet?) */
Andrew Morgana0743832011-07-25 22:07:05 +000022#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000023
24#include <stdlib.h>
25#include "flash.h"
26#include "programmer.h"
27
28uint8_t *mv_bar;
29uint16_t mv_iobar;
30
31const struct pcidev_status satas_mv[] = {
32 /* 88SX6041 and 88SX6042 are the same according to the datasheet. */
33 {0x11ab, 0x7042, OK, "Marvell", "88SX7042 PCI-e 4-port SATA-II"},
34
35 {},
36};
37
38#define NVRAM_PARAM 0x1045c
39#define FLASH_PARAM 0x1046c
40#define EXPANSION_ROM_BAR_CONTROL 0x00d2c
41#define PCI_BAR2_CONTROL 0x00c08
42#define GPIO_PORT_CONTROL 0x104f0
43
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +000044static const struct par_programmer par_programmer_satamv = {
45 .chip_readb = satamv_chip_readb,
46 .chip_readw = fallback_chip_readw,
47 .chip_readl = fallback_chip_readl,
48 .chip_readn = fallback_chip_readn,
49 .chip_writeb = satamv_chip_writeb,
50 .chip_writew = fallback_chip_writew,
51 .chip_writel = fallback_chip_writel,
52 .chip_writen = fallback_chip_writen,
53};
54
David Hendricks8bb20212011-06-14 01:35:36 +000055static int satamv_shutdown(void *data)
56{
57 physunmap(mv_bar, 0x20000);
58 pci_cleanup(pacc);
59 release_io_perms();
60 return 0;
61}
62
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000063/*
64 * Random notes:
65 * FCE# Flash Chip Enable
66 * FWE# Flash Write Enable
67 * FOE# Flash Output Enable
68 * FALE[1:0] Flash Address Latch Enable
69 * FAD[7:0] Flash Multiplexed Address/Data Bus
70 * FA[2:0] Flash Address Low
71 *
72 * GPIO[15,2] GPIO Port Mode
73 * GPIO[4:3] Flash Size
74 *
75 * 0xd2c Expansion ROM BAR Control
76 * 0xc08 PCI BAR2 (Flash/NVRAM) Control
77 * 0x1046c Flash Parameters
78 */
79int satamv_init(void)
80{
81 uintptr_t addr;
82 uint32_t tmp;
83
84 get_io_perms();
85
86 /* BAR0 has all internal registers memory mapped. */
87 /* No need to check for errors, pcidev_init() will not return in case
88 * of errors.
89 */
Carl-Daniel Hailfinger40446ee2011-03-07 01:08:09 +000090 addr = pcidev_init(PCI_BASE_ADDRESS_0, satas_mv);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000091
92 mv_bar = physmap("Marvell 88SX7042 registers", addr, 0x20000);
93 if (mv_bar == ERROR_PTR)
94 goto error_out;
95
David Hendricks8bb20212011-06-14 01:35:36 +000096 if (register_shutdown(satamv_shutdown, NULL))
97 return 1;
98
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +000099 tmp = pci_mmio_readl(mv_bar + FLASH_PARAM);
100 msg_pspew("Flash Parameters:\n");
101 msg_pspew("TurnOff=0x%01x\n", (tmp >> 0) & 0x7);
102 msg_pspew("Acc2First=0x%01x\n", (tmp >> 3) & 0xf);
103 msg_pspew("Acc2Next=0x%01x\n", (tmp >> 7) & 0xf);
104 msg_pspew("ALE2Wr=0x%01x\n", (tmp >> 11) & 0x7);
105 msg_pspew("WrLow=0x%01x\n", (tmp >> 14) & 0x7);
106 msg_pspew("WrHigh=0x%01x\n", (tmp >> 17) & 0x7);
107 msg_pspew("Reserved[21:20]=0x%01x\n", (tmp >> 20) & 0x3);
108 msg_pspew("TurnOffExt=0x%01x\n", (tmp >> 22) & 0x1);
109 msg_pspew("Acc2FirstExt=0x%01x\n", (tmp >> 23) & 0x1);
110 msg_pspew("Acc2NextExt=0x%01x\n", (tmp >> 24) & 0x1);
111 msg_pspew("ALE2WrExt=0x%01x\n", (tmp >> 25) & 0x1);
112 msg_pspew("WrLowExt=0x%01x\n", (tmp >> 26) & 0x1);
113 msg_pspew("WrHighExt=0x%01x\n", (tmp >> 27) & 0x1);
114 msg_pspew("Reserved[31:28]=0x%01x\n", (tmp >> 28) & 0xf);
115
116 tmp = pci_mmio_readl(mv_bar + EXPANSION_ROM_BAR_CONTROL);
117 msg_pspew("Expansion ROM BAR Control:\n");
118 msg_pspew("ExpROMSz=0x%01x\n", (tmp >> 19) & 0x7);
119
120 /* Enable BAR2 mapping to flash */
121 tmp = pci_mmio_readl(mv_bar + PCI_BAR2_CONTROL);
122 msg_pspew("PCI BAR2 (Flash/NVRAM) Control:\n");
123 msg_pspew("Bar2En=0x%01x\n", (tmp >> 0) & 0x1);
124 msg_pspew("BAR2TransAttr=0x%01x\n", (tmp >> 1) & 0x1f);
125 msg_pspew("BAR2Sz=0x%01x\n", (tmp >> 19) & 0x7);
126 tmp &= 0xffffffc0;
127 tmp |= 0x0000001f;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000128 pci_rmmio_writel(tmp, mv_bar + PCI_BAR2_CONTROL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000129
130 /* Enable flash: GPIO Port Control Register 0x104f0 */
131 tmp = pci_mmio_readl(mv_bar + GPIO_PORT_CONTROL);
132 msg_pspew("GPIOPortMode=0x%01x\n", (tmp >> 0) & 0x3);
133 if (((tmp >> 0) & 0x3) != 0x2)
134 msg_pinfo("Warning! Either the straps are incorrect or you "
135 "have no flash or someone overwrote the strap "
136 "values!\n");
137 tmp &= 0xfffffffc;
138 tmp |= 0x2;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000139 pci_rmmio_writel(tmp, mv_bar + GPIO_PORT_CONTROL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000140
141 /* Get I/O BAR location. */
142 tmp = pci_read_long(pcidev_dev, PCI_BASE_ADDRESS_2) &
143 PCI_BASE_ADDRESS_IO_MASK;
144 /* Truncate to reachable range.
145 * FIXME: Check if the I/O BAR is actually reachable.
146 * This is an arch specific check.
147 */
148 mv_iobar = tmp & 0xffff;
149 msg_pspew("Activating I/O BAR at 0x%04x\n", mv_iobar);
150
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000151 /* 512 kByte with two 8-bit latches, and
152 * 4 MByte with additional 3-bit latch. */
153 max_rom_decode.parallel = 4 * 1024 * 1024;
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000154 register_par_programmer(&par_programmer_satamv, BUS_PARALLEL);
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000155
156 return 0;
157
158error_out:
159 pci_cleanup(pacc);
160 release_io_perms();
161 return 1;
162}
163
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000164/* BAR2 (MEM) can map NVRAM and flash. We set it to flash in the init function.
165 * If BAR2 is disabled, it still can be accessed indirectly via BAR1 (I/O).
166 * This code only supports indirect accesses for now.
167 */
168
169/* Indirect access to via the I/O BAR1. */
170static void satamv_indirect_chip_writeb(uint8_t val, chipaddr addr)
171{
172 /* 0x80000000 selects BAR2 for remapping. */
173 OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar);
174 OUTB(val, mv_iobar + 0x80 + (addr & 0x3));
175}
176
177/* Indirect access to via the I/O BAR1. */
178static uint8_t satamv_indirect_chip_readb(const chipaddr addr)
179{
180 /* 0x80000000 selects BAR2 for remapping. */
181 OUTL(((uint32_t)addr | 0x80000000) & 0xfffffffc, mv_iobar);
182 return INB(mv_iobar + 0x80 + (addr & 0x3));
183}
184
185/* FIXME: Prefer direct access to BAR2 if BAR2 is active. */
186void satamv_chip_writeb(uint8_t val, chipaddr addr)
187{
188 satamv_indirect_chip_writeb(val, addr);
189}
190
191/* FIXME: Prefer direct access to BAR2 if BAR2 is active. */
192uint8_t satamv_chip_readb(const chipaddr addr)
193{
194 return satamv_indirect_chip_readb(addr);
195}
Andrew Morgana0743832011-07-25 22:07:05 +0000196
197#else
198#error PCI port I/O access is not supported on this architecture yet.
199#endif